diff --git a/CustomModels/messagemodel.cpp b/CustomModels/messagemodel.cpp
deleted file mode 100644
index 41941b9887add35b927467452ad399d7bf1a8bc3..0000000000000000000000000000000000000000
--- a/CustomModels/messagemodel.cpp
+++ /dev/null
@@ -1,179 +0,0 @@
-#include "messagemodel.h"
-
-MessageModel::MessageModel()
-{
-
-}
-
-ChannelRepository *MessageModel::getRepo() const
-{
-    return repo;
-}
-
-void MessageModel::setRepo( ChannelRepository *value )
-{
-    repo = value;
-    connect( repo, &ChannelRepository::newMessage, this, &MessageModel::onNewMessage );
-    connect( repo, &ChannelRepository::beginInsertList, this, &MessageModel::onBeginInsertList );
-    connect( repo, &ChannelRepository::endInsertList, this, &MessageModel::onEndInsertList );
-}
-
-QVariant MessageModel::data( const QModelIndex &index, int role ) const
-{
-    int row = index.row();
-
-    auto messageAtIndex =  messagesOfCurrentChannel.at( row );
-
-    if ( role == MessageRoles::type ) {
-        return messageAtIndex->getMessageType();
-    }
-
-    if ( role == MessageRoles::text ) {
-        return messageAtIndex->getMessageString();
-    }
-
-    if ( role == MessageRoles::linkurl ) {
-        if ( !messageAtIndex->getAttachments().empty() ) {
-            return messageAtIndex->getAttachments().first()->getUrl();
-        } else {
-            qWarning() << "linkurl not found";
-        }
-    }
-
-    if ( role == author ) {
-        return messageAtIndex->getAuthor();
-    }
-
-    if ( role == date ) {
-        return messageAtIndex->getFormattedDate();
-    }
-
-    if ( role == time ) {
-        return messageAtIndex->getFormattedTime();
-    }
-
-    if ( role == ownMessage ) {
-        return messageAtIndex->getOwnMessage();
-    }
-
-    if ( role == width ) {
-        if ( !messageAtIndex->getAttachments().empty() ) {
-            return messageAtIndex->getAttachments().first()->getWidth();
-        } else {
-            qWarning() << "height not found";
-        }
-    }
-
-    if ( role == height ) {
-        if ( !messageAtIndex->getAttachments().empty() ) {
-            return messageAtIndex->getAttachments().first()->getHeight();
-        } else {
-            qWarning() << "height not found";
-        }
-    }
-
-    qWarning() << "messageModel data not found for row";
-    return QVariant();
-}
-
-QString MessageModel::getCurrent() const
-{
-    return current;
-}
-
-void MessageModel::setCurrent( const QString &value )
-{
-    current = value;
-
-    if ( repo->contains( value ) ) {
-        messagesOfCurrentChannel = repo->get( value )->getMessageRepo()->order();
-        duplicateCheck.clear();
-
-        for ( auto currentMessage : messagesOfCurrentChannel ) {
-            duplicateCheck.insert( currentMessage->getId() );
-        }
-
-        emit countChanged();
-    } else {
-        duplicateCheck.clear();
-        messagesOfCurrentChannel.clear();
-        emit countChanged();
-    }
-}
-
-int MessageModel::rowCount( const QModelIndex &parent ) const
-{
-    Q_UNUSED( parent );
-    qDebug() << "number of messages in model" << messagesOfCurrentChannel.count();
-
-    if ( !repo ) {
-        return 0;
-    }
-
-    int count = 0;
-
-    if ( messagesOfCurrentChannel.isEmpty() ) {
-        return 0;
-    }
-
-    count = messagesOfCurrentChannel.count();
-
-    return count;
-}
-
-QHash<int, QByteArray> MessageModel::roleNames() const
-{
-    QHash<int, QByteArray> roles;
-    roles[text] = "text";
-    roles[author] = "author";
-    roles[linkurl] = "linkurl";
-    roles[type] = "type";
-    roles[date] = "date";
-    roles[time] = "time";
-    roles[ownMessage] = "ownMessage";
-    roles[height] = "height";
-    roles[width ] = "width";
-    return roles;
-}
-
-void MessageModel::onNewMessage( QString channelId, int row, QString pMessageId )
-{
-
-    if ( channelId == current ) {
-        auto channel = repo->get( channelId );
-        auto message = channel->getMessageRepo()->get( pMessageId );
-
-        if ( !duplicateCheck.contains( message->getId() ) ) {
-            beginInsertRows( QModelIndex(), row, row );
-            messagesOfCurrentChannel.insert( row, message );
-            mInsertCount++;
-            endInsertRows();
-            duplicateCheck.insert( message->getId() );
-        }
-
-        if ( !buffered ) {
-            mInsertCount = 0;
-            emit countChanged();
-        }
-    }
-}
-
-void MessageModel::onBeginInsertList( QString pChannelId )
-{
-    if ( pChannelId == current ) {
-        buffered = true;
-        mInsertCount = 0;
-    }
-}
-
-void MessageModel::onEndInsertList( QString pChannelId )
-{
-    if ( pChannelId == current ) {
-        buffered = false;
-
-        if ( mInsertCount ) {
-            mInsertCount = 0;
-            emit countChanged();
-        }
-    }
-}
diff --git a/CustomModels/messagemodel.h b/CustomModels/messagemodel.h
deleted file mode 100644
index 44abc1e36411319d68e9844158cf640d90353f7c..0000000000000000000000000000000000000000
--- a/CustomModels/messagemodel.h
+++ /dev/null
@@ -1,52 +0,0 @@
-#ifndef MESSAGEMODEL_H
-#define MESSAGEMODEL_H
-
-#include <QObject>
-#include <QAbstractListModel>
-#include <QString>
-#include <QMap>
-#include "repos/channelrepository.h"
-
-class MessageModel : public QAbstractListModel
-{
-    Q_OBJECT
-    Q_PROPERTY(QString currentChannel READ getCurrent WRITE setCurrent NOTIFY currentChannelChanged)
-
-public:
-    enum MessageRoles {
-          text = Qt::UserRole + 1,
-          type,
-          linkurl,
-          author,
-          date,
-          time,
-          ownMessage,
-          width,
-          height
-      };
-    MessageModel();
-    ChannelRepository *getRepo() const;
-    void setRepo(ChannelRepository *value);
-    QVariant data( const QModelIndex &index, int role = Qt::DisplayRole ) const;
-    QString getCurrent() const;
-    void setCurrent(const QString &value);
-    Q_INVOKABLE int rowCount( const QModelIndex &parent = QModelIndex() ) const;
-    void onCurrentChannelChanged();
-
-protected:
-    ChannelRepository *repo = NULL;
-    QString current;
-    QSet<QString> duplicateCheck;
-    QHash<int, QByteArray> roleNames() const;
-    bool buffered = false;
-    int mInsertCount = 0;
-    void onNewMessage(QString channelId, int row,QString pMessageId );
-    QList<ChatMessage> messagesOfCurrentChannel;
-    void onBeginInsertList(QString pChannelId);
-    void onEndInsertList(QString pChannelId);
-signals:
-    void currentChannelChanged(void);
-    void countChanged();
-};
-
-#endif // MESSAGEMODEL_H
diff --git a/CustomModels/usermodel.cpp b/CustomModels/usermodel.cpp
index 1ff80e497cef5b841fbfae12c1ce73e9417e5d49..d009ce6980c8c934917987c0cd4837d5d611c4d8 100644
--- a/CustomModels/usermodel.cpp
+++ b/CustomModels/usermodel.cpp
@@ -33,29 +33,25 @@ QVariant UserModel::data( const QModelIndex &index, int role ) const
 bool UserModel::insertUser( QString channelId, QSharedPointer<RocketChatUser> user )
 {
 
-    if ( duplicateCheck.contains( user->getUserId() ) ) {
-        return false;
-    }
+    if ( !user.isNull() && !duplicateCheck.contains( user->getUserId() ) ){
 
-    auto values =  userMap.values( channelId );
-    int index = values.count();
 
-    if ( channelId == current ) {
-        beginInsertRows( QModelIndex(), index, index );
-    }
+        auto values =  userMap.values( channelId );
+        int index = values.count();
 
-    userMap.insert( channelId, user );
-    bool inserted = insertRow(index-1);
-    if(!inserted){
-        qDebug() << "row was not inserted";
-    }
-    if ( channelId == current ) {
-        endInsertRows();
-        emit countChanged();
-    }
+        if ( channelId == current ) {
+            beginInsertRows( QModelIndex(), index, index );
+        }
 
+        userMap.insert( channelId, user );
 
-    return true;
+        if ( channelId == current ) {
+            endInsertRows();
+            emit countChanged();
+        }
+    }else{
+        return true;
+    }
 }
 
 QString UserModel::getCurrent() const
diff --git a/CustomModels/usermodel.h b/CustomModels/usermodel.h
index e7afc48f3567f80ac6e30879d1dbfe3042aad8ff..9fec74de3e4fde9c2633c6520ebd9629291fcd1c 100644
--- a/CustomModels/usermodel.h
+++ b/CustomModels/usermodel.h
@@ -8,7 +8,7 @@
 #include "repos/entities/rocketchatuser.h"
 class UserModel: public QAbstractListModel
 {
-    Q_OBJECT
+        Q_OBJECT
     Q_PROPERTY(QString currentChannel READ getCurrent WRITE setCurrent NOTIFY currentChannelChanged)
     enum UserRoles {
           UserName = Qt::UserRole + 1,
diff --git a/android/.DS_Store b/android/.DS_Store
deleted file mode 100644
index 2d4e00008b81c1729677c9ecf6080f7a20286db5..0000000000000000000000000000000000000000
Binary files a/android/.DS_Store and /dev/null differ
diff --git a/android/.build/generated/fabric/res/debug/values/com_crashlytics_build_id.xml b/android/.build/generated/fabric/res/debug/values/com_crashlytics_build_id.xml
deleted file mode 100644
index 69e7183ef21595096b6109233bbcd60b638e7509..0000000000000000000000000000000000000000
--- a/android/.build/generated/fabric/res/debug/values/com_crashlytics_build_id.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="no"?>
-<resources xmlns:tools="http://schemas.android.com/tools">
-<!--
-  This file is automatically generated by Crashlytics to uniquely 
-  identify individual builds of your Android application.
-
-  Do NOT modify, delete, or commit to source control!
--->
-<string tools:ignore="UnusedResources,TypographyDashes" name="com.crashlytics.android.build_id" translatable="false">630ae148-5da2-464a-abf5-bd69b290d827</string>
-</resources>
diff --git a/android/.build/generated/mockable-android-25.jar b/android/.build/generated/mockable-android-25.jar
deleted file mode 100644
index c4f216952d24c1b58311a3126a2ea4cf2d5a8f3b..0000000000000000000000000000000000000000
Binary files a/android/.build/generated/mockable-android-25.jar and /dev/null differ
diff --git a/android/.build/generated/res/google-services/debug/values/values.xml b/android/.build/generated/res/google-services/debug/values/values.xml
deleted file mode 100644
index e22cbec8bb3163accd15c51b0b8a4d90cce82f47..0000000000000000000000000000000000000000
--- a/android/.build/generated/res/google-services/debug/values/values.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string name="default_web_client_id" translatable="false">586069884887-l6b3b2irohs39s2atqa3b9be8c0a120f.apps.googleusercontent.com</string>
-    <string name="firebase_database_url" translatable="false">https://ucom-1349.firebaseio.com</string>
-    <string name="gcm_defaultSenderId" translatable="false">586069884887</string>
-    <string name="google_api_key" translatable="false">AIzaSyASPowC1sMH_7wXsYTIlrDyrCoDtzm4TzY</string>
-    <string name="google_app_id" translatable="false">1:586069884887:android:10894ab106465b76</string>
-    <string name="google_crash_reporting_api_key" translatable="false">AIzaSyASPowC1sMH_7wXsYTIlrDyrCoDtzm4TzY</string>
-    <string name="google_storage_bucket" translatable="false">ucom-1349.appspot.com</string>
-</resources>
diff --git a/android/.build/generated/source/aidl/debug/org/kde/necessitas/ministro/IMinistro.java b/android/.build/generated/source/aidl/debug/org/kde/necessitas/ministro/IMinistro.java
deleted file mode 100644
index 13ae9dff039cd5168b5c7bd7737e72d636ff88cf..0000000000000000000000000000000000000000
--- a/android/.build/generated/source/aidl/debug/org/kde/necessitas/ministro/IMinistro.java
+++ /dev/null
@@ -1,135 +0,0 @@
-/*
- * This file is auto-generated.  DO NOT MODIFY.
- * Original file: /home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/src/org/kde/necessitas/ministro/IMinistro.aidl
- */
-package org.kde.necessitas.ministro;
-public interface IMinistro extends android.os.IInterface
-{
-/** Local-side IPC implementation stub class. */
-public static abstract class Stub extends android.os.Binder implements org.kde.necessitas.ministro.IMinistro
-{
-private static final java.lang.String DESCRIPTOR = "org.kde.necessitas.ministro.IMinistro";
-/** Construct the stub at attach it to the interface. */
-public Stub()
-{
-this.attachInterface(this, DESCRIPTOR);
-}
-/**
- * Cast an IBinder object into an org.kde.necessitas.ministro.IMinistro interface,
- * generating a proxy if needed.
- */
-public static org.kde.necessitas.ministro.IMinistro asInterface(android.os.IBinder obj)
-{
-if ((obj==null)) {
-return null;
-}
-android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR);
-if (((iin!=null)&&(iin instanceof org.kde.necessitas.ministro.IMinistro))) {
-return ((org.kde.necessitas.ministro.IMinistro)iin);
-}
-return new org.kde.necessitas.ministro.IMinistro.Stub.Proxy(obj);
-}
-@Override public android.os.IBinder asBinder()
-{
-return this;
-}
-@Override public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException
-{
-switch (code)
-{
-case INTERFACE_TRANSACTION:
-{
-reply.writeString(DESCRIPTOR);
-return true;
-}
-case TRANSACTION_requestLoader:
-{
-data.enforceInterface(DESCRIPTOR);
-org.kde.necessitas.ministro.IMinistroCallback _arg0;
-_arg0 = org.kde.necessitas.ministro.IMinistroCallback.Stub.asInterface(data.readStrongBinder());
-android.os.Bundle _arg1;
-if ((0!=data.readInt())) {
-_arg1 = android.os.Bundle.CREATOR.createFromParcel(data);
-}
-else {
-_arg1 = null;
-}
-this.requestLoader(_arg0, _arg1);
-reply.writeNoException();
-return true;
-}
-}
-return super.onTransact(code, data, reply, flags);
-}
-private static class Proxy implements org.kde.necessitas.ministro.IMinistro
-{
-private android.os.IBinder mRemote;
-Proxy(android.os.IBinder remote)
-{
-mRemote = remote;
-}
-@Override public android.os.IBinder asBinder()
-{
-return mRemote;
-}
-public java.lang.String getInterfaceDescriptor()
-{
-return DESCRIPTOR;
-}
-/**
-* Check/download required libs to run the application
-*
-* param callback  - interface used by Minsitro service to notify the client when the loader is ready
-* param parameters
-*            parameters fields:
-*                 * Key Name                   Key type         Explanations
-*                   "sources"                  StringArray      Sources list from where Ministro will download the libs. Make sure you are using ONLY secure locations.
-*                   "repository"               String           Overwrites the default Ministro repository. Possible values: default, stable, testing and unstable
-*                   "required.modules"         StringArray      Required modules by your application
-*                   "application.title"        String           Application name, used to show more informations to user
-*                   "qt.provider"              String           Qt libs provider, currently only "necessitas" is supported.
-*                   "minimum.ministro.api"     Integer          Minimum Ministro API level, used to check if Ministro service compatible with your application. Current API Level is 3 !
-*                   "minimum.qt.version"       Integer          Minimim Qt version (e.g. 0x040800, which means Qt 4.8.0, check http://qt-project.org/doc/qt-4.8/qtglobal.html#QT_VERSION)!
-*/
-@Override public void requestLoader(org.kde.necessitas.ministro.IMinistroCallback callback, android.os.Bundle parameters) throws android.os.RemoteException
-{
-android.os.Parcel _data = android.os.Parcel.obtain();
-android.os.Parcel _reply = android.os.Parcel.obtain();
-try {
-_data.writeInterfaceToken(DESCRIPTOR);
-_data.writeStrongBinder((((callback!=null))?(callback.asBinder()):(null)));
-if ((parameters!=null)) {
-_data.writeInt(1);
-parameters.writeToParcel(_data, 0);
-}
-else {
-_data.writeInt(0);
-}
-mRemote.transact(Stub.TRANSACTION_requestLoader, _data, _reply, 0);
-_reply.readException();
-}
-finally {
-_reply.recycle();
-_data.recycle();
-}
-}
-}
-static final int TRANSACTION_requestLoader = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
-}
-/**
-* Check/download required libs to run the application
-*
-* param callback  - interface used by Minsitro service to notify the client when the loader is ready
-* param parameters
-*            parameters fields:
-*                 * Key Name                   Key type         Explanations
-*                   "sources"                  StringArray      Sources list from where Ministro will download the libs. Make sure you are using ONLY secure locations.
-*                   "repository"               String           Overwrites the default Ministro repository. Possible values: default, stable, testing and unstable
-*                   "required.modules"         StringArray      Required modules by your application
-*                   "application.title"        String           Application name, used to show more informations to user
-*                   "qt.provider"              String           Qt libs provider, currently only "necessitas" is supported.
-*                   "minimum.ministro.api"     Integer          Minimum Ministro API level, used to check if Ministro service compatible with your application. Current API Level is 3 !
-*                   "minimum.qt.version"       Integer          Minimim Qt version (e.g. 0x040800, which means Qt 4.8.0, check http://qt-project.org/doc/qt-4.8/qtglobal.html#QT_VERSION)!
-*/
-public void requestLoader(org.kde.necessitas.ministro.IMinistroCallback callback, android.os.Bundle parameters) throws android.os.RemoteException;
-}
diff --git a/android/.build/generated/source/aidl/debug/org/kde/necessitas/ministro/IMinistroCallback.java b/android/.build/generated/source/aidl/debug/org/kde/necessitas/ministro/IMinistroCallback.java
deleted file mode 100644
index 7709cc78b2744c92795ed8541fe187fae31514ba..0000000000000000000000000000000000000000
--- a/android/.build/generated/source/aidl/debug/org/kde/necessitas/ministro/IMinistroCallback.java
+++ /dev/null
@@ -1,144 +0,0 @@
-/*
- * This file is auto-generated.  DO NOT MODIFY.
- * Original file: /home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/src/org/kde/necessitas/ministro/IMinistroCallback.aidl
- */
-package org.kde.necessitas.ministro;
-public interface IMinistroCallback extends android.os.IInterface
-{
-/** Local-side IPC implementation stub class. */
-public static abstract class Stub extends android.os.Binder implements org.kde.necessitas.ministro.IMinistroCallback
-{
-private static final java.lang.String DESCRIPTOR = "org.kde.necessitas.ministro.IMinistroCallback";
-/** Construct the stub at attach it to the interface. */
-public Stub()
-{
-this.attachInterface(this, DESCRIPTOR);
-}
-/**
- * Cast an IBinder object into an org.kde.necessitas.ministro.IMinistroCallback interface,
- * generating a proxy if needed.
- */
-public static org.kde.necessitas.ministro.IMinistroCallback asInterface(android.os.IBinder obj)
-{
-if ((obj==null)) {
-return null;
-}
-android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR);
-if (((iin!=null)&&(iin instanceof org.kde.necessitas.ministro.IMinistroCallback))) {
-return ((org.kde.necessitas.ministro.IMinistroCallback)iin);
-}
-return new org.kde.necessitas.ministro.IMinistroCallback.Stub.Proxy(obj);
-}
-@Override public android.os.IBinder asBinder()
-{
-return this;
-}
-@Override public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException
-{
-switch (code)
-{
-case INTERFACE_TRANSACTION:
-{
-reply.writeString(DESCRIPTOR);
-return true;
-}
-case TRANSACTION_loaderReady:
-{
-data.enforceInterface(DESCRIPTOR);
-android.os.Bundle _arg0;
-if ((0!=data.readInt())) {
-_arg0 = android.os.Bundle.CREATOR.createFromParcel(data);
-}
-else {
-_arg0 = null;
-}
-this.loaderReady(_arg0);
-return true;
-}
-}
-return super.onTransact(code, data, reply, flags);
-}
-private static class Proxy implements org.kde.necessitas.ministro.IMinistroCallback
-{
-private android.os.IBinder mRemote;
-Proxy(android.os.IBinder remote)
-{
-mRemote = remote;
-}
-@Override public android.os.IBinder asBinder()
-{
-return mRemote;
-}
-public java.lang.String getInterfaceDescriptor()
-{
-return DESCRIPTOR;
-}
-/**
-* This method is called by the Ministro service back into the application which
-* implements this interface.
-*
-* param in - loaderParams
-*            loaderParams fields:
-*                 * Key Name                   Key type         Explanations
-*                 * "error.code"               Integer          See below
-*                 * "error.message"            String           Missing if no error, otherwise will contain the error message translated into phone language where available.
-*                 * "dex.path"                 String           The list of jar/apk files containing classes and resources, needed to be passed to application DexClassLoader
-*                 * "lib.path"                 String           The list of directories containing native libraries; may be missing, needed to be passed to application DexClassLoader
-*                 * "loader.class.name"        String           Loader class name.
-*
-* "error.code" field possible errors:
-*  - 0 no error.
-*  - 1 incompatible Ministro version. Ministro needs to be upgraded.
-*  - 2 not all modules could be satisfy.
-*  - 3 invalid parameters
-*  - 4 invalid qt version
-*  - 5 download canceled
-*
-* The parameter contains additional fields which are used by the loader to start your application, so it must be passed to the loader.
-*/
-@Override public void loaderReady(android.os.Bundle loaderParams) throws android.os.RemoteException
-{
-android.os.Parcel _data = android.os.Parcel.obtain();
-try {
-_data.writeInterfaceToken(DESCRIPTOR);
-if ((loaderParams!=null)) {
-_data.writeInt(1);
-loaderParams.writeToParcel(_data, 0);
-}
-else {
-_data.writeInt(0);
-}
-mRemote.transact(Stub.TRANSACTION_loaderReady, _data, null, android.os.IBinder.FLAG_ONEWAY);
-}
-finally {
-_data.recycle();
-}
-}
-}
-static final int TRANSACTION_loaderReady = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
-}
-/**
-* This method is called by the Ministro service back into the application which
-* implements this interface.
-*
-* param in - loaderParams
-*            loaderParams fields:
-*                 * Key Name                   Key type         Explanations
-*                 * "error.code"               Integer          See below
-*                 * "error.message"            String           Missing if no error, otherwise will contain the error message translated into phone language where available.
-*                 * "dex.path"                 String           The list of jar/apk files containing classes and resources, needed to be passed to application DexClassLoader
-*                 * "lib.path"                 String           The list of directories containing native libraries; may be missing, needed to be passed to application DexClassLoader
-*                 * "loader.class.name"        String           Loader class name.
-*
-* "error.code" field possible errors:
-*  - 0 no error.
-*  - 1 incompatible Ministro version. Ministro needs to be upgraded.
-*  - 2 not all modules could be satisfy.
-*  - 3 invalid parameters
-*  - 4 invalid qt version
-*  - 5 download canceled
-*
-* The parameter contains additional fields which are used by the loader to start your application, so it must be passed to the loader.
-*/
-public void loaderReady(android.os.Bundle loaderParams) throws android.os.RemoteException;
-}
diff --git a/android/.build/generated/source/buildConfig/androidTest/debug/at/gv/ucom/test/BuildConfig.java b/android/.build/generated/source/buildConfig/androidTest/debug/at/gv/ucom/test/BuildConfig.java
deleted file mode 100644
index e36db7cc66836c91683fbd608666788980c761c0..0000000000000000000000000000000000000000
--- a/android/.build/generated/source/buildConfig/androidTest/debug/at/gv/ucom/test/BuildConfig.java
+++ /dev/null
@@ -1,13 +0,0 @@
-/**
- * Automatically generated file. DO NOT MODIFY
- */
-package at.gv.ucom.test;
-
-public final class BuildConfig {
-  public static final boolean DEBUG = Boolean.parseBoolean("true");
-  public static final String APPLICATION_ID = "at.gv.ucom.test";
-  public static final String BUILD_TYPE = "debug";
-  public static final String FLAVOR = "";
-  public static final int VERSION_CODE = -1;
-  public static final String VERSION_NAME = "";
-}
diff --git a/android/.build/generated/source/buildConfig/debug/at/gv/ucom/BuildConfig.java b/android/.build/generated/source/buildConfig/debug/at/gv/ucom/BuildConfig.java
deleted file mode 100644
index 36b3bff54b0ac2debffb12d3e96fb38f98cdc0d2..0000000000000000000000000000000000000000
--- a/android/.build/generated/source/buildConfig/debug/at/gv/ucom/BuildConfig.java
+++ /dev/null
@@ -1,13 +0,0 @@
-/**
- * Automatically generated file. DO NOT MODIFY
- */
-package at.gv.ucom;
-
-public final class BuildConfig {
-  public static final boolean DEBUG = Boolean.parseBoolean("true");
-  public static final String APPLICATION_ID = "at.gv.ucom";
-  public static final String BUILD_TYPE = "debug";
-  public static final String FLAVOR = "";
-  public static final int VERSION_CODE = 1;
-  public static final String VERSION_NAME = "0.5";
-}
diff --git a/android/.build/generated/source/r/debug/android/support/v7/appcompat/R.java b/android/.build/generated/source/r/debug/android/support/v7/appcompat/R.java
deleted file mode 100644
index af62368a491f4667ca589b3047e2a37b518192fd..0000000000000000000000000000000000000000
--- a/android/.build/generated/source/r/debug/android/support/v7/appcompat/R.java
+++ /dev/null
@@ -1,1458 +0,0 @@
-/* AUTO-GENERATED FILE.  DO NOT MODIFY.
- *
- * This class was automatically generated by the
- * aapt tool from the resource data it found.  It
- * should not be modified by hand.
- */
-package android.support.v7.appcompat;
-
-public final class R {
-	public static final class anim {
-		public static final int abc_fade_in = 0x7f040000;
-		public static final int abc_fade_out = 0x7f040001;
-		public static final int abc_grow_fade_in_from_bottom = 0x7f040002;
-		public static final int abc_popup_enter = 0x7f040003;
-		public static final int abc_popup_exit = 0x7f040004;
-		public static final int abc_shrink_fade_out_from_bottom = 0x7f040005;
-		public static final int abc_slide_in_bottom = 0x7f040006;
-		public static final int abc_slide_in_top = 0x7f040007;
-		public static final int abc_slide_out_bottom = 0x7f040008;
-		public static final int abc_slide_out_top = 0x7f040009;
-	}
-	public static final class attr {
-		public static final int actionBarDivider = 0x7f010041;
-		public static final int actionBarItemBackground = 0x7f010042;
-		public static final int actionBarPopupTheme = 0x7f01003b;
-		public static final int actionBarSize = 0x7f010040;
-		public static final int actionBarSplitStyle = 0x7f01003d;
-		public static final int actionBarStyle = 0x7f01003c;
-		public static final int actionBarTabBarStyle = 0x7f010037;
-		public static final int actionBarTabStyle = 0x7f010036;
-		public static final int actionBarTabTextStyle = 0x7f010038;
-		public static final int actionBarTheme = 0x7f01003e;
-		public static final int actionBarWidgetTheme = 0x7f01003f;
-		public static final int actionButtonStyle = 0x7f01005c;
-		public static final int actionDropDownStyle = 0x7f010058;
-		public static final int actionLayout = 0x7f0100b0;
-		public static final int actionMenuTextAppearance = 0x7f010043;
-		public static final int actionMenuTextColor = 0x7f010044;
-		public static final int actionModeBackground = 0x7f010047;
-		public static final int actionModeCloseButtonStyle = 0x7f010046;
-		public static final int actionModeCloseDrawable = 0x7f010049;
-		public static final int actionModeCopyDrawable = 0x7f01004b;
-		public static final int actionModeCutDrawable = 0x7f01004a;
-		public static final int actionModeFindDrawable = 0x7f01004f;
-		public static final int actionModePasteDrawable = 0x7f01004c;
-		public static final int actionModePopupWindowStyle = 0x7f010051;
-		public static final int actionModeSelectAllDrawable = 0x7f01004d;
-		public static final int actionModeShareDrawable = 0x7f01004e;
-		public static final int actionModeSplitBackground = 0x7f010048;
-		public static final int actionModeStyle = 0x7f010045;
-		public static final int actionModeWebSearchDrawable = 0x7f010050;
-		public static final int actionOverflowButtonStyle = 0x7f010039;
-		public static final int actionOverflowMenuStyle = 0x7f01003a;
-		public static final int actionProviderClass = 0x7f0100b2;
-		public static final int actionViewClass = 0x7f0100b1;
-		public static final int activityChooserViewStyle = 0x7f010064;
-		public static final int alertDialogButtonGroupStyle = 0x7f010088;
-		public static final int alertDialogCenterButtons = 0x7f010089;
-		public static final int alertDialogStyle = 0x7f010087;
-		public static final int alertDialogTheme = 0x7f01008a;
-		public static final int allowStacking = 0x7f01009d;
-		public static final int alpha = 0x7f01009e;
-		public static final int arrowHeadLength = 0x7f0100a5;
-		public static final int arrowShaftLength = 0x7f0100a6;
-		public static final int autoCompleteTextViewStyle = 0x7f01008f;
-		public static final int background = 0x7f01000c;
-		public static final int backgroundSplit = 0x7f01000e;
-		public static final int backgroundStacked = 0x7f01000d;
-		public static final int backgroundTint = 0x7f0100e8;
-		public static final int backgroundTintMode = 0x7f0100e9;
-		public static final int barLength = 0x7f0100a7;
-		public static final int borderlessButtonStyle = 0x7f010061;
-		public static final int buttonBarButtonStyle = 0x7f01005e;
-		public static final int buttonBarNegativeButtonStyle = 0x7f01008d;
-		public static final int buttonBarNeutralButtonStyle = 0x7f01008e;
-		public static final int buttonBarPositiveButtonStyle = 0x7f01008c;
-		public static final int buttonBarStyle = 0x7f01005d;
-		public static final int buttonGravity = 0x7f0100dd;
-		public static final int buttonPanelSideLayout = 0x7f010021;
-		public static final int buttonStyle = 0x7f010090;
-		public static final int buttonStyleSmall = 0x7f010091;
-		public static final int buttonTint = 0x7f01009f;
-		public static final int buttonTintMode = 0x7f0100a0;
-		public static final int checkboxStyle = 0x7f010092;
-		public static final int checkedTextViewStyle = 0x7f010093;
-		public static final int closeIcon = 0x7f0100bd;
-		public static final int closeItemLayout = 0x7f01001e;
-		public static final int collapseContentDescription = 0x7f0100df;
-		public static final int collapseIcon = 0x7f0100de;
-		public static final int color = 0x7f0100a1;
-		public static final int colorAccent = 0x7f01007f;
-		public static final int colorBackgroundFloating = 0x7f010086;
-		public static final int colorButtonNormal = 0x7f010083;
-		public static final int colorControlActivated = 0x7f010081;
-		public static final int colorControlHighlight = 0x7f010082;
-		public static final int colorControlNormal = 0x7f010080;
-		public static final int colorPrimary = 0x7f01007d;
-		public static final int colorPrimaryDark = 0x7f01007e;
-		public static final int colorSwitchThumbNormal = 0x7f010084;
-		public static final int commitIcon = 0x7f0100c2;
-		public static final int contentInsetEnd = 0x7f010017;
-		public static final int contentInsetEndWithActions = 0x7f01001b;
-		public static final int contentInsetLeft = 0x7f010018;
-		public static final int contentInsetRight = 0x7f010019;
-		public static final int contentInsetStart = 0x7f010016;
-		public static final int contentInsetStartWithNavigation = 0x7f01001a;
-		public static final int controlBackground = 0x7f010085;
-		public static final int customNavigationLayout = 0x7f01000f;
-		public static final int defaultQueryHint = 0x7f0100bc;
-		public static final int dialogPreferredPadding = 0x7f010056;
-		public static final int dialogTheme = 0x7f010055;
-		public static final int displayOptions = 0x7f010005;
-		public static final int divider = 0x7f01000b;
-		public static final int dividerHorizontal = 0x7f010063;
-		public static final int dividerPadding = 0x7f0100ab;
-		public static final int dividerVertical = 0x7f010062;
-		public static final int drawableSize = 0x7f0100a3;
-		public static final int drawerArrowStyle = 0x7f010000;
-		public static final int dropDownListViewStyle = 0x7f010075;
-		public static final int dropdownListPreferredItemHeight = 0x7f010059;
-		public static final int editTextBackground = 0x7f01006a;
-		public static final int editTextColor = 0x7f010069;
-		public static final int editTextStyle = 0x7f010094;
-		public static final int elevation = 0x7f01001c;
-		public static final int expandActivityOverflowButtonDrawable = 0x7f010020;
-		public static final int gapBetweenBars = 0x7f0100a4;
-		public static final int goIcon = 0x7f0100be;
-		public static final int height = 0x7f010001;
-		public static final int hideOnContentScroll = 0x7f010015;
-		public static final int homeAsUpIndicator = 0x7f01005b;
-		public static final int homeLayout = 0x7f010010;
-		public static final int icon = 0x7f010009;
-		public static final int iconifiedByDefault = 0x7f0100ba;
-		public static final int imageButtonStyle = 0x7f01006b;
-		public static final int indeterminateProgressStyle = 0x7f010012;
-		public static final int initialActivityCount = 0x7f01001f;
-		public static final int isLightTheme = 0x7f010002;
-		public static final int itemPadding = 0x7f010014;
-		public static final int layout = 0x7f0100b9;
-		public static final int listChoiceBackgroundIndicator = 0x7f01007c;
-		public static final int listDividerAlertDialog = 0x7f010057;
-		public static final int listItemLayout = 0x7f010025;
-		public static final int listLayout = 0x7f010022;
-		public static final int listMenuViewStyle = 0x7f01009c;
-		public static final int listPopupWindowStyle = 0x7f010076;
-		public static final int listPreferredItemHeight = 0x7f010070;
-		public static final int listPreferredItemHeightLarge = 0x7f010072;
-		public static final int listPreferredItemHeightSmall = 0x7f010071;
-		public static final int listPreferredItemPaddingLeft = 0x7f010073;
-		public static final int listPreferredItemPaddingRight = 0x7f010074;
-		public static final int logo = 0x7f01000a;
-		public static final int logoDescription = 0x7f0100e2;
-		public static final int maxButtonHeight = 0x7f0100dc;
-		public static final int measureWithLargestChild = 0x7f0100a9;
-		public static final int multiChoiceItemLayout = 0x7f010023;
-		public static final int navigationContentDescription = 0x7f0100e1;
-		public static final int navigationIcon = 0x7f0100e0;
-		public static final int navigationMode = 0x7f010004;
-		public static final int overlapAnchor = 0x7f0100b5;
-		public static final int paddingBottomNoButtons = 0x7f0100b7;
-		public static final int paddingEnd = 0x7f0100e6;
-		public static final int paddingStart = 0x7f0100e5;
-		public static final int paddingTopNoTitle = 0x7f0100b8;
-		public static final int panelBackground = 0x7f010079;
-		public static final int panelMenuListTheme = 0x7f01007b;
-		public static final int panelMenuListWidth = 0x7f01007a;
-		public static final int popupMenuStyle = 0x7f010067;
-		public static final int popupTheme = 0x7f01001d;
-		public static final int popupWindowStyle = 0x7f010068;
-		public static final int preserveIconSpacing = 0x7f0100b3;
-		public static final int progressBarPadding = 0x7f010013;
-		public static final int progressBarStyle = 0x7f010011;
-		public static final int queryBackground = 0x7f0100c4;
-		public static final int queryHint = 0x7f0100bb;
-		public static final int radioButtonStyle = 0x7f010095;
-		public static final int ratingBarStyle = 0x7f010096;
-		public static final int ratingBarStyleIndicator = 0x7f010097;
-		public static final int ratingBarStyleSmall = 0x7f010098;
-		public static final int searchHintIcon = 0x7f0100c0;
-		public static final int searchIcon = 0x7f0100bf;
-		public static final int searchViewStyle = 0x7f01006f;
-		public static final int seekBarStyle = 0x7f010099;
-		public static final int selectableItemBackground = 0x7f01005f;
-		public static final int selectableItemBackgroundBorderless = 0x7f010060;
-		public static final int showAsAction = 0x7f0100af;
-		public static final int showDividers = 0x7f0100aa;
-		public static final int showText = 0x7f0100d3;
-		public static final int showTitle = 0x7f010026;
-		public static final int singleChoiceItemLayout = 0x7f010024;
-		public static final int spinBars = 0x7f0100a2;
-		public static final int spinnerDropDownItemStyle = 0x7f01005a;
-		public static final int spinnerStyle = 0x7f01009a;
-		public static final int splitTrack = 0x7f0100d2;
-		public static final int srcCompat = 0x7f010027;
-		public static final int state_above_anchor = 0x7f0100b6;
-		public static final int subMenuArrow = 0x7f0100b4;
-		public static final int submitBackground = 0x7f0100c5;
-		public static final int subtitle = 0x7f010006;
-		public static final int subtitleTextAppearance = 0x7f0100d5;
-		public static final int subtitleTextColor = 0x7f0100e4;
-		public static final int subtitleTextStyle = 0x7f010008;
-		public static final int suggestionRowLayout = 0x7f0100c3;
-		public static final int switchMinWidth = 0x7f0100d0;
-		public static final int switchPadding = 0x7f0100d1;
-		public static final int switchStyle = 0x7f01009b;
-		public static final int switchTextAppearance = 0x7f0100cf;
-		public static final int textAllCaps = 0x7f01002b;
-		public static final int textAppearanceLargePopupMenu = 0x7f010052;
-		public static final int textAppearanceListItem = 0x7f010077;
-		public static final int textAppearanceListItemSmall = 0x7f010078;
-		public static final int textAppearancePopupMenuHeader = 0x7f010054;
-		public static final int textAppearanceSearchResultSubtitle = 0x7f01006d;
-		public static final int textAppearanceSearchResultTitle = 0x7f01006c;
-		public static final int textAppearanceSmallPopupMenu = 0x7f010053;
-		public static final int textColorAlertDialogListItem = 0x7f01008b;
-		public static final int textColorSearchUrl = 0x7f01006e;
-		public static final int theme = 0x7f0100e7;
-		public static final int thickness = 0x7f0100a8;
-		public static final int thumbTextPadding = 0x7f0100ce;
-		public static final int thumbTint = 0x7f0100c9;
-		public static final int thumbTintMode = 0x7f0100ca;
-		public static final int tickMark = 0x7f010028;
-		public static final int tickMarkTint = 0x7f010029;
-		public static final int tickMarkTintMode = 0x7f01002a;
-		public static final int title = 0x7f010003;
-		public static final int titleMargin = 0x7f0100d6;
-		public static final int titleMarginBottom = 0x7f0100da;
-		public static final int titleMarginEnd = 0x7f0100d8;
-		public static final int titleMarginStart = 0x7f0100d7;
-		public static final int titleMarginTop = 0x7f0100d9;
-		public static final int titleMargins = 0x7f0100db;
-		public static final int titleTextAppearance = 0x7f0100d4;
-		public static final int titleTextColor = 0x7f0100e3;
-		public static final int titleTextStyle = 0x7f010007;
-		public static final int toolbarNavigationButtonStyle = 0x7f010066;
-		public static final int toolbarStyle = 0x7f010065;
-		public static final int track = 0x7f0100cb;
-		public static final int trackTint = 0x7f0100cc;
-		public static final int trackTintMode = 0x7f0100cd;
-		public static final int voiceIcon = 0x7f0100c1;
-		public static final int windowActionBar = 0x7f01002c;
-		public static final int windowActionBarOverlay = 0x7f01002e;
-		public static final int windowActionModeOverlay = 0x7f01002f;
-		public static final int windowFixedHeightMajor = 0x7f010033;
-		public static final int windowFixedHeightMinor = 0x7f010031;
-		public static final int windowFixedWidthMajor = 0x7f010030;
-		public static final int windowFixedWidthMinor = 0x7f010032;
-		public static final int windowMinWidthMajor = 0x7f010034;
-		public static final int windowMinWidthMinor = 0x7f010035;
-		public static final int windowNoTitle = 0x7f01002d;
-	}
-	public static final class bool {
-		public static final int abc_action_bar_embed_tabs = 0x7f080000;
-		public static final int abc_allow_stacked_button_bar = 0x7f080001;
-		public static final int abc_config_actionMenuItemAllCaps = 0x7f080002;
-		public static final int abc_config_closeDialogWhenTouchOutside = 0x7f080003;
-		public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f080004;
-	}
-	public static final class color {
-		public static final int abc_background_cache_hint_selector_material_dark = 0x7f090043;
-		public static final int abc_background_cache_hint_selector_material_light = 0x7f090044;
-		public static final int abc_btn_colored_borderless_text_material = 0x7f090045;
-		public static final int abc_btn_colored_text_material = 0x7f090046;
-		public static final int abc_color_highlight_material = 0x7f090047;
-		public static final int abc_hint_foreground_material_dark = 0x7f090048;
-		public static final int abc_hint_foreground_material_light = 0x7f090049;
-		public static final int abc_input_method_navigation_guard = 0x7f090001;
-		public static final int abc_primary_text_disable_only_material_dark = 0x7f09004a;
-		public static final int abc_primary_text_disable_only_material_light = 0x7f09004b;
-		public static final int abc_primary_text_material_dark = 0x7f09004c;
-		public static final int abc_primary_text_material_light = 0x7f09004d;
-		public static final int abc_search_url_text = 0x7f09004e;
-		public static final int abc_search_url_text_normal = 0x7f090002;
-		public static final int abc_search_url_text_pressed = 0x7f090003;
-		public static final int abc_search_url_text_selected = 0x7f090004;
-		public static final int abc_secondary_text_material_dark = 0x7f09004f;
-		public static final int abc_secondary_text_material_light = 0x7f090050;
-		public static final int abc_tint_btn_checkable = 0x7f090051;
-		public static final int abc_tint_default = 0x7f090052;
-		public static final int abc_tint_edittext = 0x7f090053;
-		public static final int abc_tint_seek_thumb = 0x7f090054;
-		public static final int abc_tint_spinner = 0x7f090055;
-		public static final int abc_tint_switch_thumb = 0x7f090056;
-		public static final int abc_tint_switch_track = 0x7f090057;
-		public static final int accent_material_dark = 0x7f090005;
-		public static final int accent_material_light = 0x7f090006;
-		public static final int background_floating_material_dark = 0x7f090007;
-		public static final int background_floating_material_light = 0x7f090008;
-		public static final int background_material_dark = 0x7f090009;
-		public static final int background_material_light = 0x7f09000a;
-		public static final int bright_foreground_disabled_material_dark = 0x7f09000b;
-		public static final int bright_foreground_disabled_material_light = 0x7f09000c;
-		public static final int bright_foreground_inverse_material_dark = 0x7f09000d;
-		public static final int bright_foreground_inverse_material_light = 0x7f09000e;
-		public static final int bright_foreground_material_dark = 0x7f09000f;
-		public static final int bright_foreground_material_light = 0x7f090010;
-		public static final int button_material_dark = 0x7f090011;
-		public static final int button_material_light = 0x7f090012;
-		public static final int dim_foreground_disabled_material_dark = 0x7f09001b;
-		public static final int dim_foreground_disabled_material_light = 0x7f09001c;
-		public static final int dim_foreground_material_dark = 0x7f09001d;
-		public static final int dim_foreground_material_light = 0x7f09001e;
-		public static final int foreground_material_dark = 0x7f09001f;
-		public static final int foreground_material_light = 0x7f090020;
-		public static final int highlighted_text_material_dark = 0x7f090021;
-		public static final int highlighted_text_material_light = 0x7f090022;
-		public static final int material_blue_grey_800 = 0x7f090023;
-		public static final int material_blue_grey_900 = 0x7f090024;
-		public static final int material_blue_grey_950 = 0x7f090025;
-		public static final int material_deep_teal_200 = 0x7f090026;
-		public static final int material_deep_teal_500 = 0x7f090027;
-		public static final int material_grey_100 = 0x7f090028;
-		public static final int material_grey_300 = 0x7f090029;
-		public static final int material_grey_50 = 0x7f09002a;
-		public static final int material_grey_600 = 0x7f09002b;
-		public static final int material_grey_800 = 0x7f09002c;
-		public static final int material_grey_850 = 0x7f09002d;
-		public static final int material_grey_900 = 0x7f09002e;
-		public static final int notification_action_color_filter = 0x7f090000;
-		public static final int notification_icon_bg_color = 0x7f09002f;
-		public static final int notification_material_background_media_default_color = 0x7f090030;
-		public static final int primary_dark_material_dark = 0x7f090031;
-		public static final int primary_dark_material_light = 0x7f090032;
-		public static final int primary_material_dark = 0x7f090033;
-		public static final int primary_material_light = 0x7f090034;
-		public static final int primary_text_default_material_dark = 0x7f090035;
-		public static final int primary_text_default_material_light = 0x7f090036;
-		public static final int primary_text_disabled_material_dark = 0x7f090037;
-		public static final int primary_text_disabled_material_light = 0x7f090038;
-		public static final int ripple_material_dark = 0x7f090039;
-		public static final int ripple_material_light = 0x7f09003a;
-		public static final int secondary_text_default_material_dark = 0x7f09003b;
-		public static final int secondary_text_default_material_light = 0x7f09003c;
-		public static final int secondary_text_disabled_material_dark = 0x7f09003d;
-		public static final int secondary_text_disabled_material_light = 0x7f09003e;
-		public static final int switch_thumb_disabled_material_dark = 0x7f09003f;
-		public static final int switch_thumb_disabled_material_light = 0x7f090040;
-		public static final int switch_thumb_material_dark = 0x7f09005b;
-		public static final int switch_thumb_material_light = 0x7f09005c;
-		public static final int switch_thumb_normal_material_dark = 0x7f090041;
-		public static final int switch_thumb_normal_material_light = 0x7f090042;
-	}
-	public static final class dimen {
-		public static final int abc_action_bar_content_inset_material = 0x7f06000c;
-		public static final int abc_action_bar_content_inset_with_nav = 0x7f06000d;
-		public static final int abc_action_bar_default_height_material = 0x7f060001;
-		public static final int abc_action_bar_default_padding_end_material = 0x7f06000e;
-		public static final int abc_action_bar_default_padding_start_material = 0x7f06000f;
-		public static final int abc_action_bar_elevation_material = 0x7f060016;
-		public static final int abc_action_bar_icon_vertical_padding_material = 0x7f060017;
-		public static final int abc_action_bar_overflow_padding_end_material = 0x7f060018;
-		public static final int abc_action_bar_overflow_padding_start_material = 0x7f060019;
-		public static final int abc_action_bar_progress_bar_size = 0x7f060002;
-		public static final int abc_action_bar_stacked_max_height = 0x7f06001a;
-		public static final int abc_action_bar_stacked_tab_max_width = 0x7f06001b;
-		public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f06001c;
-		public static final int abc_action_bar_subtitle_top_margin_material = 0x7f06001d;
-		public static final int abc_action_button_min_height_material = 0x7f06001e;
-		public static final int abc_action_button_min_width_material = 0x7f06001f;
-		public static final int abc_action_button_min_width_overflow_material = 0x7f060020;
-		public static final int abc_alert_dialog_button_bar_height = 0x7f060000;
-		public static final int abc_button_inset_horizontal_material = 0x7f060021;
-		public static final int abc_button_inset_vertical_material = 0x7f060022;
-		public static final int abc_button_padding_horizontal_material = 0x7f060023;
-		public static final int abc_button_padding_vertical_material = 0x7f060024;
-		public static final int abc_cascading_menus_min_smallest_width = 0x7f060025;
-		public static final int abc_config_prefDialogWidth = 0x7f060005;
-		public static final int abc_control_corner_material = 0x7f060026;
-		public static final int abc_control_inset_material = 0x7f060027;
-		public static final int abc_control_padding_material = 0x7f060028;
-		public static final int abc_dialog_fixed_height_major = 0x7f060006;
-		public static final int abc_dialog_fixed_height_minor = 0x7f060007;
-		public static final int abc_dialog_fixed_width_major = 0x7f060008;
-		public static final int abc_dialog_fixed_width_minor = 0x7f060009;
-		public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f060029;
-		public static final int abc_dialog_list_padding_top_no_title = 0x7f06002a;
-		public static final int abc_dialog_min_width_major = 0x7f06000a;
-		public static final int abc_dialog_min_width_minor = 0x7f06000b;
-		public static final int abc_dialog_padding_material = 0x7f06002b;
-		public static final int abc_dialog_padding_top_material = 0x7f06002c;
-		public static final int abc_dialog_title_divider_material = 0x7f06002d;
-		public static final int abc_disabled_alpha_material_dark = 0x7f06002e;
-		public static final int abc_disabled_alpha_material_light = 0x7f06002f;
-		public static final int abc_dropdownitem_icon_width = 0x7f060030;
-		public static final int abc_dropdownitem_text_padding_left = 0x7f060031;
-		public static final int abc_dropdownitem_text_padding_right = 0x7f060032;
-		public static final int abc_edit_text_inset_bottom_material = 0x7f060033;
-		public static final int abc_edit_text_inset_horizontal_material = 0x7f060034;
-		public static final int abc_edit_text_inset_top_material = 0x7f060035;
-		public static final int abc_floating_window_z = 0x7f060036;
-		public static final int abc_list_item_padding_horizontal_material = 0x7f060037;
-		public static final int abc_panel_menu_list_width = 0x7f060038;
-		public static final int abc_progress_bar_height_material = 0x7f060039;
-		public static final int abc_search_view_preferred_height = 0x7f06003a;
-		public static final int abc_search_view_preferred_width = 0x7f06003b;
-		public static final int abc_seekbar_track_background_height_material = 0x7f06003c;
-		public static final int abc_seekbar_track_progress_height_material = 0x7f06003d;
-		public static final int abc_select_dialog_padding_start_material = 0x7f06003e;
-		public static final int abc_switch_padding = 0x7f060011;
-		public static final int abc_text_size_body_1_material = 0x7f06003f;
-		public static final int abc_text_size_body_2_material = 0x7f060040;
-		public static final int abc_text_size_button_material = 0x7f060041;
-		public static final int abc_text_size_caption_material = 0x7f060042;
-		public static final int abc_text_size_display_1_material = 0x7f060043;
-		public static final int abc_text_size_display_2_material = 0x7f060044;
-		public static final int abc_text_size_display_3_material = 0x7f060045;
-		public static final int abc_text_size_display_4_material = 0x7f060046;
-		public static final int abc_text_size_headline_material = 0x7f060047;
-		public static final int abc_text_size_large_material = 0x7f060048;
-		public static final int abc_text_size_medium_material = 0x7f060049;
-		public static final int abc_text_size_menu_header_material = 0x7f06004a;
-		public static final int abc_text_size_menu_material = 0x7f06004b;
-		public static final int abc_text_size_small_material = 0x7f06004c;
-		public static final int abc_text_size_subhead_material = 0x7f06004d;
-		public static final int abc_text_size_subtitle_material_toolbar = 0x7f060003;
-		public static final int abc_text_size_title_material = 0x7f06004e;
-		public static final int abc_text_size_title_material_toolbar = 0x7f060004;
-		public static final int disabled_alpha_material_dark = 0x7f060050;
-		public static final int disabled_alpha_material_light = 0x7f060051;
-		public static final int highlight_alpha_material_colored = 0x7f060052;
-		public static final int highlight_alpha_material_dark = 0x7f060053;
-		public static final int highlight_alpha_material_light = 0x7f060054;
-		public static final int hint_alpha_material_dark = 0x7f060055;
-		public static final int hint_alpha_material_light = 0x7f060056;
-		public static final int hint_pressed_alpha_material_dark = 0x7f060057;
-		public static final int hint_pressed_alpha_material_light = 0x7f060058;
-		public static final int notification_action_icon_size = 0x7f060059;
-		public static final int notification_action_text_size = 0x7f06005a;
-		public static final int notification_big_circle_margin = 0x7f06005b;
-		public static final int notification_content_margin_start = 0x7f060012;
-		public static final int notification_large_icon_height = 0x7f06005c;
-		public static final int notification_large_icon_width = 0x7f06005d;
-		public static final int notification_main_column_padding_top = 0x7f060013;
-		public static final int notification_media_narrow_margin = 0x7f060014;
-		public static final int notification_right_icon_size = 0x7f06005e;
-		public static final int notification_right_side_padding_top = 0x7f060010;
-		public static final int notification_small_icon_background_padding = 0x7f06005f;
-		public static final int notification_small_icon_size_as_large = 0x7f060060;
-		public static final int notification_subtext_size = 0x7f060061;
-		public static final int notification_top_pad = 0x7f060062;
-		public static final int notification_top_pad_large_text = 0x7f060063;
-	}
-	public static final class drawable {
-		public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
-		public static final int abc_action_bar_item_background_material = 0x7f020001;
-		public static final int abc_btn_borderless_material = 0x7f020002;
-		public static final int abc_btn_check_material = 0x7f020003;
-		public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020004;
-		public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020005;
-		public static final int abc_btn_colored_material = 0x7f020006;
-		public static final int abc_btn_default_mtrl_shape = 0x7f020007;
-		public static final int abc_btn_radio_material = 0x7f020008;
-		public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;
-		public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;
-		public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000b;
-		public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000c;
-		public static final int abc_cab_background_internal_bg = 0x7f02000d;
-		public static final int abc_cab_background_top_material = 0x7f02000e;
-		public static final int abc_cab_background_top_mtrl_alpha = 0x7f02000f;
-		public static final int abc_control_background_material = 0x7f020010;
-		public static final int abc_dialog_material_background = 0x7f020011;
-		public static final int abc_edit_text_material = 0x7f020012;
-		public static final int abc_ic_ab_back_material = 0x7f020013;
-		public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f020014;
-		public static final int abc_ic_clear_material = 0x7f020015;
-		public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020016;
-		public static final int abc_ic_go_search_api_material = 0x7f020017;
-		public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f020018;
-		public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f020019;
-		public static final int abc_ic_menu_overflow_material = 0x7f02001a;
-		public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001b;
-		public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001c;
-		public static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001d;
-		public static final int abc_ic_search_api_material = 0x7f02001e;
-		public static final int abc_ic_star_black_16dp = 0x7f02001f;
-		public static final int abc_ic_star_black_36dp = 0x7f020020;
-		public static final int abc_ic_star_black_48dp = 0x7f020021;
-		public static final int abc_ic_star_half_black_16dp = 0x7f020022;
-		public static final int abc_ic_star_half_black_36dp = 0x7f020023;
-		public static final int abc_ic_star_half_black_48dp = 0x7f020024;
-		public static final int abc_ic_voice_search_api_material = 0x7f020025;
-		public static final int abc_item_background_holo_dark = 0x7f020026;
-		public static final int abc_item_background_holo_light = 0x7f020027;
-		public static final int abc_list_divider_mtrl_alpha = 0x7f020028;
-		public static final int abc_list_focused_holo = 0x7f020029;
-		public static final int abc_list_longpressed_holo = 0x7f02002a;
-		public static final int abc_list_pressed_holo_dark = 0x7f02002b;
-		public static final int abc_list_pressed_holo_light = 0x7f02002c;
-		public static final int abc_list_selector_background_transition_holo_dark = 0x7f02002d;
-		public static final int abc_list_selector_background_transition_holo_light = 0x7f02002e;
-		public static final int abc_list_selector_disabled_holo_dark = 0x7f02002f;
-		public static final int abc_list_selector_disabled_holo_light = 0x7f020030;
-		public static final int abc_list_selector_holo_dark = 0x7f020031;
-		public static final int abc_list_selector_holo_light = 0x7f020032;
-		public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f020033;
-		public static final int abc_popup_background_mtrl_mult = 0x7f020034;
-		public static final int abc_ratingbar_indicator_material = 0x7f020035;
-		public static final int abc_ratingbar_material = 0x7f020036;
-		public static final int abc_ratingbar_small_material = 0x7f020037;
-		public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f020038;
-		public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f020039;
-		public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f02003a;
-		public static final int abc_scrubber_primary_mtrl_alpha = 0x7f02003b;
-		public static final int abc_scrubber_track_mtrl_alpha = 0x7f02003c;
-		public static final int abc_seekbar_thumb_material = 0x7f02003d;
-		public static final int abc_seekbar_tick_mark_material = 0x7f02003e;
-		public static final int abc_seekbar_track_material = 0x7f02003f;
-		public static final int abc_spinner_mtrl_am_alpha = 0x7f020040;
-		public static final int abc_spinner_textfield_background_material = 0x7f020041;
-		public static final int abc_switch_thumb_material = 0x7f020042;
-		public static final int abc_switch_track_mtrl_alpha = 0x7f020043;
-		public static final int abc_tab_indicator_material = 0x7f020044;
-		public static final int abc_tab_indicator_mtrl_alpha = 0x7f020045;
-		public static final int abc_text_cursor_material = 0x7f020046;
-		public static final int abc_text_select_handle_left_mtrl_dark = 0x7f020047;
-		public static final int abc_text_select_handle_left_mtrl_light = 0x7f020048;
-		public static final int abc_text_select_handle_middle_mtrl_dark = 0x7f020049;
-		public static final int abc_text_select_handle_middle_mtrl_light = 0x7f02004a;
-		public static final int abc_text_select_handle_right_mtrl_dark = 0x7f02004b;
-		public static final int abc_text_select_handle_right_mtrl_light = 0x7f02004c;
-		public static final int abc_textfield_activated_mtrl_alpha = 0x7f02004d;
-		public static final int abc_textfield_default_mtrl_alpha = 0x7f02004e;
-		public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f02004f;
-		public static final int abc_textfield_search_default_mtrl_alpha = 0x7f020050;
-		public static final int abc_textfield_search_material = 0x7f020051;
-		public static final int abc_vector_test = 0x7f020052;
-		public static final int notification_action_background = 0x7f02006a;
-		public static final int notification_bg = 0x7f02006b;
-		public static final int notification_bg_low = 0x7f02006c;
-		public static final int notification_bg_low_normal = 0x7f02006d;
-		public static final int notification_bg_low_pressed = 0x7f02006e;
-		public static final int notification_bg_normal = 0x7f02006f;
-		public static final int notification_bg_normal_pressed = 0x7f020070;
-		public static final int notification_icon_background = 0x7f020072;
-		public static final int notification_template_icon_bg = 0x7f020076;
-		public static final int notification_template_icon_low_bg = 0x7f020077;
-		public static final int notification_tile_bg = 0x7f020073;
-		public static final int notify_panel_notification_icon_bg = 0x7f020074;
-	}
-	public static final class id {
-		public static final int action0 = 0x7f0b0063;
-		public static final int action_bar = 0x7f0b0050;
-		public static final int action_bar_activity_content = 0x7f0b0000;
-		public static final int action_bar_container = 0x7f0b004f;
-		public static final int action_bar_root = 0x7f0b004b;
-		public static final int action_bar_spinner = 0x7f0b0001;
-		public static final int action_bar_subtitle = 0x7f0b002e;
-		public static final int action_bar_title = 0x7f0b002d;
-		public static final int action_container = 0x7f0b0060;
-		public static final int action_context_bar = 0x7f0b0051;
-		public static final int action_divider = 0x7f0b0067;
-		public static final int action_image = 0x7f0b0061;
-		public static final int action_menu_divider = 0x7f0b0002;
-		public static final int action_menu_presenter = 0x7f0b0003;
-		public static final int action_mode_bar = 0x7f0b004d;
-		public static final int action_mode_bar_stub = 0x7f0b004c;
-		public static final int action_mode_close_button = 0x7f0b002f;
-		public static final int action_text = 0x7f0b0062;
-		public static final int actions = 0x7f0b0070;
-		public static final int activity_chooser_view_content = 0x7f0b0030;
-		public static final int add = 0x7f0b0014;
-		public static final int alertTitle = 0x7f0b0044;
-		public static final int always = 0x7f0b0020;
-		public static final int beginning = 0x7f0b001b;
-		public static final int bottom = 0x7f0b002b;
-		public static final int buttonPanel = 0x7f0b0037;
-		public static final int cancel_action = 0x7f0b0064;
-		public static final int checkbox = 0x7f0b0047;
-		public static final int chronometer = 0x7f0b006c;
-		public static final int collapseActionView = 0x7f0b0021;
-		public static final int contentPanel = 0x7f0b003a;
-		public static final int custom = 0x7f0b0041;
-		public static final int customPanel = 0x7f0b0040;
-		public static final int decor_content_parent = 0x7f0b004e;
-		public static final int default_activity_button = 0x7f0b0033;
-		public static final int disableHome = 0x7f0b000d;
-		public static final int edit_query = 0x7f0b0052;
-		public static final int end = 0x7f0b001c;
-		public static final int end_padder = 0x7f0b0076;
-		public static final int expand_activities_button = 0x7f0b0031;
-		public static final int expanded_menu = 0x7f0b0046;
-		public static final int home = 0x7f0b0005;
-		public static final int homeAsUp = 0x7f0b000e;
-		public static final int icon = 0x7f0b0035;
-		public static final int icon_group = 0x7f0b0071;
-		public static final int ifRoom = 0x7f0b0022;
-		public static final int image = 0x7f0b0032;
-		public static final int info = 0x7f0b006d;
-		public static final int line1 = 0x7f0b0072;
-		public static final int line3 = 0x7f0b0074;
-		public static final int listMode = 0x7f0b000a;
-		public static final int list_item = 0x7f0b0034;
-		public static final int media_actions = 0x7f0b0066;
-		public static final int middle = 0x7f0b001d;
-		public static final int multiply = 0x7f0b0015;
-		public static final int never = 0x7f0b0023;
-		public static final int none = 0x7f0b000f;
-		public static final int normal = 0x7f0b000b;
-		public static final int notification_background = 0x7f0b006e;
-		public static final int notification_main_column = 0x7f0b0069;
-		public static final int notification_main_column_container = 0x7f0b0068;
-		public static final int parentPanel = 0x7f0b0039;
-		public static final int progress_circular = 0x7f0b0006;
-		public static final int progress_horizontal = 0x7f0b0007;
-		public static final int radio = 0x7f0b0049;
-		public static final int right_icon = 0x7f0b006f;
-		public static final int right_side = 0x7f0b006a;
-		public static final int screen = 0x7f0b0016;
-		public static final int scrollIndicatorDown = 0x7f0b003f;
-		public static final int scrollIndicatorUp = 0x7f0b003b;
-		public static final int scrollView = 0x7f0b003c;
-		public static final int search_badge = 0x7f0b0054;
-		public static final int search_bar = 0x7f0b0053;
-		public static final int search_button = 0x7f0b0055;
-		public static final int search_close_btn = 0x7f0b005a;
-		public static final int search_edit_frame = 0x7f0b0056;
-		public static final int search_go_btn = 0x7f0b005c;
-		public static final int search_mag_icon = 0x7f0b0057;
-		public static final int search_plate = 0x7f0b0058;
-		public static final int search_src_text = 0x7f0b0059;
-		public static final int search_voice_btn = 0x7f0b005d;
-		public static final int select_dialog_listview = 0x7f0b005e;
-		public static final int shortcut = 0x7f0b0048;
-		public static final int showCustom = 0x7f0b0010;
-		public static final int showHome = 0x7f0b0011;
-		public static final int showTitle = 0x7f0b0012;
-		public static final int spacer = 0x7f0b0038;
-		public static final int split_action_bar = 0x7f0b0008;
-		public static final int src_atop = 0x7f0b0017;
-		public static final int src_in = 0x7f0b0018;
-		public static final int src_over = 0x7f0b0019;
-		public static final int status_bar_latest_event_content = 0x7f0b0065;
-		public static final int submenuarrow = 0x7f0b004a;
-		public static final int submit_area = 0x7f0b005b;
-		public static final int tabMode = 0x7f0b000c;
-		public static final int text = 0x7f0b0075;
-		public static final int text2 = 0x7f0b0073;
-		public static final int textSpacerNoButtons = 0x7f0b003e;
-		public static final int textSpacerNoTitle = 0x7f0b003d;
-		public static final int time = 0x7f0b006b;
-		public static final int title = 0x7f0b0036;
-		public static final int titleDividerNoCustom = 0x7f0b0045;
-		public static final int title_template = 0x7f0b0043;
-		public static final int top = 0x7f0b002c;
-		public static final int topPanel = 0x7f0b0042;
-		public static final int up = 0x7f0b0009;
-		public static final int useLogo = 0x7f0b0013;
-		public static final int withText = 0x7f0b0024;
-		public static final int wrap_content = 0x7f0b001a;
-	}
-	public static final class integer {
-		public static final int abc_config_activityDefaultDur = 0x7f0c0000;
-		public static final int abc_config_activityShortDur = 0x7f0c0001;
-		public static final int cancel_button_image_alpha = 0x7f0c0002;
-		public static final int status_bar_notification_info_maxnum = 0x7f0c0004;
-	}
-	public static final class layout {
-		public static final int abc_action_bar_title_item = 0x7f030000;
-		public static final int abc_action_bar_up_container = 0x7f030001;
-		public static final int abc_action_bar_view_list_nav_layout = 0x7f030002;
-		public static final int abc_action_menu_item_layout = 0x7f030003;
-		public static final int abc_action_menu_layout = 0x7f030004;
-		public static final int abc_action_mode_bar = 0x7f030005;
-		public static final int abc_action_mode_close_item_material = 0x7f030006;
-		public static final int abc_activity_chooser_view = 0x7f030007;
-		public static final int abc_activity_chooser_view_list_item = 0x7f030008;
-		public static final int abc_alert_dialog_button_bar_material = 0x7f030009;
-		public static final int abc_alert_dialog_material = 0x7f03000a;
-		public static final int abc_alert_dialog_title_material = 0x7f03000b;
-		public static final int abc_dialog_title_material = 0x7f03000c;
-		public static final int abc_expanded_menu_layout = 0x7f03000d;
-		public static final int abc_list_menu_item_checkbox = 0x7f03000e;
-		public static final int abc_list_menu_item_icon = 0x7f03000f;
-		public static final int abc_list_menu_item_layout = 0x7f030010;
-		public static final int abc_list_menu_item_radio = 0x7f030011;
-		public static final int abc_popup_menu_header_item_layout = 0x7f030012;
-		public static final int abc_popup_menu_item_layout = 0x7f030013;
-		public static final int abc_screen_content_include = 0x7f030014;
-		public static final int abc_screen_simple = 0x7f030015;
-		public static final int abc_screen_simple_overlay_action_mode = 0x7f030016;
-		public static final int abc_screen_toolbar = 0x7f030017;
-		public static final int abc_search_dropdown_item_icons_2line = 0x7f030018;
-		public static final int abc_search_view = 0x7f030019;
-		public static final int abc_select_dialog_material = 0x7f03001a;
-		public static final int notification_action = 0x7f03001c;
-		public static final int notification_action_tombstone = 0x7f03001d;
-		public static final int notification_media_action = 0x7f03001e;
-		public static final int notification_media_cancel_action = 0x7f03001f;
-		public static final int notification_template_big_media = 0x7f030020;
-		public static final int notification_template_big_media_custom = 0x7f030021;
-		public static final int notification_template_big_media_narrow = 0x7f030022;
-		public static final int notification_template_big_media_narrow_custom = 0x7f030023;
-		public static final int notification_template_custom_big = 0x7f030024;
-		public static final int notification_template_icon_group = 0x7f030025;
-		public static final int notification_template_lines_media = 0x7f030026;
-		public static final int notification_template_media = 0x7f030027;
-		public static final int notification_template_media_custom = 0x7f030028;
-		public static final int notification_template_part_chronometer = 0x7f030029;
-		public static final int notification_template_part_time = 0x7f03002a;
-		public static final int select_dialog_item_material = 0x7f03002b;
-		public static final int select_dialog_multichoice_material = 0x7f03002c;
-		public static final int select_dialog_singlechoice_material = 0x7f03002d;
-		public static final int support_simple_spinner_dropdown_item = 0x7f03002f;
-	}
-	public static final class string {
-		public static final int abc_action_bar_home_description = 0x7f050000;
-		public static final int abc_action_bar_home_description_format = 0x7f050001;
-		public static final int abc_action_bar_home_subtitle_description_format = 0x7f050002;
-		public static final int abc_action_bar_up_description = 0x7f050003;
-		public static final int abc_action_menu_overflow_description = 0x7f050004;
-		public static final int abc_action_mode_done = 0x7f050005;
-		public static final int abc_activity_chooser_view_see_all = 0x7f050006;
-		public static final int abc_activitychooserview_choose_application = 0x7f050007;
-		public static final int abc_capital_off = 0x7f050008;
-		public static final int abc_capital_on = 0x7f050009;
-		public static final int abc_font_family_body_1_material = 0x7f05002a;
-		public static final int abc_font_family_body_2_material = 0x7f05002b;
-		public static final int abc_font_family_button_material = 0x7f05002c;
-		public static final int abc_font_family_caption_material = 0x7f05002d;
-		public static final int abc_font_family_display_1_material = 0x7f05002e;
-		public static final int abc_font_family_display_2_material = 0x7f05002f;
-		public static final int abc_font_family_display_3_material = 0x7f050030;
-		public static final int abc_font_family_display_4_material = 0x7f050031;
-		public static final int abc_font_family_headline_material = 0x7f050032;
-		public static final int abc_font_family_menu_material = 0x7f050033;
-		public static final int abc_font_family_subhead_material = 0x7f050034;
-		public static final int abc_font_family_title_material = 0x7f050035;
-		public static final int abc_search_hint = 0x7f05000a;
-		public static final int abc_searchview_description_clear = 0x7f05000b;
-		public static final int abc_searchview_description_query = 0x7f05000c;
-		public static final int abc_searchview_description_search = 0x7f05000d;
-		public static final int abc_searchview_description_submit = 0x7f05000e;
-		public static final int abc_searchview_description_voice = 0x7f05000f;
-		public static final int abc_shareactionprovider_share_with = 0x7f050010;
-		public static final int abc_shareactionprovider_share_with_application = 0x7f050011;
-		public static final int abc_toolbar_collapse_description = 0x7f050012;
-		public static final int search_menu_title = 0x7f050024;
-		public static final int status_bar_notification_info_overflow = 0x7f050025;
-	}
-	public static final class style {
-		public static final int AlertDialog_AppCompat = 0x7f07009f;
-		public static final int AlertDialog_AppCompat_Light = 0x7f0700a0;
-		public static final int Animation_AppCompat_Dialog = 0x7f0700a1;
-		public static final int Animation_AppCompat_DropDownUp = 0x7f0700a2;
-		public static final int Base_AlertDialog_AppCompat = 0x7f0700a3;
-		public static final int Base_AlertDialog_AppCompat_Light = 0x7f0700a4;
-		public static final int Base_Animation_AppCompat_Dialog = 0x7f0700a5;
-		public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0700a6;
-		public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0700a8;
-		public static final int Base_DialogWindowTitle_AppCompat = 0x7f0700a7;
-		public static final int Base_TextAppearance_AppCompat = 0x7f07003f;
-		public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f070040;
-		public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f070041;
-		public static final int Base_TextAppearance_AppCompat_Button = 0x7f070027;
-		public static final int Base_TextAppearance_AppCompat_Caption = 0x7f070042;
-		public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f070043;
-		public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f070044;
-		public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f070045;
-		public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f070046;
-		public static final int Base_TextAppearance_AppCompat_Headline = 0x7f070047;
-		public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f07000b;
-		public static final int Base_TextAppearance_AppCompat_Large = 0x7f070048;
-		public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f07000c;
-		public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f070049;
-		public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f07004a;
-		public static final int Base_TextAppearance_AppCompat_Medium = 0x7f07004b;
-		public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f07000d;
-		public static final int Base_TextAppearance_AppCompat_Menu = 0x7f07004c;
-		public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0700a9;
-		public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f07004d;
-		public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f07004e;
-		public static final int Base_TextAppearance_AppCompat_Small = 0x7f07004f;
-		public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f07000e;
-		public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f070050;
-		public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f07000f;
-		public static final int Base_TextAppearance_AppCompat_Title = 0x7f070051;
-		public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f070010;
-		public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f070094;
-		public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f070052;
-		public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f070053;
-		public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f070054;
-		public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f070055;
-		public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f070056;
-		public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f070057;
-		public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f070058;
-		public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f07009b;
-		public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f07009c;
-		public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f070095;
-		public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0700aa;
-		public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f070059;
-		public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f07005a;
-		public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f07005b;
-		public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f07005c;
-		public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f07005d;
-		public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0700ab;
-		public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f07005e;
-		public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f07005f;
-		public static final int Base_ThemeOverlay_AppCompat = 0x7f0700b0;
-		public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0700b1;
-		public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0700b2;
-		public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0700b3;
-		public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f070017;
-		public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f070018;
-		public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0700b4;
-		public static final int Base_Theme_AppCompat = 0x7f070060;
-		public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0700ac;
-		public static final int Base_Theme_AppCompat_Dialog = 0x7f070011;
-		public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f070001;
-		public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f070012;
-		public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0700ad;
-		public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f070013;
-		public static final int Base_Theme_AppCompat_Light = 0x7f070061;
-		public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0700ae;
-		public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f070014;
-		public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f070002;
-		public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f070015;
-		public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0700af;
-		public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f070016;
-		public static final int Base_V11_ThemeOverlay_AppCompat_Dialog = 0x7f07001b;
-		public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f070019;
-		public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f07001a;
-		public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f070023;
-		public static final int Base_V12_Widget_AppCompat_EditText = 0x7f070024;
-		public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f070066;
-		public static final int Base_V21_Theme_AppCompat = 0x7f070062;
-		public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f070063;
-		public static final int Base_V21_Theme_AppCompat_Light = 0x7f070064;
-		public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f070065;
-		public static final int Base_V22_Theme_AppCompat = 0x7f070092;
-		public static final int Base_V22_Theme_AppCompat_Light = 0x7f070093;
-		public static final int Base_V23_Theme_AppCompat = 0x7f070096;
-		public static final int Base_V23_Theme_AppCompat_Light = 0x7f070097;
-		public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f0700b9;
-		public static final int Base_V7_Theme_AppCompat = 0x7f0700b5;
-		public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0700b6;
-		public static final int Base_V7_Theme_AppCompat_Light = 0x7f0700b7;
-		public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0700b8;
-		public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0700ba;
-		public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0700bb;
-		public static final int Base_Widget_AppCompat_ActionBar = 0x7f0700bc;
-		public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0700bd;
-		public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0700be;
-		public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f070067;
-		public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f070068;
-		public static final int Base_Widget_AppCompat_ActionButton = 0x7f070069;
-		public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f07006a;
-		public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f07006b;
-		public static final int Base_Widget_AppCompat_ActionMode = 0x7f0700bf;
-		public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0700c0;
-		public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f070025;
-		public static final int Base_Widget_AppCompat_Button = 0x7f07006c;
-		public static final int Base_Widget_AppCompat_ButtonBar = 0x7f070070;
-		public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0700c2;
-		public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f07006d;
-		public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f07006e;
-		public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0700c1;
-		public static final int Base_Widget_AppCompat_Button_Colored = 0x7f070098;
-		public static final int Base_Widget_AppCompat_Button_Small = 0x7f07006f;
-		public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f070071;
-		public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f070072;
-		public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0700c3;
-		public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f070000;
-		public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0700c4;
-		public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f070073;
-		public static final int Base_Widget_AppCompat_EditText = 0x7f070026;
-		public static final int Base_Widget_AppCompat_ImageButton = 0x7f070074;
-		public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0700c5;
-		public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0700c6;
-		public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0700c7;
-		public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f070075;
-		public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f070076;
-		public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f070077;
-		public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f070078;
-		public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f070079;
-		public static final int Base_Widget_AppCompat_ListMenuView = 0x7f0700c8;
-		public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f07007a;
-		public static final int Base_Widget_AppCompat_ListView = 0x7f07007b;
-		public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f07007c;
-		public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f07007d;
-		public static final int Base_Widget_AppCompat_PopupMenu = 0x7f07007e;
-		public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f07007f;
-		public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0700c9;
-		public static final int Base_Widget_AppCompat_ProgressBar = 0x7f07001c;
-		public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f07001d;
-		public static final int Base_Widget_AppCompat_RatingBar = 0x7f070080;
-		public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f070099;
-		public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f07009a;
-		public static final int Base_Widget_AppCompat_SearchView = 0x7f0700ca;
-		public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0700cb;
-		public static final int Base_Widget_AppCompat_SeekBar = 0x7f070081;
-		public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f0700cc;
-		public static final int Base_Widget_AppCompat_Spinner = 0x7f070082;
-		public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f070003;
-		public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f070083;
-		public static final int Base_Widget_AppCompat_Toolbar = 0x7f0700cd;
-		public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f070084;
-		public static final int Platform_AppCompat = 0x7f07001e;
-		public static final int Platform_AppCompat_Light = 0x7f07001f;
-		public static final int Platform_ThemeOverlay_AppCompat = 0x7f070085;
-		public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f070086;
-		public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f070087;
-		public static final int Platform_V11_AppCompat = 0x7f070020;
-		public static final int Platform_V11_AppCompat_Light = 0x7f070021;
-		public static final int Platform_V14_AppCompat = 0x7f070028;
-		public static final int Platform_V14_AppCompat_Light = 0x7f070029;
-		public static final int Platform_V21_AppCompat = 0x7f070088;
-		public static final int Platform_V21_AppCompat_Light = 0x7f070089;
-		public static final int Platform_V25_AppCompat = 0x7f07009d;
-		public static final int Platform_V25_AppCompat_Light = 0x7f07009e;
-		public static final int Platform_Widget_AppCompat_Spinner = 0x7f070022;
-		public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f070031;
-		public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f070032;
-		public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f070033;
-		public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f070034;
-		public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f070035;
-		public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f070036;
-		public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f07003c;
-		public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f070037;
-		public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f070038;
-		public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f070039;
-		public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f07003a;
-		public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f07003b;
-		public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f07003d;
-		public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f07003e;
-		public static final int TextAppearance_AppCompat = 0x7f0700ce;
-		public static final int TextAppearance_AppCompat_Body1 = 0x7f0700cf;
-		public static final int TextAppearance_AppCompat_Body2 = 0x7f0700d0;
-		public static final int TextAppearance_AppCompat_Button = 0x7f0700d1;
-		public static final int TextAppearance_AppCompat_Caption = 0x7f0700d2;
-		public static final int TextAppearance_AppCompat_Display1 = 0x7f0700d3;
-		public static final int TextAppearance_AppCompat_Display2 = 0x7f0700d4;
-		public static final int TextAppearance_AppCompat_Display3 = 0x7f0700d5;
-		public static final int TextAppearance_AppCompat_Display4 = 0x7f0700d6;
-		public static final int TextAppearance_AppCompat_Headline = 0x7f0700d7;
-		public static final int TextAppearance_AppCompat_Inverse = 0x7f0700d8;
-		public static final int TextAppearance_AppCompat_Large = 0x7f0700d9;
-		public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0700da;
-		public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0700db;
-		public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0700dc;
-		public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0700dd;
-		public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0700de;
-		public static final int TextAppearance_AppCompat_Medium = 0x7f0700df;
-		public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0700e0;
-		public static final int TextAppearance_AppCompat_Menu = 0x7f0700e1;
-		public static final int TextAppearance_AppCompat_Notification = 0x7f07002a;
-		public static final int TextAppearance_AppCompat_Notification_Info = 0x7f07008a;
-		public static final int TextAppearance_AppCompat_Notification_Info_Media = 0x7f07008b;
-		public static final int TextAppearance_AppCompat_Notification_Line2 = 0x7f0700e2;
-		public static final int TextAppearance_AppCompat_Notification_Line2_Media = 0x7f0700e3;
-		public static final int TextAppearance_AppCompat_Notification_Media = 0x7f07008c;
-		public static final int TextAppearance_AppCompat_Notification_Time = 0x7f07008d;
-		public static final int TextAppearance_AppCompat_Notification_Time_Media = 0x7f07008e;
-		public static final int TextAppearance_AppCompat_Notification_Title = 0x7f07002b;
-		public static final int TextAppearance_AppCompat_Notification_Title_Media = 0x7f07008f;
-		public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0700e4;
-		public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0700e5;
-		public static final int TextAppearance_AppCompat_Small = 0x7f0700e6;
-		public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0700e7;
-		public static final int TextAppearance_AppCompat_Subhead = 0x7f0700e8;
-		public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0700e9;
-		public static final int TextAppearance_AppCompat_Title = 0x7f0700ea;
-		public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0700eb;
-		public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0700ec;
-		public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0700ed;
-		public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0700ee;
-		public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0700ef;
-		public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0700f0;
-		public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0700f1;
-		public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0700f2;
-		public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0700f3;
-		public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0700f4;
-		public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0700f5;
-		public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0700f6;
-		public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0700f7;
-		public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0700f8;
-		public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0700f9;
-		public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0700fa;
-		public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0700fb;
-		public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0700fc;
-		public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0700fd;
-		public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0700fe;
-		public static final int TextAppearance_StatusBar_EventContent = 0x7f07002c;
-		public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f07002d;
-		public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f07002e;
-		public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f07002f;
-		public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f070030;
-		public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0700ff;
-		public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f070100;
-		public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f070101;
-		public static final int ThemeOverlay_AppCompat = 0x7f070110;
-		public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f070111;
-		public static final int ThemeOverlay_AppCompat_Dark = 0x7f070112;
-		public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f070113;
-		public static final int ThemeOverlay_AppCompat_Dialog = 0x7f070114;
-		public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f070115;
-		public static final int ThemeOverlay_AppCompat_Light = 0x7f070116;
-		public static final int Theme_AppCompat = 0x7f070102;
-		public static final int Theme_AppCompat_CompactMenu = 0x7f070103;
-		public static final int Theme_AppCompat_DayNight = 0x7f070004;
-		public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f070005;
-		public static final int Theme_AppCompat_DayNight_Dialog = 0x7f070006;
-		public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f070009;
-		public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f070007;
-		public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f070008;
-		public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f07000a;
-		public static final int Theme_AppCompat_Dialog = 0x7f070104;
-		public static final int Theme_AppCompat_DialogWhenLarge = 0x7f070107;
-		public static final int Theme_AppCompat_Dialog_Alert = 0x7f070105;
-		public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f070106;
-		public static final int Theme_AppCompat_Light = 0x7f070108;
-		public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f070109;
-		public static final int Theme_AppCompat_Light_Dialog = 0x7f07010a;
-		public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f07010d;
-		public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f07010b;
-		public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f07010c;
-		public static final int Theme_AppCompat_Light_NoActionBar = 0x7f07010e;
-		public static final int Theme_AppCompat_NoActionBar = 0x7f07010f;
-		public static final int Widget_AppCompat_ActionBar = 0x7f070117;
-		public static final int Widget_AppCompat_ActionBar_Solid = 0x7f070118;
-		public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f070119;
-		public static final int Widget_AppCompat_ActionBar_TabText = 0x7f07011a;
-		public static final int Widget_AppCompat_ActionBar_TabView = 0x7f07011b;
-		public static final int Widget_AppCompat_ActionButton = 0x7f07011c;
-		public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f07011d;
-		public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f07011e;
-		public static final int Widget_AppCompat_ActionMode = 0x7f07011f;
-		public static final int Widget_AppCompat_ActivityChooserView = 0x7f070120;
-		public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f070121;
-		public static final int Widget_AppCompat_Button = 0x7f070122;
-		public static final int Widget_AppCompat_ButtonBar = 0x7f070128;
-		public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f070129;
-		public static final int Widget_AppCompat_Button_Borderless = 0x7f070123;
-		public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f070124;
-		public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f070125;
-		public static final int Widget_AppCompat_Button_Colored = 0x7f070126;
-		public static final int Widget_AppCompat_Button_Small = 0x7f070127;
-		public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f07012a;
-		public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f07012b;
-		public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f07012c;
-		public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f07012d;
-		public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f07012e;
-		public static final int Widget_AppCompat_EditText = 0x7f07012f;
-		public static final int Widget_AppCompat_ImageButton = 0x7f070130;
-		public static final int Widget_AppCompat_Light_ActionBar = 0x7f070131;
-		public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f070132;
-		public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f070133;
-		public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f070134;
-		public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f070135;
-		public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f070136;
-		public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f070137;
-		public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f070138;
-		public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f070139;
-		public static final int Widget_AppCompat_Light_ActionButton = 0x7f07013a;
-		public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f07013b;
-		public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f07013c;
-		public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f07013d;
-		public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f07013e;
-		public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f07013f;
-		public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f070140;
-		public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f070141;
-		public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f070142;
-		public static final int Widget_AppCompat_Light_PopupMenu = 0x7f070143;
-		public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f070144;
-		public static final int Widget_AppCompat_Light_SearchView = 0x7f070145;
-		public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f070146;
-		public static final int Widget_AppCompat_ListMenuView = 0x7f070147;
-		public static final int Widget_AppCompat_ListPopupWindow = 0x7f070148;
-		public static final int Widget_AppCompat_ListView = 0x7f070149;
-		public static final int Widget_AppCompat_ListView_DropDown = 0x7f07014a;
-		public static final int Widget_AppCompat_ListView_Menu = 0x7f07014b;
-		public static final int Widget_AppCompat_NotificationActionContainer = 0x7f070090;
-		public static final int Widget_AppCompat_NotificationActionText = 0x7f070091;
-		public static final int Widget_AppCompat_PopupMenu = 0x7f07014c;
-		public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f07014d;
-		public static final int Widget_AppCompat_PopupWindow = 0x7f07014e;
-		public static final int Widget_AppCompat_ProgressBar = 0x7f07014f;
-		public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f070150;
-		public static final int Widget_AppCompat_RatingBar = 0x7f070151;
-		public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f070152;
-		public static final int Widget_AppCompat_RatingBar_Small = 0x7f070153;
-		public static final int Widget_AppCompat_SearchView = 0x7f070154;
-		public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f070155;
-		public static final int Widget_AppCompat_SeekBar = 0x7f070156;
-		public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f070157;
-		public static final int Widget_AppCompat_Spinner = 0x7f070158;
-		public static final int Widget_AppCompat_Spinner_DropDown = 0x7f070159;
-		public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f07015a;
-		public static final int Widget_AppCompat_Spinner_Underlined = 0x7f07015b;
-		public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f07015c;
-		public static final int Widget_AppCompat_Toolbar = 0x7f07015d;
-		public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f07015e;
-	}
-	public static final class styleable {
-		public static final int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01005b };
-		public static final int[] ActionBarLayout = { 0x010100b3 };
-		public static final int ActionBarLayout_android_layout_gravity = 0;
-		public static final int ActionBar_background = 10;
-		public static final int ActionBar_backgroundSplit = 12;
-		public static final int ActionBar_backgroundStacked = 11;
-		public static final int ActionBar_contentInsetEnd = 21;
-		public static final int ActionBar_contentInsetEndWithActions = 25;
-		public static final int ActionBar_contentInsetLeft = 22;
-		public static final int ActionBar_contentInsetRight = 23;
-		public static final int ActionBar_contentInsetStart = 20;
-		public static final int ActionBar_contentInsetStartWithNavigation = 24;
-		public static final int ActionBar_customNavigationLayout = 13;
-		public static final int ActionBar_displayOptions = 3;
-		public static final int ActionBar_divider = 9;
-		public static final int ActionBar_elevation = 26;
-		public static final int ActionBar_height = 0;
-		public static final int ActionBar_hideOnContentScroll = 19;
-		public static final int ActionBar_homeAsUpIndicator = 28;
-		public static final int ActionBar_homeLayout = 14;
-		public static final int ActionBar_icon = 7;
-		public static final int ActionBar_indeterminateProgressStyle = 16;
-		public static final int ActionBar_itemPadding = 18;
-		public static final int ActionBar_logo = 8;
-		public static final int ActionBar_navigationMode = 2;
-		public static final int ActionBar_popupTheme = 27;
-		public static final int ActionBar_progressBarPadding = 17;
-		public static final int ActionBar_progressBarStyle = 15;
-		public static final int ActionBar_subtitle = 4;
-		public static final int ActionBar_subtitleTextStyle = 6;
-		public static final int ActionBar_title = 1;
-		public static final int ActionBar_titleTextStyle = 5;
-		public static final int[] ActionMenuItemView = { 0x0101013f };
-		public static final int ActionMenuItemView_android_minWidth = 0;
-		public static final int[] ActionMenuView = { };
-		public static final int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001e };
-		public static final int ActionMode_background = 3;
-		public static final int ActionMode_backgroundSplit = 4;
-		public static final int ActionMode_closeItemLayout = 5;
-		public static final int ActionMode_height = 0;
-		public static final int ActionMode_subtitleTextStyle = 2;
-		public static final int ActionMode_titleTextStyle = 1;
-		public static final int[] ActivityChooserView = { 0x7f01001f, 0x7f010020 };
-		public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
-		public static final int ActivityChooserView_initialActivityCount = 0;
-		public static final int[] AlertDialog = { 0x010100f2, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026 };
-		public static final int AlertDialog_android_layout = 0;
-		public static final int AlertDialog_buttonPanelSideLayout = 1;
-		public static final int AlertDialog_listItemLayout = 5;
-		public static final int AlertDialog_listLayout = 2;
-		public static final int AlertDialog_multiChoiceItemLayout = 3;
-		public static final int AlertDialog_showTitle = 6;
-		public static final int AlertDialog_singleChoiceItemLayout = 4;
-		public static final int[] AppCompatImageView = { 0x01010119, 0x7f010027 };
-		public static final int AppCompatImageView_android_src = 0;
-		public static final int AppCompatImageView_srcCompat = 1;
-		public static final int[] AppCompatSeekBar = { 0x01010142, 0x7f010028, 0x7f010029, 0x7f01002a };
-		public static final int AppCompatSeekBar_android_thumb = 0;
-		public static final int AppCompatSeekBar_tickMark = 1;
-		public static final int AppCompatSeekBar_tickMarkTint = 2;
-		public static final int AppCompatSeekBar_tickMarkTintMode = 3;
-		public static final int[] AppCompatTextHelper = { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 };
-		public static final int AppCompatTextHelper_android_drawableBottom = 2;
-		public static final int AppCompatTextHelper_android_drawableEnd = 6;
-		public static final int AppCompatTextHelper_android_drawableLeft = 3;
-		public static final int AppCompatTextHelper_android_drawableRight = 4;
-		public static final int AppCompatTextHelper_android_drawableStart = 5;
-		public static final int AppCompatTextHelper_android_drawableTop = 1;
-		public static final int AppCompatTextHelper_android_textAppearance = 0;
-		public static final int[] AppCompatTextView = { 0x01010034, 0x7f01002b };
-		public static final int AppCompatTextView_android_textAppearance = 0;
-		public static final int AppCompatTextView_textAllCaps = 1;
-		public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c };
-		public static final int AppCompatTheme_actionBarDivider = 23;
-		public static final int AppCompatTheme_actionBarItemBackground = 24;
-		public static final int AppCompatTheme_actionBarPopupTheme = 17;
-		public static final int AppCompatTheme_actionBarSize = 22;
-		public static final int AppCompatTheme_actionBarSplitStyle = 19;
-		public static final int AppCompatTheme_actionBarStyle = 18;
-		public static final int AppCompatTheme_actionBarTabBarStyle = 13;
-		public static final int AppCompatTheme_actionBarTabStyle = 12;
-		public static final int AppCompatTheme_actionBarTabTextStyle = 14;
-		public static final int AppCompatTheme_actionBarTheme = 20;
-		public static final int AppCompatTheme_actionBarWidgetTheme = 21;
-		public static final int AppCompatTheme_actionButtonStyle = 50;
-		public static final int AppCompatTheme_actionDropDownStyle = 46;
-		public static final int AppCompatTheme_actionMenuTextAppearance = 25;
-		public static final int AppCompatTheme_actionMenuTextColor = 26;
-		public static final int AppCompatTheme_actionModeBackground = 29;
-		public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
-		public static final int AppCompatTheme_actionModeCloseDrawable = 31;
-		public static final int AppCompatTheme_actionModeCopyDrawable = 33;
-		public static final int AppCompatTheme_actionModeCutDrawable = 32;
-		public static final int AppCompatTheme_actionModeFindDrawable = 37;
-		public static final int AppCompatTheme_actionModePasteDrawable = 34;
-		public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
-		public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
-		public static final int AppCompatTheme_actionModeShareDrawable = 36;
-		public static final int AppCompatTheme_actionModeSplitBackground = 30;
-		public static final int AppCompatTheme_actionModeStyle = 27;
-		public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
-		public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
-		public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
-		public static final int AppCompatTheme_activityChooserViewStyle = 58;
-		public static final int AppCompatTheme_alertDialogButtonGroupStyle = 94;
-		public static final int AppCompatTheme_alertDialogCenterButtons = 95;
-		public static final int AppCompatTheme_alertDialogStyle = 93;
-		public static final int AppCompatTheme_alertDialogTheme = 96;
-		public static final int AppCompatTheme_android_windowAnimationStyle = 1;
-		public static final int AppCompatTheme_android_windowIsFloating = 0;
-		public static final int AppCompatTheme_autoCompleteTextViewStyle = 101;
-		public static final int AppCompatTheme_borderlessButtonStyle = 55;
-		public static final int AppCompatTheme_buttonBarButtonStyle = 52;
-		public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 99;
-		public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 100;
-		public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 98;
-		public static final int AppCompatTheme_buttonBarStyle = 51;
-		public static final int AppCompatTheme_buttonStyle = 102;
-		public static final int AppCompatTheme_buttonStyleSmall = 103;
-		public static final int AppCompatTheme_checkboxStyle = 104;
-		public static final int AppCompatTheme_checkedTextViewStyle = 105;
-		public static final int AppCompatTheme_colorAccent = 85;
-		public static final int AppCompatTheme_colorBackgroundFloating = 92;
-		public static final int AppCompatTheme_colorButtonNormal = 89;
-		public static final int AppCompatTheme_colorControlActivated = 87;
-		public static final int AppCompatTheme_colorControlHighlight = 88;
-		public static final int AppCompatTheme_colorControlNormal = 86;
-		public static final int AppCompatTheme_colorPrimary = 83;
-		public static final int AppCompatTheme_colorPrimaryDark = 84;
-		public static final int AppCompatTheme_colorSwitchThumbNormal = 90;
-		public static final int AppCompatTheme_controlBackground = 91;
-		public static final int AppCompatTheme_dialogPreferredPadding = 44;
-		public static final int AppCompatTheme_dialogTheme = 43;
-		public static final int AppCompatTheme_dividerHorizontal = 57;
-		public static final int AppCompatTheme_dividerVertical = 56;
-		public static final int AppCompatTheme_dropDownListViewStyle = 75;
-		public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47;
-		public static final int AppCompatTheme_editTextBackground = 64;
-		public static final int AppCompatTheme_editTextColor = 63;
-		public static final int AppCompatTheme_editTextStyle = 106;
-		public static final int AppCompatTheme_homeAsUpIndicator = 49;
-		public static final int AppCompatTheme_imageButtonStyle = 65;
-		public static final int AppCompatTheme_listChoiceBackgroundIndicator = 82;
-		public static final int AppCompatTheme_listDividerAlertDialog = 45;
-		public static final int AppCompatTheme_listMenuViewStyle = 114;
-		public static final int AppCompatTheme_listPopupWindowStyle = 76;
-		public static final int AppCompatTheme_listPreferredItemHeight = 70;
-		public static final int AppCompatTheme_listPreferredItemHeightLarge = 72;
-		public static final int AppCompatTheme_listPreferredItemHeightSmall = 71;
-		public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73;
-		public static final int AppCompatTheme_listPreferredItemPaddingRight = 74;
-		public static final int AppCompatTheme_panelBackground = 79;
-		public static final int AppCompatTheme_panelMenuListTheme = 81;
-		public static final int AppCompatTheme_panelMenuListWidth = 80;
-		public static final int AppCompatTheme_popupMenuStyle = 61;
-		public static final int AppCompatTheme_popupWindowStyle = 62;
-		public static final int AppCompatTheme_radioButtonStyle = 107;
-		public static final int AppCompatTheme_ratingBarStyle = 108;
-		public static final int AppCompatTheme_ratingBarStyleIndicator = 109;
-		public static final int AppCompatTheme_ratingBarStyleSmall = 110;
-		public static final int AppCompatTheme_searchViewStyle = 69;
-		public static final int AppCompatTheme_seekBarStyle = 111;
-		public static final int AppCompatTheme_selectableItemBackground = 53;
-		public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54;
-		public static final int AppCompatTheme_spinnerDropDownItemStyle = 48;
-		public static final int AppCompatTheme_spinnerStyle = 112;
-		public static final int AppCompatTheme_switchStyle = 113;
-		public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
-		public static final int AppCompatTheme_textAppearanceListItem = 77;
-		public static final int AppCompatTheme_textAppearanceListItemSmall = 78;
-		public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42;
-		public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
-		public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66;
-		public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
-		public static final int AppCompatTheme_textColorAlertDialogListItem = 97;
-		public static final int AppCompatTheme_textColorSearchUrl = 68;
-		public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60;
-		public static final int AppCompatTheme_toolbarStyle = 59;
-		public static final int AppCompatTheme_windowActionBar = 2;
-		public static final int AppCompatTheme_windowActionBarOverlay = 4;
-		public static final int AppCompatTheme_windowActionModeOverlay = 5;
-		public static final int AppCompatTheme_windowFixedHeightMajor = 9;
-		public static final int AppCompatTheme_windowFixedHeightMinor = 7;
-		public static final int AppCompatTheme_windowFixedWidthMajor = 6;
-		public static final int AppCompatTheme_windowFixedWidthMinor = 8;
-		public static final int AppCompatTheme_windowMinWidthMajor = 10;
-		public static final int AppCompatTheme_windowMinWidthMinor = 11;
-		public static final int AppCompatTheme_windowNoTitle = 3;
-		public static final int[] ButtonBarLayout = { 0x7f01009d };
-		public static final int ButtonBarLayout_allowStacking = 0;
-		public static final int[] ColorStateListItem = { 0x010101a5, 0x0101031f, 0x7f01009e };
-		public static final int ColorStateListItem_alpha = 2;
-		public static final int ColorStateListItem_android_alpha = 1;
-		public static final int ColorStateListItem_android_color = 0;
-		public static final int[] CompoundButton = { 0x01010107, 0x7f01009f, 0x7f0100a0 };
-		public static final int CompoundButton_android_button = 0;
-		public static final int CompoundButton_buttonTint = 1;
-		public static final int CompoundButton_buttonTintMode = 2;
-		public static final int[] DrawerArrowToggle = { 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8 };
-		public static final int DrawerArrowToggle_arrowHeadLength = 4;
-		public static final int DrawerArrowToggle_arrowShaftLength = 5;
-		public static final int DrawerArrowToggle_barLength = 6;
-		public static final int DrawerArrowToggle_color = 0;
-		public static final int DrawerArrowToggle_drawableSize = 2;
-		public static final int DrawerArrowToggle_gapBetweenBars = 3;
-		public static final int DrawerArrowToggle_spinBars = 1;
-		public static final int DrawerArrowToggle_thickness = 7;
-		public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab };
-		public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
-		public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
-		public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
-		public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
-		public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
-		public static final int LinearLayoutCompat_android_baselineAligned = 2;
-		public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
-		public static final int LinearLayoutCompat_android_gravity = 0;
-		public static final int LinearLayoutCompat_android_orientation = 1;
-		public static final int LinearLayoutCompat_android_weightSum = 4;
-		public static final int LinearLayoutCompat_divider = 5;
-		public static final int LinearLayoutCompat_dividerPadding = 8;
-		public static final int LinearLayoutCompat_measureWithLargestChild = 6;
-		public static final int LinearLayoutCompat_showDividers = 7;
-		public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
-		public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
-		public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
-		public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
-		public static final int MenuGroup_android_checkableBehavior = 5;
-		public static final int MenuGroup_android_enabled = 0;
-		public static final int MenuGroup_android_id = 1;
-		public static final int MenuGroup_android_menuCategory = 3;
-		public static final int MenuGroup_android_orderInCategory = 4;
-		public static final int MenuGroup_android_visible = 2;
-		public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2 };
-		public static final int MenuItem_actionLayout = 14;
-		public static final int MenuItem_actionProviderClass = 16;
-		public static final int MenuItem_actionViewClass = 15;
-		public static final int MenuItem_android_alphabeticShortcut = 9;
-		public static final int MenuItem_android_checkable = 11;
-		public static final int MenuItem_android_checked = 3;
-		public static final int MenuItem_android_enabled = 1;
-		public static final int MenuItem_android_icon = 0;
-		public static final int MenuItem_android_id = 2;
-		public static final int MenuItem_android_menuCategory = 5;
-		public static final int MenuItem_android_numericShortcut = 10;
-		public static final int MenuItem_android_onClick = 12;
-		public static final int MenuItem_android_orderInCategory = 6;
-		public static final int MenuItem_android_title = 7;
-		public static final int MenuItem_android_titleCondensed = 8;
-		public static final int MenuItem_android_visible = 4;
-		public static final int MenuItem_showAsAction = 13;
-		public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100b3, 0x7f0100b4 };
-		public static final int MenuView_android_headerBackground = 4;
-		public static final int MenuView_android_horizontalDivider = 2;
-		public static final int MenuView_android_itemBackground = 5;
-		public static final int MenuView_android_itemIconDisabledAlpha = 6;
-		public static final int MenuView_android_itemTextAppearance = 1;
-		public static final int MenuView_android_verticalDivider = 3;
-		public static final int MenuView_android_windowAnimationStyle = 0;
-		public static final int MenuView_preserveIconSpacing = 7;
-		public static final int MenuView_subMenuArrow = 8;
-		public static final int[] PopupWindow = { 0x01010176, 0x010102c9, 0x7f0100b5 };
-		public static final int[] PopupWindowBackgroundState = { 0x7f0100b6 };
-		public static final int PopupWindowBackgroundState_state_above_anchor = 0;
-		public static final int PopupWindow_android_popupAnimationStyle = 1;
-		public static final int PopupWindow_android_popupBackground = 0;
-		public static final int PopupWindow_overlapAnchor = 2;
-		public static final int[] RecycleListView = { 0x7f0100b7, 0x7f0100b8 };
-		public static final int RecycleListView_paddingBottomNoButtons = 0;
-		public static final int RecycleListView_paddingTopNoTitle = 1;
-		public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5 };
-		public static final int SearchView_android_focusable = 0;
-		public static final int SearchView_android_imeOptions = 3;
-		public static final int SearchView_android_inputType = 2;
-		public static final int SearchView_android_maxWidth = 1;
-		public static final int SearchView_closeIcon = 8;
-		public static final int SearchView_commitIcon = 13;
-		public static final int SearchView_defaultQueryHint = 7;
-		public static final int SearchView_goIcon = 9;
-		public static final int SearchView_iconifiedByDefault = 5;
-		public static final int SearchView_layout = 4;
-		public static final int SearchView_queryBackground = 15;
-		public static final int SearchView_queryHint = 6;
-		public static final int SearchView_searchHintIcon = 11;
-		public static final int SearchView_searchIcon = 10;
-		public static final int SearchView_submitBackground = 16;
-		public static final int SearchView_suggestionRowLayout = 14;
-		public static final int SearchView_voiceIcon = 12;
-		public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001d };
-		public static final int Spinner_android_dropDownWidth = 3;
-		public static final int Spinner_android_entries = 0;
-		public static final int Spinner_android_popupBackground = 1;
-		public static final int Spinner_android_prompt = 2;
-		public static final int Spinner_popupTheme = 4;
-		public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3 };
-		public static final int SwitchCompat_android_textOff = 1;
-		public static final int SwitchCompat_android_textOn = 0;
-		public static final int SwitchCompat_android_thumb = 2;
-		public static final int SwitchCompat_showText = 13;
-		public static final int SwitchCompat_splitTrack = 12;
-		public static final int SwitchCompat_switchMinWidth = 10;
-		public static final int SwitchCompat_switchPadding = 11;
-		public static final int SwitchCompat_switchTextAppearance = 9;
-		public static final int SwitchCompat_thumbTextPadding = 8;
-		public static final int SwitchCompat_thumbTint = 3;
-		public static final int SwitchCompat_thumbTintMode = 4;
-		public static final int SwitchCompat_track = 5;
-		public static final int SwitchCompat_trackTint = 6;
-		public static final int SwitchCompat_trackTintMode = 7;
-		public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f01002b };
-		public static final int TextAppearance_android_shadowColor = 5;
-		public static final int TextAppearance_android_shadowDx = 6;
-		public static final int TextAppearance_android_shadowDy = 7;
-		public static final int TextAppearance_android_shadowRadius = 8;
-		public static final int TextAppearance_android_textColor = 3;
-		public static final int TextAppearance_android_textColorHint = 4;
-		public static final int TextAppearance_android_textSize = 0;
-		public static final int TextAppearance_android_textStyle = 2;
-		public static final int TextAppearance_android_typeface = 1;
-		public static final int TextAppearance_textAllCaps = 9;
-		public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001d, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 };
-		public static final int Toolbar_android_gravity = 0;
-		public static final int Toolbar_android_minHeight = 1;
-		public static final int Toolbar_buttonGravity = 21;
-		public static final int Toolbar_collapseContentDescription = 23;
-		public static final int Toolbar_collapseIcon = 22;
-		public static final int Toolbar_contentInsetEnd = 6;
-		public static final int Toolbar_contentInsetEndWithActions = 10;
-		public static final int Toolbar_contentInsetLeft = 7;
-		public static final int Toolbar_contentInsetRight = 8;
-		public static final int Toolbar_contentInsetStart = 5;
-		public static final int Toolbar_contentInsetStartWithNavigation = 9;
-		public static final int Toolbar_logo = 4;
-		public static final int Toolbar_logoDescription = 26;
-		public static final int Toolbar_maxButtonHeight = 20;
-		public static final int Toolbar_navigationContentDescription = 25;
-		public static final int Toolbar_navigationIcon = 24;
-		public static final int Toolbar_popupTheme = 11;
-		public static final int Toolbar_subtitle = 3;
-		public static final int Toolbar_subtitleTextAppearance = 13;
-		public static final int Toolbar_subtitleTextColor = 28;
-		public static final int Toolbar_title = 2;
-		public static final int Toolbar_titleMargin = 14;
-		public static final int Toolbar_titleMarginBottom = 18;
-		public static final int Toolbar_titleMarginEnd = 16;
-		public static final int Toolbar_titleMarginStart = 15;
-		public static final int Toolbar_titleMarginTop = 17;
-		public static final int Toolbar_titleMargins = 19;
-		public static final int Toolbar_titleTextAppearance = 12;
-		public static final int Toolbar_titleTextColor = 27;
-		public static final int[] View = { 0x01010000, 0x010100da, 0x7f0100e5, 0x7f0100e6, 0x7f0100e7 };
-		public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f0100e8, 0x7f0100e9 };
-		public static final int ViewBackgroundHelper_android_background = 0;
-		public static final int ViewBackgroundHelper_backgroundTint = 1;
-		public static final int ViewBackgroundHelper_backgroundTintMode = 2;
-		public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
-		public static final int ViewStubCompat_android_id = 0;
-		public static final int ViewStubCompat_android_inflatedId = 2;
-		public static final int ViewStubCompat_android_layout = 1;
-		public static final int View_android_focusable = 1;
-		public static final int View_android_theme = 0;
-		public static final int View_paddingEnd = 3;
-		public static final int View_paddingStart = 2;
-		public static final int View_theme = 4;
-	}
-}
diff --git a/android/.build/generated/source/r/debug/at/gv/ucom/Manifest.java b/android/.build/generated/source/r/debug/at/gv/ucom/Manifest.java
deleted file mode 100644
index 64f8bcb1711379862aced9b66ede23dbf7398076..0000000000000000000000000000000000000000
--- a/android/.build/generated/source/r/debug/at/gv/ucom/Manifest.java
+++ /dev/null
@@ -1,14 +0,0 @@
-/* AUTO-GENERATED FILE.  DO NOT MODIFY.
- *
- * This class was automatically generated by the
- * aapt tool from the resource data it found.  It
- * should not be modified by hand.
- */
-
-package at.gv.ucom;
-
-public final class Manifest {
-    public static final class permission {
-        public static final String C2D_MESSAGE="at.gv.ucom.permission.C2D_MESSAGE";
-    }
-}
diff --git a/android/.build/generated/source/r/debug/at/gv/ucom/R.java b/android/.build/generated/source/r/debug/at/gv/ucom/R.java
deleted file mode 100644
index 02455e306684ad003004602596e1f6a902c1bbe1..0000000000000000000000000000000000000000
--- a/android/.build/generated/source/r/debug/at/gv/ucom/R.java
+++ /dev/null
@@ -1,7373 +0,0 @@
-/* AUTO-GENERATED FILE.  DO NOT MODIFY.
- *
- * This class was automatically generated by the
- * aapt tool from the resource data it found.  It
- * should not be modified by hand.
- */
-
-package at.gv.ucom;
-
-public final class R {
-    public static final class anim {
-        public static final int abc_fade_in=0x7f040000;
-        public static final int abc_fade_out=0x7f040001;
-        public static final int abc_grow_fade_in_from_bottom=0x7f040002;
-        public static final int abc_popup_enter=0x7f040003;
-        public static final int abc_popup_exit=0x7f040004;
-        public static final int abc_shrink_fade_out_from_bottom=0x7f040005;
-        public static final int abc_slide_in_bottom=0x7f040006;
-        public static final int abc_slide_in_top=0x7f040007;
-        public static final int abc_slide_out_bottom=0x7f040008;
-        public static final int abc_slide_out_top=0x7f040009;
-    }
-    public static final class array {
-        public static final int bundled_in_assets=0x7f0a0000;
-        public static final int bundled_in_lib=0x7f0a0001;
-        public static final int bundled_libs=0x7f0a0002;
-        public static final int qt_libs=0x7f0a0003;
-        public static final int qt_sources=0x7f0a0004;
-    }
-    public static final class attr {
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionBarDivider=0x7f010041;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionBarItemBackground=0x7f010042;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionBarPopupTheme=0x7f01003b;
-        /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-<p>May be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
-</table>
-         */
-        public static final int actionBarSize=0x7f010040;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionBarSplitStyle=0x7f01003d;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionBarStyle=0x7f01003c;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionBarTabBarStyle=0x7f010037;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionBarTabStyle=0x7f010036;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionBarTabTextStyle=0x7f010038;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionBarTheme=0x7f01003e;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionBarWidgetTheme=0x7f01003f;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionButtonStyle=0x7f01005c;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionDropDownStyle=0x7f010058;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionLayout=0x7f0100b0;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionMenuTextAppearance=0x7f010043;
-        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-         */
-        public static final int actionMenuTextColor=0x7f010044;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionModeBackground=0x7f010047;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionModeCloseButtonStyle=0x7f010046;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionModeCloseDrawable=0x7f010049;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionModeCopyDrawable=0x7f01004b;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionModeCutDrawable=0x7f01004a;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionModeFindDrawable=0x7f01004f;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionModePasteDrawable=0x7f01004c;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionModePopupWindowStyle=0x7f010051;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionModeSelectAllDrawable=0x7f01004d;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionModeShareDrawable=0x7f01004e;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionModeSplitBackground=0x7f010048;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionModeStyle=0x7f010045;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionModeWebSearchDrawable=0x7f010050;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionOverflowButtonStyle=0x7f010039;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int actionOverflowMenuStyle=0x7f01003a;
-        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int actionProviderClass=0x7f0100b2;
-        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int actionViewClass=0x7f0100b1;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int activityChooserViewStyle=0x7f010064;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int alertDialogButtonGroupStyle=0x7f010088;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int alertDialogCenterButtons=0x7f010089;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int alertDialogStyle=0x7f010087;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int alertDialogTheme=0x7f01008a;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int allowStacking=0x7f01009d;
-        /** <p>Must be a floating point value, such as "<code>1.2</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int alpha=0x7f01009e;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int arrowHeadLength=0x7f0100a5;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int arrowShaftLength=0x7f0100a6;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int autoCompleteTextViewStyle=0x7f01008f;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int background=0x7f01000c;
-        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-         */
-        public static final int backgroundSplit=0x7f01000e;
-        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-         */
-        public static final int backgroundStacked=0x7f01000d;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int backgroundTint=0x7f0100e8;
-        /** <p>Must be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
-<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
-<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
-<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
-<tr><td><code>screen</code></td><td>15</td><td></td></tr>
-</table>
-         */
-        public static final int backgroundTintMode=0x7f0100e9;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int barLength=0x7f0100a7;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int borderlessButtonStyle=0x7f010061;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int buttonBarButtonStyle=0x7f01005e;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int buttonBarNegativeButtonStyle=0x7f01008d;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int buttonBarNeutralButtonStyle=0x7f01008e;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int buttonBarPositiveButtonStyle=0x7f01008c;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int buttonBarStyle=0x7f01005d;
-        /** <p>Must be one or more (separated by '|') of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
-<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
-</table>
-         */
-        public static final int buttonGravity=0x7f0100dd;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int buttonPanelSideLayout=0x7f010021;
-        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>standard</code></td><td>0</td><td></td></tr>
-<tr><td><code>wide</code></td><td>1</td><td></td></tr>
-<tr><td><code>icon_only</code></td><td>2</td><td></td></tr>
-</table>
-         */
-        public static final int buttonSize=0x7f0100c6;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int buttonStyle=0x7f010090;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int buttonStyleSmall=0x7f010091;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int buttonTint=0x7f01009f;
-        /** <p>Must be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
-<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
-<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
-<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
-<tr><td><code>screen</code></td><td>15</td><td></td></tr>
-</table>
-         */
-        public static final int buttonTintMode=0x7f0100a0;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int checkboxStyle=0x7f010092;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int checkedTextViewStyle=0x7f010093;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int circleCrop=0x7f0100ae;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int closeIcon=0x7f0100bd;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int closeItemLayout=0x7f01001e;
-        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int collapseContentDescription=0x7f0100df;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int collapseIcon=0x7f0100de;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int color=0x7f0100a1;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int colorAccent=0x7f01007f;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int colorBackgroundFloating=0x7f010086;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int colorButtonNormal=0x7f010083;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int colorControlActivated=0x7f010081;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int colorControlHighlight=0x7f010082;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int colorControlNormal=0x7f010080;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int colorPrimary=0x7f01007d;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int colorPrimaryDark=0x7f01007e;
-        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>dark</code></td><td>0</td><td></td></tr>
-<tr><td><code>light</code></td><td>1</td><td></td></tr>
-<tr><td><code>auto</code></td><td>2</td><td></td></tr>
-</table>
-         */
-        public static final int colorScheme=0x7f0100c7;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int colorSwitchThumbNormal=0x7f010084;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int commitIcon=0x7f0100c2;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int contentInsetEnd=0x7f010017;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int contentInsetEndWithActions=0x7f01001b;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int contentInsetLeft=0x7f010018;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int contentInsetRight=0x7f010019;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int contentInsetStart=0x7f010016;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int contentInsetStartWithNavigation=0x7f01001a;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int controlBackground=0x7f010085;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int customNavigationLayout=0x7f01000f;
-        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int defaultQueryHint=0x7f0100bc;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int dialogPreferredPadding=0x7f010056;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int dialogTheme=0x7f010055;
-        /** <p>Must be one or more (separated by '|') of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>none</code></td><td>0</td><td></td></tr>
-<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
-<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
-<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
-<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
-<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
-<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
-</table>
-         */
-        public static final int displayOptions=0x7f010005;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int divider=0x7f01000b;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int dividerHorizontal=0x7f010063;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int dividerPadding=0x7f0100ab;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int dividerVertical=0x7f010062;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int drawableSize=0x7f0100a3;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int drawerArrowStyle=0x7f010000;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int dropDownListViewStyle=0x7f010075;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int dropdownListPreferredItemHeight=0x7f010059;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int editTextBackground=0x7f01006a;
-        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-         */
-        public static final int editTextColor=0x7f010069;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int editTextStyle=0x7f010094;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int elevation=0x7f01001c;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int expandActivityOverflowButtonDrawable=0x7f010020;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int gapBetweenBars=0x7f0100a4;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int goIcon=0x7f0100be;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int height=0x7f010001;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int hideOnContentScroll=0x7f010015;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int homeAsUpIndicator=0x7f01005b;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int homeLayout=0x7f010010;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int icon=0x7f010009;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int iconifiedByDefault=0x7f0100ba;
-        /** <p>Must be a floating point value, such as "<code>1.2</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int imageAspectRatio=0x7f0100ad;
-        /** <p>Must be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>none</code></td><td>0</td><td></td></tr>
-<tr><td><code>adjust_width</code></td><td>1</td><td></td></tr>
-<tr><td><code>adjust_height</code></td><td>2</td><td></td></tr>
-</table>
-         */
-        public static final int imageAspectRatioAdjust=0x7f0100ac;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int imageButtonStyle=0x7f01006b;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int indeterminateProgressStyle=0x7f010012;
-        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int initialActivityCount=0x7f01001f;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int isLightTheme=0x7f010002;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int itemPadding=0x7f010014;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int layout=0x7f0100b9;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int listChoiceBackgroundIndicator=0x7f01007c;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int listDividerAlertDialog=0x7f010057;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int listItemLayout=0x7f010025;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int listLayout=0x7f010022;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int listMenuViewStyle=0x7f01009c;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int listPopupWindowStyle=0x7f010076;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int listPreferredItemHeight=0x7f010070;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int listPreferredItemHeightLarge=0x7f010072;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int listPreferredItemHeightSmall=0x7f010071;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int listPreferredItemPaddingLeft=0x7f010073;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int listPreferredItemPaddingRight=0x7f010074;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int logo=0x7f01000a;
-        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int logoDescription=0x7f0100e2;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int maxButtonHeight=0x7f0100dc;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int measureWithLargestChild=0x7f0100a9;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int multiChoiceItemLayout=0x7f010023;
-        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int navigationContentDescription=0x7f0100e1;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int navigationIcon=0x7f0100e0;
-        /** <p>Must be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>normal</code></td><td>0</td><td></td></tr>
-<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
-<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
-</table>
-         */
-        public static final int navigationMode=0x7f010004;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int overlapAnchor=0x7f0100b5;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int paddingBottomNoButtons=0x7f0100b7;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int paddingEnd=0x7f0100e6;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int paddingStart=0x7f0100e5;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int paddingTopNoTitle=0x7f0100b8;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int panelBackground=0x7f010079;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int panelMenuListTheme=0x7f01007b;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int panelMenuListWidth=0x7f01007a;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int popupMenuStyle=0x7f010067;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int popupTheme=0x7f01001d;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int popupWindowStyle=0x7f010068;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int preserveIconSpacing=0x7f0100b3;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int progressBarPadding=0x7f010013;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int progressBarStyle=0x7f010011;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int queryBackground=0x7f0100c4;
-        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int queryHint=0x7f0100bb;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int radioButtonStyle=0x7f010095;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int ratingBarStyle=0x7f010096;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int ratingBarStyleIndicator=0x7f010097;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int ratingBarStyleSmall=0x7f010098;
-        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-         */
-        public static final int scopeUris=0x7f0100c8;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int searchHintIcon=0x7f0100c0;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int searchIcon=0x7f0100bf;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int searchViewStyle=0x7f01006f;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int seekBarStyle=0x7f010099;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int selectableItemBackground=0x7f01005f;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int selectableItemBackgroundBorderless=0x7f010060;
-        /** <p>Must be one or more (separated by '|') of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>never</code></td><td>0</td><td></td></tr>
-<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
-<tr><td><code>always</code></td><td>2</td><td></td></tr>
-<tr><td><code>withText</code></td><td>4</td><td></td></tr>
-<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
-</table>
-         */
-        public static final int showAsAction=0x7f0100af;
-        /** <p>Must be one or more (separated by '|') of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>none</code></td><td>0</td><td></td></tr>
-<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
-<tr><td><code>middle</code></td><td>2</td><td></td></tr>
-<tr><td><code>end</code></td><td>4</td><td></td></tr>
-</table>
-         */
-        public static final int showDividers=0x7f0100aa;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int showText=0x7f0100d3;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int showTitle=0x7f010026;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int singleChoiceItemLayout=0x7f010024;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int spinBars=0x7f0100a2;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int spinnerDropDownItemStyle=0x7f01005a;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int spinnerStyle=0x7f01009a;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int splitTrack=0x7f0100d2;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int srcCompat=0x7f010027;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int state_above_anchor=0x7f0100b6;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int subMenuArrow=0x7f0100b4;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int submitBackground=0x7f0100c5;
-        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int subtitle=0x7f010006;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int subtitleTextAppearance=0x7f0100d5;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int subtitleTextColor=0x7f0100e4;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int subtitleTextStyle=0x7f010008;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int suggestionRowLayout=0x7f0100c3;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int switchMinWidth=0x7f0100d0;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int switchPadding=0x7f0100d1;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int switchStyle=0x7f01009b;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int switchTextAppearance=0x7f0100cf;
-        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
-         */
-        public static final int textAllCaps=0x7f01002b;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int textAppearanceLargePopupMenu=0x7f010052;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int textAppearanceListItem=0x7f010077;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int textAppearanceListItemSmall=0x7f010078;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int textAppearancePopupMenuHeader=0x7f010054;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int textAppearanceSearchResultSubtitle=0x7f01006d;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int textAppearanceSearchResultTitle=0x7f01006c;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int textAppearanceSmallPopupMenu=0x7f010053;
-        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-         */
-        public static final int textColorAlertDialogListItem=0x7f01008b;
-        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-         */
-        public static final int textColorSearchUrl=0x7f01006e;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int theme=0x7f0100e7;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int thickness=0x7f0100a8;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int thumbTextPadding=0x7f0100ce;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int thumbTint=0x7f0100c9;
-        /** <p>Must be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
-<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
-<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
-<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
-<tr><td><code>screen</code></td><td>15</td><td></td></tr>
-<tr><td><code>add</code></td><td>16</td><td></td></tr>
-</table>
-         */
-        public static final int thumbTintMode=0x7f0100ca;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int tickMark=0x7f010028;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int tickMarkTint=0x7f010029;
-        /** <p>Must be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
-<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
-<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
-<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
-<tr><td><code>screen</code></td><td>15</td><td></td></tr>
-<tr><td><code>add</code></td><td>16</td><td></td></tr>
-</table>
-         */
-        public static final int tickMarkTintMode=0x7f01002a;
-        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int title=0x7f010003;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int titleMargin=0x7f0100d6;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int titleMarginBottom=0x7f0100da;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int titleMarginEnd=0x7f0100d8;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int titleMarginStart=0x7f0100d7;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int titleMarginTop=0x7f0100d9;
-        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int titleMargins=0x7f0100db;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int titleTextAppearance=0x7f0100d4;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int titleTextColor=0x7f0100e3;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int titleTextStyle=0x7f010007;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int toolbarNavigationButtonStyle=0x7f010066;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int toolbarStyle=0x7f010065;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int track=0x7f0100cb;
-        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int trackTint=0x7f0100cc;
-        /** <p>Must be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
-<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
-<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
-<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
-<tr><td><code>screen</code></td><td>15</td><td></td></tr>
-<tr><td><code>add</code></td><td>16</td><td></td></tr>
-</table>
-         */
-        public static final int trackTintMode=0x7f0100cd;
-        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-         */
-        public static final int voiceIcon=0x7f0100c1;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int windowActionBar=0x7f01002c;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int windowActionBarOverlay=0x7f01002e;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int windowActionModeOverlay=0x7f01002f;
-        /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
-The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
-some parent container.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int windowFixedHeightMajor=0x7f010033;
-        /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
-The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
-some parent container.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int windowFixedHeightMinor=0x7f010031;
-        /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
-The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
-some parent container.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int windowFixedWidthMajor=0x7f010030;
-        /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
-The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
-some parent container.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int windowFixedWidthMinor=0x7f010032;
-        /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
-The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
-some parent container.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int windowMinWidthMajor=0x7f010034;
-        /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
-The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
-some parent container.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int windowMinWidthMinor=0x7f010035;
-        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-         */
-        public static final int windowNoTitle=0x7f01002d;
-    }
-    public static final class bool {
-        public static final int abc_action_bar_embed_tabs=0x7f080000;
-        public static final int abc_allow_stacked_button_bar=0x7f080001;
-        public static final int abc_config_actionMenuItemAllCaps=0x7f080002;
-        public static final int abc_config_closeDialogWhenTouchOutside=0x7f080003;
-        public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f080004;
-    }
-    public static final class color {
-        public static final int abc_background_cache_hint_selector_material_dark=0x7f090043;
-        public static final int abc_background_cache_hint_selector_material_light=0x7f090044;
-        public static final int abc_btn_colored_borderless_text_material=0x7f090045;
-        public static final int abc_btn_colored_text_material=0x7f090046;
-        public static final int abc_color_highlight_material=0x7f090047;
-        public static final int abc_hint_foreground_material_dark=0x7f090048;
-        public static final int abc_hint_foreground_material_light=0x7f090049;
-        public static final int abc_input_method_navigation_guard=0x7f090001;
-        public static final int abc_primary_text_disable_only_material_dark=0x7f09004a;
-        public static final int abc_primary_text_disable_only_material_light=0x7f09004b;
-        public static final int abc_primary_text_material_dark=0x7f09004c;
-        public static final int abc_primary_text_material_light=0x7f09004d;
-        public static final int abc_search_url_text=0x7f09004e;
-        public static final int abc_search_url_text_normal=0x7f090002;
-        public static final int abc_search_url_text_pressed=0x7f090003;
-        public static final int abc_search_url_text_selected=0x7f090004;
-        public static final int abc_secondary_text_material_dark=0x7f09004f;
-        public static final int abc_secondary_text_material_light=0x7f090050;
-        public static final int abc_tint_btn_checkable=0x7f090051;
-        public static final int abc_tint_default=0x7f090052;
-        public static final int abc_tint_edittext=0x7f090053;
-        public static final int abc_tint_seek_thumb=0x7f090054;
-        public static final int abc_tint_spinner=0x7f090055;
-        public static final int abc_tint_switch_thumb=0x7f090056;
-        public static final int abc_tint_switch_track=0x7f090057;
-        public static final int accent_material_dark=0x7f090005;
-        public static final int accent_material_light=0x7f090006;
-        public static final int background_floating_material_dark=0x7f090007;
-        public static final int background_floating_material_light=0x7f090008;
-        public static final int background_material_dark=0x7f090009;
-        public static final int background_material_light=0x7f09000a;
-        public static final int bright_foreground_disabled_material_dark=0x7f09000b;
-        public static final int bright_foreground_disabled_material_light=0x7f09000c;
-        public static final int bright_foreground_inverse_material_dark=0x7f09000d;
-        public static final int bright_foreground_inverse_material_light=0x7f09000e;
-        public static final int bright_foreground_material_dark=0x7f09000f;
-        public static final int bright_foreground_material_light=0x7f090010;
-        public static final int button_material_dark=0x7f090011;
-        public static final int button_material_light=0x7f090012;
-        public static final int common_google_signin_btn_text_dark=0x7f090058;
-        public static final int common_google_signin_btn_text_dark_default=0x7f090013;
-        public static final int common_google_signin_btn_text_dark_disabled=0x7f090014;
-        public static final int common_google_signin_btn_text_dark_focused=0x7f090015;
-        public static final int common_google_signin_btn_text_dark_pressed=0x7f090016;
-        public static final int common_google_signin_btn_text_light=0x7f090059;
-        public static final int common_google_signin_btn_text_light_default=0x7f090017;
-        public static final int common_google_signin_btn_text_light_disabled=0x7f090018;
-        public static final int common_google_signin_btn_text_light_focused=0x7f090019;
-        public static final int common_google_signin_btn_text_light_pressed=0x7f09001a;
-        public static final int common_google_signin_btn_tint=0x7f09005a;
-        public static final int dim_foreground_disabled_material_dark=0x7f09001b;
-        public static final int dim_foreground_disabled_material_light=0x7f09001c;
-        public static final int dim_foreground_material_dark=0x7f09001d;
-        public static final int dim_foreground_material_light=0x7f09001e;
-        public static final int foreground_material_dark=0x7f09001f;
-        public static final int foreground_material_light=0x7f090020;
-        public static final int highlighted_text_material_dark=0x7f090021;
-        public static final int highlighted_text_material_light=0x7f090022;
-        public static final int material_blue_grey_800=0x7f090023;
-        public static final int material_blue_grey_900=0x7f090024;
-        public static final int material_blue_grey_950=0x7f090025;
-        public static final int material_deep_teal_200=0x7f090026;
-        public static final int material_deep_teal_500=0x7f090027;
-        public static final int material_grey_100=0x7f090028;
-        public static final int material_grey_300=0x7f090029;
-        public static final int material_grey_50=0x7f09002a;
-        public static final int material_grey_600=0x7f09002b;
-        public static final int material_grey_800=0x7f09002c;
-        public static final int material_grey_850=0x7f09002d;
-        public static final int material_grey_900=0x7f09002e;
-        public static final int notification_action_color_filter=0x7f090000;
-        public static final int notification_icon_bg_color=0x7f09002f;
-        public static final int notification_material_background_media_default_color=0x7f090030;
-        public static final int primary_dark_material_dark=0x7f090031;
-        public static final int primary_dark_material_light=0x7f090032;
-        public static final int primary_material_dark=0x7f090033;
-        public static final int primary_material_light=0x7f090034;
-        public static final int primary_text_default_material_dark=0x7f090035;
-        public static final int primary_text_default_material_light=0x7f090036;
-        public static final int primary_text_disabled_material_dark=0x7f090037;
-        public static final int primary_text_disabled_material_light=0x7f090038;
-        public static final int ripple_material_dark=0x7f090039;
-        public static final int ripple_material_light=0x7f09003a;
-        public static final int secondary_text_default_material_dark=0x7f09003b;
-        public static final int secondary_text_default_material_light=0x7f09003c;
-        public static final int secondary_text_disabled_material_dark=0x7f09003d;
-        public static final int secondary_text_disabled_material_light=0x7f09003e;
-        public static final int switch_thumb_disabled_material_dark=0x7f09003f;
-        public static final int switch_thumb_disabled_material_light=0x7f090040;
-        public static final int switch_thumb_material_dark=0x7f09005b;
-        public static final int switch_thumb_material_light=0x7f09005c;
-        public static final int switch_thumb_normal_material_dark=0x7f090041;
-        public static final int switch_thumb_normal_material_light=0x7f090042;
-    }
-    public static final class dimen {
-        public static final int abc_action_bar_content_inset_material=0x7f06000c;
-        public static final int abc_action_bar_content_inset_with_nav=0x7f06000d;
-        public static final int abc_action_bar_default_height_material=0x7f060001;
-        public static final int abc_action_bar_default_padding_end_material=0x7f06000e;
-        public static final int abc_action_bar_default_padding_start_material=0x7f06000f;
-        public static final int abc_action_bar_elevation_material=0x7f060016;
-        public static final int abc_action_bar_icon_vertical_padding_material=0x7f060017;
-        public static final int abc_action_bar_overflow_padding_end_material=0x7f060018;
-        public static final int abc_action_bar_overflow_padding_start_material=0x7f060019;
-        public static final int abc_action_bar_progress_bar_size=0x7f060002;
-        public static final int abc_action_bar_stacked_max_height=0x7f06001a;
-        public static final int abc_action_bar_stacked_tab_max_width=0x7f06001b;
-        public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f06001c;
-        public static final int abc_action_bar_subtitle_top_margin_material=0x7f06001d;
-        public static final int abc_action_button_min_height_material=0x7f06001e;
-        public static final int abc_action_button_min_width_material=0x7f06001f;
-        public static final int abc_action_button_min_width_overflow_material=0x7f060020;
-        public static final int abc_alert_dialog_button_bar_height=0x7f060000;
-        public static final int abc_button_inset_horizontal_material=0x7f060021;
-        public static final int abc_button_inset_vertical_material=0x7f060022;
-        public static final int abc_button_padding_horizontal_material=0x7f060023;
-        public static final int abc_button_padding_vertical_material=0x7f060024;
-        public static final int abc_cascading_menus_min_smallest_width=0x7f060025;
-        public static final int abc_config_prefDialogWidth=0x7f060005;
-        public static final int abc_control_corner_material=0x7f060026;
-        public static final int abc_control_inset_material=0x7f060027;
-        public static final int abc_control_padding_material=0x7f060028;
-        public static final int abc_dialog_fixed_height_major=0x7f060006;
-        public static final int abc_dialog_fixed_height_minor=0x7f060007;
-        public static final int abc_dialog_fixed_width_major=0x7f060008;
-        public static final int abc_dialog_fixed_width_minor=0x7f060009;
-        public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f060029;
-        public static final int abc_dialog_list_padding_top_no_title=0x7f06002a;
-        public static final int abc_dialog_min_width_major=0x7f06000a;
-        public static final int abc_dialog_min_width_minor=0x7f06000b;
-        public static final int abc_dialog_padding_material=0x7f06002b;
-        public static final int abc_dialog_padding_top_material=0x7f06002c;
-        public static final int abc_dialog_title_divider_material=0x7f06002d;
-        public static final int abc_disabled_alpha_material_dark=0x7f06002e;
-        public static final int abc_disabled_alpha_material_light=0x7f06002f;
-        public static final int abc_dropdownitem_icon_width=0x7f060030;
-        public static final int abc_dropdownitem_text_padding_left=0x7f060031;
-        public static final int abc_dropdownitem_text_padding_right=0x7f060032;
-        public static final int abc_edit_text_inset_bottom_material=0x7f060033;
-        public static final int abc_edit_text_inset_horizontal_material=0x7f060034;
-        public static final int abc_edit_text_inset_top_material=0x7f060035;
-        public static final int abc_floating_window_z=0x7f060036;
-        public static final int abc_list_item_padding_horizontal_material=0x7f060037;
-        public static final int abc_panel_menu_list_width=0x7f060038;
-        public static final int abc_progress_bar_height_material=0x7f060039;
-        public static final int abc_search_view_preferred_height=0x7f06003a;
-        public static final int abc_search_view_preferred_width=0x7f06003b;
-        public static final int abc_seekbar_track_background_height_material=0x7f06003c;
-        public static final int abc_seekbar_track_progress_height_material=0x7f06003d;
-        public static final int abc_select_dialog_padding_start_material=0x7f06003e;
-        public static final int abc_switch_padding=0x7f060011;
-        public static final int abc_text_size_body_1_material=0x7f06003f;
-        public static final int abc_text_size_body_2_material=0x7f060040;
-        public static final int abc_text_size_button_material=0x7f060041;
-        public static final int abc_text_size_caption_material=0x7f060042;
-        public static final int abc_text_size_display_1_material=0x7f060043;
-        public static final int abc_text_size_display_2_material=0x7f060044;
-        public static final int abc_text_size_display_3_material=0x7f060045;
-        public static final int abc_text_size_display_4_material=0x7f060046;
-        public static final int abc_text_size_headline_material=0x7f060047;
-        public static final int abc_text_size_large_material=0x7f060048;
-        public static final int abc_text_size_medium_material=0x7f060049;
-        public static final int abc_text_size_menu_header_material=0x7f06004a;
-        public static final int abc_text_size_menu_material=0x7f06004b;
-        public static final int abc_text_size_small_material=0x7f06004c;
-        public static final int abc_text_size_subhead_material=0x7f06004d;
-        public static final int abc_text_size_subtitle_material_toolbar=0x7f060003;
-        public static final int abc_text_size_title_material=0x7f06004e;
-        public static final int abc_text_size_title_material_toolbar=0x7f060004;
-        public static final int activity_horizontal_margin=0x7f060015;
-        public static final int activity_vertical_margin=0x7f06004f;
-        public static final int disabled_alpha_material_dark=0x7f060050;
-        public static final int disabled_alpha_material_light=0x7f060051;
-        public static final int highlight_alpha_material_colored=0x7f060052;
-        public static final int highlight_alpha_material_dark=0x7f060053;
-        public static final int highlight_alpha_material_light=0x7f060054;
-        public static final int hint_alpha_material_dark=0x7f060055;
-        public static final int hint_alpha_material_light=0x7f060056;
-        public static final int hint_pressed_alpha_material_dark=0x7f060057;
-        public static final int hint_pressed_alpha_material_light=0x7f060058;
-        public static final int notification_action_icon_size=0x7f060059;
-        public static final int notification_action_text_size=0x7f06005a;
-        public static final int notification_big_circle_margin=0x7f06005b;
-        public static final int notification_content_margin_start=0x7f060012;
-        public static final int notification_large_icon_height=0x7f06005c;
-        public static final int notification_large_icon_width=0x7f06005d;
-        public static final int notification_main_column_padding_top=0x7f060013;
-        public static final int notification_media_narrow_margin=0x7f060014;
-        public static final int notification_right_icon_size=0x7f06005e;
-        public static final int notification_right_side_padding_top=0x7f060010;
-        public static final int notification_small_icon_background_padding=0x7f06005f;
-        public static final int notification_small_icon_size_as_large=0x7f060060;
-        public static final int notification_subtext_size=0x7f060061;
-        public static final int notification_top_pad=0x7f060062;
-        public static final int notification_top_pad_large_text=0x7f060063;
-    }
-    public static final class drawable {
-        public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
-        public static final int abc_action_bar_item_background_material=0x7f020001;
-        public static final int abc_btn_borderless_material=0x7f020002;
-        public static final int abc_btn_check_material=0x7f020003;
-        public static final int abc_btn_check_to_on_mtrl_000=0x7f020004;
-        public static final int abc_btn_check_to_on_mtrl_015=0x7f020005;
-        public static final int abc_btn_colored_material=0x7f020006;
-        public static final int abc_btn_default_mtrl_shape=0x7f020007;
-        public static final int abc_btn_radio_material=0x7f020008;
-        public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009;
-        public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
-        public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;
-        public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;
-        public static final int abc_cab_background_internal_bg=0x7f02000d;
-        public static final int abc_cab_background_top_material=0x7f02000e;
-        public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f;
-        public static final int abc_control_background_material=0x7f020010;
-        public static final int abc_dialog_material_background=0x7f020011;
-        public static final int abc_edit_text_material=0x7f020012;
-        public static final int abc_ic_ab_back_material=0x7f020013;
-        public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014;
-        public static final int abc_ic_clear_material=0x7f020015;
-        public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016;
-        public static final int abc_ic_go_search_api_material=0x7f020017;
-        public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018;
-        public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019;
-        public static final int abc_ic_menu_overflow_material=0x7f02001a;
-        public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b;
-        public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c;
-        public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d;
-        public static final int abc_ic_search_api_material=0x7f02001e;
-        public static final int abc_ic_star_black_16dp=0x7f02001f;
-        public static final int abc_ic_star_black_36dp=0x7f020020;
-        public static final int abc_ic_star_black_48dp=0x7f020021;
-        public static final int abc_ic_star_half_black_16dp=0x7f020022;
-        public static final int abc_ic_star_half_black_36dp=0x7f020023;
-        public static final int abc_ic_star_half_black_48dp=0x7f020024;
-        public static final int abc_ic_voice_search_api_material=0x7f020025;
-        public static final int abc_item_background_holo_dark=0x7f020026;
-        public static final int abc_item_background_holo_light=0x7f020027;
-        public static final int abc_list_divider_mtrl_alpha=0x7f020028;
-        public static final int abc_list_focused_holo=0x7f020029;
-        public static final int abc_list_longpressed_holo=0x7f02002a;
-        public static final int abc_list_pressed_holo_dark=0x7f02002b;
-        public static final int abc_list_pressed_holo_light=0x7f02002c;
-        public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d;
-        public static final int abc_list_selector_background_transition_holo_light=0x7f02002e;
-        public static final int abc_list_selector_disabled_holo_dark=0x7f02002f;
-        public static final int abc_list_selector_disabled_holo_light=0x7f020030;
-        public static final int abc_list_selector_holo_dark=0x7f020031;
-        public static final int abc_list_selector_holo_light=0x7f020032;
-        public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
-        public static final int abc_popup_background_mtrl_mult=0x7f020034;
-        public static final int abc_ratingbar_indicator_material=0x7f020035;
-        public static final int abc_ratingbar_material=0x7f020036;
-        public static final int abc_ratingbar_small_material=0x7f020037;
-        public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
-        public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
-        public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
-        public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
-        public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c;
-        public static final int abc_seekbar_thumb_material=0x7f02003d;
-        public static final int abc_seekbar_tick_mark_material=0x7f02003e;
-        public static final int abc_seekbar_track_material=0x7f02003f;
-        public static final int abc_spinner_mtrl_am_alpha=0x7f020040;
-        public static final int abc_spinner_textfield_background_material=0x7f020041;
-        public static final int abc_switch_thumb_material=0x7f020042;
-        public static final int abc_switch_track_mtrl_alpha=0x7f020043;
-        public static final int abc_tab_indicator_material=0x7f020044;
-        public static final int abc_tab_indicator_mtrl_alpha=0x7f020045;
-        public static final int abc_text_cursor_material=0x7f020046;
-        public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047;
-        public static final int abc_text_select_handle_left_mtrl_light=0x7f020048;
-        public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049;
-        public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a;
-        public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b;
-        public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c;
-        public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d;
-        public static final int abc_textfield_default_mtrl_alpha=0x7f02004e;
-        public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f;
-        public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050;
-        public static final int abc_textfield_search_material=0x7f020051;
-        public static final int abc_vector_test=0x7f020052;
-        public static final int common_full_open_on_phone=0x7f020053;
-        public static final int common_google_signin_btn_icon_dark=0x7f020054;
-        public static final int common_google_signin_btn_icon_dark_focused=0x7f020055;
-        public static final int common_google_signin_btn_icon_dark_normal=0x7f020056;
-        public static final int common_google_signin_btn_icon_dark_normal_background=0x7f020057;
-        public static final int common_google_signin_btn_icon_disabled=0x7f020058;
-        public static final int common_google_signin_btn_icon_light=0x7f020059;
-        public static final int common_google_signin_btn_icon_light_focused=0x7f02005a;
-        public static final int common_google_signin_btn_icon_light_normal=0x7f02005b;
-        public static final int common_google_signin_btn_icon_light_normal_background=0x7f02005c;
-        public static final int common_google_signin_btn_text_dark=0x7f02005d;
-        public static final int common_google_signin_btn_text_dark_focused=0x7f02005e;
-        public static final int common_google_signin_btn_text_dark_normal=0x7f02005f;
-        public static final int common_google_signin_btn_text_dark_normal_background=0x7f020060;
-        public static final int common_google_signin_btn_text_disabled=0x7f020061;
-        public static final int common_google_signin_btn_text_light=0x7f020062;
-        public static final int common_google_signin_btn_text_light_focused=0x7f020063;
-        public static final int common_google_signin_btn_text_light_normal=0x7f020064;
-        public static final int common_google_signin_btn_text_light_normal_background=0x7f020065;
-        public static final int googleg_disabled_color_18=0x7f020066;
-        public static final int googleg_standard_color_18=0x7f020067;
-        public static final int ic_stat_name=0x7f020068;
-        public static final int icon=0x7f020069;
-        public static final int notification_action_background=0x7f02006a;
-        public static final int notification_bg=0x7f02006b;
-        public static final int notification_bg_low=0x7f02006c;
-        public static final int notification_bg_low_normal=0x7f02006d;
-        public static final int notification_bg_low_pressed=0x7f02006e;
-        public static final int notification_bg_normal=0x7f02006f;
-        public static final int notification_bg_normal_pressed=0x7f020070;
-        public static final int notification_icon=0x7f020071;
-        public static final int notification_icon_background=0x7f020072;
-        public static final int notification_template_icon_bg=0x7f020076;
-        public static final int notification_template_icon_low_bg=0x7f020077;
-        public static final int notification_tile_bg=0x7f020073;
-        public static final int notify_panel_notification_icon_bg=0x7f020074;
-        public static final int splash=0x7f020075;
-    }
-    public static final class id {
-        public static final int action0=0x7f0b0063;
-        public static final int action_bar=0x7f0b0050;
-        public static final int action_bar_activity_content=0x7f0b0000;
-        public static final int action_bar_container=0x7f0b004f;
-        public static final int action_bar_root=0x7f0b004b;
-        public static final int action_bar_spinner=0x7f0b0001;
-        public static final int action_bar_subtitle=0x7f0b002e;
-        public static final int action_bar_title=0x7f0b002d;
-        public static final int action_container=0x7f0b0060;
-        public static final int action_context_bar=0x7f0b0051;
-        public static final int action_divider=0x7f0b0067;
-        public static final int action_image=0x7f0b0061;
-        public static final int action_menu_divider=0x7f0b0002;
-        public static final int action_menu_presenter=0x7f0b0003;
-        public static final int action_mode_bar=0x7f0b004d;
-        public static final int action_mode_bar_stub=0x7f0b004c;
-        public static final int action_mode_close_button=0x7f0b002f;
-        public static final int action_text=0x7f0b0062;
-        public static final int actions=0x7f0b0070;
-        public static final int activity_chooser_view_content=0x7f0b0030;
-        public static final int activity_jits_call=0x7f0b005f;
-        public static final int add=0x7f0b0014;
-        public static final int adjust_height=0x7f0b001e;
-        public static final int adjust_width=0x7f0b001f;
-        public static final int alertTitle=0x7f0b0044;
-        public static final int always=0x7f0b0020;
-        public static final int auto=0x7f0b0028;
-        public static final int beginning=0x7f0b001b;
-        public static final int bottom=0x7f0b002b;
-        public static final int buttonPanel=0x7f0b0037;
-        public static final int cancel_action=0x7f0b0064;
-        public static final int checkbox=0x7f0b0047;
-        public static final int chronometer=0x7f0b006c;
-        public static final int collapseActionView=0x7f0b0021;
-        public static final int contentPanel=0x7f0b003a;
-        public static final int crash_reporting_present=0x7f0b0004;
-        public static final int custom=0x7f0b0041;
-        public static final int customPanel=0x7f0b0040;
-        public static final int dark=0x7f0b0029;
-        public static final int decor_content_parent=0x7f0b004e;
-        public static final int default_activity_button=0x7f0b0033;
-        public static final int disableHome=0x7f0b000d;
-        public static final int edit_query=0x7f0b0052;
-        public static final int end=0x7f0b001c;
-        public static final int end_padder=0x7f0b0076;
-        public static final int expand_activities_button=0x7f0b0031;
-        public static final int expanded_menu=0x7f0b0046;
-        public static final int home=0x7f0b0005;
-        public static final int homeAsUp=0x7f0b000e;
-        public static final int icon=0x7f0b0035;
-        public static final int icon_group=0x7f0b0071;
-        public static final int icon_only=0x7f0b0025;
-        public static final int ifRoom=0x7f0b0022;
-        public static final int image=0x7f0b0032;
-        public static final int info=0x7f0b006d;
-        public static final int light=0x7f0b002a;
-        public static final int line1=0x7f0b0072;
-        public static final int line3=0x7f0b0074;
-        public static final int listMode=0x7f0b000a;
-        public static final int list_item=0x7f0b0034;
-        public static final int media_actions=0x7f0b0066;
-        public static final int middle=0x7f0b001d;
-        public static final int multiply=0x7f0b0015;
-        public static final int never=0x7f0b0023;
-        public static final int none=0x7f0b000f;
-        public static final int normal=0x7f0b000b;
-        public static final int notification_background=0x7f0b006e;
-        public static final int notification_main_column=0x7f0b0069;
-        public static final int notification_main_column_container=0x7f0b0068;
-        public static final int parentPanel=0x7f0b0039;
-        public static final int progress_circular=0x7f0b0006;
-        public static final int progress_horizontal=0x7f0b0007;
-        public static final int radio=0x7f0b0049;
-        public static final int right_icon=0x7f0b006f;
-        public static final int right_side=0x7f0b006a;
-        public static final int screen=0x7f0b0016;
-        public static final int scrollIndicatorDown=0x7f0b003f;
-        public static final int scrollIndicatorUp=0x7f0b003b;
-        public static final int scrollView=0x7f0b003c;
-        public static final int search_badge=0x7f0b0054;
-        public static final int search_bar=0x7f0b0053;
-        public static final int search_button=0x7f0b0055;
-        public static final int search_close_btn=0x7f0b005a;
-        public static final int search_edit_frame=0x7f0b0056;
-        public static final int search_go_btn=0x7f0b005c;
-        public static final int search_mag_icon=0x7f0b0057;
-        public static final int search_plate=0x7f0b0058;
-        public static final int search_src_text=0x7f0b0059;
-        public static final int search_voice_btn=0x7f0b005d;
-        public static final int select_dialog_listview=0x7f0b005e;
-        public static final int shortcut=0x7f0b0048;
-        public static final int showCustom=0x7f0b0010;
-        public static final int showHome=0x7f0b0011;
-        public static final int showTitle=0x7f0b0012;
-        public static final int spacer=0x7f0b0038;
-        public static final int split_action_bar=0x7f0b0008;
-        public static final int src_atop=0x7f0b0017;
-        public static final int src_in=0x7f0b0018;
-        public static final int src_over=0x7f0b0019;
-        public static final int standard=0x7f0b0026;
-        public static final int status_bar_latest_event_content=0x7f0b0065;
-        public static final int submenuarrow=0x7f0b004a;
-        public static final int submit_area=0x7f0b005b;
-        public static final int tabMode=0x7f0b000c;
-        public static final int text=0x7f0b0075;
-        public static final int text2=0x7f0b0073;
-        public static final int textSpacerNoButtons=0x7f0b003e;
-        public static final int textSpacerNoTitle=0x7f0b003d;
-        public static final int time=0x7f0b006b;
-        public static final int title=0x7f0b0036;
-        public static final int titleDividerNoCustom=0x7f0b0045;
-        public static final int title_template=0x7f0b0043;
-        public static final int top=0x7f0b002c;
-        public static final int topPanel=0x7f0b0042;
-        public static final int up=0x7f0b0009;
-        public static final int useLogo=0x7f0b0013;
-        public static final int wide=0x7f0b0027;
-        public static final int withText=0x7f0b0024;
-        public static final int wrap_content=0x7f0b001a;
-    }
-    public static final class integer {
-        public static final int abc_config_activityDefaultDur=0x7f0c0000;
-        public static final int abc_config_activityShortDur=0x7f0c0001;
-        public static final int cancel_button_image_alpha=0x7f0c0002;
-        public static final int google_play_services_version=0x7f0c0003;
-        public static final int status_bar_notification_info_maxnum=0x7f0c0004;
-    }
-    public static final class layout {
-        public static final int abc_action_bar_title_item=0x7f030000;
-        public static final int abc_action_bar_up_container=0x7f030001;
-        public static final int abc_action_bar_view_list_nav_layout=0x7f030002;
-        public static final int abc_action_menu_item_layout=0x7f030003;
-        public static final int abc_action_menu_layout=0x7f030004;
-        public static final int abc_action_mode_bar=0x7f030005;
-        public static final int abc_action_mode_close_item_material=0x7f030006;
-        public static final int abc_activity_chooser_view=0x7f030007;
-        public static final int abc_activity_chooser_view_list_item=0x7f030008;
-        public static final int abc_alert_dialog_button_bar_material=0x7f030009;
-        public static final int abc_alert_dialog_material=0x7f03000a;
-        public static final int abc_alert_dialog_title_material=0x7f03000b;
-        public static final int abc_dialog_title_material=0x7f03000c;
-        public static final int abc_expanded_menu_layout=0x7f03000d;
-        public static final int abc_list_menu_item_checkbox=0x7f03000e;
-        public static final int abc_list_menu_item_icon=0x7f03000f;
-        public static final int abc_list_menu_item_layout=0x7f030010;
-        public static final int abc_list_menu_item_radio=0x7f030011;
-        public static final int abc_popup_menu_header_item_layout=0x7f030012;
-        public static final int abc_popup_menu_item_layout=0x7f030013;
-        public static final int abc_screen_content_include=0x7f030014;
-        public static final int abc_screen_simple=0x7f030015;
-        public static final int abc_screen_simple_overlay_action_mode=0x7f030016;
-        public static final int abc_screen_toolbar=0x7f030017;
-        public static final int abc_search_dropdown_item_icons_2line=0x7f030018;
-        public static final int abc_search_view=0x7f030019;
-        public static final int abc_select_dialog_material=0x7f03001a;
-        public static final int activity_jits_call=0x7f03001b;
-        public static final int notification_action=0x7f03001c;
-        public static final int notification_action_tombstone=0x7f03001d;
-        public static final int notification_media_action=0x7f03001e;
-        public static final int notification_media_cancel_action=0x7f03001f;
-        public static final int notification_template_big_media=0x7f030020;
-        public static final int notification_template_big_media_custom=0x7f030021;
-        public static final int notification_template_big_media_narrow=0x7f030022;
-        public static final int notification_template_big_media_narrow_custom=0x7f030023;
-        public static final int notification_template_custom_big=0x7f030024;
-        public static final int notification_template_icon_group=0x7f030025;
-        public static final int notification_template_lines_media=0x7f030026;
-        public static final int notification_template_media=0x7f030027;
-        public static final int notification_template_media_custom=0x7f030028;
-        public static final int notification_template_part_chronometer=0x7f030029;
-        public static final int notification_template_part_time=0x7f03002a;
-        public static final int select_dialog_item_material=0x7f03002b;
-        public static final int select_dialog_multichoice_material=0x7f03002c;
-        public static final int select_dialog_singlechoice_material=0x7f03002d;
-        public static final int splash=0x7f03002e;
-        public static final int support_simple_spinner_dropdown_item=0x7f03002f;
-    }
-    public static final class string {
-        public static final int abc_action_bar_home_description=0x7f050000;
-        public static final int abc_action_bar_home_description_format=0x7f050001;
-        public static final int abc_action_bar_home_subtitle_description_format=0x7f050002;
-        public static final int abc_action_bar_up_description=0x7f050003;
-        public static final int abc_action_menu_overflow_description=0x7f050004;
-        public static final int abc_action_mode_done=0x7f050005;
-        public static final int abc_activity_chooser_view_see_all=0x7f050006;
-        public static final int abc_activitychooserview_choose_application=0x7f050007;
-        public static final int abc_capital_off=0x7f050008;
-        public static final int abc_capital_on=0x7f050009;
-        public static final int abc_font_family_body_1_material=0x7f05002a;
-        public static final int abc_font_family_body_2_material=0x7f05002b;
-        public static final int abc_font_family_button_material=0x7f05002c;
-        public static final int abc_font_family_caption_material=0x7f05002d;
-        public static final int abc_font_family_display_1_material=0x7f05002e;
-        public static final int abc_font_family_display_2_material=0x7f05002f;
-        public static final int abc_font_family_display_3_material=0x7f050030;
-        public static final int abc_font_family_display_4_material=0x7f050031;
-        public static final int abc_font_family_headline_material=0x7f050032;
-        public static final int abc_font_family_menu_material=0x7f050033;
-        public static final int abc_font_family_subhead_material=0x7f050034;
-        public static final int abc_font_family_title_material=0x7f050035;
-        public static final int abc_search_hint=0x7f05000a;
-        public static final int abc_searchview_description_clear=0x7f05000b;
-        public static final int abc_searchview_description_query=0x7f05000c;
-        public static final int abc_searchview_description_search=0x7f05000d;
-        public static final int abc_searchview_description_submit=0x7f05000e;
-        public static final int abc_searchview_description_voice=0x7f05000f;
-        public static final int abc_shareactionprovider_share_with=0x7f050010;
-        public static final int abc_shareactionprovider_share_with_application=0x7f050011;
-        public static final int abc_toolbar_collapse_description=0x7f050012;
-        public static final int com_crashlytics_android_build_id=0x7f050036;
-        public static final int common_google_play_services_enable_button=0x7f050013;
-        public static final int common_google_play_services_enable_text=0x7f050014;
-        public static final int common_google_play_services_enable_title=0x7f050015;
-        public static final int common_google_play_services_install_button=0x7f050016;
-        public static final int common_google_play_services_install_text=0x7f050017;
-        public static final int common_google_play_services_install_title=0x7f050018;
-        public static final int common_google_play_services_notification_ticker=0x7f050019;
-        public static final int common_google_play_services_unknown_issue=0x7f05001a;
-        public static final int common_google_play_services_unsupported_text=0x7f05001b;
-        public static final int common_google_play_services_update_button=0x7f05001c;
-        public static final int common_google_play_services_update_text=0x7f05001d;
-        public static final int common_google_play_services_update_title=0x7f05001e;
-        public static final int common_google_play_services_updating_text=0x7f05001f;
-        public static final int common_google_play_services_wear_update_text=0x7f050020;
-        public static final int common_open_on_phone=0x7f050021;
-        public static final int common_signin_button_text=0x7f050022;
-        public static final int common_signin_button_text_long=0x7f050023;
-        public static final int default_web_client_id=0x7f050037;
-        public static final int fatal_error_msg=0x7f050026;
-        public static final int firebase_database_url=0x7f050038;
-        public static final int gcm_defaultSenderId=0x7f050039;
-        public static final int google_api_key=0x7f05003a;
-        public static final int google_app_id=0x7f05003b;
-        public static final int google_crash_reporting_api_key=0x7f05003c;
-        public static final int google_storage_bucket=0x7f05003d;
-        public static final int ministro_needed_msg=0x7f050027;
-        public static final int ministro_not_found_msg=0x7f050028;
-        public static final int search_menu_title=0x7f050024;
-        public static final int status_bar_notification_info_overflow=0x7f050025;
-        public static final int unsupported_android_version=0x7f050029;
-    }
-    public static final class style {
-        public static final int AlertDialog_AppCompat=0x7f07009f;
-        public static final int AlertDialog_AppCompat_Light=0x7f0700a0;
-        public static final int Animation_AppCompat_Dialog=0x7f0700a1;
-        public static final int Animation_AppCompat_DropDownUp=0x7f0700a2;
-        public static final int Base_AlertDialog_AppCompat=0x7f0700a3;
-        public static final int Base_AlertDialog_AppCompat_Light=0x7f0700a4;
-        public static final int Base_Animation_AppCompat_Dialog=0x7f0700a5;
-        public static final int Base_Animation_AppCompat_DropDownUp=0x7f0700a6;
-        public static final int Base_DialogWindowTitle_AppCompat=0x7f0700a7;
-        public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0700a8;
-        public static final int Base_TextAppearance_AppCompat=0x7f07003f;
-        public static final int Base_TextAppearance_AppCompat_Body1=0x7f070040;
-        public static final int Base_TextAppearance_AppCompat_Body2=0x7f070041;
-        public static final int Base_TextAppearance_AppCompat_Button=0x7f070027;
-        public static final int Base_TextAppearance_AppCompat_Caption=0x7f070042;
-        public static final int Base_TextAppearance_AppCompat_Display1=0x7f070043;
-        public static final int Base_TextAppearance_AppCompat_Display2=0x7f070044;
-        public static final int Base_TextAppearance_AppCompat_Display3=0x7f070045;
-        public static final int Base_TextAppearance_AppCompat_Display4=0x7f070046;
-        public static final int Base_TextAppearance_AppCompat_Headline=0x7f070047;
-        public static final int Base_TextAppearance_AppCompat_Inverse=0x7f07000b;
-        public static final int Base_TextAppearance_AppCompat_Large=0x7f070048;
-        public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f07000c;
-        public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f070049;
-        public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f07004a;
-        public static final int Base_TextAppearance_AppCompat_Medium=0x7f07004b;
-        public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f07000d;
-        public static final int Base_TextAppearance_AppCompat_Menu=0x7f07004c;
-        public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0700a9;
-        public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f07004d;
-        public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f07004e;
-        public static final int Base_TextAppearance_AppCompat_Small=0x7f07004f;
-        public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f07000e;
-        public static final int Base_TextAppearance_AppCompat_Subhead=0x7f070050;
-        public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f07000f;
-        public static final int Base_TextAppearance_AppCompat_Title=0x7f070051;
-        public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f070010;
-        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f070094;
-        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f070052;
-        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f070053;
-        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f070054;
-        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f070055;
-        public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f070056;
-        public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f070057;
-        public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f070058;
-        public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f07009b;
-        public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f07009c;
-        public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f070095;
-        public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0700aa;
-        public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f070059;
-        public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f07005a;
-        public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f07005b;
-        public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f07005c;
-        public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f07005d;
-        public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0700ab;
-        public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f07005e;
-        public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f07005f;
-        public static final int Base_Theme_AppCompat=0x7f070060;
-        public static final int Base_Theme_AppCompat_CompactMenu=0x7f0700ac;
-        public static final int Base_Theme_AppCompat_Dialog=0x7f070011;
-        public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f070012;
-        public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0700ad;
-        public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f070013;
-        public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f070001;
-        public static final int Base_Theme_AppCompat_Light=0x7f070061;
-        public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0700ae;
-        public static final int Base_Theme_AppCompat_Light_Dialog=0x7f070014;
-        public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f070015;
-        public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0700af;
-        public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f070016;
-        public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f070002;
-        public static final int Base_ThemeOverlay_AppCompat=0x7f0700b0;
-        public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0700b1;
-        public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0700b2;
-        public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700b3;
-        public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f070017;
-        public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f070018;
-        public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0700b4;
-        public static final int Base_V11_Theme_AppCompat_Dialog=0x7f070019;
-        public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f07001a;
-        public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f07001b;
-        public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f070023;
-        public static final int Base_V12_Widget_AppCompat_EditText=0x7f070024;
-        public static final int Base_V21_Theme_AppCompat=0x7f070062;
-        public static final int Base_V21_Theme_AppCompat_Dialog=0x7f070063;
-        public static final int Base_V21_Theme_AppCompat_Light=0x7f070064;
-        public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f070065;
-        public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f070066;
-        public static final int Base_V22_Theme_AppCompat=0x7f070092;
-        public static final int Base_V22_Theme_AppCompat_Light=0x7f070093;
-        public static final int Base_V23_Theme_AppCompat=0x7f070096;
-        public static final int Base_V23_Theme_AppCompat_Light=0x7f070097;
-        public static final int Base_V7_Theme_AppCompat=0x7f0700b5;
-        public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0700b6;
-        public static final int Base_V7_Theme_AppCompat_Light=0x7f0700b7;
-        public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0700b8;
-        public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0700b9;
-        public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0700ba;
-        public static final int Base_V7_Widget_AppCompat_EditText=0x7f0700bb;
-        public static final int Base_Widget_AppCompat_ActionBar=0x7f0700bc;
-        public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0700bd;
-        public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0700be;
-        public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f070067;
-        public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f070068;
-        public static final int Base_Widget_AppCompat_ActionButton=0x7f070069;
-        public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f07006a;
-        public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f07006b;
-        public static final int Base_Widget_AppCompat_ActionMode=0x7f0700bf;
-        public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0700c0;
-        public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f070025;
-        public static final int Base_Widget_AppCompat_Button=0x7f07006c;
-        public static final int Base_Widget_AppCompat_Button_Borderless=0x7f07006d;
-        public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f07006e;
-        public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0700c1;
-        public static final int Base_Widget_AppCompat_Button_Colored=0x7f070098;
-        public static final int Base_Widget_AppCompat_Button_Small=0x7f07006f;
-        public static final int Base_Widget_AppCompat_ButtonBar=0x7f070070;
-        public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700c2;
-        public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f070071;
-        public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f070072;
-        public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0700c3;
-        public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f070000;
-        public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0700c4;
-        public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f070073;
-        public static final int Base_Widget_AppCompat_EditText=0x7f070026;
-        public static final int Base_Widget_AppCompat_ImageButton=0x7f070074;
-        public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0700c5;
-        public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0700c6;
-        public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0700c7;
-        public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f070075;
-        public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f070076;
-        public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f070077;
-        public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f070078;
-        public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070079;
-        public static final int Base_Widget_AppCompat_ListMenuView=0x7f0700c8;
-        public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f07007a;
-        public static final int Base_Widget_AppCompat_ListView=0x7f07007b;
-        public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f07007c;
-        public static final int Base_Widget_AppCompat_ListView_Menu=0x7f07007d;
-        public static final int Base_Widget_AppCompat_PopupMenu=0x7f07007e;
-        public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f07007f;
-        public static final int Base_Widget_AppCompat_PopupWindow=0x7f0700c9;
-        public static final int Base_Widget_AppCompat_ProgressBar=0x7f07001c;
-        public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f07001d;
-        public static final int Base_Widget_AppCompat_RatingBar=0x7f070080;
-        public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f070099;
-        public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f07009a;
-        public static final int Base_Widget_AppCompat_SearchView=0x7f0700ca;
-        public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0700cb;
-        public static final int Base_Widget_AppCompat_SeekBar=0x7f070081;
-        public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0700cc;
-        public static final int Base_Widget_AppCompat_Spinner=0x7f070082;
-        public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f070003;
-        public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f070083;
-        public static final int Base_Widget_AppCompat_Toolbar=0x7f0700cd;
-        public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f070084;
-        public static final int Platform_AppCompat=0x7f07001e;
-        public static final int Platform_AppCompat_Light=0x7f07001f;
-        public static final int Platform_ThemeOverlay_AppCompat=0x7f070085;
-        public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f070086;
-        public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f070087;
-        public static final int Platform_V11_AppCompat=0x7f070020;
-        public static final int Platform_V11_AppCompat_Light=0x7f070021;
-        public static final int Platform_V14_AppCompat=0x7f070028;
-        public static final int Platform_V14_AppCompat_Light=0x7f070029;
-        public static final int Platform_V21_AppCompat=0x7f070088;
-        public static final int Platform_V21_AppCompat_Light=0x7f070089;
-        public static final int Platform_V25_AppCompat=0x7f07009d;
-        public static final int Platform_V25_AppCompat_Light=0x7f07009e;
-        public static final int Platform_Widget_AppCompat_Spinner=0x7f070022;
-        public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f070031;
-        public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f070032;
-        public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f070033;
-        public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f070034;
-        public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f070035;
-        public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f070036;
-        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f070037;
-        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f070038;
-        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f070039;
-        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f07003a;
-        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f07003b;
-        public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f07003c;
-        public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f07003d;
-        public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f07003e;
-        public static final int TextAppearance_AppCompat=0x7f0700ce;
-        public static final int TextAppearance_AppCompat_Body1=0x7f0700cf;
-        public static final int TextAppearance_AppCompat_Body2=0x7f0700d0;
-        public static final int TextAppearance_AppCompat_Button=0x7f0700d1;
-        public static final int TextAppearance_AppCompat_Caption=0x7f0700d2;
-        public static final int TextAppearance_AppCompat_Display1=0x7f0700d3;
-        public static final int TextAppearance_AppCompat_Display2=0x7f0700d4;
-        public static final int TextAppearance_AppCompat_Display3=0x7f0700d5;
-        public static final int TextAppearance_AppCompat_Display4=0x7f0700d6;
-        public static final int TextAppearance_AppCompat_Headline=0x7f0700d7;
-        public static final int TextAppearance_AppCompat_Inverse=0x7f0700d8;
-        public static final int TextAppearance_AppCompat_Large=0x7f0700d9;
-        public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0700da;
-        public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0700db;
-        public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0700dc;
-        public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0700dd;
-        public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0700de;
-        public static final int TextAppearance_AppCompat_Medium=0x7f0700df;
-        public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0700e0;
-        public static final int TextAppearance_AppCompat_Menu=0x7f0700e1;
-        public static final int TextAppearance_AppCompat_Notification=0x7f07002a;
-        public static final int TextAppearance_AppCompat_Notification_Info=0x7f07008a;
-        public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f07008b;
-        public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0700e2;
-        public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0700e3;
-        public static final int TextAppearance_AppCompat_Notification_Media=0x7f07008c;
-        public static final int TextAppearance_AppCompat_Notification_Time=0x7f07008d;
-        public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f07008e;
-        public static final int TextAppearance_AppCompat_Notification_Title=0x7f07002b;
-        public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f07008f;
-        public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0700e4;
-        public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0700e5;
-        public static final int TextAppearance_AppCompat_Small=0x7f0700e6;
-        public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0700e7;
-        public static final int TextAppearance_AppCompat_Subhead=0x7f0700e8;
-        public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0700e9;
-        public static final int TextAppearance_AppCompat_Title=0x7f0700ea;
-        public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0700eb;
-        public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0700ec;
-        public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0700ed;
-        public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0700ee;
-        public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0700ef;
-        public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0700f0;
-        public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0700f1;
-        public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0700f2;
-        public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0700f3;
-        public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0700f4;
-        public static final int TextAppearance_AppCompat_Widget_Button=0x7f0700f5;
-        public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0700f6;
-        public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0700f7;
-        public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0700f8;
-        public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0700f9;
-        public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0700fa;
-        public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0700fb;
-        public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0700fc;
-        public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0700fd;
-        public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0700fe;
-        public static final int TextAppearance_StatusBar_EventContent=0x7f07002c;
-        public static final int TextAppearance_StatusBar_EventContent_Info=0x7f07002d;
-        public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f07002e;
-        public static final int TextAppearance_StatusBar_EventContent_Time=0x7f07002f;
-        public static final int TextAppearance_StatusBar_EventContent_Title=0x7f070030;
-        public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0700ff;
-        public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f070100;
-        public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f070101;
-        public static final int Theme_AppCompat=0x7f070102;
-        public static final int Theme_AppCompat_CompactMenu=0x7f070103;
-        public static final int Theme_AppCompat_DayNight=0x7f070004;
-        public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f070005;
-        public static final int Theme_AppCompat_DayNight_Dialog=0x7f070006;
-        public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f070007;
-        public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f070008;
-        public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f070009;
-        public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f07000a;
-        public static final int Theme_AppCompat_Dialog=0x7f070104;
-        public static final int Theme_AppCompat_Dialog_Alert=0x7f070105;
-        public static final int Theme_AppCompat_Dialog_MinWidth=0x7f070106;
-        public static final int Theme_AppCompat_DialogWhenLarge=0x7f070107;
-        public static final int Theme_AppCompat_Light=0x7f070108;
-        public static final int Theme_AppCompat_Light_DarkActionBar=0x7f070109;
-        public static final int Theme_AppCompat_Light_Dialog=0x7f07010a;
-        public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f07010b;
-        public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f07010c;
-        public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f07010d;
-        public static final int Theme_AppCompat_Light_NoActionBar=0x7f07010e;
-        public static final int Theme_AppCompat_NoActionBar=0x7f07010f;
-        public static final int ThemeOverlay_AppCompat=0x7f070110;
-        public static final int ThemeOverlay_AppCompat_ActionBar=0x7f070111;
-        public static final int ThemeOverlay_AppCompat_Dark=0x7f070112;
-        public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f070113;
-        public static final int ThemeOverlay_AppCompat_Dialog=0x7f070114;
-        public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f070115;
-        public static final int ThemeOverlay_AppCompat_Light=0x7f070116;
-        public static final int Widget_AppCompat_ActionBar=0x7f070117;
-        public static final int Widget_AppCompat_ActionBar_Solid=0x7f070118;
-        public static final int Widget_AppCompat_ActionBar_TabBar=0x7f070119;
-        public static final int Widget_AppCompat_ActionBar_TabText=0x7f07011a;
-        public static final int Widget_AppCompat_ActionBar_TabView=0x7f07011b;
-        public static final int Widget_AppCompat_ActionButton=0x7f07011c;
-        public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f07011d;
-        public static final int Widget_AppCompat_ActionButton_Overflow=0x7f07011e;
-        public static final int Widget_AppCompat_ActionMode=0x7f07011f;
-        public static final int Widget_AppCompat_ActivityChooserView=0x7f070120;
-        public static final int Widget_AppCompat_AutoCompleteTextView=0x7f070121;
-        public static final int Widget_AppCompat_Button=0x7f070122;
-        public static final int Widget_AppCompat_Button_Borderless=0x7f070123;
-        public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f070124;
-        public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f070125;
-        public static final int Widget_AppCompat_Button_Colored=0x7f070126;
-        public static final int Widget_AppCompat_Button_Small=0x7f070127;
-        public static final int Widget_AppCompat_ButtonBar=0x7f070128;
-        public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f070129;
-        public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f07012a;
-        public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f07012b;
-        public static final int Widget_AppCompat_CompoundButton_Switch=0x7f07012c;
-        public static final int Widget_AppCompat_DrawerArrowToggle=0x7f07012d;
-        public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f07012e;
-        public static final int Widget_AppCompat_EditText=0x7f07012f;
-        public static final int Widget_AppCompat_ImageButton=0x7f070130;
-        public static final int Widget_AppCompat_Light_ActionBar=0x7f070131;
-        public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f070132;
-        public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f070133;
-        public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f070134;
-        public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f070135;
-        public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f070136;
-        public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f070137;
-        public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f070138;
-        public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f070139;
-        public static final int Widget_AppCompat_Light_ActionButton=0x7f07013a;
-        public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f07013b;
-        public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f07013c;
-        public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f07013d;
-        public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f07013e;
-        public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f07013f;
-        public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f070140;
-        public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f070141;
-        public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f070142;
-        public static final int Widget_AppCompat_Light_PopupMenu=0x7f070143;
-        public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070144;
-        public static final int Widget_AppCompat_Light_SearchView=0x7f070145;
-        public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f070146;
-        public static final int Widget_AppCompat_ListMenuView=0x7f070147;
-        public static final int Widget_AppCompat_ListPopupWindow=0x7f070148;
-        public static final int Widget_AppCompat_ListView=0x7f070149;
-        public static final int Widget_AppCompat_ListView_DropDown=0x7f07014a;
-        public static final int Widget_AppCompat_ListView_Menu=0x7f07014b;
-        public static final int Widget_AppCompat_NotificationActionContainer=0x7f070090;
-        public static final int Widget_AppCompat_NotificationActionText=0x7f070091;
-        public static final int Widget_AppCompat_PopupMenu=0x7f07014c;
-        public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f07014d;
-        public static final int Widget_AppCompat_PopupWindow=0x7f07014e;
-        public static final int Widget_AppCompat_ProgressBar=0x7f07014f;
-        public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f070150;
-        public static final int Widget_AppCompat_RatingBar=0x7f070151;
-        public static final int Widget_AppCompat_RatingBar_Indicator=0x7f070152;
-        public static final int Widget_AppCompat_RatingBar_Small=0x7f070153;
-        public static final int Widget_AppCompat_SearchView=0x7f070154;
-        public static final int Widget_AppCompat_SearchView_ActionBar=0x7f070155;
-        public static final int Widget_AppCompat_SeekBar=0x7f070156;
-        public static final int Widget_AppCompat_SeekBar_Discrete=0x7f070157;
-        public static final int Widget_AppCompat_Spinner=0x7f070158;
-        public static final int Widget_AppCompat_Spinner_DropDown=0x7f070159;
-        public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f07015a;
-        public static final int Widget_AppCompat_Spinner_Underlined=0x7f07015b;
-        public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f07015c;
-        public static final int Widget_AppCompat_Toolbar=0x7f07015d;
-        public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f07015e;
-    }
-    public static final class styleable {
-        /** Attributes that can be used with a ActionBar.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #ActionBar_background at.gv.ucom:background}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_backgroundSplit at.gv.ucom:backgroundSplit}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_backgroundStacked at.gv.ucom:backgroundStacked}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_contentInsetEnd at.gv.ucom:contentInsetEnd}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_contentInsetEndWithActions at.gv.ucom:contentInsetEndWithActions}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_contentInsetLeft at.gv.ucom:contentInsetLeft}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_contentInsetRight at.gv.ucom:contentInsetRight}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_contentInsetStart at.gv.ucom:contentInsetStart}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation at.gv.ucom:contentInsetStartWithNavigation}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_customNavigationLayout at.gv.ucom:customNavigationLayout}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_displayOptions at.gv.ucom:displayOptions}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_divider at.gv.ucom:divider}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_elevation at.gv.ucom:elevation}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_height at.gv.ucom:height}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_hideOnContentScroll at.gv.ucom:hideOnContentScroll}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_homeAsUpIndicator at.gv.ucom:homeAsUpIndicator}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_homeLayout at.gv.ucom:homeLayout}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_icon at.gv.ucom:icon}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_indeterminateProgressStyle at.gv.ucom:indeterminateProgressStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_itemPadding at.gv.ucom:itemPadding}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_logo at.gv.ucom:logo}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_navigationMode at.gv.ucom:navigationMode}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_popupTheme at.gv.ucom:popupTheme}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_progressBarPadding at.gv.ucom:progressBarPadding}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_progressBarStyle at.gv.ucom:progressBarStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_subtitle at.gv.ucom:subtitle}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_subtitleTextStyle at.gv.ucom:subtitleTextStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_title at.gv.ucom:title}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionBar_titleTextStyle at.gv.ucom:titleTextStyle}</code></td><td></td></tr>
-           </table>
-           @see #ActionBar_background
-           @see #ActionBar_backgroundSplit
-           @see #ActionBar_backgroundStacked
-           @see #ActionBar_contentInsetEnd
-           @see #ActionBar_contentInsetEndWithActions
-           @see #ActionBar_contentInsetLeft
-           @see #ActionBar_contentInsetRight
-           @see #ActionBar_contentInsetStart
-           @see #ActionBar_contentInsetStartWithNavigation
-           @see #ActionBar_customNavigationLayout
-           @see #ActionBar_displayOptions
-           @see #ActionBar_divider
-           @see #ActionBar_elevation
-           @see #ActionBar_height
-           @see #ActionBar_hideOnContentScroll
-           @see #ActionBar_homeAsUpIndicator
-           @see #ActionBar_homeLayout
-           @see #ActionBar_icon
-           @see #ActionBar_indeterminateProgressStyle
-           @see #ActionBar_itemPadding
-           @see #ActionBar_logo
-           @see #ActionBar_navigationMode
-           @see #ActionBar_popupTheme
-           @see #ActionBar_progressBarPadding
-           @see #ActionBar_progressBarStyle
-           @see #ActionBar_subtitle
-           @see #ActionBar_subtitleTextStyle
-           @see #ActionBar_title
-           @see #ActionBar_titleTextStyle
-         */
-        public static final int[] ActionBar = {
-            0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005,
-            0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009,
-            0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d,
-            0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011,
-            0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015,
-            0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019,
-            0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d,
-            0x7f01005b
-        };
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#background}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:background
-        */
-        public static final int ActionBar_background = 10;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#backgroundSplit}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-          @attr name at.gv.ucom:backgroundSplit
-        */
-        public static final int ActionBar_backgroundSplit = 12;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#backgroundStacked}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-          @attr name at.gv.ucom:backgroundStacked
-        */
-        public static final int ActionBar_backgroundStacked = 11;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#contentInsetEnd}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:contentInsetEnd
-        */
-        public static final int ActionBar_contentInsetEnd = 21;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#contentInsetEndWithActions}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:contentInsetEndWithActions
-        */
-        public static final int ActionBar_contentInsetEndWithActions = 25;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#contentInsetLeft}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:contentInsetLeft
-        */
-        public static final int ActionBar_contentInsetLeft = 22;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#contentInsetRight}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:contentInsetRight
-        */
-        public static final int ActionBar_contentInsetRight = 23;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#contentInsetStart}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:contentInsetStart
-        */
-        public static final int ActionBar_contentInsetStart = 20;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#contentInsetStartWithNavigation}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:contentInsetStartWithNavigation
-        */
-        public static final int ActionBar_contentInsetStartWithNavigation = 24;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#customNavigationLayout}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:customNavigationLayout
-        */
-        public static final int ActionBar_customNavigationLayout = 13;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#displayOptions}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be one or more (separated by '|') of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>none</code></td><td>0</td><td></td></tr>
-<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
-<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
-<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
-<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
-<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
-<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
-</table>
-          @attr name at.gv.ucom:displayOptions
-        */
-        public static final int ActionBar_displayOptions = 3;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#divider}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:divider
-        */
-        public static final int ActionBar_divider = 9;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#elevation}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:elevation
-        */
-        public static final int ActionBar_elevation = 26;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#height}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:height
-        */
-        public static final int ActionBar_height = 0;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#hideOnContentScroll}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:hideOnContentScroll
-        */
-        public static final int ActionBar_hideOnContentScroll = 19;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#homeAsUpIndicator}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:homeAsUpIndicator
-        */
-        public static final int ActionBar_homeAsUpIndicator = 28;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#homeLayout}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:homeLayout
-        */
-        public static final int ActionBar_homeLayout = 14;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#icon}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:icon
-        */
-        public static final int ActionBar_icon = 7;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#indeterminateProgressStyle}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:indeterminateProgressStyle
-        */
-        public static final int ActionBar_indeterminateProgressStyle = 16;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#itemPadding}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:itemPadding
-        */
-        public static final int ActionBar_itemPadding = 18;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#logo}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:logo
-        */
-        public static final int ActionBar_logo = 8;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#navigationMode}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>normal</code></td><td>0</td><td></td></tr>
-<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
-<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
-</table>
-          @attr name at.gv.ucom:navigationMode
-        */
-        public static final int ActionBar_navigationMode = 2;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#popupTheme}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:popupTheme
-        */
-        public static final int ActionBar_popupTheme = 27;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#progressBarPadding}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:progressBarPadding
-        */
-        public static final int ActionBar_progressBarPadding = 17;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#progressBarStyle}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:progressBarStyle
-        */
-        public static final int ActionBar_progressBarStyle = 15;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#subtitle}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:subtitle
-        */
-        public static final int ActionBar_subtitle = 4;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#subtitleTextStyle}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:subtitleTextStyle
-        */
-        public static final int ActionBar_subtitleTextStyle = 6;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#title}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:title
-        */
-        public static final int ActionBar_title = 1;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#titleTextStyle}
-          attribute's value can be found in the {@link #ActionBar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:titleTextStyle
-        */
-        public static final int ActionBar_titleTextStyle = 5;
-        /** Attributes that can be used with a ActionBarLayout.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
-           </table>
-           @see #ActionBarLayout_android_layout_gravity
-         */
-        public static final int[] ActionBarLayout = {
-            0x010100b3
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
-          attribute's value can be found in the {@link #ActionBarLayout} array.
-          @attr name android:layout_gravity
-        */
-        public static final int ActionBarLayout_android_layout_gravity = 0;
-        /** Attributes that can be used with a ActionMenuItemView.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
-           </table>
-           @see #ActionMenuItemView_android_minWidth
-         */
-        public static final int[] ActionMenuItemView = {
-            0x0101013f
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#minWidth}
-          attribute's value can be found in the {@link #ActionMenuItemView} array.
-          @attr name android:minWidth
-        */
-        public static final int ActionMenuItemView_android_minWidth = 0;
-        /** Attributes that can be used with a ActionMenuView.
-         */
-        public static final int[] ActionMenuView = {
-            
-        };
-        /** Attributes that can be used with a ActionMode.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #ActionMode_background at.gv.ucom:background}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionMode_backgroundSplit at.gv.ucom:backgroundSplit}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionMode_closeItemLayout at.gv.ucom:closeItemLayout}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionMode_height at.gv.ucom:height}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionMode_subtitleTextStyle at.gv.ucom:subtitleTextStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActionMode_titleTextStyle at.gv.ucom:titleTextStyle}</code></td><td></td></tr>
-           </table>
-           @see #ActionMode_background
-           @see #ActionMode_backgroundSplit
-           @see #ActionMode_closeItemLayout
-           @see #ActionMode_height
-           @see #ActionMode_subtitleTextStyle
-           @see #ActionMode_titleTextStyle
-         */
-        public static final int[] ActionMode = {
-            0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c,
-            0x7f01000e, 0x7f01001e
-        };
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#background}
-          attribute's value can be found in the {@link #ActionMode} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:background
-        */
-        public static final int ActionMode_background = 3;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#backgroundSplit}
-          attribute's value can be found in the {@link #ActionMode} array.
-
-
-          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-          @attr name at.gv.ucom:backgroundSplit
-        */
-        public static final int ActionMode_backgroundSplit = 4;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#closeItemLayout}
-          attribute's value can be found in the {@link #ActionMode} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:closeItemLayout
-        */
-        public static final int ActionMode_closeItemLayout = 5;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#height}
-          attribute's value can be found in the {@link #ActionMode} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:height
-        */
-        public static final int ActionMode_height = 0;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#subtitleTextStyle}
-          attribute's value can be found in the {@link #ActionMode} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:subtitleTextStyle
-        */
-        public static final int ActionMode_subtitleTextStyle = 2;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#titleTextStyle}
-          attribute's value can be found in the {@link #ActionMode} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:titleTextStyle
-        */
-        public static final int ActionMode_titleTextStyle = 1;
-        /** Attributes that can be used with a ActivityChooserView.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable at.gv.ucom:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
-           <tr><td><code>{@link #ActivityChooserView_initialActivityCount at.gv.ucom:initialActivityCount}</code></td><td></td></tr>
-           </table>
-           @see #ActivityChooserView_expandActivityOverflowButtonDrawable
-           @see #ActivityChooserView_initialActivityCount
-         */
-        public static final int[] ActivityChooserView = {
-            0x7f01001f, 0x7f010020
-        };
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#expandActivityOverflowButtonDrawable}
-          attribute's value can be found in the {@link #ActivityChooserView} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:expandActivityOverflowButtonDrawable
-        */
-        public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#initialActivityCount}
-          attribute's value can be found in the {@link #ActivityChooserView} array.
-
-
-          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:initialActivityCount
-        */
-        public static final int ActivityChooserView_initialActivityCount = 0;
-        /** Attributes that can be used with a AlertDialog.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
-           <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout at.gv.ucom:buttonPanelSideLayout}</code></td><td></td></tr>
-           <tr><td><code>{@link #AlertDialog_listItemLayout at.gv.ucom:listItemLayout}</code></td><td></td></tr>
-           <tr><td><code>{@link #AlertDialog_listLayout at.gv.ucom:listLayout}</code></td><td></td></tr>
-           <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout at.gv.ucom:multiChoiceItemLayout}</code></td><td></td></tr>
-           <tr><td><code>{@link #AlertDialog_showTitle at.gv.ucom:showTitle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout at.gv.ucom:singleChoiceItemLayout}</code></td><td></td></tr>
-           </table>
-           @see #AlertDialog_android_layout
-           @see #AlertDialog_buttonPanelSideLayout
-           @see #AlertDialog_listItemLayout
-           @see #AlertDialog_listLayout
-           @see #AlertDialog_multiChoiceItemLayout
-           @see #AlertDialog_showTitle
-           @see #AlertDialog_singleChoiceItemLayout
-         */
-        public static final int[] AlertDialog = {
-            0x010100f2, 0x7f010021, 0x7f010022, 0x7f010023,
-            0x7f010024, 0x7f010025, 0x7f010026
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#layout}
-          attribute's value can be found in the {@link #AlertDialog} array.
-          @attr name android:layout
-        */
-        public static final int AlertDialog_android_layout = 0;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#buttonPanelSideLayout}
-          attribute's value can be found in the {@link #AlertDialog} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:buttonPanelSideLayout
-        */
-        public static final int AlertDialog_buttonPanelSideLayout = 1;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#listItemLayout}
-          attribute's value can be found in the {@link #AlertDialog} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:listItemLayout
-        */
-        public static final int AlertDialog_listItemLayout = 5;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#listLayout}
-          attribute's value can be found in the {@link #AlertDialog} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:listLayout
-        */
-        public static final int AlertDialog_listLayout = 2;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#multiChoiceItemLayout}
-          attribute's value can be found in the {@link #AlertDialog} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:multiChoiceItemLayout
-        */
-        public static final int AlertDialog_multiChoiceItemLayout = 3;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#showTitle}
-          attribute's value can be found in the {@link #AlertDialog} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:showTitle
-        */
-        public static final int AlertDialog_showTitle = 6;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#singleChoiceItemLayout}
-          attribute's value can be found in the {@link #AlertDialog} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:singleChoiceItemLayout
-        */
-        public static final int AlertDialog_singleChoiceItemLayout = 4;
-        /** Attributes that can be used with a AppCompatImageView.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatImageView_srcCompat at.gv.ucom:srcCompat}</code></td><td></td></tr>
-           </table>
-           @see #AppCompatImageView_android_src
-           @see #AppCompatImageView_srcCompat
-         */
-        public static final int[] AppCompatImageView = {
-            0x01010119, 0x7f010027
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#src}
-          attribute's value can be found in the {@link #AppCompatImageView} array.
-          @attr name android:src
-        */
-        public static final int AppCompatImageView_android_src = 0;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#srcCompat}
-          attribute's value can be found in the {@link #AppCompatImageView} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:srcCompat
-        */
-        public static final int AppCompatImageView_srcCompat = 1;
-        /** Attributes that can be used with a AppCompatSeekBar.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatSeekBar_tickMark at.gv.ucom:tickMark}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint at.gv.ucom:tickMarkTint}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode at.gv.ucom:tickMarkTintMode}</code></td><td></td></tr>
-           </table>
-           @see #AppCompatSeekBar_android_thumb
-           @see #AppCompatSeekBar_tickMark
-           @see #AppCompatSeekBar_tickMarkTint
-           @see #AppCompatSeekBar_tickMarkTintMode
-         */
-        public static final int[] AppCompatSeekBar = {
-            0x01010142, 0x7f010028, 0x7f010029, 0x7f01002a
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#thumb}
-          attribute's value can be found in the {@link #AppCompatSeekBar} array.
-          @attr name android:thumb
-        */
-        public static final int AppCompatSeekBar_android_thumb = 0;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#tickMark}
-          attribute's value can be found in the {@link #AppCompatSeekBar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:tickMark
-        */
-        public static final int AppCompatSeekBar_tickMark = 1;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#tickMarkTint}
-          attribute's value can be found in the {@link #AppCompatSeekBar} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:tickMarkTint
-        */
-        public static final int AppCompatSeekBar_tickMarkTint = 2;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#tickMarkTintMode}
-          attribute's value can be found in the {@link #AppCompatSeekBar} array.
-
-
-          <p>Must be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
-<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
-<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
-<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
-<tr><td><code>screen</code></td><td>15</td><td></td></tr>
-<tr><td><code>add</code></td><td>16</td><td></td></tr>
-</table>
-          @attr name at.gv.ucom:tickMarkTintMode
-        */
-        public static final int AppCompatSeekBar_tickMarkTintMode = 3;
-        /** Attributes that can be used with a AppCompatTextHelper.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
-           </table>
-           @see #AppCompatTextHelper_android_drawableBottom
-           @see #AppCompatTextHelper_android_drawableEnd
-           @see #AppCompatTextHelper_android_drawableLeft
-           @see #AppCompatTextHelper_android_drawableRight
-           @see #AppCompatTextHelper_android_drawableStart
-           @see #AppCompatTextHelper_android_drawableTop
-           @see #AppCompatTextHelper_android_textAppearance
-         */
-        public static final int[] AppCompatTextHelper = {
-            0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
-            0x01010170, 0x01010392, 0x01010393
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
-          attribute's value can be found in the {@link #AppCompatTextHelper} array.
-          @attr name android:drawableBottom
-        */
-        public static final int AppCompatTextHelper_android_drawableBottom = 2;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
-          attribute's value can be found in the {@link #AppCompatTextHelper} array.
-          @attr name android:drawableEnd
-        */
-        public static final int AppCompatTextHelper_android_drawableEnd = 6;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
-          attribute's value can be found in the {@link #AppCompatTextHelper} array.
-          @attr name android:drawableLeft
-        */
-        public static final int AppCompatTextHelper_android_drawableLeft = 3;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#drawableRight}
-          attribute's value can be found in the {@link #AppCompatTextHelper} array.
-          @attr name android:drawableRight
-        */
-        public static final int AppCompatTextHelper_android_drawableRight = 4;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#drawableStart}
-          attribute's value can be found in the {@link #AppCompatTextHelper} array.
-          @attr name android:drawableStart
-        */
-        public static final int AppCompatTextHelper_android_drawableStart = 5;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#drawableTop}
-          attribute's value can be found in the {@link #AppCompatTextHelper} array.
-          @attr name android:drawableTop
-        */
-        public static final int AppCompatTextHelper_android_drawableTop = 1;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#textAppearance}
-          attribute's value can be found in the {@link #AppCompatTextHelper} array.
-          @attr name android:textAppearance
-        */
-        public static final int AppCompatTextHelper_android_textAppearance = 0;
-        /** Attributes that can be used with a AppCompatTextView.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTextView_textAllCaps at.gv.ucom:textAllCaps}</code></td><td></td></tr>
-           </table>
-           @see #AppCompatTextView_android_textAppearance
-           @see #AppCompatTextView_textAllCaps
-         */
-        public static final int[] AppCompatTextView = {
-            0x01010034, 0x7f01002b
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#textAppearance}
-          attribute's value can be found in the {@link #AppCompatTextView} array.
-          @attr name android:textAppearance
-        */
-        public static final int AppCompatTextView_android_textAppearance = 0;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#textAllCaps}
-          attribute's value can be found in the {@link #AppCompatTextView} array.
-
-
-          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
-          @attr name at.gv.ucom:textAllCaps
-        */
-        public static final int AppCompatTextView_textAllCaps = 1;
-        /** Attributes that can be used with a AppCompatTheme.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionBarDivider at.gv.ucom:actionBarDivider}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground at.gv.ucom:actionBarItemBackground}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme at.gv.ucom:actionBarPopupTheme}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionBarSize at.gv.ucom:actionBarSize}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle at.gv.ucom:actionBarSplitStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionBarStyle at.gv.ucom:actionBarStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle at.gv.ucom:actionBarTabBarStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle at.gv.ucom:actionBarTabStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle at.gv.ucom:actionBarTabTextStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionBarTheme at.gv.ucom:actionBarTheme}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme at.gv.ucom:actionBarWidgetTheme}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionButtonStyle at.gv.ucom:actionButtonStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle at.gv.ucom:actionDropDownStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance at.gv.ucom:actionMenuTextAppearance}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor at.gv.ucom:actionMenuTextColor}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionModeBackground at.gv.ucom:actionModeBackground}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle at.gv.ucom:actionModeCloseButtonStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable at.gv.ucom:actionModeCloseDrawable}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable at.gv.ucom:actionModeCopyDrawable}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable at.gv.ucom:actionModeCutDrawable}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable at.gv.ucom:actionModeFindDrawable}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable at.gv.ucom:actionModePasteDrawable}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle at.gv.ucom:actionModePopupWindowStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable at.gv.ucom:actionModeSelectAllDrawable}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable at.gv.ucom:actionModeShareDrawable}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground at.gv.ucom:actionModeSplitBackground}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionModeStyle at.gv.ucom:actionModeStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable at.gv.ucom:actionModeWebSearchDrawable}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle at.gv.ucom:actionOverflowButtonStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle at.gv.ucom:actionOverflowMenuStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle at.gv.ucom:activityChooserViewStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle at.gv.ucom:alertDialogButtonGroupStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons at.gv.ucom:alertDialogCenterButtons}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_alertDialogStyle at.gv.ucom:alertDialogStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_alertDialogTheme at.gv.ucom:alertDialogTheme}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle at.gv.ucom:autoCompleteTextViewStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle at.gv.ucom:borderlessButtonStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle at.gv.ucom:buttonBarButtonStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle at.gv.ucom:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle at.gv.ucom:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle at.gv.ucom:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_buttonBarStyle at.gv.ucom:buttonBarStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_buttonStyle at.gv.ucom:buttonStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall at.gv.ucom:buttonStyleSmall}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_checkboxStyle at.gv.ucom:checkboxStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle at.gv.ucom:checkedTextViewStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_colorAccent at.gv.ucom:colorAccent}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating at.gv.ucom:colorBackgroundFloating}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_colorButtonNormal at.gv.ucom:colorButtonNormal}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_colorControlActivated at.gv.ucom:colorControlActivated}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_colorControlHighlight at.gv.ucom:colorControlHighlight}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_colorControlNormal at.gv.ucom:colorControlNormal}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_colorPrimary at.gv.ucom:colorPrimary}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark at.gv.ucom:colorPrimaryDark}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal at.gv.ucom:colorSwitchThumbNormal}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_controlBackground at.gv.ucom:controlBackground}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding at.gv.ucom:dialogPreferredPadding}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_dialogTheme at.gv.ucom:dialogTheme}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_dividerHorizontal at.gv.ucom:dividerHorizontal}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_dividerVertical at.gv.ucom:dividerVertical}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle at.gv.ucom:dropDownListViewStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight at.gv.ucom:dropdownListPreferredItemHeight}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_editTextBackground at.gv.ucom:editTextBackground}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_editTextColor at.gv.ucom:editTextColor}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_editTextStyle at.gv.ucom:editTextStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator at.gv.ucom:homeAsUpIndicator}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_imageButtonStyle at.gv.ucom:imageButtonStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator at.gv.ucom:listChoiceBackgroundIndicator}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog at.gv.ucom:listDividerAlertDialog}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle at.gv.ucom:listMenuViewStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle at.gv.ucom:listPopupWindowStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight at.gv.ucom:listPreferredItemHeight}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge at.gv.ucom:listPreferredItemHeightLarge}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall at.gv.ucom:listPreferredItemHeightSmall}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft at.gv.ucom:listPreferredItemPaddingLeft}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight at.gv.ucom:listPreferredItemPaddingRight}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_panelBackground at.gv.ucom:panelBackground}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme at.gv.ucom:panelMenuListTheme}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth at.gv.ucom:panelMenuListWidth}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_popupMenuStyle at.gv.ucom:popupMenuStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_popupWindowStyle at.gv.ucom:popupWindowStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_radioButtonStyle at.gv.ucom:radioButtonStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_ratingBarStyle at.gv.ucom:ratingBarStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator at.gv.ucom:ratingBarStyleIndicator}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall at.gv.ucom:ratingBarStyleSmall}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_searchViewStyle at.gv.ucom:searchViewStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_seekBarStyle at.gv.ucom:seekBarStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_selectableItemBackground at.gv.ucom:selectableItemBackground}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless at.gv.ucom:selectableItemBackgroundBorderless}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle at.gv.ucom:spinnerDropDownItemStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_spinnerStyle at.gv.ucom:spinnerStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_switchStyle at.gv.ucom:switchStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu at.gv.ucom:textAppearanceLargePopupMenu}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem at.gv.ucom:textAppearanceListItem}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall at.gv.ucom:textAppearanceListItemSmall}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader at.gv.ucom:textAppearancePopupMenuHeader}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle at.gv.ucom:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle at.gv.ucom:textAppearanceSearchResultTitle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu at.gv.ucom:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem at.gv.ucom:textColorAlertDialogListItem}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl at.gv.ucom:textColorSearchUrl}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle at.gv.ucom:toolbarNavigationButtonStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_toolbarStyle at.gv.ucom:toolbarStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_windowActionBar at.gv.ucom:windowActionBar}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay at.gv.ucom:windowActionBarOverlay}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay at.gv.ucom:windowActionModeOverlay}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor at.gv.ucom:windowFixedHeightMajor}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor at.gv.ucom:windowFixedHeightMinor}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor at.gv.ucom:windowFixedWidthMajor}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor at.gv.ucom:windowFixedWidthMinor}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor at.gv.ucom:windowMinWidthMajor}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor at.gv.ucom:windowMinWidthMinor}</code></td><td></td></tr>
-           <tr><td><code>{@link #AppCompatTheme_windowNoTitle at.gv.ucom:windowNoTitle}</code></td><td></td></tr>
-           </table>
-           @see #AppCompatTheme_actionBarDivider
-           @see #AppCompatTheme_actionBarItemBackground
-           @see #AppCompatTheme_actionBarPopupTheme
-           @see #AppCompatTheme_actionBarSize
-           @see #AppCompatTheme_actionBarSplitStyle
-           @see #AppCompatTheme_actionBarStyle
-           @see #AppCompatTheme_actionBarTabBarStyle
-           @see #AppCompatTheme_actionBarTabStyle
-           @see #AppCompatTheme_actionBarTabTextStyle
-           @see #AppCompatTheme_actionBarTheme
-           @see #AppCompatTheme_actionBarWidgetTheme
-           @see #AppCompatTheme_actionButtonStyle
-           @see #AppCompatTheme_actionDropDownStyle
-           @see #AppCompatTheme_actionMenuTextAppearance
-           @see #AppCompatTheme_actionMenuTextColor
-           @see #AppCompatTheme_actionModeBackground
-           @see #AppCompatTheme_actionModeCloseButtonStyle
-           @see #AppCompatTheme_actionModeCloseDrawable
-           @see #AppCompatTheme_actionModeCopyDrawable
-           @see #AppCompatTheme_actionModeCutDrawable
-           @see #AppCompatTheme_actionModeFindDrawable
-           @see #AppCompatTheme_actionModePasteDrawable
-           @see #AppCompatTheme_actionModePopupWindowStyle
-           @see #AppCompatTheme_actionModeSelectAllDrawable
-           @see #AppCompatTheme_actionModeShareDrawable
-           @see #AppCompatTheme_actionModeSplitBackground
-           @see #AppCompatTheme_actionModeStyle
-           @see #AppCompatTheme_actionModeWebSearchDrawable
-           @see #AppCompatTheme_actionOverflowButtonStyle
-           @see #AppCompatTheme_actionOverflowMenuStyle
-           @see #AppCompatTheme_activityChooserViewStyle
-           @see #AppCompatTheme_alertDialogButtonGroupStyle
-           @see #AppCompatTheme_alertDialogCenterButtons
-           @see #AppCompatTheme_alertDialogStyle
-           @see #AppCompatTheme_alertDialogTheme
-           @see #AppCompatTheme_android_windowAnimationStyle
-           @see #AppCompatTheme_android_windowIsFloating
-           @see #AppCompatTheme_autoCompleteTextViewStyle
-           @see #AppCompatTheme_borderlessButtonStyle
-           @see #AppCompatTheme_buttonBarButtonStyle
-           @see #AppCompatTheme_buttonBarNegativeButtonStyle
-           @see #AppCompatTheme_buttonBarNeutralButtonStyle
-           @see #AppCompatTheme_buttonBarPositiveButtonStyle
-           @see #AppCompatTheme_buttonBarStyle
-           @see #AppCompatTheme_buttonStyle
-           @see #AppCompatTheme_buttonStyleSmall
-           @see #AppCompatTheme_checkboxStyle
-           @see #AppCompatTheme_checkedTextViewStyle
-           @see #AppCompatTheme_colorAccent
-           @see #AppCompatTheme_colorBackgroundFloating
-           @see #AppCompatTheme_colorButtonNormal
-           @see #AppCompatTheme_colorControlActivated
-           @see #AppCompatTheme_colorControlHighlight
-           @see #AppCompatTheme_colorControlNormal
-           @see #AppCompatTheme_colorPrimary
-           @see #AppCompatTheme_colorPrimaryDark
-           @see #AppCompatTheme_colorSwitchThumbNormal
-           @see #AppCompatTheme_controlBackground
-           @see #AppCompatTheme_dialogPreferredPadding
-           @see #AppCompatTheme_dialogTheme
-           @see #AppCompatTheme_dividerHorizontal
-           @see #AppCompatTheme_dividerVertical
-           @see #AppCompatTheme_dropDownListViewStyle
-           @see #AppCompatTheme_dropdownListPreferredItemHeight
-           @see #AppCompatTheme_editTextBackground
-           @see #AppCompatTheme_editTextColor
-           @see #AppCompatTheme_editTextStyle
-           @see #AppCompatTheme_homeAsUpIndicator
-           @see #AppCompatTheme_imageButtonStyle
-           @see #AppCompatTheme_listChoiceBackgroundIndicator
-           @see #AppCompatTheme_listDividerAlertDialog
-           @see #AppCompatTheme_listMenuViewStyle
-           @see #AppCompatTheme_listPopupWindowStyle
-           @see #AppCompatTheme_listPreferredItemHeight
-           @see #AppCompatTheme_listPreferredItemHeightLarge
-           @see #AppCompatTheme_listPreferredItemHeightSmall
-           @see #AppCompatTheme_listPreferredItemPaddingLeft
-           @see #AppCompatTheme_listPreferredItemPaddingRight
-           @see #AppCompatTheme_panelBackground
-           @see #AppCompatTheme_panelMenuListTheme
-           @see #AppCompatTheme_panelMenuListWidth
-           @see #AppCompatTheme_popupMenuStyle
-           @see #AppCompatTheme_popupWindowStyle
-           @see #AppCompatTheme_radioButtonStyle
-           @see #AppCompatTheme_ratingBarStyle
-           @see #AppCompatTheme_ratingBarStyleIndicator
-           @see #AppCompatTheme_ratingBarStyleSmall
-           @see #AppCompatTheme_searchViewStyle
-           @see #AppCompatTheme_seekBarStyle
-           @see #AppCompatTheme_selectableItemBackground
-           @see #AppCompatTheme_selectableItemBackgroundBorderless
-           @see #AppCompatTheme_spinnerDropDownItemStyle
-           @see #AppCompatTheme_spinnerStyle
-           @see #AppCompatTheme_switchStyle
-           @see #AppCompatTheme_textAppearanceLargePopupMenu
-           @see #AppCompatTheme_textAppearanceListItem
-           @see #AppCompatTheme_textAppearanceListItemSmall
-           @see #AppCompatTheme_textAppearancePopupMenuHeader
-           @see #AppCompatTheme_textAppearanceSearchResultSubtitle
-           @see #AppCompatTheme_textAppearanceSearchResultTitle
-           @see #AppCompatTheme_textAppearanceSmallPopupMenu
-           @see #AppCompatTheme_textColorAlertDialogListItem
-           @see #AppCompatTheme_textColorSearchUrl
-           @see #AppCompatTheme_toolbarNavigationButtonStyle
-           @see #AppCompatTheme_toolbarStyle
-           @see #AppCompatTheme_windowActionBar
-           @see #AppCompatTheme_windowActionBarOverlay
-           @see #AppCompatTheme_windowActionModeOverlay
-           @see #AppCompatTheme_windowFixedHeightMajor
-           @see #AppCompatTheme_windowFixedHeightMinor
-           @see #AppCompatTheme_windowFixedWidthMajor
-           @see #AppCompatTheme_windowFixedWidthMinor
-           @see #AppCompatTheme_windowMinWidthMajor
-           @see #AppCompatTheme_windowMinWidthMinor
-           @see #AppCompatTheme_windowNoTitle
-         */
-        public static final int[] AppCompatTheme = {
-            0x01010057, 0x010100ae, 0x7f01002c, 0x7f01002d,
-            0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031,
-            0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035,
-            0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039,
-            0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d,
-            0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041,
-            0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045,
-            0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049,
-            0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d,
-            0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051,
-            0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055,
-            0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059,
-            0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d,
-            0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061,
-            0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065,
-            0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069,
-            0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d,
-            0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071,
-            0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075,
-            0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079,
-            0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d,
-            0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081,
-            0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085,
-            0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089,
-            0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d,
-            0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091,
-            0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095,
-            0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099,
-            0x7f01009a, 0x7f01009b, 0x7f01009c
-        };
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionBarDivider}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionBarDivider
-        */
-        public static final int AppCompatTheme_actionBarDivider = 23;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionBarItemBackground}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionBarItemBackground
-        */
-        public static final int AppCompatTheme_actionBarItemBackground = 24;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionBarPopupTheme}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionBarPopupTheme
-        */
-        public static final int AppCompatTheme_actionBarPopupTheme = 17;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionBarSize}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-<p>May be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
-</table>
-          @attr name at.gv.ucom:actionBarSize
-        */
-        public static final int AppCompatTheme_actionBarSize = 22;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionBarSplitStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionBarSplitStyle
-        */
-        public static final int AppCompatTheme_actionBarSplitStyle = 19;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionBarStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionBarStyle
-        */
-        public static final int AppCompatTheme_actionBarStyle = 18;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionBarTabBarStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionBarTabBarStyle
-        */
-        public static final int AppCompatTheme_actionBarTabBarStyle = 13;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionBarTabStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionBarTabStyle
-        */
-        public static final int AppCompatTheme_actionBarTabStyle = 12;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionBarTabTextStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionBarTabTextStyle
-        */
-        public static final int AppCompatTheme_actionBarTabTextStyle = 14;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionBarTheme}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionBarTheme
-        */
-        public static final int AppCompatTheme_actionBarTheme = 20;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionBarWidgetTheme}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionBarWidgetTheme
-        */
-        public static final int AppCompatTheme_actionBarWidgetTheme = 21;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionButtonStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionButtonStyle
-        */
-        public static final int AppCompatTheme_actionButtonStyle = 50;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionDropDownStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionDropDownStyle
-        */
-        public static final int AppCompatTheme_actionDropDownStyle = 46;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionMenuTextAppearance}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionMenuTextAppearance
-        */
-        public static final int AppCompatTheme_actionMenuTextAppearance = 25;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionMenuTextColor}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-          @attr name at.gv.ucom:actionMenuTextColor
-        */
-        public static final int AppCompatTheme_actionMenuTextColor = 26;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionModeBackground}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionModeBackground
-        */
-        public static final int AppCompatTheme_actionModeBackground = 29;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionModeCloseButtonStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionModeCloseButtonStyle
-        */
-        public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionModeCloseDrawable}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionModeCloseDrawable
-        */
-        public static final int AppCompatTheme_actionModeCloseDrawable = 31;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionModeCopyDrawable}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionModeCopyDrawable
-        */
-        public static final int AppCompatTheme_actionModeCopyDrawable = 33;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionModeCutDrawable}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionModeCutDrawable
-        */
-        public static final int AppCompatTheme_actionModeCutDrawable = 32;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionModeFindDrawable}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionModeFindDrawable
-        */
-        public static final int AppCompatTheme_actionModeFindDrawable = 37;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionModePasteDrawable}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionModePasteDrawable
-        */
-        public static final int AppCompatTheme_actionModePasteDrawable = 34;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionModePopupWindowStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionModePopupWindowStyle
-        */
-        public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionModeSelectAllDrawable}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionModeSelectAllDrawable
-        */
-        public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionModeShareDrawable}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionModeShareDrawable
-        */
-        public static final int AppCompatTheme_actionModeShareDrawable = 36;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionModeSplitBackground}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionModeSplitBackground
-        */
-        public static final int AppCompatTheme_actionModeSplitBackground = 30;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionModeStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionModeStyle
-        */
-        public static final int AppCompatTheme_actionModeStyle = 27;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionModeWebSearchDrawable}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionModeWebSearchDrawable
-        */
-        public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionOverflowButtonStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionOverflowButtonStyle
-        */
-        public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionOverflowMenuStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionOverflowMenuStyle
-        */
-        public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#activityChooserViewStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:activityChooserViewStyle
-        */
-        public static final int AppCompatTheme_activityChooserViewStyle = 58;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#alertDialogButtonGroupStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:alertDialogButtonGroupStyle
-        */
-        public static final int AppCompatTheme_alertDialogButtonGroupStyle = 94;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#alertDialogCenterButtons}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:alertDialogCenterButtons
-        */
-        public static final int AppCompatTheme_alertDialogCenterButtons = 95;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#alertDialogStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:alertDialogStyle
-        */
-        public static final int AppCompatTheme_alertDialogStyle = 93;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#alertDialogTheme}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:alertDialogTheme
-        */
-        public static final int AppCompatTheme_alertDialogTheme = 96;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-          @attr name android:windowAnimationStyle
-        */
-        public static final int AppCompatTheme_android_windowAnimationStyle = 1;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-          @attr name android:windowIsFloating
-        */
-        public static final int AppCompatTheme_android_windowIsFloating = 0;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#autoCompleteTextViewStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:autoCompleteTextViewStyle
-        */
-        public static final int AppCompatTheme_autoCompleteTextViewStyle = 101;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#borderlessButtonStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:borderlessButtonStyle
-        */
-        public static final int AppCompatTheme_borderlessButtonStyle = 55;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#buttonBarButtonStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:buttonBarButtonStyle
-        */
-        public static final int AppCompatTheme_buttonBarButtonStyle = 52;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#buttonBarNegativeButtonStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:buttonBarNegativeButtonStyle
-        */
-        public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 99;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#buttonBarNeutralButtonStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:buttonBarNeutralButtonStyle
-        */
-        public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 100;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#buttonBarPositiveButtonStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:buttonBarPositiveButtonStyle
-        */
-        public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 98;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#buttonBarStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:buttonBarStyle
-        */
-        public static final int AppCompatTheme_buttonBarStyle = 51;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#buttonStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:buttonStyle
-        */
-        public static final int AppCompatTheme_buttonStyle = 102;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#buttonStyleSmall}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:buttonStyleSmall
-        */
-        public static final int AppCompatTheme_buttonStyleSmall = 103;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#checkboxStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:checkboxStyle
-        */
-        public static final int AppCompatTheme_checkboxStyle = 104;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#checkedTextViewStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:checkedTextViewStyle
-        */
-        public static final int AppCompatTheme_checkedTextViewStyle = 105;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#colorAccent}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:colorAccent
-        */
-        public static final int AppCompatTheme_colorAccent = 85;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#colorBackgroundFloating}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:colorBackgroundFloating
-        */
-        public static final int AppCompatTheme_colorBackgroundFloating = 92;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#colorButtonNormal}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:colorButtonNormal
-        */
-        public static final int AppCompatTheme_colorButtonNormal = 89;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#colorControlActivated}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:colorControlActivated
-        */
-        public static final int AppCompatTheme_colorControlActivated = 87;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#colorControlHighlight}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:colorControlHighlight
-        */
-        public static final int AppCompatTheme_colorControlHighlight = 88;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#colorControlNormal}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:colorControlNormal
-        */
-        public static final int AppCompatTheme_colorControlNormal = 86;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#colorPrimary}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:colorPrimary
-        */
-        public static final int AppCompatTheme_colorPrimary = 83;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#colorPrimaryDark}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:colorPrimaryDark
-        */
-        public static final int AppCompatTheme_colorPrimaryDark = 84;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#colorSwitchThumbNormal}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:colorSwitchThumbNormal
-        */
-        public static final int AppCompatTheme_colorSwitchThumbNormal = 90;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#controlBackground}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:controlBackground
-        */
-        public static final int AppCompatTheme_controlBackground = 91;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#dialogPreferredPadding}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:dialogPreferredPadding
-        */
-        public static final int AppCompatTheme_dialogPreferredPadding = 44;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#dialogTheme}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:dialogTheme
-        */
-        public static final int AppCompatTheme_dialogTheme = 43;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#dividerHorizontal}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:dividerHorizontal
-        */
-        public static final int AppCompatTheme_dividerHorizontal = 57;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#dividerVertical}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:dividerVertical
-        */
-        public static final int AppCompatTheme_dividerVertical = 56;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#dropDownListViewStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:dropDownListViewStyle
-        */
-        public static final int AppCompatTheme_dropDownListViewStyle = 75;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#dropdownListPreferredItemHeight}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:dropdownListPreferredItemHeight
-        */
-        public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#editTextBackground}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:editTextBackground
-        */
-        public static final int AppCompatTheme_editTextBackground = 64;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#editTextColor}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-          @attr name at.gv.ucom:editTextColor
-        */
-        public static final int AppCompatTheme_editTextColor = 63;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#editTextStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:editTextStyle
-        */
-        public static final int AppCompatTheme_editTextStyle = 106;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#homeAsUpIndicator}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:homeAsUpIndicator
-        */
-        public static final int AppCompatTheme_homeAsUpIndicator = 49;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#imageButtonStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:imageButtonStyle
-        */
-        public static final int AppCompatTheme_imageButtonStyle = 65;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#listChoiceBackgroundIndicator}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:listChoiceBackgroundIndicator
-        */
-        public static final int AppCompatTheme_listChoiceBackgroundIndicator = 82;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#listDividerAlertDialog}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:listDividerAlertDialog
-        */
-        public static final int AppCompatTheme_listDividerAlertDialog = 45;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#listMenuViewStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:listMenuViewStyle
-        */
-        public static final int AppCompatTheme_listMenuViewStyle = 114;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#listPopupWindowStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:listPopupWindowStyle
-        */
-        public static final int AppCompatTheme_listPopupWindowStyle = 76;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#listPreferredItemHeight}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:listPreferredItemHeight
-        */
-        public static final int AppCompatTheme_listPreferredItemHeight = 70;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#listPreferredItemHeightLarge}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:listPreferredItemHeightLarge
-        */
-        public static final int AppCompatTheme_listPreferredItemHeightLarge = 72;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#listPreferredItemHeightSmall}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:listPreferredItemHeightSmall
-        */
-        public static final int AppCompatTheme_listPreferredItemHeightSmall = 71;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#listPreferredItemPaddingLeft}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:listPreferredItemPaddingLeft
-        */
-        public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#listPreferredItemPaddingRight}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:listPreferredItemPaddingRight
-        */
-        public static final int AppCompatTheme_listPreferredItemPaddingRight = 74;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#panelBackground}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:panelBackground
-        */
-        public static final int AppCompatTheme_panelBackground = 79;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#panelMenuListTheme}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:panelMenuListTheme
-        */
-        public static final int AppCompatTheme_panelMenuListTheme = 81;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#panelMenuListWidth}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:panelMenuListWidth
-        */
-        public static final int AppCompatTheme_panelMenuListWidth = 80;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#popupMenuStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:popupMenuStyle
-        */
-        public static final int AppCompatTheme_popupMenuStyle = 61;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#popupWindowStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:popupWindowStyle
-        */
-        public static final int AppCompatTheme_popupWindowStyle = 62;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#radioButtonStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:radioButtonStyle
-        */
-        public static final int AppCompatTheme_radioButtonStyle = 107;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#ratingBarStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:ratingBarStyle
-        */
-        public static final int AppCompatTheme_ratingBarStyle = 108;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#ratingBarStyleIndicator}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:ratingBarStyleIndicator
-        */
-        public static final int AppCompatTheme_ratingBarStyleIndicator = 109;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#ratingBarStyleSmall}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:ratingBarStyleSmall
-        */
-        public static final int AppCompatTheme_ratingBarStyleSmall = 110;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#searchViewStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:searchViewStyle
-        */
-        public static final int AppCompatTheme_searchViewStyle = 69;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#seekBarStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:seekBarStyle
-        */
-        public static final int AppCompatTheme_seekBarStyle = 111;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#selectableItemBackground}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:selectableItemBackground
-        */
-        public static final int AppCompatTheme_selectableItemBackground = 53;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#selectableItemBackgroundBorderless}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:selectableItemBackgroundBorderless
-        */
-        public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#spinnerDropDownItemStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:spinnerDropDownItemStyle
-        */
-        public static final int AppCompatTheme_spinnerDropDownItemStyle = 48;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#spinnerStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:spinnerStyle
-        */
-        public static final int AppCompatTheme_spinnerStyle = 112;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#switchStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:switchStyle
-        */
-        public static final int AppCompatTheme_switchStyle = 113;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#textAppearanceLargePopupMenu}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:textAppearanceLargePopupMenu
-        */
-        public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#textAppearanceListItem}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:textAppearanceListItem
-        */
-        public static final int AppCompatTheme_textAppearanceListItem = 77;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#textAppearanceListItemSmall}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:textAppearanceListItemSmall
-        */
-        public static final int AppCompatTheme_textAppearanceListItemSmall = 78;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#textAppearancePopupMenuHeader}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:textAppearancePopupMenuHeader
-        */
-        public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#textAppearanceSearchResultSubtitle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:textAppearanceSearchResultSubtitle
-        */
-        public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#textAppearanceSearchResultTitle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:textAppearanceSearchResultTitle
-        */
-        public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#textAppearanceSmallPopupMenu}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:textAppearanceSmallPopupMenu
-        */
-        public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#textColorAlertDialogListItem}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-          @attr name at.gv.ucom:textColorAlertDialogListItem
-        */
-        public static final int AppCompatTheme_textColorAlertDialogListItem = 97;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#textColorSearchUrl}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-          @attr name at.gv.ucom:textColorSearchUrl
-        */
-        public static final int AppCompatTheme_textColorSearchUrl = 68;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#toolbarNavigationButtonStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:toolbarNavigationButtonStyle
-        */
-        public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#toolbarStyle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:toolbarStyle
-        */
-        public static final int AppCompatTheme_toolbarStyle = 59;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#windowActionBar}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:windowActionBar
-        */
-        public static final int AppCompatTheme_windowActionBar = 2;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#windowActionBarOverlay}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:windowActionBarOverlay
-        */
-        public static final int AppCompatTheme_windowActionBarOverlay = 4;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#windowActionModeOverlay}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:windowActionModeOverlay
-        */
-        public static final int AppCompatTheme_windowActionModeOverlay = 5;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#windowFixedHeightMajor}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
-The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
-some parent container.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:windowFixedHeightMajor
-        */
-        public static final int AppCompatTheme_windowFixedHeightMajor = 9;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#windowFixedHeightMinor}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
-The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
-some parent container.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:windowFixedHeightMinor
-        */
-        public static final int AppCompatTheme_windowFixedHeightMinor = 7;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#windowFixedWidthMajor}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
-The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
-some parent container.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:windowFixedWidthMajor
-        */
-        public static final int AppCompatTheme_windowFixedWidthMajor = 6;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#windowFixedWidthMinor}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
-The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
-some parent container.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:windowFixedWidthMinor
-        */
-        public static final int AppCompatTheme_windowFixedWidthMinor = 8;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#windowMinWidthMajor}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
-The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
-some parent container.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:windowMinWidthMajor
-        */
-        public static final int AppCompatTheme_windowMinWidthMajor = 10;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#windowMinWidthMinor}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
-The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
-some parent container.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:windowMinWidthMinor
-        */
-        public static final int AppCompatTheme_windowMinWidthMinor = 11;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#windowNoTitle}
-          attribute's value can be found in the {@link #AppCompatTheme} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:windowNoTitle
-        */
-        public static final int AppCompatTheme_windowNoTitle = 3;
-        /** Attributes that can be used with a ButtonBarLayout.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #ButtonBarLayout_allowStacking at.gv.ucom:allowStacking}</code></td><td></td></tr>
-           </table>
-           @see #ButtonBarLayout_allowStacking
-         */
-        public static final int[] ButtonBarLayout = {
-            0x7f01009d
-        };
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#allowStacking}
-          attribute's value can be found in the {@link #ButtonBarLayout} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:allowStacking
-        */
-        public static final int ButtonBarLayout_allowStacking = 0;
-        /** Attributes that can be used with a ColorStateListItem.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #ColorStateListItem_alpha at.gv.ucom:alpha}</code></td><td></td></tr>
-           <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr>
-           <tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr>
-           </table>
-           @see #ColorStateListItem_alpha
-           @see #ColorStateListItem_android_alpha
-           @see #ColorStateListItem_android_color
-         */
-        public static final int[] ColorStateListItem = {
-            0x010101a5, 0x0101031f, 0x7f01009e
-        };
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#alpha}
-          attribute's value can be found in the {@link #ColorStateListItem} array.
-
-
-          <p>Must be a floating point value, such as "<code>1.2</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:alpha
-        */
-        public static final int ColorStateListItem_alpha = 2;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#alpha}
-          attribute's value can be found in the {@link #ColorStateListItem} array.
-          @attr name android:alpha
-        */
-        public static final int ColorStateListItem_android_alpha = 1;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#color}
-          attribute's value can be found in the {@link #ColorStateListItem} array.
-          @attr name android:color
-        */
-        public static final int ColorStateListItem_android_color = 0;
-        /** Attributes that can be used with a CompoundButton.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
-           <tr><td><code>{@link #CompoundButton_buttonTint at.gv.ucom:buttonTint}</code></td><td></td></tr>
-           <tr><td><code>{@link #CompoundButton_buttonTintMode at.gv.ucom:buttonTintMode}</code></td><td></td></tr>
-           </table>
-           @see #CompoundButton_android_button
-           @see #CompoundButton_buttonTint
-           @see #CompoundButton_buttonTintMode
-         */
-        public static final int[] CompoundButton = {
-            0x01010107, 0x7f01009f, 0x7f0100a0
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#button}
-          attribute's value can be found in the {@link #CompoundButton} array.
-          @attr name android:button
-        */
-        public static final int CompoundButton_android_button = 0;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#buttonTint}
-          attribute's value can be found in the {@link #CompoundButton} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:buttonTint
-        */
-        public static final int CompoundButton_buttonTint = 1;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#buttonTintMode}
-          attribute's value can be found in the {@link #CompoundButton} array.
-
-
-          <p>Must be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
-<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
-<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
-<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
-<tr><td><code>screen</code></td><td>15</td><td></td></tr>
-</table>
-          @attr name at.gv.ucom:buttonTintMode
-        */
-        public static final int CompoundButton_buttonTintMode = 2;
-        /** Attributes that can be used with a DrawerArrowToggle.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength at.gv.ucom:arrowHeadLength}</code></td><td></td></tr>
-           <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength at.gv.ucom:arrowShaftLength}</code></td><td></td></tr>
-           <tr><td><code>{@link #DrawerArrowToggle_barLength at.gv.ucom:barLength}</code></td><td></td></tr>
-           <tr><td><code>{@link #DrawerArrowToggle_color at.gv.ucom:color}</code></td><td></td></tr>
-           <tr><td><code>{@link #DrawerArrowToggle_drawableSize at.gv.ucom:drawableSize}</code></td><td></td></tr>
-           <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars at.gv.ucom:gapBetweenBars}</code></td><td></td></tr>
-           <tr><td><code>{@link #DrawerArrowToggle_spinBars at.gv.ucom:spinBars}</code></td><td></td></tr>
-           <tr><td><code>{@link #DrawerArrowToggle_thickness at.gv.ucom:thickness}</code></td><td></td></tr>
-           </table>
-           @see #DrawerArrowToggle_arrowHeadLength
-           @see #DrawerArrowToggle_arrowShaftLength
-           @see #DrawerArrowToggle_barLength
-           @see #DrawerArrowToggle_color
-           @see #DrawerArrowToggle_drawableSize
-           @see #DrawerArrowToggle_gapBetweenBars
-           @see #DrawerArrowToggle_spinBars
-           @see #DrawerArrowToggle_thickness
-         */
-        public static final int[] DrawerArrowToggle = {
-            0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4,
-            0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8
-        };
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#arrowHeadLength}
-          attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:arrowHeadLength
-        */
-        public static final int DrawerArrowToggle_arrowHeadLength = 4;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#arrowShaftLength}
-          attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:arrowShaftLength
-        */
-        public static final int DrawerArrowToggle_arrowShaftLength = 5;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#barLength}
-          attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:barLength
-        */
-        public static final int DrawerArrowToggle_barLength = 6;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#color}
-          attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:color
-        */
-        public static final int DrawerArrowToggle_color = 0;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#drawableSize}
-          attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:drawableSize
-        */
-        public static final int DrawerArrowToggle_drawableSize = 2;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#gapBetweenBars}
-          attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:gapBetweenBars
-        */
-        public static final int DrawerArrowToggle_gapBetweenBars = 3;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#spinBars}
-          attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:spinBars
-        */
-        public static final int DrawerArrowToggle_spinBars = 1;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#thickness}
-          attribute's value can be found in the {@link #DrawerArrowToggle} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:thickness
-        */
-        public static final int DrawerArrowToggle_thickness = 7;
-        /** Attributes that can be used with a LinearLayoutCompat.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
-           <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
-           <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
-           <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
-           <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
-           <tr><td><code>{@link #LinearLayoutCompat_divider at.gv.ucom:divider}</code></td><td></td></tr>
-           <tr><td><code>{@link #LinearLayoutCompat_dividerPadding at.gv.ucom:dividerPadding}</code></td><td></td></tr>
-           <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild at.gv.ucom:measureWithLargestChild}</code></td><td></td></tr>
-           <tr><td><code>{@link #LinearLayoutCompat_showDividers at.gv.ucom:showDividers}</code></td><td></td></tr>
-           </table>
-           @see #LinearLayoutCompat_android_baselineAligned
-           @see #LinearLayoutCompat_android_baselineAlignedChildIndex
-           @see #LinearLayoutCompat_android_gravity
-           @see #LinearLayoutCompat_android_orientation
-           @see #LinearLayoutCompat_android_weightSum
-           @see #LinearLayoutCompat_divider
-           @see #LinearLayoutCompat_dividerPadding
-           @see #LinearLayoutCompat_measureWithLargestChild
-           @see #LinearLayoutCompat_showDividers
-         */
-        public static final int[] LinearLayoutCompat = {
-            0x010100af, 0x010100c4, 0x01010126, 0x01010127,
-            0x01010128, 0x7f01000b, 0x7f0100a9, 0x7f0100aa,
-            0x7f0100ab
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#baselineAligned}
-          attribute's value can be found in the {@link #LinearLayoutCompat} array.
-          @attr name android:baselineAligned
-        */
-        public static final int LinearLayoutCompat_android_baselineAligned = 2;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
-          attribute's value can be found in the {@link #LinearLayoutCompat} array.
-          @attr name android:baselineAlignedChildIndex
-        */
-        public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#gravity}
-          attribute's value can be found in the {@link #LinearLayoutCompat} array.
-          @attr name android:gravity
-        */
-        public static final int LinearLayoutCompat_android_gravity = 0;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#orientation}
-          attribute's value can be found in the {@link #LinearLayoutCompat} array.
-          @attr name android:orientation
-        */
-        public static final int LinearLayoutCompat_android_orientation = 1;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#weightSum}
-          attribute's value can be found in the {@link #LinearLayoutCompat} array.
-          @attr name android:weightSum
-        */
-        public static final int LinearLayoutCompat_android_weightSum = 4;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#divider}
-          attribute's value can be found in the {@link #LinearLayoutCompat} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:divider
-        */
-        public static final int LinearLayoutCompat_divider = 5;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#dividerPadding}
-          attribute's value can be found in the {@link #LinearLayoutCompat} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:dividerPadding
-        */
-        public static final int LinearLayoutCompat_dividerPadding = 8;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#measureWithLargestChild}
-          attribute's value can be found in the {@link #LinearLayoutCompat} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:measureWithLargestChild
-        */
-        public static final int LinearLayoutCompat_measureWithLargestChild = 6;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#showDividers}
-          attribute's value can be found in the {@link #LinearLayoutCompat} array.
-
-
-          <p>Must be one or more (separated by '|') of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>none</code></td><td>0</td><td></td></tr>
-<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
-<tr><td><code>middle</code></td><td>2</td><td></td></tr>
-<tr><td><code>end</code></td><td>4</td><td></td></tr>
-</table>
-          @attr name at.gv.ucom:showDividers
-        */
-        public static final int LinearLayoutCompat_showDividers = 7;
-        /** Attributes that can be used with a LinearLayoutCompat_Layout.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
-           <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
-           <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
-           <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
-           </table>
-           @see #LinearLayoutCompat_Layout_android_layout_gravity
-           @see #LinearLayoutCompat_Layout_android_layout_height
-           @see #LinearLayoutCompat_Layout_android_layout_weight
-           @see #LinearLayoutCompat_Layout_android_layout_width
-         */
-        public static final int[] LinearLayoutCompat_Layout = {
-            0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
-          attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
-          @attr name android:layout_gravity
-        */
-        public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#layout_height}
-          attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
-          @attr name android:layout_height
-        */
-        public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#layout_weight}
-          attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
-          @attr name android:layout_weight
-        */
-        public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#layout_width}
-          attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
-          @attr name android:layout_width
-        */
-        public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
-        /** Attributes that can be used with a ListPopupWindow.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
-           <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
-           </table>
-           @see #ListPopupWindow_android_dropDownHorizontalOffset
-           @see #ListPopupWindow_android_dropDownVerticalOffset
-         */
-        public static final int[] ListPopupWindow = {
-            0x010102ac, 0x010102ad
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
-          attribute's value can be found in the {@link #ListPopupWindow} array.
-          @attr name android:dropDownHorizontalOffset
-        */
-        public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
-          attribute's value can be found in the {@link #ListPopupWindow} array.
-          @attr name android:dropDownVerticalOffset
-        */
-        public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
-        /** Attributes that can be used with a LoadingImageView.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #LoadingImageView_circleCrop at.gv.ucom:circleCrop}</code></td><td></td></tr>
-           <tr><td><code>{@link #LoadingImageView_imageAspectRatio at.gv.ucom:imageAspectRatio}</code></td><td></td></tr>
-           <tr><td><code>{@link #LoadingImageView_imageAspectRatioAdjust at.gv.ucom:imageAspectRatioAdjust}</code></td><td></td></tr>
-           </table>
-           @see #LoadingImageView_circleCrop
-           @see #LoadingImageView_imageAspectRatio
-           @see #LoadingImageView_imageAspectRatioAdjust
-         */
-        public static final int[] LoadingImageView = {
-            0x7f0100ac, 0x7f0100ad, 0x7f0100ae
-        };
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#circleCrop}
-          attribute's value can be found in the {@link #LoadingImageView} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:circleCrop
-        */
-        public static final int LoadingImageView_circleCrop = 2;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#imageAspectRatio}
-          attribute's value can be found in the {@link #LoadingImageView} array.
-
-
-          <p>Must be a floating point value, such as "<code>1.2</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:imageAspectRatio
-        */
-        public static final int LoadingImageView_imageAspectRatio = 1;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#imageAspectRatioAdjust}
-          attribute's value can be found in the {@link #LoadingImageView} array.
-
-
-          <p>Must be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>none</code></td><td>0</td><td></td></tr>
-<tr><td><code>adjust_width</code></td><td>1</td><td></td></tr>
-<tr><td><code>adjust_height</code></td><td>2</td><td></td></tr>
-</table>
-          @attr name at.gv.ucom:imageAspectRatioAdjust
-        */
-        public static final int LoadingImageView_imageAspectRatioAdjust = 0;
-        /** Attributes that can be used with a MenuGroup.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
-           </table>
-           @see #MenuGroup_android_checkableBehavior
-           @see #MenuGroup_android_enabled
-           @see #MenuGroup_android_id
-           @see #MenuGroup_android_menuCategory
-           @see #MenuGroup_android_orderInCategory
-           @see #MenuGroup_android_visible
-         */
-        public static final int[] MenuGroup = {
-            0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
-            0x010101df, 0x010101e0
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
-          attribute's value can be found in the {@link #MenuGroup} array.
-          @attr name android:checkableBehavior
-        */
-        public static final int MenuGroup_android_checkableBehavior = 5;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#enabled}
-          attribute's value can be found in the {@link #MenuGroup} array.
-          @attr name android:enabled
-        */
-        public static final int MenuGroup_android_enabled = 0;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#id}
-          attribute's value can be found in the {@link #MenuGroup} array.
-          @attr name android:id
-        */
-        public static final int MenuGroup_android_id = 1;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#menuCategory}
-          attribute's value can be found in the {@link #MenuGroup} array.
-          @attr name android:menuCategory
-        */
-        public static final int MenuGroup_android_menuCategory = 3;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
-          attribute's value can be found in the {@link #MenuGroup} array.
-          @attr name android:orderInCategory
-        */
-        public static final int MenuGroup_android_orderInCategory = 4;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#visible}
-          attribute's value can be found in the {@link #MenuGroup} array.
-          @attr name android:visible
-        */
-        public static final int MenuGroup_android_visible = 2;
-        /** Attributes that can be used with a MenuItem.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #MenuItem_actionLayout at.gv.ucom:actionLayout}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuItem_actionProviderClass at.gv.ucom:actionProviderClass}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuItem_actionViewClass at.gv.ucom:actionViewClass}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuItem_showAsAction at.gv.ucom:showAsAction}</code></td><td></td></tr>
-           </table>
-           @see #MenuItem_actionLayout
-           @see #MenuItem_actionProviderClass
-           @see #MenuItem_actionViewClass
-           @see #MenuItem_android_alphabeticShortcut
-           @see #MenuItem_android_checkable
-           @see #MenuItem_android_checked
-           @see #MenuItem_android_enabled
-           @see #MenuItem_android_icon
-           @see #MenuItem_android_id
-           @see #MenuItem_android_menuCategory
-           @see #MenuItem_android_numericShortcut
-           @see #MenuItem_android_onClick
-           @see #MenuItem_android_orderInCategory
-           @see #MenuItem_android_title
-           @see #MenuItem_android_titleCondensed
-           @see #MenuItem_android_visible
-           @see #MenuItem_showAsAction
-         */
-        public static final int[] MenuItem = {
-            0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
-            0x01010194, 0x010101de, 0x010101df, 0x010101e1,
-            0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
-            0x0101026f, 0x7f0100af, 0x7f0100b0, 0x7f0100b1,
-            0x7f0100b2
-        };
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionLayout}
-          attribute's value can be found in the {@link #MenuItem} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:actionLayout
-        */
-        public static final int MenuItem_actionLayout = 14;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionProviderClass}
-          attribute's value can be found in the {@link #MenuItem} array.
-
-
-          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:actionProviderClass
-        */
-        public static final int MenuItem_actionProviderClass = 16;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#actionViewClass}
-          attribute's value can be found in the {@link #MenuItem} array.
-
-
-          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:actionViewClass
-        */
-        public static final int MenuItem_actionViewClass = 15;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
-          attribute's value can be found in the {@link #MenuItem} array.
-          @attr name android:alphabeticShortcut
-        */
-        public static final int MenuItem_android_alphabeticShortcut = 9;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#checkable}
-          attribute's value can be found in the {@link #MenuItem} array.
-          @attr name android:checkable
-        */
-        public static final int MenuItem_android_checkable = 11;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#checked}
-          attribute's value can be found in the {@link #MenuItem} array.
-          @attr name android:checked
-        */
-        public static final int MenuItem_android_checked = 3;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#enabled}
-          attribute's value can be found in the {@link #MenuItem} array.
-          @attr name android:enabled
-        */
-        public static final int MenuItem_android_enabled = 1;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#icon}
-          attribute's value can be found in the {@link #MenuItem} array.
-          @attr name android:icon
-        */
-        public static final int MenuItem_android_icon = 0;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#id}
-          attribute's value can be found in the {@link #MenuItem} array.
-          @attr name android:id
-        */
-        public static final int MenuItem_android_id = 2;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#menuCategory}
-          attribute's value can be found in the {@link #MenuItem} array.
-          @attr name android:menuCategory
-        */
-        public static final int MenuItem_android_menuCategory = 5;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#numericShortcut}
-          attribute's value can be found in the {@link #MenuItem} array.
-          @attr name android:numericShortcut
-        */
-        public static final int MenuItem_android_numericShortcut = 10;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#onClick}
-          attribute's value can be found in the {@link #MenuItem} array.
-          @attr name android:onClick
-        */
-        public static final int MenuItem_android_onClick = 12;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
-          attribute's value can be found in the {@link #MenuItem} array.
-          @attr name android:orderInCategory
-        */
-        public static final int MenuItem_android_orderInCategory = 6;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#title}
-          attribute's value can be found in the {@link #MenuItem} array.
-          @attr name android:title
-        */
-        public static final int MenuItem_android_title = 7;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#titleCondensed}
-          attribute's value can be found in the {@link #MenuItem} array.
-          @attr name android:titleCondensed
-        */
-        public static final int MenuItem_android_titleCondensed = 8;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#visible}
-          attribute's value can be found in the {@link #MenuItem} array.
-          @attr name android:visible
-        */
-        public static final int MenuItem_android_visible = 4;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#showAsAction}
-          attribute's value can be found in the {@link #MenuItem} array.
-
-
-          <p>Must be one or more (separated by '|') of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>never</code></td><td>0</td><td></td></tr>
-<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
-<tr><td><code>always</code></td><td>2</td><td></td></tr>
-<tr><td><code>withText</code></td><td>4</td><td></td></tr>
-<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
-</table>
-          @attr name at.gv.ucom:showAsAction
-        */
-        public static final int MenuItem_showAsAction = 13;
-        /** Attributes that can be used with a MenuView.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuView_preserveIconSpacing at.gv.ucom:preserveIconSpacing}</code></td><td></td></tr>
-           <tr><td><code>{@link #MenuView_subMenuArrow at.gv.ucom:subMenuArrow}</code></td><td></td></tr>
-           </table>
-           @see #MenuView_android_headerBackground
-           @see #MenuView_android_horizontalDivider
-           @see #MenuView_android_itemBackground
-           @see #MenuView_android_itemIconDisabledAlpha
-           @see #MenuView_android_itemTextAppearance
-           @see #MenuView_android_verticalDivider
-           @see #MenuView_android_windowAnimationStyle
-           @see #MenuView_preserveIconSpacing
-           @see #MenuView_subMenuArrow
-         */
-        public static final int[] MenuView = {
-            0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
-            0x0101012f, 0x01010130, 0x01010131, 0x7f0100b3,
-            0x7f0100b4
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#headerBackground}
-          attribute's value can be found in the {@link #MenuView} array.
-          @attr name android:headerBackground
-        */
-        public static final int MenuView_android_headerBackground = 4;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#horizontalDivider}
-          attribute's value can be found in the {@link #MenuView} array.
-          @attr name android:horizontalDivider
-        */
-        public static final int MenuView_android_horizontalDivider = 2;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#itemBackground}
-          attribute's value can be found in the {@link #MenuView} array.
-          @attr name android:itemBackground
-        */
-        public static final int MenuView_android_itemBackground = 5;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
-          attribute's value can be found in the {@link #MenuView} array.
-          @attr name android:itemIconDisabledAlpha
-        */
-        public static final int MenuView_android_itemIconDisabledAlpha = 6;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
-          attribute's value can be found in the {@link #MenuView} array.
-          @attr name android:itemTextAppearance
-        */
-        public static final int MenuView_android_itemTextAppearance = 1;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#verticalDivider}
-          attribute's value can be found in the {@link #MenuView} array.
-          @attr name android:verticalDivider
-        */
-        public static final int MenuView_android_verticalDivider = 3;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
-          attribute's value can be found in the {@link #MenuView} array.
-          @attr name android:windowAnimationStyle
-        */
-        public static final int MenuView_android_windowAnimationStyle = 0;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#preserveIconSpacing}
-          attribute's value can be found in the {@link #MenuView} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:preserveIconSpacing
-        */
-        public static final int MenuView_preserveIconSpacing = 7;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#subMenuArrow}
-          attribute's value can be found in the {@link #MenuView} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:subMenuArrow
-        */
-        public static final int MenuView_subMenuArrow = 8;
-        /** Attributes that can be used with a PopupWindow.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
-           <tr><td><code>{@link #PopupWindow_overlapAnchor at.gv.ucom:overlapAnchor}</code></td><td></td></tr>
-           </table>
-           @see #PopupWindow_android_popupAnimationStyle
-           @see #PopupWindow_android_popupBackground
-           @see #PopupWindow_overlapAnchor
-         */
-        public static final int[] PopupWindow = {
-            0x01010176, 0x010102c9, 0x7f0100b5
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
-          attribute's value can be found in the {@link #PopupWindow} array.
-          @attr name android:popupAnimationStyle
-        */
-        public static final int PopupWindow_android_popupAnimationStyle = 1;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#popupBackground}
-          attribute's value can be found in the {@link #PopupWindow} array.
-          @attr name android:popupBackground
-        */
-        public static final int PopupWindow_android_popupBackground = 0;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#overlapAnchor}
-          attribute's value can be found in the {@link #PopupWindow} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:overlapAnchor
-        */
-        public static final int PopupWindow_overlapAnchor = 2;
-        /** Attributes that can be used with a PopupWindowBackgroundState.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor at.gv.ucom:state_above_anchor}</code></td><td></td></tr>
-           </table>
-           @see #PopupWindowBackgroundState_state_above_anchor
-         */
-        public static final int[] PopupWindowBackgroundState = {
-            0x7f0100b6
-        };
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#state_above_anchor}
-          attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:state_above_anchor
-        */
-        public static final int PopupWindowBackgroundState_state_above_anchor = 0;
-        /** Attributes that can be used with a RecycleListView.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #RecycleListView_paddingBottomNoButtons at.gv.ucom:paddingBottomNoButtons}</code></td><td></td></tr>
-           <tr><td><code>{@link #RecycleListView_paddingTopNoTitle at.gv.ucom:paddingTopNoTitle}</code></td><td></td></tr>
-           </table>
-           @see #RecycleListView_paddingBottomNoButtons
-           @see #RecycleListView_paddingTopNoTitle
-         */
-        public static final int[] RecycleListView = {
-            0x7f0100b7, 0x7f0100b8
-        };
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#paddingBottomNoButtons}
-          attribute's value can be found in the {@link #RecycleListView} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:paddingBottomNoButtons
-        */
-        public static final int RecycleListView_paddingBottomNoButtons = 0;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#paddingTopNoTitle}
-          attribute's value can be found in the {@link #RecycleListView} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:paddingTopNoTitle
-        */
-        public static final int RecycleListView_paddingTopNoTitle = 1;
-        /** Attributes that can be used with a SearchView.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
-           <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
-           <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
-           <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
-           <tr><td><code>{@link #SearchView_closeIcon at.gv.ucom:closeIcon}</code></td><td></td></tr>
-           <tr><td><code>{@link #SearchView_commitIcon at.gv.ucom:commitIcon}</code></td><td></td></tr>
-           <tr><td><code>{@link #SearchView_defaultQueryHint at.gv.ucom:defaultQueryHint}</code></td><td></td></tr>
-           <tr><td><code>{@link #SearchView_goIcon at.gv.ucom:goIcon}</code></td><td></td></tr>
-           <tr><td><code>{@link #SearchView_iconifiedByDefault at.gv.ucom:iconifiedByDefault}</code></td><td></td></tr>
-           <tr><td><code>{@link #SearchView_layout at.gv.ucom:layout}</code></td><td></td></tr>
-           <tr><td><code>{@link #SearchView_queryBackground at.gv.ucom:queryBackground}</code></td><td></td></tr>
-           <tr><td><code>{@link #SearchView_queryHint at.gv.ucom:queryHint}</code></td><td></td></tr>
-           <tr><td><code>{@link #SearchView_searchHintIcon at.gv.ucom:searchHintIcon}</code></td><td></td></tr>
-           <tr><td><code>{@link #SearchView_searchIcon at.gv.ucom:searchIcon}</code></td><td></td></tr>
-           <tr><td><code>{@link #SearchView_submitBackground at.gv.ucom:submitBackground}</code></td><td></td></tr>
-           <tr><td><code>{@link #SearchView_suggestionRowLayout at.gv.ucom:suggestionRowLayout}</code></td><td></td></tr>
-           <tr><td><code>{@link #SearchView_voiceIcon at.gv.ucom:voiceIcon}</code></td><td></td></tr>
-           </table>
-           @see #SearchView_android_focusable
-           @see #SearchView_android_imeOptions
-           @see #SearchView_android_inputType
-           @see #SearchView_android_maxWidth
-           @see #SearchView_closeIcon
-           @see #SearchView_commitIcon
-           @see #SearchView_defaultQueryHint
-           @see #SearchView_goIcon
-           @see #SearchView_iconifiedByDefault
-           @see #SearchView_layout
-           @see #SearchView_queryBackground
-           @see #SearchView_queryHint
-           @see #SearchView_searchHintIcon
-           @see #SearchView_searchIcon
-           @see #SearchView_submitBackground
-           @see #SearchView_suggestionRowLayout
-           @see #SearchView_voiceIcon
-         */
-        public static final int[] SearchView = {
-            0x010100da, 0x0101011f, 0x01010220, 0x01010264,
-            0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc,
-            0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0,
-            0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4,
-            0x7f0100c5
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#focusable}
-          attribute's value can be found in the {@link #SearchView} array.
-          @attr name android:focusable
-        */
-        public static final int SearchView_android_focusable = 0;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#imeOptions}
-          attribute's value can be found in the {@link #SearchView} array.
-          @attr name android:imeOptions
-        */
-        public static final int SearchView_android_imeOptions = 3;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#inputType}
-          attribute's value can be found in the {@link #SearchView} array.
-          @attr name android:inputType
-        */
-        public static final int SearchView_android_inputType = 2;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#maxWidth}
-          attribute's value can be found in the {@link #SearchView} array.
-          @attr name android:maxWidth
-        */
-        public static final int SearchView_android_maxWidth = 1;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#closeIcon}
-          attribute's value can be found in the {@link #SearchView} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:closeIcon
-        */
-        public static final int SearchView_closeIcon = 8;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#commitIcon}
-          attribute's value can be found in the {@link #SearchView} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:commitIcon
-        */
-        public static final int SearchView_commitIcon = 13;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#defaultQueryHint}
-          attribute's value can be found in the {@link #SearchView} array.
-
-
-          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:defaultQueryHint
-        */
-        public static final int SearchView_defaultQueryHint = 7;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#goIcon}
-          attribute's value can be found in the {@link #SearchView} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:goIcon
-        */
-        public static final int SearchView_goIcon = 9;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#iconifiedByDefault}
-          attribute's value can be found in the {@link #SearchView} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:iconifiedByDefault
-        */
-        public static final int SearchView_iconifiedByDefault = 5;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#layout}
-          attribute's value can be found in the {@link #SearchView} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:layout
-        */
-        public static final int SearchView_layout = 4;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#queryBackground}
-          attribute's value can be found in the {@link #SearchView} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:queryBackground
-        */
-        public static final int SearchView_queryBackground = 15;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#queryHint}
-          attribute's value can be found in the {@link #SearchView} array.
-
-
-          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:queryHint
-        */
-        public static final int SearchView_queryHint = 6;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#searchHintIcon}
-          attribute's value can be found in the {@link #SearchView} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:searchHintIcon
-        */
-        public static final int SearchView_searchHintIcon = 11;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#searchIcon}
-          attribute's value can be found in the {@link #SearchView} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:searchIcon
-        */
-        public static final int SearchView_searchIcon = 10;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#submitBackground}
-          attribute's value can be found in the {@link #SearchView} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:submitBackground
-        */
-        public static final int SearchView_submitBackground = 16;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#suggestionRowLayout}
-          attribute's value can be found in the {@link #SearchView} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:suggestionRowLayout
-        */
-        public static final int SearchView_suggestionRowLayout = 14;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#voiceIcon}
-          attribute's value can be found in the {@link #SearchView} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:voiceIcon
-        */
-        public static final int SearchView_voiceIcon = 12;
-        /** Attributes that can be used with a SignInButton.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #SignInButton_buttonSize at.gv.ucom:buttonSize}</code></td><td></td></tr>
-           <tr><td><code>{@link #SignInButton_colorScheme at.gv.ucom:colorScheme}</code></td><td></td></tr>
-           <tr><td><code>{@link #SignInButton_scopeUris at.gv.ucom:scopeUris}</code></td><td></td></tr>
-           </table>
-           @see #SignInButton_buttonSize
-           @see #SignInButton_colorScheme
-           @see #SignInButton_scopeUris
-         */
-        public static final int[] SignInButton = {
-            0x7f0100c6, 0x7f0100c7, 0x7f0100c8
-        };
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#buttonSize}
-          attribute's value can be found in the {@link #SignInButton} array.
-
-
-          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>standard</code></td><td>0</td><td></td></tr>
-<tr><td><code>wide</code></td><td>1</td><td></td></tr>
-<tr><td><code>icon_only</code></td><td>2</td><td></td></tr>
-</table>
-          @attr name at.gv.ucom:buttonSize
-        */
-        public static final int SignInButton_buttonSize = 0;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#colorScheme}
-          attribute's value can be found in the {@link #SignInButton} array.
-
-
-          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>dark</code></td><td>0</td><td></td></tr>
-<tr><td><code>light</code></td><td>1</td><td></td></tr>
-<tr><td><code>auto</code></td><td>2</td><td></td></tr>
-</table>
-          @attr name at.gv.ucom:colorScheme
-        */
-        public static final int SignInButton_colorScheme = 1;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#scopeUris}
-          attribute's value can be found in the {@link #SignInButton} array.
-
-
-          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-          @attr name at.gv.ucom:scopeUris
-        */
-        public static final int SignInButton_scopeUris = 2;
-        /** Attributes that can be used with a Spinner.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
-           <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr>
-           <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
-           <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
-           <tr><td><code>{@link #Spinner_popupTheme at.gv.ucom:popupTheme}</code></td><td></td></tr>
-           </table>
-           @see #Spinner_android_dropDownWidth
-           @see #Spinner_android_entries
-           @see #Spinner_android_popupBackground
-           @see #Spinner_android_prompt
-           @see #Spinner_popupTheme
-         */
-        public static final int[] Spinner = {
-            0x010100b2, 0x01010176, 0x0101017b, 0x01010262,
-            0x7f01001d
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
-          attribute's value can be found in the {@link #Spinner} array.
-          @attr name android:dropDownWidth
-        */
-        public static final int Spinner_android_dropDownWidth = 3;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#entries}
-          attribute's value can be found in the {@link #Spinner} array.
-          @attr name android:entries
-        */
-        public static final int Spinner_android_entries = 0;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#popupBackground}
-          attribute's value can be found in the {@link #Spinner} array.
-          @attr name android:popupBackground
-        */
-        public static final int Spinner_android_popupBackground = 1;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#prompt}
-          attribute's value can be found in the {@link #Spinner} array.
-          @attr name android:prompt
-        */
-        public static final int Spinner_android_prompt = 2;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#popupTheme}
-          attribute's value can be found in the {@link #Spinner} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:popupTheme
-        */
-        public static final int Spinner_popupTheme = 4;
-        /** Attributes that can be used with a SwitchCompat.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
-           <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
-           <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
-           <tr><td><code>{@link #SwitchCompat_showText at.gv.ucom:showText}</code></td><td></td></tr>
-           <tr><td><code>{@link #SwitchCompat_splitTrack at.gv.ucom:splitTrack}</code></td><td></td></tr>
-           <tr><td><code>{@link #SwitchCompat_switchMinWidth at.gv.ucom:switchMinWidth}</code></td><td></td></tr>
-           <tr><td><code>{@link #SwitchCompat_switchPadding at.gv.ucom:switchPadding}</code></td><td></td></tr>
-           <tr><td><code>{@link #SwitchCompat_switchTextAppearance at.gv.ucom:switchTextAppearance}</code></td><td></td></tr>
-           <tr><td><code>{@link #SwitchCompat_thumbTextPadding at.gv.ucom:thumbTextPadding}</code></td><td></td></tr>
-           <tr><td><code>{@link #SwitchCompat_thumbTint at.gv.ucom:thumbTint}</code></td><td></td></tr>
-           <tr><td><code>{@link #SwitchCompat_thumbTintMode at.gv.ucom:thumbTintMode}</code></td><td></td></tr>
-           <tr><td><code>{@link #SwitchCompat_track at.gv.ucom:track}</code></td><td></td></tr>
-           <tr><td><code>{@link #SwitchCompat_trackTint at.gv.ucom:trackTint}</code></td><td></td></tr>
-           <tr><td><code>{@link #SwitchCompat_trackTintMode at.gv.ucom:trackTintMode}</code></td><td></td></tr>
-           </table>
-           @see #SwitchCompat_android_textOff
-           @see #SwitchCompat_android_textOn
-           @see #SwitchCompat_android_thumb
-           @see #SwitchCompat_showText
-           @see #SwitchCompat_splitTrack
-           @see #SwitchCompat_switchMinWidth
-           @see #SwitchCompat_switchPadding
-           @see #SwitchCompat_switchTextAppearance
-           @see #SwitchCompat_thumbTextPadding
-           @see #SwitchCompat_thumbTint
-           @see #SwitchCompat_thumbTintMode
-           @see #SwitchCompat_track
-           @see #SwitchCompat_trackTint
-           @see #SwitchCompat_trackTintMode
-         */
-        public static final int[] SwitchCompat = {
-            0x01010124, 0x01010125, 0x01010142, 0x7f0100c9,
-            0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd,
-            0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1,
-            0x7f0100d2, 0x7f0100d3
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#textOff}
-          attribute's value can be found in the {@link #SwitchCompat} array.
-          @attr name android:textOff
-        */
-        public static final int SwitchCompat_android_textOff = 1;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#textOn}
-          attribute's value can be found in the {@link #SwitchCompat} array.
-          @attr name android:textOn
-        */
-        public static final int SwitchCompat_android_textOn = 0;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#thumb}
-          attribute's value can be found in the {@link #SwitchCompat} array.
-          @attr name android:thumb
-        */
-        public static final int SwitchCompat_android_thumb = 2;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#showText}
-          attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:showText
-        */
-        public static final int SwitchCompat_showText = 13;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#splitTrack}
-          attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:splitTrack
-        */
-        public static final int SwitchCompat_splitTrack = 12;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#switchMinWidth}
-          attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:switchMinWidth
-        */
-        public static final int SwitchCompat_switchMinWidth = 10;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#switchPadding}
-          attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:switchPadding
-        */
-        public static final int SwitchCompat_switchPadding = 11;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#switchTextAppearance}
-          attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:switchTextAppearance
-        */
-        public static final int SwitchCompat_switchTextAppearance = 9;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#thumbTextPadding}
-          attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:thumbTextPadding
-        */
-        public static final int SwitchCompat_thumbTextPadding = 8;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#thumbTint}
-          attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:thumbTint
-        */
-        public static final int SwitchCompat_thumbTint = 3;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#thumbTintMode}
-          attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-          <p>Must be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
-<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
-<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
-<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
-<tr><td><code>screen</code></td><td>15</td><td></td></tr>
-<tr><td><code>add</code></td><td>16</td><td></td></tr>
-</table>
-          @attr name at.gv.ucom:thumbTintMode
-        */
-        public static final int SwitchCompat_thumbTintMode = 4;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#track}
-          attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:track
-        */
-        public static final int SwitchCompat_track = 5;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#trackTint}
-          attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:trackTint
-        */
-        public static final int SwitchCompat_trackTint = 6;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#trackTintMode}
-          attribute's value can be found in the {@link #SwitchCompat} array.
-
-
-          <p>Must be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
-<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
-<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
-<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
-<tr><td><code>screen</code></td><td>15</td><td></td></tr>
-<tr><td><code>add</code></td><td>16</td><td></td></tr>
-</table>
-          @attr name at.gv.ucom:trackTintMode
-        */
-        public static final int SwitchCompat_trackTintMode = 7;
-        /** Attributes that can be used with a TextAppearance.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr>
-           <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr>
-           <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr>
-           <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr>
-           <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
-           <tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr>
-           <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
-           <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
-           <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
-           <tr><td><code>{@link #TextAppearance_textAllCaps at.gv.ucom:textAllCaps}</code></td><td></td></tr>
-           </table>
-           @see #TextAppearance_android_shadowColor
-           @see #TextAppearance_android_shadowDx
-           @see #TextAppearance_android_shadowDy
-           @see #TextAppearance_android_shadowRadius
-           @see #TextAppearance_android_textColor
-           @see #TextAppearance_android_textColorHint
-           @see #TextAppearance_android_textSize
-           @see #TextAppearance_android_textStyle
-           @see #TextAppearance_android_typeface
-           @see #TextAppearance_textAllCaps
-         */
-        public static final int[] TextAppearance = {
-            0x01010095, 0x01010096, 0x01010097, 0x01010098,
-            0x0101009a, 0x01010161, 0x01010162, 0x01010163,
-            0x01010164, 0x7f01002b
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#shadowColor}
-          attribute's value can be found in the {@link #TextAppearance} array.
-          @attr name android:shadowColor
-        */
-        public static final int TextAppearance_android_shadowColor = 5;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#shadowDx}
-          attribute's value can be found in the {@link #TextAppearance} array.
-          @attr name android:shadowDx
-        */
-        public static final int TextAppearance_android_shadowDx = 6;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#shadowDy}
-          attribute's value can be found in the {@link #TextAppearance} array.
-          @attr name android:shadowDy
-        */
-        public static final int TextAppearance_android_shadowDy = 7;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#shadowRadius}
-          attribute's value can be found in the {@link #TextAppearance} array.
-          @attr name android:shadowRadius
-        */
-        public static final int TextAppearance_android_shadowRadius = 8;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#textColor}
-          attribute's value can be found in the {@link #TextAppearance} array.
-          @attr name android:textColor
-        */
-        public static final int TextAppearance_android_textColor = 3;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#textColorHint}
-          attribute's value can be found in the {@link #TextAppearance} array.
-          @attr name android:textColorHint
-        */
-        public static final int TextAppearance_android_textColorHint = 4;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#textSize}
-          attribute's value can be found in the {@link #TextAppearance} array.
-          @attr name android:textSize
-        */
-        public static final int TextAppearance_android_textSize = 0;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#textStyle}
-          attribute's value can be found in the {@link #TextAppearance} array.
-          @attr name android:textStyle
-        */
-        public static final int TextAppearance_android_textStyle = 2;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#typeface}
-          attribute's value can be found in the {@link #TextAppearance} array.
-          @attr name android:typeface
-        */
-        public static final int TextAppearance_android_typeface = 1;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#textAllCaps}
-          attribute's value can be found in the {@link #TextAppearance} array.
-
-
-          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
-          @attr name at.gv.ucom:textAllCaps
-        */
-        public static final int TextAppearance_textAllCaps = 9;
-        /** Attributes that can be used with a Toolbar.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_buttonGravity at.gv.ucom:buttonGravity}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_collapseContentDescription at.gv.ucom:collapseContentDescription}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_collapseIcon at.gv.ucom:collapseIcon}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_contentInsetEnd at.gv.ucom:contentInsetEnd}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_contentInsetEndWithActions at.gv.ucom:contentInsetEndWithActions}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_contentInsetLeft at.gv.ucom:contentInsetLeft}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_contentInsetRight at.gv.ucom:contentInsetRight}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_contentInsetStart at.gv.ucom:contentInsetStart}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation at.gv.ucom:contentInsetStartWithNavigation}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_logo at.gv.ucom:logo}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_logoDescription at.gv.ucom:logoDescription}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_maxButtonHeight at.gv.ucom:maxButtonHeight}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_navigationContentDescription at.gv.ucom:navigationContentDescription}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_navigationIcon at.gv.ucom:navigationIcon}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_popupTheme at.gv.ucom:popupTheme}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_subtitle at.gv.ucom:subtitle}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_subtitleTextAppearance at.gv.ucom:subtitleTextAppearance}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_subtitleTextColor at.gv.ucom:subtitleTextColor}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_title at.gv.ucom:title}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_titleMargin at.gv.ucom:titleMargin}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_titleMarginBottom at.gv.ucom:titleMarginBottom}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_titleMarginEnd at.gv.ucom:titleMarginEnd}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_titleMarginStart at.gv.ucom:titleMarginStart}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_titleMarginTop at.gv.ucom:titleMarginTop}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_titleMargins at.gv.ucom:titleMargins}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_titleTextAppearance at.gv.ucom:titleTextAppearance}</code></td><td></td></tr>
-           <tr><td><code>{@link #Toolbar_titleTextColor at.gv.ucom:titleTextColor}</code></td><td></td></tr>
-           </table>
-           @see #Toolbar_android_gravity
-           @see #Toolbar_android_minHeight
-           @see #Toolbar_buttonGravity
-           @see #Toolbar_collapseContentDescription
-           @see #Toolbar_collapseIcon
-           @see #Toolbar_contentInsetEnd
-           @see #Toolbar_contentInsetEndWithActions
-           @see #Toolbar_contentInsetLeft
-           @see #Toolbar_contentInsetRight
-           @see #Toolbar_contentInsetStart
-           @see #Toolbar_contentInsetStartWithNavigation
-           @see #Toolbar_logo
-           @see #Toolbar_logoDescription
-           @see #Toolbar_maxButtonHeight
-           @see #Toolbar_navigationContentDescription
-           @see #Toolbar_navigationIcon
-           @see #Toolbar_popupTheme
-           @see #Toolbar_subtitle
-           @see #Toolbar_subtitleTextAppearance
-           @see #Toolbar_subtitleTextColor
-           @see #Toolbar_title
-           @see #Toolbar_titleMargin
-           @see #Toolbar_titleMarginBottom
-           @see #Toolbar_titleMarginEnd
-           @see #Toolbar_titleMarginStart
-           @see #Toolbar_titleMarginTop
-           @see #Toolbar_titleMargins
-           @see #Toolbar_titleTextAppearance
-           @see #Toolbar_titleTextColor
-         */
-        public static final int[] Toolbar = {
-            0x010100af, 0x01010140, 0x7f010003, 0x7f010006,
-            0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018,
-            0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001d,
-            0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7,
-            0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db,
-            0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df,
-            0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3,
-            0x7f0100e4
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#gravity}
-          attribute's value can be found in the {@link #Toolbar} array.
-          @attr name android:gravity
-        */
-        public static final int Toolbar_android_gravity = 0;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#minHeight}
-          attribute's value can be found in the {@link #Toolbar} array.
-          @attr name android:minHeight
-        */
-        public static final int Toolbar_android_minHeight = 1;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#buttonGravity}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be one or more (separated by '|') of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
-<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
-</table>
-          @attr name at.gv.ucom:buttonGravity
-        */
-        public static final int Toolbar_buttonGravity = 21;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#collapseContentDescription}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:collapseContentDescription
-        */
-        public static final int Toolbar_collapseContentDescription = 23;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#collapseIcon}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:collapseIcon
-        */
-        public static final int Toolbar_collapseIcon = 22;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#contentInsetEnd}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:contentInsetEnd
-        */
-        public static final int Toolbar_contentInsetEnd = 6;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#contentInsetEndWithActions}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:contentInsetEndWithActions
-        */
-        public static final int Toolbar_contentInsetEndWithActions = 10;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#contentInsetLeft}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:contentInsetLeft
-        */
-        public static final int Toolbar_contentInsetLeft = 7;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#contentInsetRight}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:contentInsetRight
-        */
-        public static final int Toolbar_contentInsetRight = 8;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#contentInsetStart}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:contentInsetStart
-        */
-        public static final int Toolbar_contentInsetStart = 5;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#contentInsetStartWithNavigation}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:contentInsetStartWithNavigation
-        */
-        public static final int Toolbar_contentInsetStartWithNavigation = 9;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#logo}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:logo
-        */
-        public static final int Toolbar_logo = 4;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#logoDescription}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:logoDescription
-        */
-        public static final int Toolbar_logoDescription = 26;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#maxButtonHeight}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:maxButtonHeight
-        */
-        public static final int Toolbar_maxButtonHeight = 20;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#navigationContentDescription}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:navigationContentDescription
-        */
-        public static final int Toolbar_navigationContentDescription = 25;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#navigationIcon}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:navigationIcon
-        */
-        public static final int Toolbar_navigationIcon = 24;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#popupTheme}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:popupTheme
-        */
-        public static final int Toolbar_popupTheme = 11;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#subtitle}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:subtitle
-        */
-        public static final int Toolbar_subtitle = 3;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#subtitleTextAppearance}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:subtitleTextAppearance
-        */
-        public static final int Toolbar_subtitleTextAppearance = 13;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#subtitleTextColor}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:subtitleTextColor
-        */
-        public static final int Toolbar_subtitleTextColor = 28;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#title}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:title
-        */
-        public static final int Toolbar_title = 2;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#titleMargin}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:titleMargin
-        */
-        public static final int Toolbar_titleMargin = 14;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#titleMarginBottom}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:titleMarginBottom
-        */
-        public static final int Toolbar_titleMarginBottom = 18;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#titleMarginEnd}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:titleMarginEnd
-        */
-        public static final int Toolbar_titleMarginEnd = 16;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#titleMarginStart}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:titleMarginStart
-        */
-        public static final int Toolbar_titleMarginStart = 15;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#titleMarginTop}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:titleMarginTop
-        */
-        public static final int Toolbar_titleMarginTop = 17;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#titleMargins}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:titleMargins
-        */
-        public static final int Toolbar_titleMargins = 19;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#titleTextAppearance}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:titleTextAppearance
-        */
-        public static final int Toolbar_titleTextAppearance = 12;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#titleTextColor}
-          attribute's value can be found in the {@link #Toolbar} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:titleTextColor
-        */
-        public static final int Toolbar_titleTextColor = 27;
-        /** Attributes that can be used with a View.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
-           <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
-           <tr><td><code>{@link #View_paddingEnd at.gv.ucom:paddingEnd}</code></td><td></td></tr>
-           <tr><td><code>{@link #View_paddingStart at.gv.ucom:paddingStart}</code></td><td></td></tr>
-           <tr><td><code>{@link #View_theme at.gv.ucom:theme}</code></td><td></td></tr>
-           </table>
-           @see #View_android_focusable
-           @see #View_android_theme
-           @see #View_paddingEnd
-           @see #View_paddingStart
-           @see #View_theme
-         */
-        public static final int[] View = {
-            0x01010000, 0x010100da, 0x7f0100e5, 0x7f0100e6,
-            0x7f0100e7
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#focusable}
-          attribute's value can be found in the {@link #View} array.
-          @attr name android:focusable
-        */
-        public static final int View_android_focusable = 1;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#theme}
-          attribute's value can be found in the {@link #View} array.
-          @attr name android:theme
-        */
-        public static final int View_android_theme = 0;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#paddingEnd}
-          attribute's value can be found in the {@link #View} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:paddingEnd
-        */
-        public static final int View_paddingEnd = 3;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#paddingStart}
-          attribute's value can be found in the {@link #View} array.
-
-
-          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
-Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
-in (inches), mm (millimeters).
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:paddingStart
-        */
-        public static final int View_paddingStart = 2;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#theme}
-          attribute's value can be found in the {@link #View} array.
-
-
-          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
-or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
-          @attr name at.gv.ucom:theme
-        */
-        public static final int View_theme = 4;
-        /** Attributes that can be used with a ViewBackgroundHelper.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr>
-           <tr><td><code>{@link #ViewBackgroundHelper_backgroundTint at.gv.ucom:backgroundTint}</code></td><td></td></tr>
-           <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode at.gv.ucom:backgroundTintMode}</code></td><td></td></tr>
-           </table>
-           @see #ViewBackgroundHelper_android_background
-           @see #ViewBackgroundHelper_backgroundTint
-           @see #ViewBackgroundHelper_backgroundTintMode
-         */
-        public static final int[] ViewBackgroundHelper = {
-            0x010100d4, 0x7f0100e8, 0x7f0100e9
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#background}
-          attribute's value can be found in the {@link #ViewBackgroundHelper} array.
-          @attr name android:background
-        */
-        public static final int ViewBackgroundHelper_android_background = 0;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#backgroundTint}
-          attribute's value can be found in the {@link #ViewBackgroundHelper} array.
-
-
-          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
-"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
-<p>This may also be a reference to a resource (in the form
-"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
-theme attribute (in the form
-"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
-containing a value of this type.
-          @attr name at.gv.ucom:backgroundTint
-        */
-        public static final int ViewBackgroundHelper_backgroundTint = 1;
-        /**
-          <p>This symbol is the offset where the {@link at.gv.ucom.R.attr#backgroundTintMode}
-          attribute's value can be found in the {@link #ViewBackgroundHelper} array.
-
-
-          <p>Must be one of the following constant values.</p>
-<table>
-<colgroup align="left" />
-<colgroup align="left" />
-<colgroup align="left" />
-<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
-<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
-<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
-<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
-<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
-<tr><td><code>screen</code></td><td>15</td><td></td></tr>
-</table>
-          @attr name at.gv.ucom:backgroundTintMode
-        */
-        public static final int ViewBackgroundHelper_backgroundTintMode = 2;
-        /** Attributes that can be used with a ViewStubCompat.
-           <p>Includes the following attributes:</p>
-           <table>
-           <colgroup align="left" />
-           <colgroup align="left" />
-           <tr><th>Attribute</th><th>Description</th></tr>
-           <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>
-           <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr>
-           <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>
-           </table>
-           @see #ViewStubCompat_android_id
-           @see #ViewStubCompat_android_inflatedId
-           @see #ViewStubCompat_android_layout
-         */
-        public static final int[] ViewStubCompat = {
-            0x010100d0, 0x010100f2, 0x010100f3
-        };
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#id}
-          attribute's value can be found in the {@link #ViewStubCompat} array.
-          @attr name android:id
-        */
-        public static final int ViewStubCompat_android_id = 0;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#inflatedId}
-          attribute's value can be found in the {@link #ViewStubCompat} array.
-          @attr name android:inflatedId
-        */
-        public static final int ViewStubCompat_android_inflatedId = 2;
-        /**
-          <p>This symbol is the offset where the {@link android.R.attr#layout}
-          attribute's value can be found in the {@link #ViewStubCompat} array.
-          @attr name android:layout
-        */
-        public static final int ViewStubCompat_android_layout = 1;
-    };
-}
diff --git a/android/.build/generated/source/r/debug/com/google/android/gms/R.java b/android/.build/generated/source/r/debug/com/google/android/gms/R.java
deleted file mode 100644
index f83b2caa1ac14821c37e75a8856f54cf898f6f24..0000000000000000000000000000000000000000
--- a/android/.build/generated/source/r/debug/com/google/android/gms/R.java
+++ /dev/null
@@ -1,111 +0,0 @@
-/* AUTO-GENERATED FILE.  DO NOT MODIFY.
- *
- * This class was automatically generated by the
- * aapt tool from the resource data it found.  It
- * should not be modified by hand.
- */
-package com.google.android.gms;
-
-public final class R {
-	public static final class array {
-	}
-	public static final class attr {
-		public static final int buttonSize = 0x7f0100c6;
-		public static final int circleCrop = 0x7f0100ae;
-		public static final int colorScheme = 0x7f0100c7;
-		public static final int imageAspectRatio = 0x7f0100ad;
-		public static final int imageAspectRatioAdjust = 0x7f0100ac;
-		public static final int scopeUris = 0x7f0100c8;
-	}
-	public static final class color {
-		public static final int common_google_signin_btn_text_dark = 0x7f090058;
-		public static final int common_google_signin_btn_text_dark_default = 0x7f090013;
-		public static final int common_google_signin_btn_text_dark_disabled = 0x7f090014;
-		public static final int common_google_signin_btn_text_dark_focused = 0x7f090015;
-		public static final int common_google_signin_btn_text_dark_pressed = 0x7f090016;
-		public static final int common_google_signin_btn_text_light = 0x7f090059;
-		public static final int common_google_signin_btn_text_light_default = 0x7f090017;
-		public static final int common_google_signin_btn_text_light_disabled = 0x7f090018;
-		public static final int common_google_signin_btn_text_light_focused = 0x7f090019;
-		public static final int common_google_signin_btn_text_light_pressed = 0x7f09001a;
-		public static final int common_google_signin_btn_tint = 0x7f09005a;
-	}
-	public static final class dimen {
-	}
-	public static final class drawable {
-		public static final int common_full_open_on_phone = 0x7f020053;
-		public static final int common_google_signin_btn_icon_dark = 0x7f020054;
-		public static final int common_google_signin_btn_icon_dark_focused = 0x7f020055;
-		public static final int common_google_signin_btn_icon_dark_normal = 0x7f020056;
-		public static final int common_google_signin_btn_icon_dark_normal_background = 0x7f020057;
-		public static final int common_google_signin_btn_icon_disabled = 0x7f020058;
-		public static final int common_google_signin_btn_icon_light = 0x7f020059;
-		public static final int common_google_signin_btn_icon_light_focused = 0x7f02005a;
-		public static final int common_google_signin_btn_icon_light_normal = 0x7f02005b;
-		public static final int common_google_signin_btn_icon_light_normal_background = 0x7f02005c;
-		public static final int common_google_signin_btn_text_dark = 0x7f02005d;
-		public static final int common_google_signin_btn_text_dark_focused = 0x7f02005e;
-		public static final int common_google_signin_btn_text_dark_normal = 0x7f02005f;
-		public static final int common_google_signin_btn_text_dark_normal_background = 0x7f020060;
-		public static final int common_google_signin_btn_text_disabled = 0x7f020061;
-		public static final int common_google_signin_btn_text_light = 0x7f020062;
-		public static final int common_google_signin_btn_text_light_focused = 0x7f020063;
-		public static final int common_google_signin_btn_text_light_normal = 0x7f020064;
-		public static final int common_google_signin_btn_text_light_normal_background = 0x7f020065;
-		public static final int googleg_disabled_color_18 = 0x7f020066;
-		public static final int googleg_standard_color_18 = 0x7f020067;
-	}
-	public static final class id {
-		public static final int adjust_height = 0x7f0b001e;
-		public static final int adjust_width = 0x7f0b001f;
-		public static final int auto = 0x7f0b0028;
-		public static final int crash_reporting_present = 0x7f0b0004;
-		public static final int dark = 0x7f0b0029;
-		public static final int icon_only = 0x7f0b0025;
-		public static final int light = 0x7f0b002a;
-		public static final int none = 0x7f0b000f;
-		public static final int normal = 0x7f0b000b;
-		public static final int radio = 0x7f0b0049;
-		public static final int standard = 0x7f0b0026;
-		public static final int text = 0x7f0b0075;
-		public static final int text2 = 0x7f0b0073;
-		public static final int wide = 0x7f0b0027;
-		public static final int wrap_content = 0x7f0b001a;
-	}
-	public static final class integer {
-		public static final int google_play_services_version = 0x7f0c0003;
-	}
-	public static final class layout {
-	}
-	public static final class string {
-		public static final int common_google_play_services_enable_button = 0x7f050013;
-		public static final int common_google_play_services_enable_text = 0x7f050014;
-		public static final int common_google_play_services_enable_title = 0x7f050015;
-		public static final int common_google_play_services_install_button = 0x7f050016;
-		public static final int common_google_play_services_install_text = 0x7f050017;
-		public static final int common_google_play_services_install_title = 0x7f050018;
-		public static final int common_google_play_services_notification_ticker = 0x7f050019;
-		public static final int common_google_play_services_unknown_issue = 0x7f05001a;
-		public static final int common_google_play_services_unsupported_text = 0x7f05001b;
-		public static final int common_google_play_services_update_button = 0x7f05001c;
-		public static final int common_google_play_services_update_text = 0x7f05001d;
-		public static final int common_google_play_services_update_title = 0x7f05001e;
-		public static final int common_google_play_services_updating_text = 0x7f05001f;
-		public static final int common_google_play_services_wear_update_text = 0x7f050020;
-		public static final int common_open_on_phone = 0x7f050021;
-		public static final int common_signin_button_text = 0x7f050022;
-		public static final int common_signin_button_text_long = 0x7f050023;
-	}
-	public static final class style {
-	}
-	public static final class styleable {
-		public static final int[] LoadingImageView = { 0x7f0100ac, 0x7f0100ad, 0x7f0100ae };
-		public static final int LoadingImageView_circleCrop = 2;
-		public static final int LoadingImageView_imageAspectRatio = 1;
-		public static final int LoadingImageView_imageAspectRatioAdjust = 0;
-		public static final int[] SignInButton = { 0x7f0100c6, 0x7f0100c7, 0x7f0100c8 };
-		public static final int SignInButton_buttonSize = 0;
-		public static final int SignInButton_colorScheme = 1;
-		public static final int SignInButton_scopeUris = 2;
-	}
-}
diff --git a/android/.build/generated/source/r/debug/com/google/firebase/firebase_core/R.java b/android/.build/generated/source/r/debug/com/google/firebase/firebase_core/R.java
deleted file mode 100644
index 793882b6181b9652e812d5c63463b705922a8315..0000000000000000000000000000000000000000
--- a/android/.build/generated/source/r/debug/com/google/firebase/firebase_core/R.java
+++ /dev/null
@@ -1,10 +0,0 @@
-/* AUTO-GENERATED FILE.  DO NOT MODIFY.
- *
- * This class was automatically generated by the
- * aapt tool from the resource data it found.  It
- * should not be modified by hand.
- */
-package com.google.firebase.firebase_core;
-
-public final class R {
-}
diff --git a/android/.build/intermediates/assets/debug/crashlytics-build.properties b/android/.build/intermediates/assets/debug/crashlytics-build.properties
deleted file mode 100644
index 5a175536615aa4bec7d3dfd3aa2718d1c93c1e89..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/assets/debug/crashlytics-build.properties
+++ /dev/null
@@ -1,11 +0,0 @@
-#This file is automatically generated by Crashlytics to uniquely
-#identify individual builds of your Android application.
-#
-#Do NOT modify, delete, or commit to source control!
-#
-#Fri Mar 31 21:59:20 CEST 2017
-version_name=0.5
-package_name=at.gv.ucom
-build_id=630ae148-5da2-464a-abf5-bd69b290d827
-version_code=1
-app_name=ucom
diff --git a/android/.build/intermediates/blame/res/debug/multi/color.json b/android/.build/intermediates/blame/res/debug/multi/color.json
deleted file mode 100644
index 0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/color.json
+++ /dev/null
@@ -1 +0,0 @@
-[]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/layout.json b/android/.build/intermediates/blame/res/debug/multi/layout.json
deleted file mode 100644
index 0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/layout.json
+++ /dev/null
@@ -1 +0,0 @@
-[]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-af.json b/android/.build/intermediates/blame/res/debug/multi/values-af.json
deleted file mode 100644
index 2524e3ab6969c9f7b384b8e6d01c4f0f07ba6f83..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-af.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 103,
-                    "endOffset": 204
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 103,
-                        "endOffset": 154
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 209,
-                    "endColumn": 107,
-                    "endOffset": 312
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 159,
-                        "endColumn": 107,
-                        "endOffset": 262
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 317,
-                    "endColumn": 122,
-                    "endOffset": 435
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 267,
-                        "endColumn": 122,
-                        "endOffset": 385
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 440,
-                    "endColumn": 99,
-                    "endOffset": 535
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 390,
-                        "endColumn": 99,
-                        "endOffset": 485
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 540,
-                    "endColumn": 105,
-                    "endOffset": 641
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 490,
-                        "endColumn": 105,
-                        "endOffset": 591
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 646,
-                    "endColumn": 84,
-                    "endOffset": 726
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 596,
-                        "endColumn": 84,
-                        "endOffset": 676
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 731,
-                    "endColumn": 102,
-                    "endOffset": 829
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 681,
-                        "endColumn": 102,
-                        "endOffset": 779
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 834,
-                    "endColumn": 117,
-                    "endOffset": 947
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 784,
-                        "endColumn": 117,
-                        "endOffset": 897
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 952,
-                    "endColumn": 75,
-                    "endOffset": 1023
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 902,
-                        "endColumn": 75,
-                        "endOffset": 973
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1028,
-                    "endColumn": 76,
-                    "endOffset": 1100
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 978,
-                        "endColumn": 76,
-                        "endOffset": 1050
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1105,
-                    "endColumn": 80,
-                    "endOffset": 1181
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1055,
-                        "endColumn": 80,
-                        "endOffset": 1131
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1186,
-                    "endColumn": 106,
-                    "endOffset": 1288
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1136,
-                        "endColumn": 106,
-                        "endOffset": 1238
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1293,
-                    "endColumn": 102,
-                    "endOffset": 1391
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1243,
-                        "endColumn": 102,
-                        "endOffset": 1341
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1396,
-                    "endColumn": 96,
-                    "endOffset": 1488
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1346,
-                        "endColumn": 96,
-                        "endOffset": 1438
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1493,
-                    "endColumn": 107,
-                    "endOffset": 1596
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1443,
-                        "endColumn": 107,
-                        "endOffset": 1546
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1601,
-                    "endColumn": 101,
-                    "endOffset": 1698
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1551,
-                        "endColumn": 101,
-                        "endOffset": 1648
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1703,
-                    "endColumn": 101,
-                    "endOffset": 1800
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1653,
-                        "endColumn": 101,
-                        "endOffset": 1750
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1805,
-                    "endColumn": 116,
-                    "endOffset": 1917
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1755,
-                        "endColumn": 116,
-                        "endOffset": 1867
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1922,
-                    "endColumn": 97,
-                    "endOffset": 2015
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1872,
-                        "endColumn": 97,
-                        "endOffset": 1965
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2020,
-                    "endColumn": 108,
-                    "endOffset": 2124
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 104,
-                        "endOffset": 387
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2129,
-                    "endColumn": 187,
-                    "endOffset": 2312
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 388,
-                        "endColumn": 187,
-                        "endOffset": 575
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2317,
-                    "endColumn": 127,
-                    "endOffset": 2440
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 576,
-                        "endColumn": 123,
-                        "endOffset": 699
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2445,
-                    "endColumn": 111,
-                    "endOffset": 2552
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 700,
-                        "endColumn": 107,
-                        "endOffset": 807
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2557,
-                    "endColumn": 208,
-                    "endOffset": 2761
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 808,
-                        "endColumn": 208,
-                        "endOffset": 1016
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2766,
-                    "endColumn": 123,
-                    "endOffset": 2885
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1017,
-                        "endColumn": 119,
-                        "endOffset": 1136
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2890,
-                    "endColumn": 130,
-                    "endOffset": 3016
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1137,
-                        "endColumn": 126,
-                        "endOffset": 1263
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3021,
-                    "endColumn": 201,
-                    "endOffset": 3218
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 201,
-                        "endOffset": 486
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3223,
-                    "endColumn": 224,
-                    "endOffset": 3443
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1264,
-                        "endColumn": 224,
-                        "endOffset": 1488
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3448,
-                    "endColumn": 109,
-                    "endOffset": 3553
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1489,
-                        "endColumn": 105,
-                        "endOffset": 1594
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3558,
-                    "endColumn": 187,
-                    "endOffset": 3741
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1595,
-                        "endColumn": 187,
-                        "endOffset": 1782
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3746,
-                    "endColumn": 128,
-                    "endOffset": 3870
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1783,
-                        "endColumn": 124,
-                        "endOffset": 1907
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3875,
-                    "endColumn": 197,
-                    "endOffset": 4068
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1908,
-                        "endColumn": 197,
-                        "endOffset": 2105
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4073,
-                    "endColumn": 183,
-                    "endOffset": 4252
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2106,
-                        "endColumn": 179,
-                        "endOffset": 2285
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4257,
-                    "endColumn": 95,
-                    "endOffset": 4348
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2286,
-                        "endColumn": 91,
-                        "endOffset": 2377
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4353,
-                    "endColumn": 92,
-                    "endOffset": 4441
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2378,
-                        "endColumn": 88,
-                        "endOffset": 2466
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4446,
-                    "endColumn": 107,
-                    "endOffset": 4549
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2467,
-                        "endColumn": 103,
-                        "endOffset": 2570
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4554,
-                    "endColumn": 79,
-                    "endOffset": 4629
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1970,
-                        "endColumn": 79,
-                        "endOffset": 2045
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4634,
-                    "endColumn": 100,
-                    "endOffset": 4730
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2050,
-                        "endColumn": 100,
-                        "endOffset": 2146
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-am.json b/android/.build/intermediates/blame/res/debug/multi/values-am.json
deleted file mode 100644
index 9b4e5ce9e7742b3de99846918613c079fddc26e8..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-am.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 101,
-                    "endOffset": 202
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 101,
-                        "endOffset": 152
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 207,
-                    "endColumn": 107,
-                    "endOffset": 310
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 157,
-                        "endColumn": 107,
-                        "endOffset": 260
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 315,
-                    "endColumn": 122,
-                    "endOffset": 433
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 265,
-                        "endColumn": 122,
-                        "endOffset": 383
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 438,
-                    "endColumn": 98,
-                    "endOffset": 532
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 388,
-                        "endColumn": 98,
-                        "endOffset": 482
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 537,
-                    "endColumn": 105,
-                    "endOffset": 638
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 487,
-                        "endColumn": 105,
-                        "endOffset": 588
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 643,
-                    "endColumn": 85,
-                    "endOffset": 724
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 593,
-                        "endColumn": 85,
-                        "endOffset": 674
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 729,
-                    "endColumn": 102,
-                    "endOffset": 827
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 679,
-                        "endColumn": 102,
-                        "endOffset": 777
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 832,
-                    "endColumn": 112,
-                    "endOffset": 940
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 782,
-                        "endColumn": 112,
-                        "endOffset": 890
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 945,
-                    "endColumn": 77,
-                    "endOffset": 1018
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 895,
-                        "endColumn": 77,
-                        "endOffset": 968
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1023,
-                    "endColumn": 77,
-                    "endOffset": 1096
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 973,
-                        "endColumn": 77,
-                        "endOffset": 1046
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1101,
-                    "endColumn": 78,
-                    "endOffset": 1175
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1051,
-                        "endColumn": 78,
-                        "endOffset": 1125
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1180,
-                    "endColumn": 99,
-                    "endOffset": 1275
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1130,
-                        "endColumn": 99,
-                        "endOffset": 1225
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1280,
-                    "endColumn": 99,
-                    "endOffset": 1375
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1230,
-                        "endColumn": 99,
-                        "endOffset": 1325
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1380,
-                    "endColumn": 95,
-                    "endOffset": 1471
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1330,
-                        "endColumn": 95,
-                        "endOffset": 1421
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1476,
-                    "endColumn": 102,
-                    "endOffset": 1574
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1426,
-                        "endColumn": 102,
-                        "endOffset": 1524
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1579,
-                    "endColumn": 98,
-                    "endOffset": 1673
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1529,
-                        "endColumn": 98,
-                        "endOffset": 1623
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1678,
-                    "endColumn": 106,
-                    "endOffset": 1780
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1628,
-                        "endColumn": 106,
-                        "endOffset": 1730
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1785,
-                    "endColumn": 115,
-                    "endOffset": 1896
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1735,
-                        "endColumn": 115,
-                        "endOffset": 1846
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1901,
-                    "endColumn": 95,
-                    "endOffset": 1992
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1851,
-                        "endColumn": 95,
-                        "endOffset": 1942
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 1997,
-                    "endColumn": 103,
-                    "endOffset": 2096
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 99,
-                        "endOffset": 382
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2101,
-                    "endColumn": 170,
-                    "endOffset": 2267
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 383,
-                        "endColumn": 170,
-                        "endOffset": 553
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2272,
-                    "endColumn": 123,
-                    "endOffset": 2391
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 554,
-                        "endColumn": 119,
-                        "endOffset": 673
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2396,
-                    "endColumn": 103,
-                    "endOffset": 2495
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 674,
-                        "endColumn": 99,
-                        "endOffset": 773
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2500,
-                    "endColumn": 185,
-                    "endOffset": 2681
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 774,
-                        "endColumn": 185,
-                        "endOffset": 959
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2686,
-                    "endColumn": 124,
-                    "endOffset": 2806
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 960,
-                        "endColumn": 120,
-                        "endOffset": 1080
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2811,
-                    "endColumn": 130,
-                    "endOffset": 2937
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1081,
-                        "endColumn": 126,
-                        "endOffset": 1207
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 2942,
-                    "endColumn": 190,
-                    "endOffset": 3128
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 190,
-                        "endOffset": 475
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3133,
-                    "endColumn": 186,
-                    "endOffset": 3315
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1208,
-                        "endColumn": 186,
-                        "endOffset": 1394
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3320,
-                    "endColumn": 104,
-                    "endOffset": 3420
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1395,
-                        "endColumn": 100,
-                        "endOffset": 1495
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3425,
-                    "endColumn": 175,
-                    "endOffset": 3596
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1496,
-                        "endColumn": 175,
-                        "endOffset": 1671
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3601,
-                    "endColumn": 124,
-                    "endOffset": 3721
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1672,
-                        "endColumn": 120,
-                        "endOffset": 1792
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3726,
-                    "endColumn": 193,
-                    "endOffset": 3915
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1793,
-                        "endColumn": 193,
-                        "endOffset": 1986
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 3920,
-                    "endColumn": 156,
-                    "endOffset": 4072
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 1987,
-                        "endColumn": 152,
-                        "endOffset": 2139
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4077,
-                    "endColumn": 89,
-                    "endOffset": 4162
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2140,
-                        "endColumn": 85,
-                        "endOffset": 2225
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4167,
-                    "endColumn": 86,
-                    "endOffset": 4249
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2226,
-                        "endColumn": 82,
-                        "endOffset": 2308
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4254,
-                    "endColumn": 99,
-                    "endOffset": 4349
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2309,
-                        "endColumn": 95,
-                        "endOffset": 2404
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4354,
-                    "endColumn": 78,
-                    "endOffset": 4428
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1947,
-                        "endColumn": 78,
-                        "endOffset": 2021
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4433,
-                    "endColumn": 100,
-                    "endOffset": 4529
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2026,
-                        "endColumn": 100,
-                        "endOffset": 2122
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ar.json b/android/.build/intermediates/blame/res/debug/multi/values-ar.json
deleted file mode 100644
index 61fb61cbfd04917c75ccf00706a09f37f2a039d5..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ar.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 116,
-                    "endOffset": 217
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 116,
-                        "endOffset": 167
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 222,
-                    "endColumn": 107,
-                    "endOffset": 325
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 172,
-                        "endColumn": 107,
-                        "endOffset": 275
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 330,
-                    "endColumn": 122,
-                    "endOffset": 448
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 280,
-                        "endColumn": 122,
-                        "endOffset": 398
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 453,
-                    "endColumn": 103,
-                    "endOffset": 552
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 403,
-                        "endColumn": 103,
-                        "endOffset": 502
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 557,
-                    "endColumn": 108,
-                    "endOffset": 661
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 507,
-                        "endColumn": 108,
-                        "endOffset": 611
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 666,
-                    "endColumn": 81,
-                    "endOffset": 743
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 616,
-                        "endColumn": 81,
-                        "endOffset": 693
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 748,
-                    "endColumn": 100,
-                    "endOffset": 844
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 698,
-                        "endColumn": 100,
-                        "endOffset": 794
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 849,
-                    "endColumn": 113,
-                    "endOffset": 958
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 799,
-                        "endColumn": 113,
-                        "endOffset": 908
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 963,
-                    "endColumn": 78,
-                    "endOffset": 1037
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 913,
-                        "endColumn": 78,
-                        "endOffset": 987
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1042,
-                    "endColumn": 78,
-                    "endOffset": 1116
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 992,
-                        "endColumn": 78,
-                        "endOffset": 1066
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1121,
-                    "endColumn": 78,
-                    "endOffset": 1195
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1071,
-                        "endColumn": 78,
-                        "endOffset": 1145
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1200,
-                    "endColumn": 104,
-                    "endOffset": 1300
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1150,
-                        "endColumn": 104,
-                        "endOffset": 1250
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1305,
-                    "endColumn": 100,
-                    "endOffset": 1401
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1255,
-                        "endColumn": 100,
-                        "endOffset": 1351
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1406,
-                    "endColumn": 95,
-                    "endOffset": 1497
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1356,
-                        "endColumn": 95,
-                        "endOffset": 1447
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1502,
-                    "endColumn": 107,
-                    "endOffset": 1605
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1452,
-                        "endColumn": 107,
-                        "endOffset": 1555
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1610,
-                    "endColumn": 102,
-                    "endOffset": 1708
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1560,
-                        "endColumn": 102,
-                        "endOffset": 1658
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1713,
-                    "endColumn": 102,
-                    "endOffset": 1811
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1663,
-                        "endColumn": 102,
-                        "endOffset": 1761
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1816,
-                    "endColumn": 118,
-                    "endOffset": 1930
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1766,
-                        "endColumn": 118,
-                        "endOffset": 1880
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1935,
-                    "endColumn": 96,
-                    "endOffset": 2027
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1885,
-                        "endColumn": 96,
-                        "endOffset": 1977
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2032,
-                    "endColumn": 105,
-                    "endOffset": 2133
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 101,
-                        "endOffset": 384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2138,
-                    "endColumn": 175,
-                    "endOffset": 2309
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 385,
-                        "endColumn": 175,
-                        "endOffset": 560
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2314,
-                    "endColumn": 123,
-                    "endOffset": 2433
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 561,
-                        "endColumn": 119,
-                        "endOffset": 680
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2438,
-                    "endColumn": 106,
-                    "endOffset": 2540
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 681,
-                        "endColumn": 102,
-                        "endOffset": 783
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2545,
-                    "endColumn": 196,
-                    "endOffset": 2737
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 784,
-                        "endColumn": 196,
-                        "endOffset": 980
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2742,
-                    "endColumn": 129,
-                    "endOffset": 2867
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 981,
-                        "endColumn": 125,
-                        "endOffset": 1106
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2872,
-                    "endColumn": 130,
-                    "endOffset": 2998
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1107,
-                        "endColumn": 126,
-                        "endOffset": 1233
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3003,
-                    "endColumn": 189,
-                    "endOffset": 3188
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 189,
-                        "endOffset": 474
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3193,
-                    "endColumn": 195,
-                    "endOffset": 3384
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1234,
-                        "endColumn": 195,
-                        "endOffset": 1429
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3389,
-                    "endColumn": 105,
-                    "endOffset": 3490
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1430,
-                        "endColumn": 101,
-                        "endOffset": 1531
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3495,
-                    "endColumn": 180,
-                    "endOffset": 3671
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1532,
-                        "endColumn": 180,
-                        "endOffset": 1712
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3676,
-                    "endColumn": 123,
-                    "endOffset": 3795
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1713,
-                        "endColumn": 119,
-                        "endOffset": 1832
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3800,
-                    "endColumn": 197,
-                    "endOffset": 3993
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1833,
-                        "endColumn": 197,
-                        "endOffset": 2030
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 3998,
-                    "endColumn": 175,
-                    "endOffset": 4169
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2031,
-                        "endColumn": 171,
-                        "endOffset": 2202
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4174,
-                    "endColumn": 93,
-                    "endOffset": 4263
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2203,
-                        "endColumn": 89,
-                        "endOffset": 2292
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4268,
-                    "endColumn": 95,
-                    "endOffset": 4359
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2293,
-                        "endColumn": 91,
-                        "endOffset": 2384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4364,
-                    "endColumn": 112,
-                    "endOffset": 4472
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2385,
-                        "endColumn": 108,
-                        "endOffset": 2493
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4477,
-                    "endColumn": 80,
-                    "endOffset": 4553
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1982,
-                        "endColumn": 80,
-                        "endOffset": 2058
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4558,
-                    "endColumn": 100,
-                    "endOffset": 4654
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2063,
-                        "endColumn": 100,
-                        "endOffset": 2159
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-az-rAZ.json b/android/.build/intermediates/blame/res/debug/multi/values-az-rAZ.json
deleted file mode 100644
index a71e6f738623c0b2c7f252dac91ba16f604a7d80..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-az-rAZ.json
+++ /dev/null
@@ -1,387 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-az-rAZ/values-az-rAZ.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 107,
-                    "endOffset": 158
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 107,
-                        "endOffset": 158
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 163,
-                    "endColumn": 107,
-                    "endOffset": 266
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 163,
-                        "endColumn": 107,
-                        "endOffset": 266
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 271,
-                    "endColumn": 122,
-                    "endOffset": 389
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 271,
-                        "endColumn": 122,
-                        "endOffset": 389
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 394,
-                    "endColumn": 98,
-                    "endOffset": 488
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 394,
-                        "endColumn": 98,
-                        "endOffset": 488
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 493,
-                    "endColumn": 111,
-                    "endOffset": 600
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 493,
-                        "endColumn": 111,
-                        "endOffset": 600
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 605,
-                    "endColumn": 87,
-                    "endOffset": 688
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 605,
-                        "endColumn": 87,
-                        "endOffset": 688
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 693,
-                    "endColumn": 106,
-                    "endOffset": 795
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 693,
-                        "endColumn": 106,
-                        "endOffset": 795
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 800,
-                    "endColumn": 113,
-                    "endOffset": 909
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 800,
-                        "endColumn": 113,
-                        "endOffset": 909
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 914,
-                    "endColumn": 80,
-                    "endOffset": 990
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 914,
-                        "endColumn": 80,
-                        "endOffset": 990
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 995,
-                    "endColumn": 78,
-                    "endOffset": 1069
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 995,
-                        "endColumn": 78,
-                        "endOffset": 1069
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1074,
-                    "endColumn": 84,
-                    "endOffset": 1154
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1074,
-                        "endColumn": 84,
-                        "endOffset": 1154
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1159,
-                    "endColumn": 106,
-                    "endOffset": 1261
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1159,
-                        "endColumn": 106,
-                        "endOffset": 1261
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1266,
-                    "endColumn": 106,
-                    "endOffset": 1368
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1266,
-                        "endColumn": 106,
-                        "endOffset": 1368
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1373,
-                    "endColumn": 99,
-                    "endOffset": 1468
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1373,
-                        "endColumn": 99,
-                        "endOffset": 1468
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1473,
-                    "endColumn": 108,
-                    "endOffset": 1577
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1473,
-                        "endColumn": 108,
-                        "endOffset": 1577
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1582,
-                    "endColumn": 103,
-                    "endOffset": 1681
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1582,
-                        "endColumn": 103,
-                        "endOffset": 1681
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1686,
-                    "endColumn": 109,
-                    "endOffset": 1791
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1686,
-                        "endColumn": 109,
-                        "endOffset": 1791
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1796,
-                    "endColumn": 96,
-                    "endOffset": 1888
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1796,
-                        "endColumn": 96,
-                        "endOffset": 1888
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1893,
-                    "endColumn": 82,
-                    "endOffset": 1971
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1893,
-                        "endColumn": 82,
-                        "endOffset": 1971
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 1976,
-                    "endColumn": 100,
-                    "endOffset": 2072
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1976,
-                        "endColumn": 100,
-                        "endOffset": 2072
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-az.json b/android/.build/intermediates/blame/res/debug/multi/values-az.json
deleted file mode 100644
index 6e8788f66adb8a3c45b4f29cd384626a26d8f5be..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-az.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-az/values-az.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 110,
-                    "endOffset": 211
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 106,
-                        "endOffset": 389
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 216,
-                    "endColumn": 186,
-                    "endOffset": 398
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 390,
-                        "endColumn": 186,
-                        "endOffset": 576
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 403,
-                    "endColumn": 134,
-                    "endOffset": 533
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 577,
-                        "endColumn": 130,
-                        "endOffset": 707
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 538,
-                    "endColumn": 111,
-                    "endOffset": 645
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 708,
-                        "endColumn": 107,
-                        "endOffset": 815
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 650,
-                    "endColumn": 204,
-                    "endOffset": 850
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 816,
-                        "endColumn": 204,
-                        "endOffset": 1020
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 855,
-                    "endColumn": 134,
-                    "endOffset": 985
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1021,
-                        "endColumn": 130,
-                        "endOffset": 1151
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 990,
-                    "endColumn": 134,
-                    "endOffset": 1120
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1152,
-                        "endColumn": 130,
-                        "endOffset": 1282
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1125,
-                    "endColumn": 220,
-                    "endOffset": 1341
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 220,
-                        "endOffset": 505
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1346,
-                    "endColumn": 224,
-                    "endOffset": 1566
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1283,
-                        "endColumn": 224,
-                        "endOffset": 1507
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1571,
-                    "endColumn": 111,
-                    "endOffset": 1678
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1508,
-                        "endColumn": 107,
-                        "endOffset": 1615
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1683,
-                    "endColumn": 179,
-                    "endOffset": 1858
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1616,
-                        "endColumn": 179,
-                        "endOffset": 1795
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1863,
-                    "endColumn": 138,
-                    "endOffset": 1997
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1796,
-                        "endColumn": 134,
-                        "endOffset": 1930
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 2002,
-                    "endColumn": 202,
-                    "endOffset": 2200
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1931,
-                        "endColumn": 202,
-                        "endOffset": 2133
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2205,
-                    "endColumn": 185,
-                    "endOffset": 2386
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2134,
-                        "endColumn": 181,
-                        "endOffset": 2315
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2391,
-                    "endColumn": 93,
-                    "endOffset": 2480
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2316,
-                        "endColumn": 89,
-                        "endOffset": 2405
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2485,
-                    "endColumn": 94,
-                    "endOffset": 2575
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2406,
-                        "endColumn": 90,
-                        "endOffset": 2496
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2580,
-                    "endColumn": 109,
-                    "endOffset": 2685
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2497,
-                        "endColumn": 105,
-                        "endOffset": 2602
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-b+sr+Latn.json b/android/.build/intermediates/blame/res/debug/multi/values-b+sr+Latn.json
deleted file mode 100644
index 55014d095ff58c75a14a8f7b629d2874368d72d0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-b+sr+Latn.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 108,
-                    "endOffset": 159
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 108,
-                        "endOffset": 159
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 164,
-                    "endColumn": 107,
-                    "endOffset": 267
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 164,
-                        "endColumn": 107,
-                        "endOffset": 267
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 272,
-                    "endColumn": 122,
-                    "endOffset": 390
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 272,
-                        "endColumn": 122,
-                        "endOffset": 390
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 395,
-                    "endColumn": 103,
-                    "endOffset": 494
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 395,
-                        "endColumn": 103,
-                        "endOffset": 494
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 499,
-                    "endColumn": 105,
-                    "endOffset": 600
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 499,
-                        "endColumn": 105,
-                        "endOffset": 600
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 605,
-                    "endColumn": 85,
-                    "endOffset": 686
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 605,
-                        "endColumn": 85,
-                        "endOffset": 686
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 691,
-                    "endColumn": 103,
-                    "endOffset": 790
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 691,
-                        "endColumn": 103,
-                        "endOffset": 790
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 795,
-                    "endColumn": 117,
-                    "endOffset": 908
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 795,
-                        "endColumn": 117,
-                        "endOffset": 908
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 913,
-                    "endColumn": 81,
-                    "endOffset": 990
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 913,
-                        "endColumn": 81,
-                        "endOffset": 990
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 995,
-                    "endColumn": 80,
-                    "endOffset": 1071
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 995,
-                        "endColumn": 80,
-                        "endOffset": 1071
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1076,
-                    "endColumn": 87,
-                    "endOffset": 1159
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1076,
-                        "endColumn": 87,
-                        "endOffset": 1159
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1164,
-                    "endColumn": 105,
-                    "endOffset": 1265
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1164,
-                        "endColumn": 105,
-                        "endOffset": 1265
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1270,
-                    "endColumn": 107,
-                    "endOffset": 1373
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1270,
-                        "endColumn": 107,
-                        "endOffset": 1373
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1378,
-                    "endColumn": 100,
-                    "endOffset": 1474
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1378,
-                        "endColumn": 100,
-                        "endOffset": 1474
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1479,
-                    "endColumn": 104,
-                    "endOffset": 1579
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1479,
-                        "endColumn": 104,
-                        "endOffset": 1579
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1584,
-                    "endColumn": 107,
-                    "endOffset": 1687
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1584,
-                        "endColumn": 107,
-                        "endOffset": 1687
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1692,
-                    "endColumn": 100,
-                    "endOffset": 1788
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1692,
-                        "endColumn": 100,
-                        "endOffset": 1788
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1793,
-                    "endColumn": 127,
-                    "endOffset": 1916
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1793,
-                        "endColumn": 127,
-                        "endOffset": 1916
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1921,
-                    "endColumn": 96,
-                    "endOffset": 2013
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1921,
-                        "endColumn": 96,
-                        "endOffset": 2013
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2018,
-                    "endColumn": 83,
-                    "endOffset": 2097
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2018,
-                        "endColumn": 83,
-                        "endOffset": 2097
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2102,
-                    "endColumn": 100,
-                    "endOffset": 2198
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2102,
-                        "endColumn": 100,
-                        "endOffset": 2198
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-be-rBY.json b/android/.build/intermediates/blame/res/debug/multi/values-be-rBY.json
deleted file mode 100644
index 22f380449b539fd3061aec117b79b6ef96e5c1d3..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-be-rBY.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-be-rBY/values-be-rBY.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 119,
-                    "endOffset": 170
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 119,
-                        "endOffset": 170
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 175,
-                    "endColumn": 107,
-                    "endOffset": 278
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 175,
-                        "endColumn": 107,
-                        "endOffset": 278
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 283,
-                    "endColumn": 122,
-                    "endOffset": 401
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 283,
-                        "endColumn": 122,
-                        "endOffset": 401
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 406,
-                    "endColumn": 102,
-                    "endOffset": 504
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 406,
-                        "endColumn": 102,
-                        "endOffset": 504
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 509,
-                    "endColumn": 115,
-                    "endOffset": 620
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 509,
-                        "endColumn": 115,
-                        "endOffset": 620
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 625,
-                    "endColumn": 85,
-                    "endOffset": 706
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 625,
-                        "endColumn": 85,
-                        "endOffset": 706
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 711,
-                    "endColumn": 107,
-                    "endOffset": 814
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 711,
-                        "endColumn": 107,
-                        "endOffset": 814
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 819,
-                    "endColumn": 117,
-                    "endOffset": 932
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 819,
-                        "endColumn": 117,
-                        "endOffset": 932
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 937,
-                    "endColumn": 78,
-                    "endOffset": 1011
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 937,
-                        "endColumn": 78,
-                        "endOffset": 1011
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1016,
-                    "endColumn": 77,
-                    "endOffset": 1089
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1016,
-                        "endColumn": 77,
-                        "endOffset": 1089
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1094,
-                    "endColumn": 82,
-                    "endOffset": 1172
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1094,
-                        "endColumn": 82,
-                        "endOffset": 1172
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1177,
-                    "endColumn": 105,
-                    "endOffset": 1278
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1177,
-                        "endColumn": 105,
-                        "endOffset": 1278
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1283,
-                    "endColumn": 105,
-                    "endOffset": 1384
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1283,
-                        "endColumn": 105,
-                        "endOffset": 1384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1389,
-                    "endColumn": 97,
-                    "endOffset": 1482
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1389,
-                        "endColumn": 97,
-                        "endOffset": 1482
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1487,
-                    "endColumn": 107,
-                    "endOffset": 1590
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1487,
-                        "endColumn": 107,
-                        "endOffset": 1590
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1595,
-                    "endColumn": 104,
-                    "endOffset": 1695
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1595,
-                        "endColumn": 104,
-                        "endOffset": 1695
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1700,
-                    "endColumn": 104,
-                    "endOffset": 1800
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1700,
-                        "endColumn": 104,
-                        "endOffset": 1800
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1805,
-                    "endColumn": 119,
-                    "endOffset": 1920
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1805,
-                        "endColumn": 119,
-                        "endOffset": 1920
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1925,
-                    "endColumn": 99,
-                    "endOffset": 2020
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1925,
-                        "endColumn": 99,
-                        "endOffset": 2020
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2025,
-                    "endColumn": 80,
-                    "endOffset": 2101
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2025,
-                        "endColumn": 80,
-                        "endOffset": 2101
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2106,
-                    "endColumn": 108,
-                    "endOffset": 2210
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2106,
-                        "endColumn": 108,
-                        "endOffset": 2210
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-be.json b/android/.build/intermediates/blame/res/debug/multi/values-be.json
deleted file mode 100644
index 038a9aac704e200b1a94f1b57199a45ed02d6401..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-be.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-be/values-be.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 108,
-                    "endOffset": 209
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 104,
-                        "endOffset": 387
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 214,
-                    "endColumn": 193,
-                    "endOffset": 403
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 388,
-                        "endColumn": 193,
-                        "endOffset": 581
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 408,
-                    "endColumn": 126,
-                    "endOffset": 530
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 582,
-                        "endColumn": 122,
-                        "endOffset": 704
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 535,
-                    "endColumn": 111,
-                    "endOffset": 642
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 705,
-                        "endColumn": 107,
-                        "endOffset": 812
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 647,
-                    "endColumn": 213,
-                    "endOffset": 856
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 813,
-                        "endColumn": 213,
-                        "endOffset": 1026
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 861,
-                    "endColumn": 127,
-                    "endOffset": 984
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1027,
-                        "endColumn": 123,
-                        "endOffset": 1150
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 989,
-                    "endColumn": 132,
-                    "endOffset": 1117
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1151,
-                        "endColumn": 128,
-                        "endOffset": 1279
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1122,
-                    "endColumn": 204,
-                    "endOffset": 1322
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 204,
-                        "endOffset": 489
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1327,
-                    "endColumn": 220,
-                    "endOffset": 1543
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1280,
-                        "endColumn": 220,
-                        "endOffset": 1500
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1548,
-                    "endColumn": 108,
-                    "endOffset": 1652
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1501,
-                        "endColumn": 104,
-                        "endOffset": 1605
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1657,
-                    "endColumn": 193,
-                    "endOffset": 1846
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1606,
-                        "endColumn": 193,
-                        "endOffset": 1799
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1851,
-                    "endColumn": 129,
-                    "endOffset": 1976
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1800,
-                        "endColumn": 125,
-                        "endOffset": 1925
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1981,
-                    "endColumn": 211,
-                    "endOffset": 2188
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1926,
-                        "endColumn": 211,
-                        "endOffset": 2137
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2193,
-                    "endColumn": 188,
-                    "endOffset": 2377
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2138,
-                        "endColumn": 184,
-                        "endOffset": 2322
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2382,
-                    "endColumn": 98,
-                    "endOffset": 2476
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2323,
-                        "endColumn": 94,
-                        "endOffset": 2417
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2481,
-                    "endColumn": 91,
-                    "endOffset": 2568
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2418,
-                        "endColumn": 87,
-                        "endOffset": 2505
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2573,
-                    "endColumn": 107,
-                    "endOffset": 2676
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2506,
-                        "endColumn": 103,
-                        "endOffset": 2609
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-bg.json b/android/.build/intermediates/blame/res/debug/multi/values-bg.json
deleted file mode 100644
index 14e118284b04abb5b362ac590c0744d4d30d003e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-bg.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 114,
-                    "endOffset": 215
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 114,
-                        "endOffset": 165
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 220,
-                    "endColumn": 110,
-                    "endOffset": 326
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 170,
-                        "endColumn": 110,
-                        "endOffset": 276
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 331,
-                    "endColumn": 127,
-                    "endOffset": 454
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 281,
-                        "endColumn": 127,
-                        "endOffset": 404
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 459,
-                    "endColumn": 106,
-                    "endOffset": 561
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 409,
-                        "endColumn": 106,
-                        "endOffset": 511
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 566,
-                    "endColumn": 104,
-                    "endOffset": 666
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 516,
-                        "endColumn": 104,
-                        "endOffset": 616
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 671,
-                    "endColumn": 85,
-                    "endOffset": 752
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 621,
-                        "endColumn": 85,
-                        "endOffset": 702
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 757,
-                    "endColumn": 104,
-                    "endOffset": 857
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 707,
-                        "endColumn": 104,
-                        "endOffset": 807
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 862,
-                    "endColumn": 120,
-                    "endOffset": 978
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 812,
-                        "endColumn": 120,
-                        "endOffset": 928
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 983,
-                    "endColumn": 78,
-                    "endOffset": 1057
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 933,
-                        "endColumn": 78,
-                        "endOffset": 1007
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1062,
-                    "endColumn": 77,
-                    "endOffset": 1135
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1012,
-                        "endColumn": 77,
-                        "endOffset": 1085
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1140,
-                    "endColumn": 82,
-                    "endOffset": 1218
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1090,
-                        "endColumn": 82,
-                        "endOffset": 1168
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1223,
-                    "endColumn": 113,
-                    "endOffset": 1332
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1173,
-                        "endColumn": 113,
-                        "endOffset": 1282
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1337,
-                    "endColumn": 108,
-                    "endOffset": 1441
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1287,
-                        "endColumn": 108,
-                        "endOffset": 1391
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1446,
-                    "endColumn": 99,
-                    "endOffset": 1541
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1396,
-                        "endColumn": 99,
-                        "endOffset": 1491
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1546,
-                    "endColumn": 113,
-                    "endOffset": 1655
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1496,
-                        "endColumn": 113,
-                        "endOffset": 1605
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1660,
-                    "endColumn": 105,
-                    "endOffset": 1761
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1610,
-                        "endColumn": 105,
-                        "endOffset": 1711
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1766,
-                    "endColumn": 107,
-                    "endOffset": 1869
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1716,
-                        "endColumn": 107,
-                        "endOffset": 1819
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1874,
-                    "endColumn": 122,
-                    "endOffset": 1992
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1824,
-                        "endColumn": 122,
-                        "endOffset": 1942
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1997,
-                    "endColumn": 98,
-                    "endOffset": 2091
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1947,
-                        "endColumn": 98,
-                        "endOffset": 2041
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2096,
-                    "endColumn": 110,
-                    "endOffset": 2202
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 106,
-                        "endOffset": 389
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2207,
-                    "endColumn": 196,
-                    "endOffset": 2399
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 390,
-                        "endColumn": 196,
-                        "endOffset": 586
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2404,
-                    "endColumn": 136,
-                    "endOffset": 2536
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 587,
-                        "endColumn": 132,
-                        "endOffset": 719
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2541,
-                    "endColumn": 112,
-                    "endOffset": 2649
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 720,
-                        "endColumn": 108,
-                        "endOffset": 828
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2654,
-                    "endColumn": 225,
-                    "endOffset": 2875
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 829,
-                        "endColumn": 225,
-                        "endOffset": 1054
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2880,
-                    "endColumn": 136,
-                    "endOffset": 3012
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1055,
-                        "endColumn": 132,
-                        "endOffset": 1187
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 3017,
-                    "endColumn": 137,
-                    "endOffset": 3150
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1188,
-                        "endColumn": 133,
-                        "endOffset": 1321
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3155,
-                    "endColumn": 196,
-                    "endOffset": 3347
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 196,
-                        "endOffset": 481
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3352,
-                    "endColumn": 227,
-                    "endOffset": 3575
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1322,
-                        "endColumn": 227,
-                        "endOffset": 1549
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3580,
-                    "endColumn": 113,
-                    "endOffset": 3689
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1550,
-                        "endColumn": 109,
-                        "endOffset": 1659
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3694,
-                    "endColumn": 205,
-                    "endOffset": 3895
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1660,
-                        "endColumn": 205,
-                        "endOffset": 1865
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3900,
-                    "endColumn": 139,
-                    "endOffset": 4035
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1866,
-                        "endColumn": 135,
-                        "endOffset": 2001
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 4040,
-                    "endColumn": 215,
-                    "endOffset": 4251
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 2002,
-                        "endColumn": 215,
-                        "endOffset": 2217
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4256,
-                    "endColumn": 195,
-                    "endOffset": 4447
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2218,
-                        "endColumn": 191,
-                        "endOffset": 2409
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4452,
-                    "endColumn": 99,
-                    "endOffset": 4547
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2410,
-                        "endColumn": 95,
-                        "endOffset": 2505
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4552,
-                    "endColumn": 88,
-                    "endOffset": 4636
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2506,
-                        "endColumn": 84,
-                        "endOffset": 2590
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4641,
-                    "endColumn": 101,
-                    "endOffset": 4738
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2591,
-                        "endColumn": 97,
-                        "endOffset": 2688
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4743,
-                    "endColumn": 82,
-                    "endOffset": 4821
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2046,
-                        "endColumn": 82,
-                        "endOffset": 2124
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4826,
-                    "endColumn": 100,
-                    "endOffset": 4922
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2129,
-                        "endColumn": 100,
-                        "endOffset": 2225
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-bn-rBD.json b/android/.build/intermediates/blame/res/debug/multi/values-bn-rBD.json
deleted file mode 100644
index 925030fd4c9830ef9c08de3f72a576ad0e58acfc..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-bn-rBD.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 108,
-                    "endOffset": 159
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 108,
-                        "endOffset": 159
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 164,
-                    "endColumn": 107,
-                    "endOffset": 267
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 164,
-                        "endColumn": 107,
-                        "endOffset": 267
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 272,
-                    "endColumn": 122,
-                    "endOffset": 390
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 272,
-                        "endColumn": 122,
-                        "endOffset": 390
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 395,
-                    "endColumn": 111,
-                    "endOffset": 502
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 395,
-                        "endColumn": 111,
-                        "endOffset": 502
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 507,
-                    "endColumn": 105,
-                    "endOffset": 608
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 507,
-                        "endColumn": 105,
-                        "endOffset": 608
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 613,
-                    "endColumn": 93,
-                    "endOffset": 702
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 613,
-                        "endColumn": 93,
-                        "endOffset": 702
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 707,
-                    "endColumn": 104,
-                    "endOffset": 807
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 707,
-                        "endColumn": 104,
-                        "endOffset": 807
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 812,
-                    "endColumn": 128,
-                    "endOffset": 936
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 812,
-                        "endColumn": 128,
-                        "endOffset": 936
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 941,
-                    "endColumn": 77,
-                    "endOffset": 1014
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 941,
-                        "endColumn": 77,
-                        "endOffset": 1014
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1019,
-                    "endColumn": 77,
-                    "endOffset": 1092
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1019,
-                        "endColumn": 77,
-                        "endOffset": 1092
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1097,
-                    "endColumn": 86,
-                    "endOffset": 1179
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1097,
-                        "endColumn": 86,
-                        "endOffset": 1179
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1184,
-                    "endColumn": 109,
-                    "endOffset": 1289
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1184,
-                        "endColumn": 109,
-                        "endOffset": 1289
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1294,
-                    "endColumn": 115,
-                    "endOffset": 1405
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1294,
-                        "endColumn": 115,
-                        "endOffset": 1405
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1410,
-                    "endColumn": 106,
-                    "endOffset": 1512
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1410,
-                        "endColumn": 106,
-                        "endOffset": 1512
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1517,
-                    "endColumn": 109,
-                    "endOffset": 1622
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1517,
-                        "endColumn": 109,
-                        "endOffset": 1622
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1627,
-                    "endColumn": 105,
-                    "endOffset": 1728
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1627,
-                        "endColumn": 105,
-                        "endOffset": 1728
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1733,
-                    "endColumn": 112,
-                    "endOffset": 1841
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1733,
-                        "endColumn": 112,
-                        "endOffset": 1841
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1846,
-                    "endColumn": 127,
-                    "endOffset": 1969
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1846,
-                        "endColumn": 127,
-                        "endOffset": 1969
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1974,
-                    "endColumn": 104,
-                    "endOffset": 2074
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1974,
-                        "endColumn": 104,
-                        "endOffset": 2074
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2079,
-                    "endColumn": 89,
-                    "endOffset": 2164
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2079,
-                        "endColumn": 89,
-                        "endOffset": 2164
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2169,
-                    "endColumn": 100,
-                    "endOffset": 2265
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2169,
-                        "endColumn": 100,
-                        "endOffset": 2265
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-bn.json b/android/.build/intermediates/blame/res/debug/multi/values-bn.json
deleted file mode 100644
index 5de774be3eedb644da381e94acab27c946ce15ad..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-bn.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn/values-bn.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 110,
-                    "endOffset": 211
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 106,
-                        "endOffset": 389
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 216,
-                    "endColumn": 190,
-                    "endOffset": 402
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 390,
-                        "endColumn": 190,
-                        "endOffset": 580
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 407,
-                    "endColumn": 129,
-                    "endOffset": 532
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 581,
-                        "endColumn": 125,
-                        "endOffset": 706
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 537,
-                    "endColumn": 112,
-                    "endOffset": 645
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 707,
-                        "endColumn": 108,
-                        "endOffset": 815
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 650,
-                    "endColumn": 195,
-                    "endOffset": 841
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 816,
-                        "endColumn": 195,
-                        "endOffset": 1011
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 846,
-                    "endColumn": 123,
-                    "endOffset": 965
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1012,
-                        "endColumn": 119,
-                        "endOffset": 1131
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 970,
-                    "endColumn": 132,
-                    "endOffset": 1098
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1132,
-                        "endColumn": 128,
-                        "endOffset": 1260
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1103,
-                    "endColumn": 210,
-                    "endOffset": 1309
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 210,
-                        "endOffset": 495
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1314,
-                    "endColumn": 203,
-                    "endOffset": 1513
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1261,
-                        "endColumn": 203,
-                        "endOffset": 1464
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1518,
-                    "endColumn": 110,
-                    "endOffset": 1624
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1465,
-                        "endColumn": 106,
-                        "endOffset": 1571
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1629,
-                    "endColumn": 186,
-                    "endOffset": 1811
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1572,
-                        "endColumn": 186,
-                        "endOffset": 1758
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1816,
-                    "endColumn": 129,
-                    "endOffset": 1941
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1759,
-                        "endColumn": 125,
-                        "endOffset": 1884
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1946,
-                    "endColumn": 192,
-                    "endOffset": 2134
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1885,
-                        "endColumn": 192,
-                        "endOffset": 2077
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2139,
-                    "endColumn": 178,
-                    "endOffset": 2313
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2078,
-                        "endColumn": 174,
-                        "endOffset": 2252
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2318,
-                    "endColumn": 89,
-                    "endOffset": 2403
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2253,
-                        "endColumn": 85,
-                        "endOffset": 2338
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2408,
-                    "endColumn": 95,
-                    "endOffset": 2499
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2339,
-                        "endColumn": 91,
-                        "endOffset": 2430
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2504,
-                    "endColumn": 117,
-                    "endOffset": 2617
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2431,
-                        "endColumn": 113,
-                        "endOffset": 2544
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-bs-rBA.json b/android/.build/intermediates/blame/res/debug/multi/values-bs-rBA.json
deleted file mode 100644
index b4ce4c7517a184f9971561f1f1dcc6ea64013be1..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-bs-rBA.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs-rBA/values-bs-rBA.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 118,
-                    "endOffset": 169
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 118,
-                        "endOffset": 169
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 174,
-                    "endColumn": 107,
-                    "endOffset": 277
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 174,
-                        "endColumn": 107,
-                        "endOffset": 277
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 282,
-                    "endColumn": 122,
-                    "endOffset": 400
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 282,
-                        "endColumn": 122,
-                        "endOffset": 400
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 405,
-                    "endColumn": 108,
-                    "endOffset": 509
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 405,
-                        "endColumn": 108,
-                        "endOffset": 509
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 514,
-                    "endColumn": 106,
-                    "endOffset": 616
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 514,
-                        "endColumn": 106,
-                        "endOffset": 616
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 621,
-                    "endColumn": 87,
-                    "endOffset": 704
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 621,
-                        "endColumn": 87,
-                        "endOffset": 704
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 709,
-                    "endColumn": 100,
-                    "endOffset": 805
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 709,
-                        "endColumn": 100,
-                        "endOffset": 805
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 810,
-                    "endColumn": 121,
-                    "endOffset": 927
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 810,
-                        "endColumn": 121,
-                        "endOffset": 927
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 932,
-                    "endColumn": 81,
-                    "endOffset": 1009
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 932,
-                        "endColumn": 81,
-                        "endOffset": 1009
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1014,
-                    "endColumn": 80,
-                    "endOffset": 1090
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1014,
-                        "endColumn": 80,
-                        "endOffset": 1090
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1095,
-                    "endColumn": 85,
-                    "endOffset": 1176
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1095,
-                        "endColumn": 85,
-                        "endOffset": 1176
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1181,
-                    "endColumn": 102,
-                    "endOffset": 1279
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1181,
-                        "endColumn": 102,
-                        "endOffset": 1279
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1284,
-                    "endColumn": 104,
-                    "endOffset": 1384
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1284,
-                        "endColumn": 104,
-                        "endOffset": 1384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1389,
-                    "endColumn": 97,
-                    "endOffset": 1482
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1389,
-                        "endColumn": 97,
-                        "endOffset": 1482
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1487,
-                    "endColumn": 104,
-                    "endOffset": 1587
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1487,
-                        "endColumn": 104,
-                        "endOffset": 1587
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1592,
-                    "endColumn": 110,
-                    "endOffset": 1698
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1592,
-                        "endColumn": 110,
-                        "endOffset": 1698
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1703,
-                    "endColumn": 104,
-                    "endOffset": 1803
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1703,
-                        "endColumn": 104,
-                        "endOffset": 1803
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1808,
-                    "endColumn": 119,
-                    "endOffset": 1923
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1808,
-                        "endColumn": 119,
-                        "endOffset": 1923
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1928,
-                    "endColumn": 96,
-                    "endOffset": 2020
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1928,
-                        "endColumn": 96,
-                        "endOffset": 2020
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2025,
-                    "endColumn": 83,
-                    "endOffset": 2104
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2025,
-                        "endColumn": 83,
-                        "endOffset": 2104
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2109,
-                    "endColumn": 100,
-                    "endOffset": 2205
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2109,
-                        "endColumn": 100,
-                        "endOffset": 2205
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-bs.json b/android/.build/intermediates/blame/res/debug/multi/values-bs.json
deleted file mode 100644
index bff9ae945527cad2e692a5ec5c4120429e0b3de6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-bs.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs/values-bs.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 107,
-                    "endOffset": 208
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 103,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 213,
-                    "endColumn": 191,
-                    "endOffset": 400
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 387,
-                        "endColumn": 191,
-                        "endOffset": 578
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 405,
-                    "endColumn": 127,
-                    "endOffset": 528
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 579,
-                        "endColumn": 123,
-                        "endOffset": 702
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 533,
-                    "endColumn": 111,
-                    "endOffset": 640
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 703,
-                        "endColumn": 107,
-                        "endOffset": 810
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 645,
-                    "endColumn": 208,
-                    "endOffset": 849
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 811,
-                        "endColumn": 208,
-                        "endOffset": 1019
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 854,
-                    "endColumn": 127,
-                    "endOffset": 977
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1020,
-                        "endColumn": 123,
-                        "endOffset": 1143
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 982,
-                    "endColumn": 130,
-                    "endOffset": 1108
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1144,
-                        "endColumn": 126,
-                        "endOffset": 1270
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1113,
-                    "endColumn": 199,
-                    "endOffset": 1308
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 199,
-                        "endOffset": 484
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1313,
-                    "endColumn": 212,
-                    "endOffset": 1521
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1271,
-                        "endColumn": 212,
-                        "endOffset": 1483
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1526,
-                    "endColumn": 108,
-                    "endOffset": 1630
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1484,
-                        "endColumn": 104,
-                        "endOffset": 1588
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1635,
-                    "endColumn": 191,
-                    "endOffset": 1822
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1589,
-                        "endColumn": 191,
-                        "endOffset": 1780
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1827,
-                    "endColumn": 128,
-                    "endOffset": 1951
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1781,
-                        "endColumn": 124,
-                        "endOffset": 1905
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1956,
-                    "endColumn": 208,
-                    "endOffset": 2160
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1906,
-                        "endColumn": 208,
-                        "endOffset": 2114
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2165,
-                    "endColumn": 175,
-                    "endOffset": 2336
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2115,
-                        "endColumn": 171,
-                        "endOffset": 2286
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2341,
-                    "endColumn": 97,
-                    "endOffset": 2434
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2287,
-                        "endColumn": 93,
-                        "endOffset": 2380
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2439,
-                    "endColumn": 94,
-                    "endOffset": 2529
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2381,
-                        "endColumn": 90,
-                        "endOffset": 2471
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2534,
-                    "endColumn": 113,
-                    "endOffset": 2643
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2472,
-                        "endColumn": 109,
-                        "endOffset": 2581
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ca.json b/android/.build/intermediates/blame/res/debug/multi/values-ca.json
deleted file mode 100644
index f5c41822f50b5034848f9205a235369cd65e6f95..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ca.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 117,
-                    "endOffset": 218
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 117,
-                        "endOffset": 168
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 223,
-                    "endColumn": 107,
-                    "endOffset": 326
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 173,
-                        "endColumn": 107,
-                        "endOffset": 276
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 331,
-                    "endColumn": 122,
-                    "endOffset": 449
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 281,
-                        "endColumn": 122,
-                        "endOffset": 399
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 454,
-                    "endColumn": 105,
-                    "endOffset": 555
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 404,
-                        "endColumn": 105,
-                        "endOffset": 505
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 560,
-                    "endColumn": 106,
-                    "endOffset": 662
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 510,
-                        "endColumn": 106,
-                        "endOffset": 612
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 667,
-                    "endColumn": 82,
-                    "endOffset": 745
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 617,
-                        "endColumn": 82,
-                        "endOffset": 695
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 750,
-                    "endColumn": 107,
-                    "endOffset": 853
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 700,
-                        "endColumn": 107,
-                        "endOffset": 803
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 858,
-                    "endColumn": 125,
-                    "endOffset": 979
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 808,
-                        "endColumn": 125,
-                        "endOffset": 929
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 984,
-                    "endColumn": 83,
-                    "endOffset": 1063
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 934,
-                        "endColumn": 83,
-                        "endOffset": 1013
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1068,
-                    "endColumn": 80,
-                    "endOffset": 1144
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1018,
-                        "endColumn": 80,
-                        "endOffset": 1094
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1149,
-                    "endColumn": 82,
-                    "endOffset": 1227
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1099,
-                        "endColumn": 82,
-                        "endOffset": 1177
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1232,
-                    "endColumn": 110,
-                    "endOffset": 1338
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1182,
-                        "endColumn": 110,
-                        "endOffset": 1288
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1343,
-                    "endColumn": 108,
-                    "endOffset": 1447
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1293,
-                        "endColumn": 108,
-                        "endOffset": 1397
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1452,
-                    "endColumn": 97,
-                    "endOffset": 1545
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1402,
-                        "endColumn": 97,
-                        "endOffset": 1495
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1550,
-                    "endColumn": 109,
-                    "endOffset": 1655
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1500,
-                        "endColumn": 109,
-                        "endOffset": 1605
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1660,
-                    "endColumn": 103,
-                    "endOffset": 1759
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1610,
-                        "endColumn": 103,
-                        "endOffset": 1709
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1764,
-                    "endColumn": 107,
-                    "endOffset": 1867
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1714,
-                        "endColumn": 107,
-                        "endOffset": 1817
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1872,
-                    "endColumn": 122,
-                    "endOffset": 1990
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1822,
-                        "endColumn": 122,
-                        "endOffset": 1940
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1995,
-                    "endColumn": 98,
-                    "endOffset": 2089
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1945,
-                        "endColumn": 98,
-                        "endOffset": 2039
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2094,
-                    "endColumn": 106,
-                    "endOffset": 2196
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 102,
-                        "endOffset": 385
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2201,
-                    "endColumn": 187,
-                    "endOffset": 2384
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 386,
-                        "endColumn": 187,
-                        "endOffset": 573
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2389,
-                    "endColumn": 132,
-                    "endOffset": 2517
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 574,
-                        "endColumn": 128,
-                        "endOffset": 702
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2522,
-                    "endColumn": 110,
-                    "endOffset": 2628
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 703,
-                        "endColumn": 106,
-                        "endOffset": 809
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2633,
-                    "endColumn": 211,
-                    "endOffset": 2840
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 810,
-                        "endColumn": 211,
-                        "endOffset": 1021
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2845,
-                    "endColumn": 132,
-                    "endOffset": 2973
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1022,
-                        "endColumn": 128,
-                        "endOffset": 1150
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2978,
-                    "endColumn": 138,
-                    "endOffset": 3112
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1151,
-                        "endColumn": 134,
-                        "endOffset": 1285
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3117,
-                    "endColumn": 197,
-                    "endOffset": 3310
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 197,
-                        "endOffset": 482
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3315,
-                    "endColumn": 236,
-                    "endOffset": 3547
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1286,
-                        "endColumn": 236,
-                        "endOffset": 1522
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3552,
-                    "endColumn": 110,
-                    "endOffset": 3658
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1523,
-                        "endColumn": 106,
-                        "endOffset": 1629
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3663,
-                    "endColumn": 193,
-                    "endOffset": 3852
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1630,
-                        "endColumn": 193,
-                        "endOffset": 1823
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3857,
-                    "endColumn": 136,
-                    "endOffset": 3989
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1824,
-                        "endColumn": 132,
-                        "endOffset": 1956
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3994,
-                    "endColumn": 227,
-                    "endOffset": 4217
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1957,
-                        "endColumn": 227,
-                        "endOffset": 2184
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4222,
-                    "endColumn": 190,
-                    "endOffset": 4408
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2185,
-                        "endColumn": 186,
-                        "endOffset": 2371
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4413,
-                    "endColumn": 94,
-                    "endOffset": 4503
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2372,
-                        "endColumn": 90,
-                        "endOffset": 2462
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4508,
-                    "endColumn": 97,
-                    "endOffset": 4601
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2463,
-                        "endColumn": 93,
-                        "endOffset": 2556
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4606,
-                    "endColumn": 115,
-                    "endOffset": 4717
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2557,
-                        "endColumn": 111,
-                        "endOffset": 2668
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4722,
-                    "endColumn": 80,
-                    "endOffset": 4798
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2044,
-                        "endColumn": 80,
-                        "endOffset": 2120
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4803,
-                    "endColumn": 100,
-                    "endOffset": 4899
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2125,
-                        "endColumn": 100,
-                        "endOffset": 2221
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-cs.json b/android/.build/intermediates/blame/res/debug/multi/values-cs.json
deleted file mode 100644
index 99e6e239556d4ba4a241c9efec7f20a5026b1e04..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-cs.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 106,
-                    "endOffset": 207
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 106,
-                        "endOffset": 157
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 212,
-                    "endColumn": 108,
-                    "endOffset": 316
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 162,
-                        "endColumn": 108,
-                        "endOffset": 266
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 321,
-                    "endColumn": 123,
-                    "endOffset": 440
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 271,
-                        "endColumn": 123,
-                        "endOffset": 390
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 445,
-                    "endColumn": 101,
-                    "endOffset": 542
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 395,
-                        "endColumn": 101,
-                        "endOffset": 492
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 547,
-                    "endColumn": 108,
-                    "endOffset": 651
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 497,
-                        "endColumn": 108,
-                        "endOffset": 601
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 656,
-                    "endColumn": 85,
-                    "endOffset": 737
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 606,
-                        "endColumn": 85,
-                        "endOffset": 687
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 742,
-                    "endColumn": 104,
-                    "endOffset": 842
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 692,
-                        "endColumn": 104,
-                        "endOffset": 792
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 847,
-                    "endColumn": 116,
-                    "endOffset": 959
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 797,
-                        "endColumn": 116,
-                        "endOffset": 909
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 964,
-                    "endColumn": 80,
-                    "endOffset": 1040
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 914,
-                        "endColumn": 80,
-                        "endOffset": 990
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1045,
-                    "endColumn": 80,
-                    "endOffset": 1121
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 995,
-                        "endColumn": 80,
-                        "endOffset": 1071
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1126,
-                    "endColumn": 83,
-                    "endOffset": 1205
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1076,
-                        "endColumn": 83,
-                        "endOffset": 1155
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1210,
-                    "endColumn": 103,
-                    "endOffset": 1309
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1160,
-                        "endColumn": 103,
-                        "endOffset": 1259
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1314,
-                    "endColumn": 108,
-                    "endOffset": 1418
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1264,
-                        "endColumn": 108,
-                        "endOffset": 1368
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1423,
-                    "endColumn": 98,
-                    "endOffset": 1517
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1373,
-                        "endColumn": 98,
-                        "endOffset": 1467
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1522,
-                    "endColumn": 105,
-                    "endOffset": 1623
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1472,
-                        "endColumn": 105,
-                        "endOffset": 1573
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1628,
-                    "endColumn": 109,
-                    "endOffset": 1733
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1578,
-                        "endColumn": 109,
-                        "endOffset": 1683
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1738,
-                    "endColumn": 106,
-                    "endOffset": 1840
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1688,
-                        "endColumn": 106,
-                        "endOffset": 1790
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1845,
-                    "endColumn": 121,
-                    "endOffset": 1962
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1795,
-                        "endColumn": 121,
-                        "endOffset": 1912
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1967,
-                    "endColumn": 97,
-                    "endOffset": 2060
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1917,
-                        "endColumn": 97,
-                        "endOffset": 2010
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2065,
-                    "endColumn": 107,
-                    "endOffset": 2168
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 103,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2173,
-                    "endColumn": 191,
-                    "endOffset": 2360
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 387,
-                        "endColumn": 191,
-                        "endOffset": 578
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2365,
-                    "endColumn": 126,
-                    "endOffset": 2487
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 579,
-                        "endColumn": 122,
-                        "endOffset": 701
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2492,
-                    "endColumn": 111,
-                    "endOffset": 2599
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 702,
-                        "endColumn": 107,
-                        "endOffset": 809
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2604,
-                    "endColumn": 211,
-                    "endOffset": 2811
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 810,
-                        "endColumn": 211,
-                        "endOffset": 1021
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2816,
-                    "endColumn": 128,
-                    "endOffset": 2940
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1022,
-                        "endColumn": 124,
-                        "endOffset": 1146
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2945,
-                    "endColumn": 129,
-                    "endOffset": 3070
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1147,
-                        "endColumn": 125,
-                        "endOffset": 1272
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3075,
-                    "endColumn": 201,
-                    "endOffset": 3272
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 201,
-                        "endOffset": 486
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3277,
-                    "endColumn": 233,
-                    "endOffset": 3506
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1273,
-                        "endColumn": 233,
-                        "endOffset": 1506
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3511,
-                    "endColumn": 112,
-                    "endOffset": 3619
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1507,
-                        "endColumn": 108,
-                        "endOffset": 1615
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3624,
-                    "endColumn": 194,
-                    "endOffset": 3814
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1616,
-                        "endColumn": 194,
-                        "endOffset": 1810
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3819,
-                    "endColumn": 129,
-                    "endOffset": 3944
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1811,
-                        "endColumn": 125,
-                        "endOffset": 1936
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3949,
-                    "endColumn": 219,
-                    "endOffset": 4164
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1937,
-                        "endColumn": 219,
-                        "endOffset": 2156
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4169,
-                    "endColumn": 184,
-                    "endOffset": 4349
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2157,
-                        "endColumn": 180,
-                        "endOffset": 2337
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4354,
-                    "endColumn": 97,
-                    "endOffset": 4447
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2338,
-                        "endColumn": 93,
-                        "endOffset": 2431
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4452,
-                    "endColumn": 96,
-                    "endOffset": 4544
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2432,
-                        "endColumn": 92,
-                        "endOffset": 2524
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4549,
-                    "endColumn": 114,
-                    "endOffset": 4659
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2525,
-                        "endColumn": 110,
-                        "endOffset": 2635
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4664,
-                    "endColumn": 81,
-                    "endOffset": 4741
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2015,
-                        "endColumn": 81,
-                        "endOffset": 2092
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4746,
-                    "endColumn": 100,
-                    "endOffset": 4842
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2097,
-                        "endColumn": 100,
-                        "endOffset": 2193
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-da.json b/android/.build/intermediates/blame/res/debug/multi/values-da.json
deleted file mode 100644
index aefd2d48f8212173ee0581eb20ca28878c1f66d0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-da.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 102,
-                    "endOffset": 203
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 102,
-                        "endOffset": 153
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 208,
-                    "endColumn": 107,
-                    "endOffset": 311
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 158,
-                        "endColumn": 107,
-                        "endOffset": 261
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 316,
-                    "endColumn": 122,
-                    "endOffset": 434
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 266,
-                        "endColumn": 122,
-                        "endOffset": 384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 439,
-                    "endColumn": 98,
-                    "endOffset": 533
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 389,
-                        "endColumn": 98,
-                        "endOffset": 483
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 538,
-                    "endColumn": 111,
-                    "endOffset": 645
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 488,
-                        "endColumn": 111,
-                        "endOffset": 595
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 650,
-                    "endColumn": 82,
-                    "endOffset": 728
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 600,
-                        "endColumn": 82,
-                        "endOffset": 678
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 733,
-                    "endColumn": 99,
-                    "endOffset": 828
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 683,
-                        "endColumn": 99,
-                        "endOffset": 778
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 833,
-                    "endColumn": 112,
-                    "endOffset": 941
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 783,
-                        "endColumn": 112,
-                        "endOffset": 891
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 946,
-                    "endColumn": 76,
-                    "endOffset": 1018
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 896,
-                        "endColumn": 76,
-                        "endOffset": 968
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1023,
-                    "endColumn": 76,
-                    "endOffset": 1095
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 973,
-                        "endColumn": 76,
-                        "endOffset": 1045
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1100,
-                    "endColumn": 78,
-                    "endOffset": 1174
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1050,
-                        "endColumn": 78,
-                        "endOffset": 1124
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1179,
-                    "endColumn": 108,
-                    "endOffset": 1283
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1129,
-                        "endColumn": 108,
-                        "endOffset": 1233
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1288,
-                    "endColumn": 107,
-                    "endOffset": 1391
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1238,
-                        "endColumn": 107,
-                        "endOffset": 1341
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1396,
-                    "endColumn": 95,
-                    "endOffset": 1487
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1346,
-                        "endColumn": 95,
-                        "endOffset": 1437
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1492,
-                    "endColumn": 113,
-                    "endOffset": 1601
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1442,
-                        "endColumn": 113,
-                        "endOffset": 1551
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1606,
-                    "endColumn": 101,
-                    "endOffset": 1703
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1556,
-                        "endColumn": 101,
-                        "endOffset": 1653
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1708,
-                    "endColumn": 100,
-                    "endOffset": 1804
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1658,
-                        "endColumn": 100,
-                        "endOffset": 1754
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1809,
-                    "endColumn": 115,
-                    "endOffset": 1920
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1759,
-                        "endColumn": 115,
-                        "endOffset": 1870
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1925,
-                    "endColumn": 96,
-                    "endOffset": 2017
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1875,
-                        "endColumn": 96,
-                        "endOffset": 1967
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2022,
-                    "endColumn": 107,
-                    "endOffset": 2125
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 103,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2130,
-                    "endColumn": 191,
-                    "endOffset": 2317
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 387,
-                        "endColumn": 191,
-                        "endOffset": 578
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2322,
-                    "endColumn": 128,
-                    "endOffset": 2446
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 579,
-                        "endColumn": 124,
-                        "endOffset": 703
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2451,
-                    "endColumn": 110,
-                    "endOffset": 2557
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 704,
-                        "endColumn": 106,
-                        "endOffset": 810
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2562,
-                    "endColumn": 201,
-                    "endOffset": 2759
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 811,
-                        "endColumn": 201,
-                        "endOffset": 1012
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2764,
-                    "endColumn": 126,
-                    "endOffset": 2886
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1013,
-                        "endColumn": 122,
-                        "endOffset": 1135
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2891,
-                    "endColumn": 133,
-                    "endOffset": 3020
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1136,
-                        "endColumn": 129,
-                        "endOffset": 1265
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3025,
-                    "endColumn": 185,
-                    "endOffset": 3206
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 185,
-                        "endOffset": 470
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3211,
-                    "endColumn": 214,
-                    "endOffset": 3421
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1266,
-                        "endColumn": 214,
-                        "endOffset": 1480
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3426,
-                    "endColumn": 107,
-                    "endOffset": 3529
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1481,
-                        "endColumn": 103,
-                        "endOffset": 1584
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3534,
-                    "endColumn": 192,
-                    "endOffset": 3722
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1585,
-                        "endColumn": 192,
-                        "endOffset": 1777
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3727,
-                    "endColumn": 128,
-                    "endOffset": 3851
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1778,
-                        "endColumn": 124,
-                        "endOffset": 1902
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3856,
-                    "endColumn": 203,
-                    "endOffset": 4055
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1903,
-                        "endColumn": 203,
-                        "endOffset": 2106
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4060,
-                    "endColumn": 207,
-                    "endOffset": 4263
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2107,
-                        "endColumn": 203,
-                        "endOffset": 2310
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4268,
-                    "endColumn": 95,
-                    "endOffset": 4359
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2311,
-                        "endColumn": 91,
-                        "endOffset": 2402
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4364,
-                    "endColumn": 91,
-                    "endOffset": 4451
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2403,
-                        "endColumn": 87,
-                        "endOffset": 2490
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4456,
-                    "endColumn": 106,
-                    "endOffset": 4558
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2491,
-                        "endColumn": 102,
-                        "endOffset": 2593
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4563,
-                    "endColumn": 78,
-                    "endOffset": 4637
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1972,
-                        "endColumn": 78,
-                        "endOffset": 2046
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4642,
-                    "endColumn": 100,
-                    "endOffset": 4738
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2051,
-                        "endColumn": 100,
-                        "endOffset": 2147
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-de.json b/android/.build/intermediates/blame/res/debug/multi/values-de.json
deleted file mode 100644
index e7835b1fc6a346c5be8c6d03403c5eec73876d36..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-de.json
+++ /dev/null
@@ -1,786 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 104,
-                    "endOffset": 205
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 104,
-                        "endOffset": 155
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 210,
-                    "endColumn": 107,
-                    "endOffset": 313
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 160,
-                        "endColumn": 107,
-                        "endOffset": 263
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 318,
-                    "endColumn": 122,
-                    "endOffset": 436
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 268,
-                        "endColumn": 122,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 441,
-                    "endColumn": 97,
-                    "endOffset": 534
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 391,
-                        "endColumn": 97,
-                        "endOffset": 484
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 539,
-                    "endColumn": 111,
-                    "endOffset": 646
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 489,
-                        "endColumn": 111,
-                        "endOffset": 596
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 651,
-                    "endColumn": 85,
-                    "endOffset": 732
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 601,
-                        "endColumn": 85,
-                        "endOffset": 682
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 737,
-                    "endColumn": 104,
-                    "endOffset": 837
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 687,
-                        "endColumn": 104,
-                        "endOffset": 787
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 842,
-                    "endColumn": 114,
-                    "endOffset": 952
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 792,
-                        "endColumn": 114,
-                        "endOffset": 902
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 957,
-                    "endColumn": 76,
-                    "endOffset": 1029
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 907,
-                        "endColumn": 76,
-                        "endOffset": 979
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1034,
-                    "endColumn": 75,
-                    "endOffset": 1105
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 984,
-                        "endColumn": 75,
-                        "endOffset": 1055
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1110,
-                    "endColumn": 81,
-                    "endOffset": 1187
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1060,
-                        "endColumn": 81,
-                        "endOffset": 1137
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1192,
-                    "endColumn": 110,
-                    "endOffset": 1298
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1142,
-                        "endColumn": 110,
-                        "endOffset": 1248
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1303,
-                    "endColumn": 102,
-                    "endOffset": 1401
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1253,
-                        "endColumn": 102,
-                        "endOffset": 1351
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1406,
-                    "endColumn": 98,
-                    "endOffset": 1500
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1356,
-                        "endColumn": 98,
-                        "endOffset": 1450
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1505,
-                    "endColumn": 110,
-                    "endOffset": 1611
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1455,
-                        "endColumn": 110,
-                        "endOffset": 1561
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1616,
-                    "endColumn": 101,
-                    "endOffset": 1713
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1566,
-                        "endColumn": 101,
-                        "endOffset": 1663
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1718,
-                    "endColumn": 106,
-                    "endOffset": 1820
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1668,
-                        "endColumn": 106,
-                        "endOffset": 1770
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1825,
-                    "endColumn": 121,
-                    "endOffset": 1942
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1775,
-                        "endColumn": 121,
-                        "endOffset": 1892
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1947,
-                    "endColumn": 101,
-                    "endOffset": 2044
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1897,
-                        "endColumn": 101,
-                        "endOffset": 1994
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2049,
-                    "endColumn": 110,
-                    "endOffset": 2155
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 106,
-                        "endOffset": 389
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2160,
-                    "endColumn": 195,
-                    "endOffset": 2351
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 390,
-                        "endColumn": 195,
-                        "endOffset": 585
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2356,
-                    "endColumn": 129,
-                    "endOffset": 2481
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 586,
-                        "endColumn": 125,
-                        "endOffset": 711
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2486,
-                    "endColumn": 113,
-                    "endOffset": 2595
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 712,
-                        "endColumn": 109,
-                        "endOffset": 821
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2600,
-                    "endColumn": 236,
-                    "endOffset": 2832
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 822,
-                        "endColumn": 236,
-                        "endOffset": 1058
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2837,
-                    "endColumn": 132,
-                    "endOffset": 2965
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1059,
-                        "endColumn": 128,
-                        "endOffset": 1187
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2970,
-                    "endColumn": 147,
-                    "endOffset": 3113
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1188,
-                        "endColumn": 143,
-                        "endOffset": 1331
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3118,
-                    "endColumn": 203,
-                    "endOffset": 3317
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 203,
-                        "endOffset": 488
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3322,
-                    "endColumn": 238,
-                    "endOffset": 3556
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1332,
-                        "endColumn": 238,
-                        "endOffset": 1570
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3561,
-                    "endColumn": 113,
-                    "endOffset": 3670
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1571,
-                        "endColumn": 109,
-                        "endOffset": 1680
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3675,
-                    "endColumn": 199,
-                    "endOffset": 3870
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1681,
-                        "endColumn": 199,
-                        "endOffset": 1880
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3875,
-                    "endColumn": 132,
-                    "endOffset": 4003
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1881,
-                        "endColumn": 128,
-                        "endOffset": 2009
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 4008,
-                    "endColumn": 220,
-                    "endOffset": 4224
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 2010,
-                        "endColumn": 220,
-                        "endOffset": 2230
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4229,
-                    "endColumn": 205,
-                    "endOffset": 4430
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2231,
-                        "endColumn": 201,
-                        "endOffset": 2432
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4435,
-                    "endColumn": 100,
-                    "endOffset": 4531
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2433,
-                        "endColumn": 96,
-                        "endOffset": 2529
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4536,
-                    "endColumn": 92,
-                    "endOffset": 4624
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2530,
-                        "endColumn": 88,
-                        "endOffset": 2618
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4629,
-                    "endColumn": 108,
-                    "endOffset": 4733
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2619,
-                        "endColumn": 104,
-                        "endOffset": 2723
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4738,
-                    "endColumn": 140,
-                    "endOffset": 4874
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-de/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 307,
-                        "endColumn": 140,
-                        "endOffset": 443
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4879,
-                    "endColumn": 123,
-                    "endOffset": 4998
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-de/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 183,
-                        "endColumn": 123,
-                        "endOffset": 302
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 5003,
-                    "endColumn": 127,
-                    "endOffset": 5126
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-de/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 127,
-                        "endOffset": 178
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 41,
-                    "startColumn": 4,
-                    "startOffset": 5131,
-                    "endColumn": 81,
-                    "endOffset": 5208
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1999,
-                        "endColumn": 81,
-                        "endOffset": 2076
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 5213,
-                    "endColumn": 100,
-                    "endOffset": 5309
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2081,
-                        "endColumn": 100,
-                        "endOffset": 2177
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-el.json b/android/.build/intermediates/blame/res/debug/multi/values-el.json
deleted file mode 100644
index f3bc1232be242d15e724f5300a58bb036250d7ca..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-el.json
+++ /dev/null
@@ -1,786 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 117,
-                    "endOffset": 218
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 117,
-                        "endOffset": 168
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 223,
-                    "endColumn": 107,
-                    "endOffset": 326
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 173,
-                        "endColumn": 107,
-                        "endOffset": 276
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 331,
-                    "endColumn": 122,
-                    "endOffset": 449
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 281,
-                        "endColumn": 122,
-                        "endOffset": 399
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 454,
-                    "endColumn": 110,
-                    "endOffset": 560
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 404,
-                        "endColumn": 110,
-                        "endOffset": 510
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 565,
-                    "endColumn": 116,
-                    "endOffset": 677
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 515,
-                        "endColumn": 116,
-                        "endOffset": 627
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 682,
-                    "endColumn": 84,
-                    "endOffset": 762
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 632,
-                        "endColumn": 84,
-                        "endOffset": 712
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 767,
-                    "endColumn": 104,
-                    "endOffset": 867
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 717,
-                        "endColumn": 104,
-                        "endOffset": 817
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 872,
-                    "endColumn": 125,
-                    "endOffset": 993
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 822,
-                        "endColumn": 125,
-                        "endOffset": 943
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 998,
-                    "endColumn": 87,
-                    "endOffset": 1081
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 948,
-                        "endColumn": 87,
-                        "endOffset": 1031
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1086,
-                    "endColumn": 85,
-                    "endOffset": 1167
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1036,
-                        "endColumn": 85,
-                        "endOffset": 1117
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1172,
-                    "endColumn": 84,
-                    "endOffset": 1252
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1122,
-                        "endColumn": 84,
-                        "endOffset": 1202
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1257,
-                    "endColumn": 110,
-                    "endOffset": 1363
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1207,
-                        "endColumn": 110,
-                        "endOffset": 1313
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1368,
-                    "endColumn": 109,
-                    "endOffset": 1473
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1318,
-                        "endColumn": 109,
-                        "endOffset": 1423
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1478,
-                    "endColumn": 101,
-                    "endOffset": 1575
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1428,
-                        "endColumn": 101,
-                        "endOffset": 1525
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1580,
-                    "endColumn": 110,
-                    "endOffset": 1686
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1530,
-                        "endColumn": 110,
-                        "endOffset": 1636
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1691,
-                    "endColumn": 108,
-                    "endOffset": 1795
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1641,
-                        "endColumn": 108,
-                        "endOffset": 1745
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1800,
-                    "endColumn": 107,
-                    "endOffset": 1903
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1750,
-                        "endColumn": 107,
-                        "endOffset": 1853
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1908,
-                    "endColumn": 122,
-                    "endOffset": 2026
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1858,
-                        "endColumn": 122,
-                        "endOffset": 1976
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 2031,
-                    "endColumn": 99,
-                    "endOffset": 2126
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1981,
-                        "endColumn": 99,
-                        "endOffset": 2076
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2131,
-                    "endColumn": 112,
-                    "endOffset": 2239
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 108,
-                        "endOffset": 391
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2244,
-                    "endColumn": 217,
-                    "endOffset": 2457
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 392,
-                        "endColumn": 217,
-                        "endOffset": 609
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2462,
-                    "endColumn": 133,
-                    "endOffset": 2591
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 610,
-                        "endColumn": 129,
-                        "endOffset": 739
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2596,
-                    "endColumn": 112,
-                    "endOffset": 2704
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 740,
-                        "endColumn": 108,
-                        "endOffset": 848
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2709,
-                    "endColumn": 239,
-                    "endOffset": 2944
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 849,
-                        "endColumn": 239,
-                        "endOffset": 1088
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2949,
-                    "endColumn": 126,
-                    "endOffset": 3071
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1089,
-                        "endColumn": 122,
-                        "endOffset": 1211
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 3076,
-                    "endColumn": 133,
-                    "endOffset": 3205
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1212,
-                        "endColumn": 129,
-                        "endOffset": 1341
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3210,
-                    "endColumn": 222,
-                    "endOffset": 3428
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 222,
-                        "endOffset": 507
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3433,
-                    "endColumn": 247,
-                    "endOffset": 3676
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1342,
-                        "endColumn": 247,
-                        "endOffset": 1589
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3681,
-                    "endColumn": 109,
-                    "endOffset": 3786
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1590,
-                        "endColumn": 105,
-                        "endOffset": 1695
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3791,
-                    "endColumn": 200,
-                    "endOffset": 3987
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1696,
-                        "endColumn": 200,
-                        "endOffset": 1896
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3992,
-                    "endColumn": 130,
-                    "endOffset": 4118
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1897,
-                        "endColumn": 126,
-                        "endOffset": 2023
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 4123,
-                    "endColumn": 236,
-                    "endOffset": 4355
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 2024,
-                        "endColumn": 236,
-                        "endOffset": 2260
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4360,
-                    "endColumn": 174,
-                    "endOffset": 4530
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2261,
-                        "endColumn": 170,
-                        "endOffset": 2431
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4535,
-                    "endColumn": 98,
-                    "endOffset": 4629
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2432,
-                        "endColumn": 94,
-                        "endOffset": 2526
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4634,
-                    "endColumn": 91,
-                    "endOffset": 4721
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2527,
-                        "endColumn": 87,
-                        "endOffset": 2614
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4726,
-                    "endColumn": 111,
-                    "endOffset": 4833
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2615,
-                        "endColumn": 107,
-                        "endOffset": 2722
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4838,
-                    "endColumn": 116,
-                    "endOffset": 4950
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-el/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 316,
-                        "endColumn": 116,
-                        "endOffset": 428
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4955,
-                    "endColumn": 117,
-                    "endOffset": 5068
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-el/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 198,
-                        "endColumn": 117,
-                        "endOffset": 311
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 5073,
-                    "endColumn": 142,
-                    "endOffset": 5211
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-el/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 142,
-                        "endOffset": 193
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 41,
-                    "startColumn": 4,
-                    "startOffset": 5216,
-                    "endColumn": 84,
-                    "endOffset": 5296
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2081,
-                        "endColumn": 84,
-                        "endOffset": 2161
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 5301,
-                    "endColumn": 100,
-                    "endOffset": 5397
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2166,
-                        "endColumn": 100,
-                        "endOffset": 2262
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-en-rAU.json b/android/.build/intermediates/blame/res/debug/multi/values-en-rAU.json
deleted file mode 100644
index 462a4e4fa51fb2a1dc4b3dc7558a7c51369533a4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-en-rAU.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 103,
-                    "endOffset": 154
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 103,
-                        "endOffset": 154
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 159,
-                    "endColumn": 107,
-                    "endOffset": 262
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 159,
-                        "endColumn": 107,
-                        "endOffset": 262
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 267,
-                    "endColumn": 122,
-                    "endOffset": 385
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 267,
-                        "endColumn": 122,
-                        "endOffset": 385
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 390,
-                    "endColumn": 99,
-                    "endOffset": 485
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 390,
-                        "endColumn": 99,
-                        "endOffset": 485
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 490,
-                    "endColumn": 107,
-                    "endOffset": 593
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 490,
-                        "endColumn": 107,
-                        "endOffset": 593
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 598,
-                    "endColumn": 83,
-                    "endOffset": 677
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 598,
-                        "endColumn": 83,
-                        "endOffset": 677
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 682,
-                    "endColumn": 99,
-                    "endOffset": 777
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 682,
-                        "endColumn": 99,
-                        "endOffset": 777
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 782,
-                    "endColumn": 114,
-                    "endOffset": 892
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 782,
-                        "endColumn": 114,
-                        "endOffset": 892
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 897,
-                    "endColumn": 76,
-                    "endOffset": 969
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 897,
-                        "endColumn": 76,
-                        "endOffset": 969
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 974,
-                    "endColumn": 75,
-                    "endOffset": 1045
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 974,
-                        "endColumn": 75,
-                        "endOffset": 1045
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1050,
-                    "endColumn": 81,
-                    "endOffset": 1127
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1050,
-                        "endColumn": 81,
-                        "endOffset": 1127
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1132,
-                    "endColumn": 102,
-                    "endOffset": 1230
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1132,
-                        "endColumn": 102,
-                        "endOffset": 1230
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1235,
-                    "endColumn": 103,
-                    "endOffset": 1334
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1235,
-                        "endColumn": 103,
-                        "endOffset": 1334
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1339,
-                    "endColumn": 98,
-                    "endOffset": 1433
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1339,
-                        "endColumn": 98,
-                        "endOffset": 1433
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1438,
-                    "endColumn": 104,
-                    "endOffset": 1538
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1438,
-                        "endColumn": 104,
-                        "endOffset": 1538
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1543,
-                    "endColumn": 102,
-                    "endOffset": 1641
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1543,
-                        "endColumn": 102,
-                        "endOffset": 1641
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1646,
-                    "endColumn": 103,
-                    "endOffset": 1745
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1646,
-                        "endColumn": 103,
-                        "endOffset": 1745
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1750,
-                    "endColumn": 118,
-                    "endOffset": 1864
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1750,
-                        "endColumn": 118,
-                        "endOffset": 1864
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1869,
-                    "endColumn": 99,
-                    "endOffset": 1964
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1869,
-                        "endColumn": 99,
-                        "endOffset": 1964
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 1969,
-                    "endColumn": 81,
-                    "endOffset": 2046
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1969,
-                        "endColumn": 81,
-                        "endOffset": 2046
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2051,
-                    "endColumn": 100,
-                    "endOffset": 2147
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2051,
-                        "endColumn": 100,
-                        "endOffset": 2147
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-en-rGB.json b/android/.build/intermediates/blame/res/debug/multi/values-en-rGB.json
deleted file mode 100644
index 6eefbc6c441e90f4437c939b9c34f593f24c6f6e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-en-rGB.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 103,
-                    "endOffset": 204
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 103,
-                        "endOffset": 154
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 209,
-                    "endColumn": 107,
-                    "endOffset": 312
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 159,
-                        "endColumn": 107,
-                        "endOffset": 262
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 317,
-                    "endColumn": 122,
-                    "endOffset": 435
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 267,
-                        "endColumn": 122,
-                        "endOffset": 385
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 440,
-                    "endColumn": 99,
-                    "endOffset": 535
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 390,
-                        "endColumn": 99,
-                        "endOffset": 485
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 540,
-                    "endColumn": 107,
-                    "endOffset": 643
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 490,
-                        "endColumn": 107,
-                        "endOffset": 593
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 648,
-                    "endColumn": 83,
-                    "endOffset": 727
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 598,
-                        "endColumn": 83,
-                        "endOffset": 677
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 732,
-                    "endColumn": 99,
-                    "endOffset": 827
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 682,
-                        "endColumn": 99,
-                        "endOffset": 777
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 832,
-                    "endColumn": 114,
-                    "endOffset": 942
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 782,
-                        "endColumn": 114,
-                        "endOffset": 892
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 947,
-                    "endColumn": 76,
-                    "endOffset": 1019
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 897,
-                        "endColumn": 76,
-                        "endOffset": 969
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1024,
-                    "endColumn": 75,
-                    "endOffset": 1095
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 974,
-                        "endColumn": 75,
-                        "endOffset": 1045
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1100,
-                    "endColumn": 81,
-                    "endOffset": 1177
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1050,
-                        "endColumn": 81,
-                        "endOffset": 1127
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1182,
-                    "endColumn": 102,
-                    "endOffset": 1280
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1132,
-                        "endColumn": 102,
-                        "endOffset": 1230
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1285,
-                    "endColumn": 103,
-                    "endOffset": 1384
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1235,
-                        "endColumn": 103,
-                        "endOffset": 1334
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1389,
-                    "endColumn": 98,
-                    "endOffset": 1483
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1339,
-                        "endColumn": 98,
-                        "endOffset": 1433
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1488,
-                    "endColumn": 104,
-                    "endOffset": 1588
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1438,
-                        "endColumn": 104,
-                        "endOffset": 1538
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1593,
-                    "endColumn": 102,
-                    "endOffset": 1691
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1543,
-                        "endColumn": 102,
-                        "endOffset": 1641
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1696,
-                    "endColumn": 103,
-                    "endOffset": 1795
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1646,
-                        "endColumn": 103,
-                        "endOffset": 1745
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1800,
-                    "endColumn": 118,
-                    "endOffset": 1914
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1750,
-                        "endColumn": 118,
-                        "endOffset": 1864
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1919,
-                    "endColumn": 99,
-                    "endOffset": 2014
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1869,
-                        "endColumn": 99,
-                        "endOffset": 1964
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2019,
-                    "endColumn": 106,
-                    "endOffset": 2121
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 287,
-                        "endColumn": 102,
-                        "endOffset": 389
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2126,
-                    "endColumn": 183,
-                    "endOffset": 2305
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 390,
-                        "endColumn": 183,
-                        "endOffset": 573
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2310,
-                    "endColumn": 126,
-                    "endOffset": 2432
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 574,
-                        "endColumn": 122,
-                        "endOffset": 696
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2437,
-                    "endColumn": 108,
-                    "endOffset": 2541
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 697,
-                        "endColumn": 104,
-                        "endOffset": 801
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2546,
-                    "endColumn": 209,
-                    "endOffset": 2751
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 802,
-                        "endColumn": 209,
-                        "endOffset": 1011
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2756,
-                    "endColumn": 124,
-                    "endOffset": 2876
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1012,
-                        "endColumn": 120,
-                        "endOffset": 1132
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2881,
-                    "endColumn": 131,
-                    "endOffset": 3008
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1133,
-                        "endColumn": 127,
-                        "endOffset": 1260
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3013,
-                    "endColumn": 196,
-                    "endOffset": 3205
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 289,
-                        "endColumn": 196,
-                        "endOffset": 485
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3210,
-                    "endColumn": 217,
-                    "endOffset": 3423
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1261,
-                        "endColumn": 217,
-                        "endOffset": 1478
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3428,
-                    "endColumn": 106,
-                    "endOffset": 3530
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1479,
-                        "endColumn": 102,
-                        "endOffset": 1581
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3535,
-                    "endColumn": 182,
-                    "endOffset": 3713
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1582,
-                        "endColumn": 182,
-                        "endOffset": 1764
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3718,
-                    "endColumn": 126,
-                    "endOffset": 3840
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1765,
-                        "endColumn": 122,
-                        "endOffset": 1887
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3845,
-                    "endColumn": 204,
-                    "endOffset": 4045
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1888,
-                        "endColumn": 204,
-                        "endOffset": 2092
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4050,
-                    "endColumn": 177,
-                    "endOffset": 4223
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2093,
-                        "endColumn": 173,
-                        "endOffset": 2266
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4228,
-                    "endColumn": 92,
-                    "endOffset": 4316
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2267,
-                        "endColumn": 88,
-                        "endOffset": 2355
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4321,
-                    "endColumn": 91,
-                    "endOffset": 4408
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2356,
-                        "endColumn": 87,
-                        "endOffset": 2443
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4413,
-                    "endColumn": 107,
-                    "endOffset": 4516
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2444,
-                        "endColumn": 103,
-                        "endOffset": 2547
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4521,
-                    "endColumn": 81,
-                    "endOffset": 4598
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1969,
-                        "endColumn": 81,
-                        "endOffset": 2046
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4603,
-                    "endColumn": 100,
-                    "endOffset": 4699
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2051,
-                        "endColumn": 100,
-                        "endOffset": 2147
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-en-rIN.json b/android/.build/intermediates/blame/res/debug/multi/values-en-rIN.json
deleted file mode 100644
index 9e2fcaf6444c9f79a6019b5c8bd8fa1d71a349ac..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-en-rIN.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 103,
-                    "endOffset": 154
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 103,
-                        "endOffset": 154
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 159,
-                    "endColumn": 107,
-                    "endOffset": 262
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 159,
-                        "endColumn": 107,
-                        "endOffset": 262
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 267,
-                    "endColumn": 122,
-                    "endOffset": 385
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 267,
-                        "endColumn": 122,
-                        "endOffset": 385
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 390,
-                    "endColumn": 99,
-                    "endOffset": 485
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 390,
-                        "endColumn": 99,
-                        "endOffset": 485
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 490,
-                    "endColumn": 107,
-                    "endOffset": 593
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 490,
-                        "endColumn": 107,
-                        "endOffset": 593
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 598,
-                    "endColumn": 83,
-                    "endOffset": 677
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 598,
-                        "endColumn": 83,
-                        "endOffset": 677
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 682,
-                    "endColumn": 99,
-                    "endOffset": 777
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 682,
-                        "endColumn": 99,
-                        "endOffset": 777
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 782,
-                    "endColumn": 114,
-                    "endOffset": 892
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 782,
-                        "endColumn": 114,
-                        "endOffset": 892
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 897,
-                    "endColumn": 76,
-                    "endOffset": 969
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 897,
-                        "endColumn": 76,
-                        "endOffset": 969
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 974,
-                    "endColumn": 75,
-                    "endOffset": 1045
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 974,
-                        "endColumn": 75,
-                        "endOffset": 1045
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1050,
-                    "endColumn": 81,
-                    "endOffset": 1127
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1050,
-                        "endColumn": 81,
-                        "endOffset": 1127
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1132,
-                    "endColumn": 102,
-                    "endOffset": 1230
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1132,
-                        "endColumn": 102,
-                        "endOffset": 1230
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1235,
-                    "endColumn": 103,
-                    "endOffset": 1334
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1235,
-                        "endColumn": 103,
-                        "endOffset": 1334
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1339,
-                    "endColumn": 98,
-                    "endOffset": 1433
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1339,
-                        "endColumn": 98,
-                        "endOffset": 1433
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1438,
-                    "endColumn": 104,
-                    "endOffset": 1538
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1438,
-                        "endColumn": 104,
-                        "endOffset": 1538
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1543,
-                    "endColumn": 102,
-                    "endOffset": 1641
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1543,
-                        "endColumn": 102,
-                        "endOffset": 1641
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1646,
-                    "endColumn": 103,
-                    "endOffset": 1745
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1646,
-                        "endColumn": 103,
-                        "endOffset": 1745
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1750,
-                    "endColumn": 118,
-                    "endOffset": 1864
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1750,
-                        "endColumn": 118,
-                        "endOffset": 1864
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1869,
-                    "endColumn": 99,
-                    "endOffset": 1964
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1869,
-                        "endColumn": 99,
-                        "endOffset": 1964
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 1969,
-                    "endColumn": 81,
-                    "endOffset": 2046
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1969,
-                        "endColumn": 81,
-                        "endOffset": 2046
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2051,
-                    "endColumn": 100,
-                    "endOffset": 2147
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2051,
-                        "endColumn": 100,
-                        "endOffset": 2147
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-es-rUS.json b/android/.build/intermediates/blame/res/debug/multi/values-es-rUS.json
deleted file mode 100644
index 0135e7c10c7a793ba1de3ced48738c20205adb59..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-es-rUS.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 119,
-                    "endOffset": 220
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 119,
-                        "endOffset": 170
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 225,
-                    "endColumn": 107,
-                    "endOffset": 328
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 175,
-                        "endColumn": 107,
-                        "endOffset": 278
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 333,
-                    "endColumn": 122,
-                    "endOffset": 451
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 283,
-                        "endColumn": 122,
-                        "endOffset": 401
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 456,
-                    "endColumn": 108,
-                    "endOffset": 560
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 406,
-                        "endColumn": 108,
-                        "endOffset": 510
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 565,
-                    "endColumn": 107,
-                    "endOffset": 668
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 515,
-                        "endColumn": 107,
-                        "endOffset": 618
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 673,
-                    "endColumn": 84,
-                    "endOffset": 753
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 623,
-                        "endColumn": 84,
-                        "endOffset": 703
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 758,
-                    "endColumn": 100,
-                    "endOffset": 854
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 708,
-                        "endColumn": 100,
-                        "endOffset": 804
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 859,
-                    "endColumn": 122,
-                    "endOffset": 977
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 809,
-                        "endColumn": 122,
-                        "endOffset": 927
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 982,
-                    "endColumn": 84,
-                    "endOffset": 1062
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 932,
-                        "endColumn": 84,
-                        "endOffset": 1012
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1067,
-                    "endColumn": 81,
-                    "endOffset": 1144
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1017,
-                        "endColumn": 81,
-                        "endOffset": 1094
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1149,
-                    "endColumn": 81,
-                    "endOffset": 1226
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1099,
-                        "endColumn": 81,
-                        "endOffset": 1176
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1231,
-                    "endColumn": 111,
-                    "endOffset": 1338
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1181,
-                        "endColumn": 111,
-                        "endOffset": 1288
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1343,
-                    "endColumn": 111,
-                    "endOffset": 1450
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1293,
-                        "endColumn": 111,
-                        "endOffset": 1400
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1455,
-                    "endColumn": 100,
-                    "endOffset": 1551
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1405,
-                        "endColumn": 100,
-                        "endOffset": 1501
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1556,
-                    "endColumn": 107,
-                    "endOffset": 1659
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1506,
-                        "endColumn": 107,
-                        "endOffset": 1609
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1664,
-                    "endColumn": 106,
-                    "endOffset": 1766
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1614,
-                        "endColumn": 106,
-                        "endOffset": 1716
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1771,
-                    "endColumn": 106,
-                    "endOffset": 1873
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1721,
-                        "endColumn": 106,
-                        "endOffset": 1823
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1878,
-                    "endColumn": 121,
-                    "endOffset": 1995
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1828,
-                        "endColumn": 121,
-                        "endOffset": 1945
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 2000,
-                    "endColumn": 99,
-                    "endOffset": 2095
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1950,
-                        "endColumn": 99,
-                        "endOffset": 2045
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2100,
-                    "endColumn": 109,
-                    "endOffset": 2205
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 287,
-                        "endColumn": 105,
-                        "endOffset": 392
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2210,
-                    "endColumn": 197,
-                    "endOffset": 2403
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 393,
-                        "endColumn": 197,
-                        "endOffset": 590
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2408,
-                    "endColumn": 133,
-                    "endOffset": 2537
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 591,
-                        "endColumn": 129,
-                        "endOffset": 720
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2542,
-                    "endColumn": 109,
-                    "endOffset": 2647
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 721,
-                        "endColumn": 105,
-                        "endOffset": 826
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2652,
-                    "endColumn": 219,
-                    "endOffset": 2867
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 827,
-                        "endColumn": 219,
-                        "endOffset": 1046
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2872,
-                    "endColumn": 132,
-                    "endOffset": 3000
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1047,
-                        "endColumn": 128,
-                        "endOffset": 1175
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 3005,
-                    "endColumn": 134,
-                    "endOffset": 3135
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1176,
-                        "endColumn": 130,
-                        "endOffset": 1306
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3140,
-                    "endColumn": 204,
-                    "endOffset": 3340
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 289,
-                        "endColumn": 204,
-                        "endOffset": 493
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3345,
-                    "endColumn": 229,
-                    "endOffset": 3570
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1307,
-                        "endColumn": 229,
-                        "endOffset": 1536
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3575,
-                    "endColumn": 110,
-                    "endOffset": 3681
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1537,
-                        "endColumn": 106,
-                        "endOffset": 1643
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3686,
-                    "endColumn": 200,
-                    "endOffset": 3882
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1644,
-                        "endColumn": 200,
-                        "endOffset": 1844
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3887,
-                    "endColumn": 134,
-                    "endOffset": 4017
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1845,
-                        "endColumn": 130,
-                        "endOffset": 1975
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 4022,
-                    "endColumn": 235,
-                    "endOffset": 4253
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1976,
-                        "endColumn": 235,
-                        "endOffset": 2211
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4258,
-                    "endColumn": 207,
-                    "endOffset": 4461
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2212,
-                        "endColumn": 203,
-                        "endOffset": 2415
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4466,
-                    "endColumn": 99,
-                    "endOffset": 4561
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2416,
-                        "endColumn": 95,
-                        "endOffset": 2511
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4566,
-                    "endColumn": 91,
-                    "endOffset": 4653
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2512,
-                        "endColumn": 87,
-                        "endOffset": 2599
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4658,
-                    "endColumn": 106,
-                    "endOffset": 4760
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2600,
-                        "endColumn": 102,
-                        "endOffset": 2702
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4765,
-                    "endColumn": 81,
-                    "endOffset": 4842
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2050,
-                        "endColumn": 81,
-                        "endOffset": 2127
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4847,
-                    "endColumn": 100,
-                    "endOffset": 4943
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2132,
-                        "endColumn": 100,
-                        "endOffset": 2228
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-es.json b/android/.build/intermediates/blame/res/debug/multi/values-es.json
deleted file mode 100644
index 78ca38676e882b8f8a058a8832fd2b85dd373d66..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-es.json
+++ /dev/null
@@ -1,786 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 116,
-                    "endOffset": 217
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 116,
-                        "endOffset": 167
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 222,
-                    "endColumn": 107,
-                    "endOffset": 325
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 172,
-                        "endColumn": 107,
-                        "endOffset": 275
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 330,
-                    "endColumn": 122,
-                    "endOffset": 448
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 280,
-                        "endColumn": 122,
-                        "endOffset": 398
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 453,
-                    "endColumn": 112,
-                    "endOffset": 561
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 403,
-                        "endColumn": 112,
-                        "endOffset": 511
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 566,
-                    "endColumn": 107,
-                    "endOffset": 669
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 516,
-                        "endColumn": 107,
-                        "endOffset": 619
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 674,
-                    "endColumn": 84,
-                    "endOffset": 754
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 624,
-                        "endColumn": 84,
-                        "endOffset": 704
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 759,
-                    "endColumn": 100,
-                    "endOffset": 855
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 709,
-                        "endColumn": 100,
-                        "endOffset": 805
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 860,
-                    "endColumn": 127,
-                    "endOffset": 983
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 810,
-                        "endColumn": 127,
-                        "endOffset": 933
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 988,
-                    "endColumn": 75,
-                    "endOffset": 1059
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 938,
-                        "endColumn": 75,
-                        "endOffset": 1009
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1064,
-                    "endColumn": 75,
-                    "endOffset": 1135
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1014,
-                        "endColumn": 75,
-                        "endOffset": 1085
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1140,
-                    "endColumn": 81,
-                    "endOffset": 1217
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1090,
-                        "endColumn": 81,
-                        "endOffset": 1167
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1222,
-                    "endColumn": 106,
-                    "endOffset": 1324
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1172,
-                        "endColumn": 106,
-                        "endOffset": 1274
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1329,
-                    "endColumn": 99,
-                    "endOffset": 1424
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1279,
-                        "endColumn": 99,
-                        "endOffset": 1374
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1429,
-                    "endColumn": 98,
-                    "endOffset": 1523
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1379,
-                        "endColumn": 98,
-                        "endOffset": 1473
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1528,
-                    "endColumn": 107,
-                    "endOffset": 1631
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1478,
-                        "endColumn": 107,
-                        "endOffset": 1581
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1636,
-                    "endColumn": 106,
-                    "endOffset": 1738
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1586,
-                        "endColumn": 106,
-                        "endOffset": 1688
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1743,
-                    "endColumn": 106,
-                    "endOffset": 1845
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1693,
-                        "endColumn": 106,
-                        "endOffset": 1795
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1850,
-                    "endColumn": 121,
-                    "endOffset": 1967
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1800,
-                        "endColumn": 121,
-                        "endOffset": 1917
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1972,
-                    "endColumn": 99,
-                    "endOffset": 2067
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1922,
-                        "endColumn": 99,
-                        "endOffset": 2017
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2072,
-                    "endColumn": 109,
-                    "endOffset": 2177
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 105,
-                        "endOffset": 388
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2182,
-                    "endColumn": 194,
-                    "endOffset": 2372
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 389,
-                        "endColumn": 194,
-                        "endOffset": 583
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2377,
-                    "endColumn": 132,
-                    "endOffset": 2505
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 584,
-                        "endColumn": 128,
-                        "endOffset": 712
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2510,
-                    "endColumn": 109,
-                    "endOffset": 2615
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 713,
-                        "endColumn": 105,
-                        "endOffset": 818
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2620,
-                    "endColumn": 219,
-                    "endOffset": 2835
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 819,
-                        "endColumn": 219,
-                        "endOffset": 1038
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2840,
-                    "endColumn": 134,
-                    "endOffset": 2970
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1039,
-                        "endColumn": 130,
-                        "endOffset": 1169
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2975,
-                    "endColumn": 138,
-                    "endOffset": 3109
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1170,
-                        "endColumn": 134,
-                        "endOffset": 1304
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3114,
-                    "endColumn": 218,
-                    "endOffset": 3328
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 218,
-                        "endOffset": 503
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3333,
-                    "endColumn": 250,
-                    "endOffset": 3579
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1305,
-                        "endColumn": 250,
-                        "endOffset": 1555
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3584,
-                    "endColumn": 110,
-                    "endOffset": 3690
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1556,
-                        "endColumn": 106,
-                        "endOffset": 1662
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3695,
-                    "endColumn": 195,
-                    "endOffset": 3886
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1663,
-                        "endColumn": 195,
-                        "endOffset": 1858
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3891,
-                    "endColumn": 133,
-                    "endOffset": 4020
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1859,
-                        "endColumn": 129,
-                        "endOffset": 1988
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 4025,
-                    "endColumn": 223,
-                    "endOffset": 4244
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1989,
-                        "endColumn": 223,
-                        "endOffset": 2212
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4249,
-                    "endColumn": 186,
-                    "endOffset": 4431
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2213,
-                        "endColumn": 182,
-                        "endOffset": 2395
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4436,
-                    "endColumn": 96,
-                    "endOffset": 4528
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2396,
-                        "endColumn": 92,
-                        "endOffset": 2488
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4533,
-                    "endColumn": 98,
-                    "endOffset": 4627
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2489,
-                        "endColumn": 94,
-                        "endOffset": 2583
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4632,
-                    "endColumn": 113,
-                    "endOffset": 4741
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2584,
-                        "endColumn": 109,
-                        "endOffset": 2693
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4746,
-                    "endColumn": 110,
-                    "endOffset": 4852
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-es/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 278,
-                        "endColumn": 110,
-                        "endOffset": 384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4857,
-                    "endColumn": 106,
-                    "endOffset": 4959
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-es/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 171,
-                        "endColumn": 106,
-                        "endOffset": 273
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 4964,
-                    "endColumn": 115,
-                    "endOffset": 5075
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-es/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 115,
-                        "endOffset": 166
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 41,
-                    "startColumn": 4,
-                    "startOffset": 5080,
-                    "endColumn": 81,
-                    "endOffset": 5157
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2022,
-                        "endColumn": 81,
-                        "endOffset": 2099
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 5162,
-                    "endColumn": 100,
-                    "endOffset": 5258
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2104,
-                        "endColumn": 100,
-                        "endOffset": 2200
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-et-rEE.json b/android/.build/intermediates/blame/res/debug/multi/values-et-rEE.json
deleted file mode 100644
index aa646365b77b29788c7170b37758f1285844297b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-et-rEE.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 116,
-                    "endOffset": 167
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 116,
-                        "endOffset": 167
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 172,
-                    "endColumn": 107,
-                    "endOffset": 275
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 172,
-                        "endColumn": 107,
-                        "endOffset": 275
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 280,
-                    "endColumn": 122,
-                    "endOffset": 398
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 280,
-                        "endColumn": 122,
-                        "endOffset": 398
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 403,
-                    "endColumn": 106,
-                    "endOffset": 505
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 403,
-                        "endColumn": 106,
-                        "endOffset": 505
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 510,
-                    "endColumn": 110,
-                    "endOffset": 616
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 510,
-                        "endColumn": 110,
-                        "endOffset": 616
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 621,
-                    "endColumn": 85,
-                    "endOffset": 702
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 621,
-                        "endColumn": 85,
-                        "endOffset": 702
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 707,
-                    "endColumn": 101,
-                    "endOffset": 804
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 707,
-                        "endColumn": 101,
-                        "endOffset": 804
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 809,
-                    "endColumn": 116,
-                    "endOffset": 921
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 809,
-                        "endColumn": 116,
-                        "endOffset": 921
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 926,
-                    "endColumn": 79,
-                    "endOffset": 1001
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 926,
-                        "endColumn": 79,
-                        "endOffset": 1001
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1006,
-                    "endColumn": 77,
-                    "endOffset": 1079
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1006,
-                        "endColumn": 77,
-                        "endOffset": 1079
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1084,
-                    "endColumn": 82,
-                    "endOffset": 1162
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1084,
-                        "endColumn": 82,
-                        "endOffset": 1162
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1167,
-                    "endColumn": 110,
-                    "endOffset": 1273
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1167,
-                        "endColumn": 110,
-                        "endOffset": 1273
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1278,
-                    "endColumn": 104,
-                    "endOffset": 1378
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1278,
-                        "endColumn": 104,
-                        "endOffset": 1378
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1383,
-                    "endColumn": 98,
-                    "endOffset": 1477
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1383,
-                        "endColumn": 98,
-                        "endOffset": 1477
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1482,
-                    "endColumn": 109,
-                    "endOffset": 1587
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1482,
-                        "endColumn": 109,
-                        "endOffset": 1587
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1592,
-                    "endColumn": 100,
-                    "endOffset": 1688
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1592,
-                        "endColumn": 100,
-                        "endOffset": 1688
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1693,
-                    "endColumn": 102,
-                    "endOffset": 1791
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1693,
-                        "endColumn": 102,
-                        "endOffset": 1791
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1796,
-                    "endColumn": 127,
-                    "endOffset": 1919
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1796,
-                        "endColumn": 127,
-                        "endOffset": 1919
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1924,
-                    "endColumn": 101,
-                    "endOffset": 2021
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1924,
-                        "endColumn": 101,
-                        "endOffset": 2021
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2026,
-                    "endColumn": 81,
-                    "endOffset": 2103
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2026,
-                        "endColumn": 81,
-                        "endOffset": 2103
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2108,
-                    "endColumn": 100,
-                    "endOffset": 2204
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2108,
-                        "endColumn": 100,
-                        "endOffset": 2204
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-et.json b/android/.build/intermediates/blame/res/debug/multi/values-et.json
deleted file mode 100644
index 69fa287fddd271aab3a570a6519a8229f408a494..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-et.json
+++ /dev/null
@@ -1,387 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-et/values-et.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 104,
-                    "endOffset": 205
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 100,
-                        "endOffset": 383
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 210,
-                    "endColumn": 193,
-                    "endOffset": 399
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 384,
-                        "endColumn": 193,
-                        "endOffset": 577
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 404,
-                    "endColumn": 128,
-                    "endOffset": 528
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 578,
-                        "endColumn": 124,
-                        "endOffset": 702
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 533,
-                    "endColumn": 109,
-                    "endOffset": 638
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 703,
-                        "endColumn": 105,
-                        "endOffset": 808
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 643,
-                    "endColumn": 208,
-                    "endOffset": 847
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 809,
-                        "endColumn": 208,
-                        "endOffset": 1017
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 852,
-                    "endColumn": 130,
-                    "endOffset": 978
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1018,
-                        "endColumn": 126,
-                        "endOffset": 1144
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 983,
-                    "endColumn": 131,
-                    "endOffset": 1110
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1145,
-                        "endColumn": 127,
-                        "endOffset": 1272
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1115,
-                    "endColumn": 198,
-                    "endOffset": 1309
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 198,
-                        "endOffset": 483
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1314,
-                    "endColumn": 218,
-                    "endOffset": 1528
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1273,
-                        "endColumn": 218,
-                        "endOffset": 1491
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1533,
-                    "endColumn": 109,
-                    "endOffset": 1638
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1492,
-                        "endColumn": 105,
-                        "endOffset": 1597
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1643,
-                    "endColumn": 194,
-                    "endOffset": 1833
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1598,
-                        "endColumn": 194,
-                        "endOffset": 1792
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1838,
-                    "endColumn": 133,
-                    "endOffset": 1967
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1793,
-                        "endColumn": 129,
-                        "endOffset": 1922
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1972,
-                    "endColumn": 213,
-                    "endOffset": 2181
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1923,
-                        "endColumn": 213,
-                        "endOffset": 2136
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2186,
-                    "endColumn": 174,
-                    "endOffset": 2356
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2137,
-                        "endColumn": 170,
-                        "endOffset": 2307
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2361,
-                    "endColumn": 92,
-                    "endOffset": 2449
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2308,
-                        "endColumn": 88,
-                        "endOffset": 2396
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2454,
-                    "endColumn": 94,
-                    "endOffset": 2544
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2397,
-                        "endColumn": 90,
-                        "endOffset": 2487
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2549,
-                    "endColumn": 116,
-                    "endOffset": 2661
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2488,
-                        "endColumn": 112,
-                        "endOffset": 2600
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 2666,
-                    "endColumn": 102,
-                    "endOffset": 2764
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-et/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 278,
-                        "endColumn": 102,
-                        "endOffset": 376
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 2769,
-                    "endColumn": 109,
-                    "endOffset": 2874
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-et/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 168,
-                        "endColumn": 109,
-                        "endOffset": 273
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2879,
-                    "endColumn": 112,
-                    "endOffset": 2987
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-et/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 112,
-                        "endOffset": 163
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-eu-rES.json b/android/.build/intermediates/blame/res/debug/multi/values-eu-rES.json
deleted file mode 100644
index 21a85368bd1449325af9965dd84554d70ad9a53a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-eu-rES.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 108,
-                    "endOffset": 159
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 108,
-                        "endOffset": 159
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 164,
-                    "endColumn": 107,
-                    "endOffset": 267
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 164,
-                        "endColumn": 107,
-                        "endOffset": 267
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 272,
-                    "endColumn": 122,
-                    "endOffset": 390
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 272,
-                        "endColumn": 122,
-                        "endOffset": 390
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 395,
-                    "endColumn": 97,
-                    "endOffset": 488
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 395,
-                        "endColumn": 97,
-                        "endOffset": 488
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 493,
-                    "endColumn": 109,
-                    "endOffset": 598
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 493,
-                        "endColumn": 109,
-                        "endOffset": 598
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 603,
-                    "endColumn": 85,
-                    "endOffset": 684
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 603,
-                        "endColumn": 85,
-                        "endOffset": 684
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 689,
-                    "endColumn": 105,
-                    "endOffset": 790
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 689,
-                        "endColumn": 105,
-                        "endOffset": 790
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 795,
-                    "endColumn": 123,
-                    "endOffset": 914
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 795,
-                        "endColumn": 123,
-                        "endOffset": 914
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 919,
-                    "endColumn": 86,
-                    "endOffset": 1001
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 919,
-                        "endColumn": 86,
-                        "endOffset": 1001
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1006,
-                    "endColumn": 83,
-                    "endOffset": 1085
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1006,
-                        "endColumn": 83,
-                        "endOffset": 1085
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1090,
-                    "endColumn": 81,
-                    "endOffset": 1167
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1090,
-                        "endColumn": 81,
-                        "endOffset": 1167
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1172,
-                    "endColumn": 108,
-                    "endOffset": 1276
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1172,
-                        "endColumn": 108,
-                        "endOffset": 1276
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1281,
-                    "endColumn": 109,
-                    "endOffset": 1386
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1281,
-                        "endColumn": 109,
-                        "endOffset": 1386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1391,
-                    "endColumn": 98,
-                    "endOffset": 1485
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1391,
-                        "endColumn": 98,
-                        "endOffset": 1485
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1490,
-                    "endColumn": 108,
-                    "endOffset": 1594
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1490,
-                        "endColumn": 108,
-                        "endOffset": 1594
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1599,
-                    "endColumn": 112,
-                    "endOffset": 1707
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1599,
-                        "endColumn": 112,
-                        "endOffset": 1707
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1712,
-                    "endColumn": 110,
-                    "endOffset": 1818
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1712,
-                        "endColumn": 110,
-                        "endOffset": 1818
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1823,
-                    "endColumn": 136,
-                    "endOffset": 1955
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1823,
-                        "endColumn": 136,
-                        "endOffset": 1955
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1960,
-                    "endColumn": 98,
-                    "endOffset": 2054
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1960,
-                        "endColumn": 98,
-                        "endOffset": 2054
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2059,
-                    "endColumn": 81,
-                    "endOffset": 2136
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2059,
-                        "endColumn": 81,
-                        "endOffset": 2136
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2141,
-                    "endColumn": 100,
-                    "endOffset": 2237
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2141,
-                        "endColumn": 100,
-                        "endOffset": 2237
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-eu.json b/android/.build/intermediates/blame/res/debug/multi/values-eu.json
deleted file mode 100644
index 8315bea2ae18206bc18e557fb45d85b5c604537d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-eu.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu/values-eu.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 105,
-                    "endOffset": 206
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 101,
-                        "endOffset": 384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 211,
-                    "endColumn": 207,
-                    "endOffset": 414
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 385,
-                        "endColumn": 207,
-                        "endOffset": 592
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 419,
-                    "endColumn": 127,
-                    "endOffset": 542
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 593,
-                        "endColumn": 123,
-                        "endOffset": 716
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 547,
-                    "endColumn": 110,
-                    "endOffset": 653
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 717,
-                        "endColumn": 106,
-                        "endOffset": 823
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 658,
-                    "endColumn": 205,
-                    "endOffset": 859
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 824,
-                        "endColumn": 205,
-                        "endOffset": 1029
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 864,
-                    "endColumn": 128,
-                    "endOffset": 988
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1030,
-                        "endColumn": 124,
-                        "endOffset": 1154
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 993,
-                    "endColumn": 135,
-                    "endOffset": 1124
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1155,
-                        "endColumn": 131,
-                        "endOffset": 1286
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1129,
-                    "endColumn": 200,
-                    "endOffset": 1325
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 200,
-                        "endOffset": 485
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1330,
-                    "endColumn": 242,
-                    "endOffset": 1568
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1287,
-                        "endColumn": 242,
-                        "endOffset": 1529
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1573,
-                    "endColumn": 109,
-                    "endOffset": 1678
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1530,
-                        "endColumn": 105,
-                        "endOffset": 1635
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1683,
-                    "endColumn": 197,
-                    "endOffset": 1876
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1636,
-                        "endColumn": 197,
-                        "endOffset": 1833
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1881,
-                    "endColumn": 131,
-                    "endOffset": 2008
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1834,
-                        "endColumn": 127,
-                        "endOffset": 1961
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 2013,
-                    "endColumn": 226,
-                    "endOffset": 2235
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1962,
-                        "endColumn": 226,
-                        "endOffset": 2188
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2240,
-                    "endColumn": 188,
-                    "endOffset": 2424
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2189,
-                        "endColumn": 184,
-                        "endOffset": 2373
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2429,
-                    "endColumn": 95,
-                    "endOffset": 2520
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2374,
-                        "endColumn": 91,
-                        "endOffset": 2465
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2525,
-                    "endColumn": 94,
-                    "endOffset": 2615
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2466,
-                        "endColumn": 90,
-                        "endOffset": 2556
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2620,
-                    "endColumn": 107,
-                    "endOffset": 2723
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2557,
-                        "endColumn": 103,
-                        "endOffset": 2660
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-fa.json b/android/.build/intermediates/blame/res/debug/multi/values-fa.json
deleted file mode 100644
index a6c1a458ce0022a20d6fbff13f14b6589ea8c85e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-fa.json
+++ /dev/null
@@ -1,786 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 109,
-                    "endOffset": 210
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 109,
-                        "endOffset": 160
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 215,
-                    "endColumn": 109,
-                    "endOffset": 320
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 165,
-                        "endColumn": 109,
-                        "endOffset": 270
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 325,
-                    "endColumn": 125,
-                    "endOffset": 446
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 275,
-                        "endColumn": 125,
-                        "endOffset": 396
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 451,
-                    "endColumn": 102,
-                    "endOffset": 549
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 401,
-                        "endColumn": 102,
-                        "endOffset": 499
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 554,
-                    "endColumn": 110,
-                    "endOffset": 660
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 504,
-                        "endColumn": 110,
-                        "endOffset": 610
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 665,
-                    "endColumn": 83,
-                    "endOffset": 744
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 615,
-                        "endColumn": 83,
-                        "endOffset": 694
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 749,
-                    "endColumn": 102,
-                    "endOffset": 847
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 699,
-                        "endColumn": 102,
-                        "endOffset": 797
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 852,
-                    "endColumn": 114,
-                    "endOffset": 962
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 802,
-                        "endColumn": 114,
-                        "endOffset": 912
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 967,
-                    "endColumn": 78,
-                    "endOffset": 1041
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 917,
-                        "endColumn": 78,
-                        "endOffset": 991
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1046,
-                    "endColumn": 77,
-                    "endOffset": 1119
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 996,
-                        "endColumn": 77,
-                        "endOffset": 1069
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1124,
-                    "endColumn": 80,
-                    "endOffset": 1200
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1074,
-                        "endColumn": 80,
-                        "endOffset": 1150
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1205,
-                    "endColumn": 111,
-                    "endOffset": 1312
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1155,
-                        "endColumn": 111,
-                        "endOffset": 1262
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1317,
-                    "endColumn": 102,
-                    "endOffset": 1415
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1267,
-                        "endColumn": 102,
-                        "endOffset": 1365
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1420,
-                    "endColumn": 97,
-                    "endOffset": 1513
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1370,
-                        "endColumn": 97,
-                        "endOffset": 1463
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1518,
-                    "endColumn": 109,
-                    "endOffset": 1623
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1468,
-                        "endColumn": 109,
-                        "endOffset": 1573
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1628,
-                    "endColumn": 102,
-                    "endOffset": 1726
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1578,
-                        "endColumn": 102,
-                        "endOffset": 1676
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1731,
-                    "endColumn": 108,
-                    "endOffset": 1835
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1681,
-                        "endColumn": 108,
-                        "endOffset": 1785
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1840,
-                    "endColumn": 124,
-                    "endOffset": 1960
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1790,
-                        "endColumn": 124,
-                        "endOffset": 1910
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1965,
-                    "endColumn": 100,
-                    "endOffset": 2061
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1915,
-                        "endColumn": 100,
-                        "endOffset": 2011
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2066,
-                    "endColumn": 109,
-                    "endOffset": 2171
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 105,
-                        "endOffset": 388
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2176,
-                    "endColumn": 190,
-                    "endOffset": 2362
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 389,
-                        "endColumn": 190,
-                        "endOffset": 579
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2367,
-                    "endColumn": 132,
-                    "endOffset": 2495
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 580,
-                        "endColumn": 128,
-                        "endOffset": 708
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2500,
-                    "endColumn": 104,
-                    "endOffset": 2600
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 709,
-                        "endColumn": 100,
-                        "endOffset": 809
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2605,
-                    "endColumn": 198,
-                    "endOffset": 2799
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 810,
-                        "endColumn": 198,
-                        "endOffset": 1008
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2804,
-                    "endColumn": 129,
-                    "endOffset": 2929
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1009,
-                        "endColumn": 125,
-                        "endOffset": 1134
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2934,
-                    "endColumn": 130,
-                    "endOffset": 3060
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1135,
-                        "endColumn": 126,
-                        "endOffset": 1261
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3065,
-                    "endColumn": 213,
-                    "endOffset": 3274
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 213,
-                        "endOffset": 498
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3279,
-                    "endColumn": 211,
-                    "endOffset": 3486
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1262,
-                        "endColumn": 211,
-                        "endOffset": 1473
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3491,
-                    "endColumn": 111,
-                    "endOffset": 3598
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1474,
-                        "endColumn": 107,
-                        "endOffset": 1581
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3603,
-                    "endColumn": 202,
-                    "endOffset": 3801
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1582,
-                        "endColumn": 202,
-                        "endOffset": 1784
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3806,
-                    "endColumn": 134,
-                    "endOffset": 3936
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1785,
-                        "endColumn": 130,
-                        "endOffset": 1915
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3941,
-                    "endColumn": 213,
-                    "endOffset": 4150
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1916,
-                        "endColumn": 213,
-                        "endOffset": 2129
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4155,
-                    "endColumn": 187,
-                    "endOffset": 4338
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2130,
-                        "endColumn": 183,
-                        "endOffset": 2313
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4343,
-                    "endColumn": 95,
-                    "endOffset": 4434
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2314,
-                        "endColumn": 91,
-                        "endOffset": 2405
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4439,
-                    "endColumn": 97,
-                    "endOffset": 4532
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2406,
-                        "endColumn": 93,
-                        "endOffset": 2499
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4537,
-                    "endColumn": 113,
-                    "endOffset": 4646
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2500,
-                        "endColumn": 109,
-                        "endOffset": 2609
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4651,
-                    "endColumn": 113,
-                    "endOffset": 4760
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-fa/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 289,
-                        "endColumn": 113,
-                        "endOffset": 398
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4765,
-                    "endColumn": 123,
-                    "endOffset": 4884
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-fa/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 165,
-                        "endColumn": 123,
-                        "endOffset": 284
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 4889,
-                    "endColumn": 109,
-                    "endOffset": 4994
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-fa/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 109,
-                        "endOffset": 160
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 41,
-                    "startColumn": 4,
-                    "startOffset": 4999,
-                    "endColumn": 80,
-                    "endOffset": 5075
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2016,
-                        "endColumn": 80,
-                        "endOffset": 2092
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 5080,
-                    "endColumn": 100,
-                    "endOffset": 5176
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2097,
-                        "endColumn": 100,
-                        "endOffset": 2193
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-fi.json b/android/.build/intermediates/blame/res/debug/multi/values-fi.json
deleted file mode 100644
index b5941c9302ae6f3afedf29bab7608baeabf51fa9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-fi.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 107,
-                    "endOffset": 208
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 107,
-                        "endOffset": 158
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 213,
-                    "endColumn": 107,
-                    "endOffset": 316
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 163,
-                        "endColumn": 107,
-                        "endOffset": 266
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 321,
-                    "endColumn": 122,
-                    "endOffset": 439
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 271,
-                        "endColumn": 122,
-                        "endOffset": 389
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 444,
-                    "endColumn": 99,
-                    "endOffset": 539
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 394,
-                        "endColumn": 99,
-                        "endOffset": 489
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 544,
-                    "endColumn": 100,
-                    "endOffset": 640
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 494,
-                        "endColumn": 100,
-                        "endOffset": 590
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 645,
-                    "endColumn": 85,
-                    "endOffset": 726
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 595,
-                        "endColumn": 85,
-                        "endOffset": 676
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 731,
-                    "endColumn": 104,
-                    "endOffset": 831
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 681,
-                        "endColumn": 104,
-                        "endOffset": 781
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 836,
-                    "endColumn": 117,
-                    "endOffset": 949
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 786,
-                        "endColumn": 117,
-                        "endOffset": 899
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 954,
-                    "endColumn": 86,
-                    "endOffset": 1036
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 904,
-                        "endColumn": 86,
-                        "endOffset": 986
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1041,
-                    "endColumn": 81,
-                    "endOffset": 1118
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 991,
-                        "endColumn": 81,
-                        "endOffset": 1068
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1123,
-                    "endColumn": 79,
-                    "endOffset": 1198
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1073,
-                        "endColumn": 79,
-                        "endOffset": 1148
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1203,
-                    "endColumn": 106,
-                    "endOffset": 1305
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1153,
-                        "endColumn": 106,
-                        "endOffset": 1255
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1310,
-                    "endColumn": 102,
-                    "endOffset": 1408
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1260,
-                        "endColumn": 102,
-                        "endOffset": 1358
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1413,
-                    "endColumn": 96,
-                    "endOffset": 1505
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1363,
-                        "endColumn": 96,
-                        "endOffset": 1455
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1510,
-                    "endColumn": 105,
-                    "endOffset": 1611
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1460,
-                        "endColumn": 105,
-                        "endOffset": 1561
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1616,
-                    "endColumn": 98,
-                    "endOffset": 1710
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1566,
-                        "endColumn": 98,
-                        "endOffset": 1660
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1715,
-                    "endColumn": 103,
-                    "endOffset": 1814
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1665,
-                        "endColumn": 103,
-                        "endOffset": 1764
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1819,
-                    "endColumn": 118,
-                    "endOffset": 1933
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1769,
-                        "endColumn": 118,
-                        "endOffset": 1883
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1938,
-                    "endColumn": 98,
-                    "endOffset": 2032
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1888,
-                        "endColumn": 98,
-                        "endOffset": 1982
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2037,
-                    "endColumn": 112,
-                    "endOffset": 2145
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 108,
-                        "endOffset": 391
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2150,
-                    "endColumn": 184,
-                    "endOffset": 2330
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 392,
-                        "endColumn": 184,
-                        "endOffset": 576
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2335,
-                    "endColumn": 132,
-                    "endOffset": 2463
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 577,
-                        "endColumn": 128,
-                        "endOffset": 705
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2468,
-                    "endColumn": 107,
-                    "endOffset": 2571
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 706,
-                        "endColumn": 103,
-                        "endOffset": 809
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2576,
-                    "endColumn": 201,
-                    "endOffset": 2773
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 810,
-                        "endColumn": 201,
-                        "endOffset": 1011
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2778,
-                    "endColumn": 127,
-                    "endOffset": 2901
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1012,
-                        "endColumn": 123,
-                        "endOffset": 1135
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2906,
-                    "endColumn": 135,
-                    "endOffset": 3037
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1136,
-                        "endColumn": 131,
-                        "endOffset": 1267
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3042,
-                    "endColumn": 208,
-                    "endOffset": 3246
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 208,
-                        "endOffset": 493
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3251,
-                    "endColumn": 199,
-                    "endOffset": 3446
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1268,
-                        "endColumn": 199,
-                        "endOffset": 1467
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3451,
-                    "endColumn": 107,
-                    "endOffset": 3554
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1468,
-                        "endColumn": 103,
-                        "endOffset": 1571
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3559,
-                    "endColumn": 179,
-                    "endOffset": 3734
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1572,
-                        "endColumn": 179,
-                        "endOffset": 1751
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3739,
-                    "endColumn": 127,
-                    "endOffset": 3862
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1752,
-                        "endColumn": 123,
-                        "endOffset": 1875
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3867,
-                    "endColumn": 206,
-                    "endOffset": 4069
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1876,
-                        "endColumn": 206,
-                        "endOffset": 2082
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4074,
-                    "endColumn": 168,
-                    "endOffset": 4238
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2083,
-                        "endColumn": 164,
-                        "endOffset": 2247
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4243,
-                    "endColumn": 95,
-                    "endOffset": 4334
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2248,
-                        "endColumn": 91,
-                        "endOffset": 2339
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4339,
-                    "endColumn": 99,
-                    "endOffset": 4434
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2340,
-                        "endColumn": 95,
-                        "endOffset": 2435
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4439,
-                    "endColumn": 111,
-                    "endOffset": 4546
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2436,
-                        "endColumn": 107,
-                        "endOffset": 2543
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4551,
-                    "endColumn": 79,
-                    "endOffset": 4626
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1987,
-                        "endColumn": 79,
-                        "endOffset": 2062
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4631,
-                    "endColumn": 100,
-                    "endOffset": 4727
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2067,
-                        "endColumn": 100,
-                        "endOffset": 2163
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-fr-rCA.json b/android/.build/intermediates/blame/res/debug/multi/values-fr-rCA.json
deleted file mode 100644
index 40e5c08404eec8e9f4b885f827a0eeaee0840444..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-fr-rCA.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 110,
-                    "endOffset": 211
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 110,
-                        "endOffset": 161
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 216,
-                    "endColumn": 107,
-                    "endOffset": 319
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 166,
-                        "endColumn": 107,
-                        "endOffset": 269
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 324,
-                    "endColumn": 122,
-                    "endOffset": 442
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 274,
-                        "endColumn": 122,
-                        "endOffset": 392
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 447,
-                    "endColumn": 114,
-                    "endOffset": 557
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 397,
-                        "endColumn": 114,
-                        "endOffset": 507
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 562,
-                    "endColumn": 110,
-                    "endOffset": 668
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 512,
-                        "endColumn": 110,
-                        "endOffset": 618
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 673,
-                    "endColumn": 86,
-                    "endOffset": 755
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 623,
-                        "endColumn": 86,
-                        "endOffset": 705
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 760,
-                    "endColumn": 115,
-                    "endOffset": 871
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 710,
-                        "endColumn": 115,
-                        "endOffset": 821
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 876,
-                    "endColumn": 129,
-                    "endOffset": 1001
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 826,
-                        "endColumn": 129,
-                        "endOffset": 951
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1006,
-                    "endColumn": 82,
-                    "endOffset": 1084
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 956,
-                        "endColumn": 82,
-                        "endOffset": 1034
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1089,
-                    "endColumn": 79,
-                    "endOffset": 1164
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1039,
-                        "endColumn": 79,
-                        "endOffset": 1114
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1169,
-                    "endColumn": 95,
-                    "endOffset": 1260
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1119,
-                        "endColumn": 95,
-                        "endOffset": 1210
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1265,
-                    "endColumn": 109,
-                    "endOffset": 1370
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1215,
-                        "endColumn": 109,
-                        "endOffset": 1320
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1375,
-                    "endColumn": 111,
-                    "endOffset": 1482
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1325,
-                        "endColumn": 111,
-                        "endOffset": 1432
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1487,
-                    "endColumn": 102,
-                    "endOffset": 1585
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1437,
-                        "endColumn": 102,
-                        "endOffset": 1535
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1590,
-                    "endColumn": 110,
-                    "endOffset": 1696
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1540,
-                        "endColumn": 110,
-                        "endOffset": 1646
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1701,
-                    "endColumn": 106,
-                    "endOffset": 1803
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1651,
-                        "endColumn": 106,
-                        "endOffset": 1753
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1808,
-                    "endColumn": 101,
-                    "endOffset": 1905
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1758,
-                        "endColumn": 101,
-                        "endOffset": 1855
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1910,
-                    "endColumn": 121,
-                    "endOffset": 2027
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1860,
-                        "endColumn": 121,
-                        "endOffset": 1977
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 2032,
-                    "endColumn": 98,
-                    "endOffset": 2126
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1982,
-                        "endColumn": 98,
-                        "endOffset": 2076
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2131,
-                    "endColumn": 107,
-                    "endOffset": 2234
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 287,
-                        "endColumn": 103,
-                        "endOffset": 390
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2239,
-                    "endColumn": 211,
-                    "endOffset": 2446
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 391,
-                        "endColumn": 211,
-                        "endOffset": 602
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2451,
-                    "endColumn": 131,
-                    "endOffset": 2578
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 603,
-                        "endColumn": 127,
-                        "endOffset": 730
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2583,
-                    "endColumn": 110,
-                    "endOffset": 2689
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 731,
-                        "endColumn": 106,
-                        "endOffset": 837
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2694,
-                    "endColumn": 229,
-                    "endOffset": 2919
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 838,
-                        "endColumn": 229,
-                        "endOffset": 1067
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2924,
-                    "endColumn": 134,
-                    "endOffset": 3054
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1068,
-                        "endColumn": 130,
-                        "endOffset": 1198
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 3059,
-                    "endColumn": 141,
-                    "endOffset": 3196
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1199,
-                        "endColumn": 137,
-                        "endOffset": 1336
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3201,
-                    "endColumn": 219,
-                    "endOffset": 3416
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 289,
-                        "endColumn": 219,
-                        "endOffset": 508
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3421,
-                    "endColumn": 253,
-                    "endOffset": 3670
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1337,
-                        "endColumn": 253,
-                        "endOffset": 1590
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3675,
-                    "endColumn": 113,
-                    "endOffset": 3784
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1591,
-                        "endColumn": 109,
-                        "endOffset": 1700
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3789,
-                    "endColumn": 215,
-                    "endOffset": 4000
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1701,
-                        "endColumn": 215,
-                        "endOffset": 1916
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 4005,
-                    "endColumn": 137,
-                    "endOffset": 4138
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1917,
-                        "endColumn": 133,
-                        "endOffset": 2050
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 4143,
-                    "endColumn": 218,
-                    "endOffset": 4357
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 2051,
-                        "endColumn": 218,
-                        "endOffset": 2269
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4362,
-                    "endColumn": 208,
-                    "endOffset": 4566
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2270,
-                        "endColumn": 204,
-                        "endOffset": 2474
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4571,
-                    "endColumn": 102,
-                    "endOffset": 4669
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2475,
-                        "endColumn": 98,
-                        "endOffset": 2573
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4674,
-                    "endColumn": 93,
-                    "endOffset": 4763
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2574,
-                        "endColumn": 89,
-                        "endOffset": 2663
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4768,
-                    "endColumn": 112,
-                    "endOffset": 4876
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2664,
-                        "endColumn": 108,
-                        "endOffset": 2772
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4881,
-                    "endColumn": 85,
-                    "endOffset": 4962
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2081,
-                        "endColumn": 85,
-                        "endOffset": 2162
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4967,
-                    "endColumn": 100,
-                    "endOffset": 5063
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2167,
-                        "endColumn": 100,
-                        "endOffset": 2263
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-fr.json b/android/.build/intermediates/blame/res/debug/multi/values-fr.json
deleted file mode 100644
index 4df8583ccb3c40222bd36d5190c52c7e0528deac..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-fr.json
+++ /dev/null
@@ -1,786 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 110,
-                    "endOffset": 211
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 110,
-                        "endOffset": 161
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 216,
-                    "endColumn": 107,
-                    "endOffset": 319
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 166,
-                        "endColumn": 107,
-                        "endOffset": 269
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 324,
-                    "endColumn": 122,
-                    "endOffset": 442
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 274,
-                        "endColumn": 122,
-                        "endOffset": 392
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 447,
-                    "endColumn": 114,
-                    "endOffset": 557
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 397,
-                        "endColumn": 114,
-                        "endOffset": 507
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 562,
-                    "endColumn": 110,
-                    "endOffset": 668
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 512,
-                        "endColumn": 110,
-                        "endOffset": 618
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 673,
-                    "endColumn": 81,
-                    "endOffset": 750
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 623,
-                        "endColumn": 81,
-                        "endOffset": 700
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 755,
-                    "endColumn": 105,
-                    "endOffset": 856
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 705,
-                        "endColumn": 105,
-                        "endOffset": 806
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 861,
-                    "endColumn": 129,
-                    "endOffset": 986
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 811,
-                        "endColumn": 129,
-                        "endOffset": 936
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 991,
-                    "endColumn": 82,
-                    "endOffset": 1069
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 941,
-                        "endColumn": 82,
-                        "endOffset": 1019
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1074,
-                    "endColumn": 79,
-                    "endOffset": 1149
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1024,
-                        "endColumn": 79,
-                        "endOffset": 1099
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1154,
-                    "endColumn": 85,
-                    "endOffset": 1235
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1104,
-                        "endColumn": 85,
-                        "endOffset": 1185
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1240,
-                    "endColumn": 109,
-                    "endOffset": 1345
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1190,
-                        "endColumn": 109,
-                        "endOffset": 1295
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1350,
-                    "endColumn": 111,
-                    "endOffset": 1457
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1300,
-                        "endColumn": 111,
-                        "endOffset": 1407
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1462,
-                    "endColumn": 102,
-                    "endOffset": 1560
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1412,
-                        "endColumn": 102,
-                        "endOffset": 1510
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1565,
-                    "endColumn": 110,
-                    "endOffset": 1671
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1515,
-                        "endColumn": 110,
-                        "endOffset": 1621
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1676,
-                    "endColumn": 106,
-                    "endOffset": 1778
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1626,
-                        "endColumn": 106,
-                        "endOffset": 1728
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1783,
-                    "endColumn": 106,
-                    "endOffset": 1885
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1733,
-                        "endColumn": 106,
-                        "endOffset": 1835
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1890,
-                    "endColumn": 121,
-                    "endOffset": 2007
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1840,
-                        "endColumn": 121,
-                        "endOffset": 1957
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 2012,
-                    "endColumn": 98,
-                    "endOffset": 2106
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1962,
-                        "endColumn": 98,
-                        "endOffset": 2056
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2111,
-                    "endColumn": 107,
-                    "endOffset": 2214
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 103,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2219,
-                    "endColumn": 211,
-                    "endOffset": 2426
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 387,
-                        "endColumn": 211,
-                        "endOffset": 598
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2431,
-                    "endColumn": 131,
-                    "endOffset": 2558
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 599,
-                        "endColumn": 127,
-                        "endOffset": 726
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2563,
-                    "endColumn": 110,
-                    "endOffset": 2669
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 727,
-                        "endColumn": 106,
-                        "endOffset": 833
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2674,
-                    "endColumn": 229,
-                    "endOffset": 2899
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 834,
-                        "endColumn": 229,
-                        "endOffset": 1063
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2904,
-                    "endColumn": 134,
-                    "endOffset": 3034
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1064,
-                        "endColumn": 130,
-                        "endOffset": 1194
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 3039,
-                    "endColumn": 141,
-                    "endOffset": 3176
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1195,
-                        "endColumn": 137,
-                        "endOffset": 1332
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3181,
-                    "endColumn": 223,
-                    "endOffset": 3400
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 223,
-                        "endOffset": 508
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3405,
-                    "endColumn": 236,
-                    "endOffset": 3637
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1333,
-                        "endColumn": 236,
-                        "endOffset": 1569
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3642,
-                    "endColumn": 113,
-                    "endOffset": 3751
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1570,
-                        "endColumn": 109,
-                        "endOffset": 1679
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3756,
-                    "endColumn": 215,
-                    "endOffset": 3967
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1680,
-                        "endColumn": 215,
-                        "endOffset": 1895
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3972,
-                    "endColumn": 137,
-                    "endOffset": 4105
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1896,
-                        "endColumn": 133,
-                        "endOffset": 2029
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 4110,
-                    "endColumn": 218,
-                    "endOffset": 4324
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 2030,
-                        "endColumn": 218,
-                        "endOffset": 2248
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4329,
-                    "endColumn": 208,
-                    "endOffset": 4533
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2249,
-                        "endColumn": 204,
-                        "endOffset": 2453
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4538,
-                    "endColumn": 102,
-                    "endOffset": 4636
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2454,
-                        "endColumn": 98,
-                        "endOffset": 2552
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4641,
-                    "endColumn": 96,
-                    "endOffset": 4733
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2553,
-                        "endColumn": 92,
-                        "endOffset": 2645
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4738,
-                    "endColumn": 112,
-                    "endOffset": 4846
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2646,
-                        "endColumn": 108,
-                        "endOffset": 2754
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4851,
-                    "endColumn": 117,
-                    "endOffset": 4964
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-fr/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 303,
-                        "endColumn": 117,
-                        "endOffset": 416
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4969,
-                    "endColumn": 121,
-                    "endOffset": 5086
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-fr/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 181,
-                        "endColumn": 121,
-                        "endOffset": 298
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 5091,
-                    "endColumn": 125,
-                    "endOffset": 5212
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-fr/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 125,
-                        "endOffset": 176
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 41,
-                    "startColumn": 4,
-                    "startOffset": 5217,
-                    "endColumn": 85,
-                    "endOffset": 5298
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2061,
-                        "endColumn": 85,
-                        "endOffset": 2142
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 5303,
-                    "endColumn": 100,
-                    "endOffset": 5399
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2147,
-                        "endColumn": 100,
-                        "endOffset": 2243
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-gl-rES.json b/android/.build/intermediates/blame/res/debug/multi/values-gl-rES.json
deleted file mode 100644
index a880d03bf59e451a3bf59580e047d4a9aa172a87..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-gl-rES.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 111,
-                    "endOffset": 162
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 111,
-                        "endOffset": 162
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 167,
-                    "endColumn": 107,
-                    "endOffset": 270
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 167,
-                        "endColumn": 107,
-                        "endOffset": 270
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 275,
-                    "endColumn": 122,
-                    "endOffset": 393
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 275,
-                        "endColumn": 122,
-                        "endOffset": 393
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 398,
-                    "endColumn": 111,
-                    "endOffset": 505
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 398,
-                        "endColumn": 111,
-                        "endOffset": 505
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 510,
-                    "endColumn": 107,
-                    "endOffset": 613
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 510,
-                        "endColumn": 107,
-                        "endOffset": 613
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 618,
-                    "endColumn": 84,
-                    "endOffset": 698
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 618,
-                        "endColumn": 84,
-                        "endOffset": 698
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 703,
-                    "endColumn": 101,
-                    "endOffset": 800
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 703,
-                        "endColumn": 101,
-                        "endOffset": 800
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 805,
-                    "endColumn": 125,
-                    "endOffset": 926
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 805,
-                        "endColumn": 125,
-                        "endOffset": 926
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 931,
-                    "endColumn": 83,
-                    "endOffset": 1010
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 931,
-                        "endColumn": 83,
-                        "endOffset": 1010
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1015,
-                    "endColumn": 80,
-                    "endOffset": 1091
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1015,
-                        "endColumn": 80,
-                        "endOffset": 1091
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1096,
-                    "endColumn": 81,
-                    "endOffset": 1173
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1096,
-                        "endColumn": 81,
-                        "endOffset": 1173
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1178,
-                    "endColumn": 106,
-                    "endOffset": 1280
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1178,
-                        "endColumn": 106,
-                        "endOffset": 1280
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1285,
-                    "endColumn": 108,
-                    "endOffset": 1389
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1285,
-                        "endColumn": 108,
-                        "endOffset": 1389
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1394,
-                    "endColumn": 98,
-                    "endOffset": 1488
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1394,
-                        "endColumn": 98,
-                        "endOffset": 1488
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1493,
-                    "endColumn": 107,
-                    "endOffset": 1596
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1493,
-                        "endColumn": 107,
-                        "endOffset": 1596
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1601,
-                    "endColumn": 102,
-                    "endOffset": 1699
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1601,
-                        "endColumn": 102,
-                        "endOffset": 1699
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1704,
-                    "endColumn": 106,
-                    "endOffset": 1806
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1704,
-                        "endColumn": 106,
-                        "endOffset": 1806
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1811,
-                    "endColumn": 121,
-                    "endOffset": 1928
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1811,
-                        "endColumn": 121,
-                        "endOffset": 1928
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1933,
-                    "endColumn": 99,
-                    "endOffset": 2028
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1933,
-                        "endColumn": 99,
-                        "endOffset": 2028
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2033,
-                    "endColumn": 81,
-                    "endOffset": 2110
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2033,
-                        "endColumn": 81,
-                        "endOffset": 2110
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2115,
-                    "endColumn": 100,
-                    "endOffset": 2211
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2115,
-                        "endColumn": 100,
-                        "endOffset": 2211
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-gl.json b/android/.build/intermediates/blame/res/debug/multi/values-gl.json
deleted file mode 100644
index a07cc2ada6d662566199d9fc6511a9237c5f1742..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-gl.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl/values-gl.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 107,
-                    "endOffset": 208
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 103,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 213,
-                    "endColumn": 194,
-                    "endOffset": 403
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 387,
-                        "endColumn": 194,
-                        "endOffset": 581
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 408,
-                    "endColumn": 130,
-                    "endOffset": 534
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 582,
-                        "endColumn": 126,
-                        "endOffset": 708
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 539,
-                    "endColumn": 109,
-                    "endOffset": 644
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 709,
-                        "endColumn": 105,
-                        "endOffset": 814
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 649,
-                    "endColumn": 217,
-                    "endOffset": 862
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 815,
-                        "endColumn": 217,
-                        "endOffset": 1032
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 867,
-                    "endColumn": 133,
-                    "endOffset": 996
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1033,
-                        "endColumn": 129,
-                        "endOffset": 1162
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 1001,
-                    "endColumn": 137,
-                    "endOffset": 1134
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1163,
-                        "endColumn": 133,
-                        "endOffset": 1296
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1139,
-                    "endColumn": 192,
-                    "endOffset": 1327
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 192,
-                        "endOffset": 477
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1332,
-                    "endColumn": 229,
-                    "endOffset": 1557
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1297,
-                        "endColumn": 229,
-                        "endOffset": 1526
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1562,
-                    "endColumn": 110,
-                    "endOffset": 1668
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1527,
-                        "endColumn": 106,
-                        "endOffset": 1633
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1673,
-                    "endColumn": 199,
-                    "endOffset": 1868
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1634,
-                        "endColumn": 199,
-                        "endOffset": 1833
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1873,
-                    "endColumn": 136,
-                    "endOffset": 2005
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1834,
-                        "endColumn": 132,
-                        "endOffset": 1966
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 2010,
-                    "endColumn": 223,
-                    "endOffset": 2229
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1967,
-                        "endColumn": 223,
-                        "endOffset": 2190
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2234,
-                    "endColumn": 181,
-                    "endOffset": 2411
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2191,
-                        "endColumn": 177,
-                        "endOffset": 2368
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2416,
-                    "endColumn": 96,
-                    "endOffset": 2508
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2369,
-                        "endColumn": 92,
-                        "endOffset": 2461
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2513,
-                    "endColumn": 98,
-                    "endOffset": 2607
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2462,
-                        "endColumn": 94,
-                        "endOffset": 2556
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2612,
-                    "endColumn": 113,
-                    "endOffset": 2721
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2557,
-                        "endColumn": 109,
-                        "endOffset": 2666
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-gu-rIN.json b/android/.build/intermediates/blame/res/debug/multi/values-gu-rIN.json
deleted file mode 100644
index 5d9c6409137f3f58f7a443c5f4b9421fc3dfce03..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-gu-rIN.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu-rIN/values-gu-rIN.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 108,
-                    "endOffset": 159
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 108,
-                        "endOffset": 159
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 164,
-                    "endColumn": 107,
-                    "endOffset": 267
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 164,
-                        "endColumn": 107,
-                        "endOffset": 267
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 272,
-                    "endColumn": 122,
-                    "endOffset": 390
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 272,
-                        "endColumn": 122,
-                        "endOffset": 390
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 395,
-                    "endColumn": 103,
-                    "endOffset": 494
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 395,
-                        "endColumn": 103,
-                        "endOffset": 494
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 499,
-                    "endColumn": 106,
-                    "endOffset": 601
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 499,
-                        "endColumn": 106,
-                        "endOffset": 601
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 606,
-                    "endColumn": 86,
-                    "endOffset": 688
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 606,
-                        "endColumn": 86,
-                        "endOffset": 688
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 693,
-                    "endColumn": 100,
-                    "endOffset": 789
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 693,
-                        "endColumn": 100,
-                        "endOffset": 789
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 794,
-                    "endColumn": 122,
-                    "endOffset": 912
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 794,
-                        "endColumn": 122,
-                        "endOffset": 912
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 917,
-                    "endColumn": 76,
-                    "endOffset": 989
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 917,
-                        "endColumn": 76,
-                        "endOffset": 989
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 994,
-                    "endColumn": 77,
-                    "endOffset": 1067
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 994,
-                        "endColumn": 77,
-                        "endOffset": 1067
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1072,
-                    "endColumn": 79,
-                    "endOffset": 1147
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1072,
-                        "endColumn": 79,
-                        "endOffset": 1147
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1152,
-                    "endColumn": 105,
-                    "endOffset": 1253
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1152,
-                        "endColumn": 105,
-                        "endOffset": 1253
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1258,
-                    "endColumn": 101,
-                    "endOffset": 1355
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1258,
-                        "endColumn": 101,
-                        "endOffset": 1355
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1360,
-                    "endColumn": 96,
-                    "endOffset": 1452
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1360,
-                        "endColumn": 96,
-                        "endOffset": 1452
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1457,
-                    "endColumn": 108,
-                    "endOffset": 1561
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1457,
-                        "endColumn": 108,
-                        "endOffset": 1561
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1566,
-                    "endColumn": 98,
-                    "endOffset": 1660
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1566,
-                        "endColumn": 98,
-                        "endOffset": 1660
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1665,
-                    "endColumn": 109,
-                    "endOffset": 1770
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1665,
-                        "endColumn": 109,
-                        "endOffset": 1770
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1775,
-                    "endColumn": 120,
-                    "endOffset": 1891
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1775,
-                        "endColumn": 120,
-                        "endOffset": 1891
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1896,
-                    "endColumn": 102,
-                    "endOffset": 1994
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1896,
-                        "endColumn": 102,
-                        "endOffset": 1994
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 1999,
-                    "endColumn": 79,
-                    "endOffset": 2074
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1999,
-                        "endColumn": 79,
-                        "endOffset": 2074
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2079,
-                    "endColumn": 100,
-                    "endOffset": 2175
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2079,
-                        "endColumn": 100,
-                        "endOffset": 2175
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-gu.json b/android/.build/intermediates/blame/res/debug/multi/values-gu.json
deleted file mode 100644
index 5fc6a2e61687daebe45e6cca1b599dee53337c13..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-gu.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu/values-gu.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 109,
-                    "endOffset": 210
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 105,
-                        "endOffset": 388
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 215,
-                    "endColumn": 197,
-                    "endOffset": 408
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 389,
-                        "endColumn": 197,
-                        "endOffset": 586
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 413,
-                    "endColumn": 126,
-                    "endOffset": 535
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 587,
-                        "endColumn": 122,
-                        "endOffset": 709
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 540,
-                    "endColumn": 113,
-                    "endOffset": 649
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 710,
-                        "endColumn": 109,
-                        "endOffset": 819
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 654,
-                    "endColumn": 196,
-                    "endOffset": 846
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 820,
-                        "endColumn": 196,
-                        "endOffset": 1016
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 851,
-                    "endColumn": 123,
-                    "endOffset": 970
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1017,
-                        "endColumn": 119,
-                        "endOffset": 1136
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 975,
-                    "endColumn": 128,
-                    "endOffset": 1099
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1137,
-                        "endColumn": 124,
-                        "endOffset": 1261
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1104,
-                    "endColumn": 205,
-                    "endOffset": 1305
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 205,
-                        "endOffset": 490
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1310,
-                    "endColumn": 206,
-                    "endOffset": 1512
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1262,
-                        "endColumn": 206,
-                        "endOffset": 1468
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1517,
-                    "endColumn": 109,
-                    "endOffset": 1622
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1469,
-                        "endColumn": 105,
-                        "endOffset": 1574
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1627,
-                    "endColumn": 194,
-                    "endOffset": 1817
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1575,
-                        "endColumn": 194,
-                        "endOffset": 1769
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1822,
-                    "endColumn": 126,
-                    "endOffset": 1944
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1770,
-                        "endColumn": 122,
-                        "endOffset": 1892
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1949,
-                    "endColumn": 201,
-                    "endOffset": 2146
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1893,
-                        "endColumn": 201,
-                        "endOffset": 2094
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2151,
-                    "endColumn": 179,
-                    "endOffset": 2326
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2095,
-                        "endColumn": 175,
-                        "endOffset": 2270
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2331,
-                    "endColumn": 90,
-                    "endOffset": 2417
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2271,
-                        "endColumn": 86,
-                        "endOffset": 2357
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2422,
-                    "endColumn": 95,
-                    "endOffset": 2513
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2358,
-                        "endColumn": 91,
-                        "endOffset": 2449
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2518,
-                    "endColumn": 110,
-                    "endOffset": 2624
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2450,
-                        "endColumn": 106,
-                        "endOffset": 2556
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-h720dp-v13.json b/android/.build/intermediates/blame/res/debug/multi/values-h720dp-v13.json
deleted file mode 100644
index cd5a8524a39d4d715c20603a14e7272a85a4363a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-h720dp-v13.json
+++ /dev/null
@@ -1,26 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 66,
-                    "endOffset": 117
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-h720dp-v13/values-h720dp-v13.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 66,
-                        "endOffset": 117
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-hdpi-v4.json b/android/.build/intermediates/blame/res/debug/multi/values-hdpi-v4.json
deleted file mode 100644
index 33888e23759997997490ad15c510225e05f081bd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-hdpi-v4.json
+++ /dev/null
@@ -1,28 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endLine": 6,
-                    "endColumn": 13,
-                    "endOffset": 327
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hdpi-v4/values-hdpi-v4.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endLine": 6,
-                        "endColumn": 13,
-                        "endOffset": 327
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-hi.json b/android/.build/intermediates/blame/res/debug/multi/values-hi.json
deleted file mode 100644
index f368e2d7f310f98c56691d7944e97948d36f0ca1..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-hi.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 116,
-                    "endOffset": 217
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 116,
-                        "endOffset": 167
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 222,
-                    "endColumn": 107,
-                    "endOffset": 325
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 172,
-                        "endColumn": 107,
-                        "endOffset": 275
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 330,
-                    "endColumn": 122,
-                    "endOffset": 448
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 280,
-                        "endColumn": 122,
-                        "endOffset": 398
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 453,
-                    "endColumn": 104,
-                    "endOffset": 553
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 403,
-                        "endColumn": 104,
-                        "endOffset": 503
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 558,
-                    "endColumn": 106,
-                    "endOffset": 660
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 508,
-                        "endColumn": 106,
-                        "endOffset": 610
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 665,
-                    "endColumn": 84,
-                    "endOffset": 745
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 615,
-                        "endColumn": 84,
-                        "endOffset": 695
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 750,
-                    "endColumn": 101,
-                    "endOffset": 847
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 700,
-                        "endColumn": 101,
-                        "endOffset": 797
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 852,
-                    "endColumn": 121,
-                    "endOffset": 969
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 802,
-                        "endColumn": 121,
-                        "endOffset": 919
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 974,
-                    "endColumn": 76,
-                    "endOffset": 1046
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 924,
-                        "endColumn": 76,
-                        "endOffset": 996
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1051,
-                    "endColumn": 77,
-                    "endOffset": 1124
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1001,
-                        "endColumn": 77,
-                        "endOffset": 1074
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1129,
-                    "endColumn": 89,
-                    "endOffset": 1214
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1079,
-                        "endColumn": 89,
-                        "endOffset": 1164
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1219,
-                    "endColumn": 108,
-                    "endOffset": 1323
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1169,
-                        "endColumn": 108,
-                        "endOffset": 1273
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1328,
-                    "endColumn": 101,
-                    "endOffset": 1425
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1278,
-                        "endColumn": 101,
-                        "endOffset": 1375
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1430,
-                    "endColumn": 97,
-                    "endOffset": 1523
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1380,
-                        "endColumn": 97,
-                        "endOffset": 1473
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1528,
-                    "endColumn": 109,
-                    "endOffset": 1633
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1478,
-                        "endColumn": 109,
-                        "endOffset": 1583
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1638,
-                    "endColumn": 99,
-                    "endOffset": 1733
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1588,
-                        "endColumn": 99,
-                        "endOffset": 1683
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1738,
-                    "endColumn": 114,
-                    "endOffset": 1848
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1688,
-                        "endColumn": 114,
-                        "endOffset": 1798
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1853,
-                    "endColumn": 124,
-                    "endOffset": 1973
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1803,
-                        "endColumn": 124,
-                        "endOffset": 1923
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1978,
-                    "endColumn": 105,
-                    "endOffset": 2079
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1928,
-                        "endColumn": 105,
-                        "endOffset": 2029
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2084,
-                    "endColumn": 110,
-                    "endOffset": 2190
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 106,
-                        "endOffset": 389
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2195,
-                    "endColumn": 202,
-                    "endOffset": 2393
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 390,
-                        "endColumn": 202,
-                        "endOffset": 592
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2398,
-                    "endColumn": 128,
-                    "endOffset": 2522
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 593,
-                        "endColumn": 124,
-                        "endOffset": 717
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2527,
-                    "endColumn": 113,
-                    "endOffset": 2636
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 718,
-                        "endColumn": 109,
-                        "endOffset": 827
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2641,
-                    "endColumn": 209,
-                    "endOffset": 2846
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 828,
-                        "endColumn": 209,
-                        "endOffset": 1037
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2851,
-                    "endColumn": 131,
-                    "endOffset": 2978
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1038,
-                        "endColumn": 127,
-                        "endOffset": 1165
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2983,
-                    "endColumn": 130,
-                    "endOffset": 3109
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1166,
-                        "endColumn": 126,
-                        "endOffset": 1292
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3114,
-                    "endColumn": 205,
-                    "endOffset": 3315
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 205,
-                        "endOffset": 490
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3320,
-                    "endColumn": 218,
-                    "endOffset": 3534
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1293,
-                        "endColumn": 218,
-                        "endOffset": 1511
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3539,
-                    "endColumn": 110,
-                    "endOffset": 3645
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1512,
-                        "endColumn": 106,
-                        "endOffset": 1618
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3650,
-                    "endColumn": 196,
-                    "endOffset": 3842
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1619,
-                        "endColumn": 196,
-                        "endOffset": 1815
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3847,
-                    "endColumn": 131,
-                    "endOffset": 3974
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1816,
-                        "endColumn": 127,
-                        "endOffset": 1943
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3979,
-                    "endColumn": 207,
-                    "endOffset": 4182
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1944,
-                        "endColumn": 207,
-                        "endOffset": 2151
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4187,
-                    "endColumn": 183,
-                    "endOffset": 4366
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2152,
-                        "endColumn": 179,
-                        "endOffset": 2331
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4371,
-                    "endColumn": 92,
-                    "endOffset": 4459
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2332,
-                        "endColumn": 88,
-                        "endOffset": 2420
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4464,
-                    "endColumn": 95,
-                    "endOffset": 4555
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2421,
-                        "endColumn": 91,
-                        "endOffset": 2512
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4560,
-                    "endColumn": 113,
-                    "endOffset": 4669
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2513,
-                        "endColumn": 109,
-                        "endOffset": 2622
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4674,
-                    "endColumn": 78,
-                    "endOffset": 4748
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2034,
-                        "endColumn": 78,
-                        "endOffset": 2108
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4753,
-                    "endColumn": 100,
-                    "endOffset": 4849
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2113,
-                        "endColumn": 100,
-                        "endOffset": 2209
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-hr.json b/android/.build/intermediates/blame/res/debug/multi/values-hr.json
deleted file mode 100644
index 859b153b2d179f584eb0fe70365c70b010904de2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-hr.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 104,
-                    "endOffset": 205
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 104,
-                        "endOffset": 155
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 210,
-                    "endColumn": 107,
-                    "endOffset": 313
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 160,
-                        "endColumn": 107,
-                        "endOffset": 263
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 318,
-                    "endColumn": 122,
-                    "endOffset": 436
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 268,
-                        "endColumn": 122,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 441,
-                    "endColumn": 96,
-                    "endOffset": 533
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 391,
-                        "endColumn": 96,
-                        "endOffset": 483
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 538,
-                    "endColumn": 109,
-                    "endOffset": 643
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 488,
-                        "endColumn": 109,
-                        "endOffset": 593
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 648,
-                    "endColumn": 85,
-                    "endOffset": 729
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 598,
-                        "endColumn": 85,
-                        "endOffset": 679
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 734,
-                    "endColumn": 103,
-                    "endOffset": 833
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 684,
-                        "endColumn": 103,
-                        "endOffset": 783
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 838,
-                    "endColumn": 118,
-                    "endOffset": 952
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 788,
-                        "endColumn": 118,
-                        "endOffset": 902
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 957,
-                    "endColumn": 83,
-                    "endOffset": 1036
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 907,
-                        "endColumn": 83,
-                        "endOffset": 986
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1041,
-                    "endColumn": 82,
-                    "endOffset": 1119
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 991,
-                        "endColumn": 82,
-                        "endOffset": 1069
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1124,
-                    "endColumn": 85,
-                    "endOffset": 1205
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1074,
-                        "endColumn": 85,
-                        "endOffset": 1155
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1210,
-                    "endColumn": 103,
-                    "endOffset": 1309
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1160,
-                        "endColumn": 103,
-                        "endOffset": 1259
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1314,
-                    "endColumn": 112,
-                    "endOffset": 1422
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1264,
-                        "endColumn": 112,
-                        "endOffset": 1372
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1427,
-                    "endColumn": 105,
-                    "endOffset": 1528
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1377,
-                        "endColumn": 105,
-                        "endOffset": 1478
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1533,
-                    "endColumn": 104,
-                    "endOffset": 1633
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1483,
-                        "endColumn": 104,
-                        "endOffset": 1583
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1638,
-                    "endColumn": 112,
-                    "endOffset": 1746
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1588,
-                        "endColumn": 112,
-                        "endOffset": 1696
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1751,
-                    "endColumn": 106,
-                    "endOffset": 1853
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1701,
-                        "endColumn": 106,
-                        "endOffset": 1803
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1858,
-                    "endColumn": 122,
-                    "endOffset": 1976
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1808,
-                        "endColumn": 122,
-                        "endOffset": 1926
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1981,
-                    "endColumn": 96,
-                    "endOffset": 2073
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1931,
-                        "endColumn": 96,
-                        "endOffset": 2023
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2078,
-                    "endColumn": 107,
-                    "endOffset": 2181
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 103,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2186,
-                    "endColumn": 188,
-                    "endOffset": 2370
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 387,
-                        "endColumn": 188,
-                        "endOffset": 575
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2375,
-                    "endColumn": 131,
-                    "endOffset": 2502
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 576,
-                        "endColumn": 127,
-                        "endOffset": 703
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2507,
-                    "endColumn": 111,
-                    "endOffset": 2614
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 704,
-                        "endColumn": 107,
-                        "endOffset": 811
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2619,
-                    "endColumn": 215,
-                    "endOffset": 2830
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 812,
-                        "endColumn": 215,
-                        "endOffset": 1027
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2835,
-                    "endColumn": 131,
-                    "endOffset": 2962
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1028,
-                        "endColumn": 127,
-                        "endOffset": 1155
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2967,
-                    "endColumn": 135,
-                    "endOffset": 3098
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1156,
-                        "endColumn": 131,
-                        "endOffset": 1287
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3103,
-                    "endColumn": 190,
-                    "endOffset": 3289
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 190,
-                        "endOffset": 475
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3294,
-                    "endColumn": 208,
-                    "endOffset": 3498
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1288,
-                        "endColumn": 208,
-                        "endOffset": 1496
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3503,
-                    "endColumn": 108,
-                    "endOffset": 3607
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1497,
-                        "endColumn": 104,
-                        "endOffset": 1601
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3612,
-                    "endColumn": 187,
-                    "endOffset": 3795
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1602,
-                        "endColumn": 187,
-                        "endOffset": 1789
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3800,
-                    "endColumn": 129,
-                    "endOffset": 3925
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1790,
-                        "endColumn": 125,
-                        "endOffset": 1915
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3930,
-                    "endColumn": 205,
-                    "endOffset": 4131
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1916,
-                        "endColumn": 205,
-                        "endOffset": 2121
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4136,
-                    "endColumn": 172,
-                    "endOffset": 4304
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2122,
-                        "endColumn": 168,
-                        "endOffset": 2290
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4309,
-                    "endColumn": 97,
-                    "endOffset": 4402
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2291,
-                        "endColumn": 93,
-                        "endOffset": 2384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4407,
-                    "endColumn": 91,
-                    "endOffset": 4494
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2385,
-                        "endColumn": 87,
-                        "endOffset": 2472
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4499,
-                    "endColumn": 109,
-                    "endOffset": 4604
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2473,
-                        "endColumn": 105,
-                        "endOffset": 2578
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4609,
-                    "endColumn": 88,
-                    "endOffset": 4693
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2028,
-                        "endColumn": 88,
-                        "endOffset": 2112
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4698,
-                    "endColumn": 100,
-                    "endOffset": 4794
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2117,
-                        "endColumn": 100,
-                        "endOffset": 2213
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-hu.json b/android/.build/intermediates/blame/res/debug/multi/values-hu.json
deleted file mode 100644
index 22d0d35643bbd62c6ea786a31eb6f81920159b73..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-hu.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 107,
-                    "endOffset": 208
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 107,
-                        "endOffset": 158
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 213,
-                    "endColumn": 107,
-                    "endOffset": 316
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 163,
-                        "endColumn": 107,
-                        "endOffset": 266
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 321,
-                    "endColumn": 122,
-                    "endOffset": 439
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 271,
-                        "endColumn": 122,
-                        "endOffset": 389
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 444,
-                    "endColumn": 104,
-                    "endOffset": 544
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 394,
-                        "endColumn": 104,
-                        "endOffset": 494
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 549,
-                    "endColumn": 114,
-                    "endOffset": 659
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 499,
-                        "endColumn": 114,
-                        "endOffset": 609
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 664,
-                    "endColumn": 83,
-                    "endOffset": 743
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 614,
-                        "endColumn": 83,
-                        "endOffset": 693
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 748,
-                    "endColumn": 111,
-                    "endOffset": 855
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 698,
-                        "endColumn": 111,
-                        "endOffset": 805
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 860,
-                    "endColumn": 129,
-                    "endOffset": 985
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 810,
-                        "endColumn": 129,
-                        "endOffset": 935
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 990,
-                    "endColumn": 75,
-                    "endOffset": 1061
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 940,
-                        "endColumn": 75,
-                        "endOffset": 1011
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1066,
-                    "endColumn": 75,
-                    "endOffset": 1137
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1016,
-                        "endColumn": 75,
-                        "endOffset": 1087
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1142,
-                    "endColumn": 82,
-                    "endOffset": 1220
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1092,
-                        "endColumn": 82,
-                        "endOffset": 1170
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1225,
-                    "endColumn": 109,
-                    "endOffset": 1330
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1175,
-                        "endColumn": 109,
-                        "endOffset": 1280
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1335,
-                    "endColumn": 110,
-                    "endOffset": 1441
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1285,
-                        "endColumn": 110,
-                        "endOffset": 1391
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1446,
-                    "endColumn": 99,
-                    "endOffset": 1541
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1396,
-                        "endColumn": 99,
-                        "endOffset": 1491
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1546,
-                    "endColumn": 110,
-                    "endOffset": 1652
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1496,
-                        "endColumn": 110,
-                        "endOffset": 1602
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1657,
-                    "endColumn": 107,
-                    "endOffset": 1760
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1607,
-                        "endColumn": 107,
-                        "endOffset": 1710
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1765,
-                    "endColumn": 118,
-                    "endOffset": 1879
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1715,
-                        "endColumn": 118,
-                        "endOffset": 1829
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1884,
-                    "endColumn": 133,
-                    "endOffset": 2013
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1834,
-                        "endColumn": 133,
-                        "endOffset": 1963
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 2018,
-                    "endColumn": 102,
-                    "endOffset": 2116
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1968,
-                        "endColumn": 102,
-                        "endOffset": 2066
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2121,
-                    "endColumn": 112,
-                    "endOffset": 2229
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 108,
-                        "endOffset": 391
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2234,
-                    "endColumn": 215,
-                    "endOffset": 2445
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 392,
-                        "endColumn": 215,
-                        "endOffset": 607
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2450,
-                    "endColumn": 139,
-                    "endOffset": 2585
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 608,
-                        "endColumn": 135,
-                        "endOffset": 743
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2590,
-                    "endColumn": 110,
-                    "endOffset": 2696
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 744,
-                        "endColumn": 106,
-                        "endOffset": 850
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2701,
-                    "endColumn": 226,
-                    "endOffset": 2923
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 851,
-                        "endColumn": 226,
-                        "endOffset": 1077
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2928,
-                    "endColumn": 139,
-                    "endOffset": 3063
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1078,
-                        "endColumn": 135,
-                        "endOffset": 1213
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 3068,
-                    "endColumn": 138,
-                    "endOffset": 3202
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1214,
-                        "endColumn": 134,
-                        "endOffset": 1348
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3207,
-                    "endColumn": 235,
-                    "endOffset": 3438
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 235,
-                        "endOffset": 520
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3443,
-                    "endColumn": 228,
-                    "endOffset": 3667
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1349,
-                        "endColumn": 228,
-                        "endOffset": 1577
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3672,
-                    "endColumn": 109,
-                    "endOffset": 3777
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1578,
-                        "endColumn": 105,
-                        "endOffset": 1683
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3782,
-                    "endColumn": 215,
-                    "endOffset": 3993
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1684,
-                        "endColumn": 215,
-                        "endOffset": 1899
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3998,
-                    "endColumn": 138,
-                    "endOffset": 4132
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1900,
-                        "endColumn": 134,
-                        "endOffset": 2034
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 4137,
-                    "endColumn": 230,
-                    "endOffset": 4363
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 2035,
-                        "endColumn": 230,
-                        "endOffset": 2265
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4368,
-                    "endColumn": 201,
-                    "endOffset": 4565
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2266,
-                        "endColumn": 197,
-                        "endOffset": 2463
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4570,
-                    "endColumn": 100,
-                    "endOffset": 4666
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2464,
-                        "endColumn": 96,
-                        "endOffset": 2560
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4671,
-                    "endColumn": 97,
-                    "endOffset": 4764
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2561,
-                        "endColumn": 93,
-                        "endOffset": 2654
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4769,
-                    "endColumn": 116,
-                    "endOffset": 4881
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2655,
-                        "endColumn": 112,
-                        "endOffset": 2767
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4886,
-                    "endColumn": 82,
-                    "endOffset": 4964
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2071,
-                        "endColumn": 82,
-                        "endOffset": 2149
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4969,
-                    "endColumn": 100,
-                    "endOffset": 5065
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2154,
-                        "endColumn": 100,
-                        "endOffset": 2250
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-hy-rAM.json b/android/.build/intermediates/blame/res/debug/multi/values-hy-rAM.json
deleted file mode 100644
index e699211f04f2569d410754f01a242dd2a63c52e6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-hy-rAM.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 102,
-                    "endOffset": 153
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 102,
-                        "endOffset": 153
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 158,
-                    "endColumn": 107,
-                    "endOffset": 261
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 158,
-                        "endColumn": 107,
-                        "endOffset": 261
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 266,
-                    "endColumn": 122,
-                    "endOffset": 384
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 266,
-                        "endColumn": 122,
-                        "endOffset": 384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 389,
-                    "endColumn": 100,
-                    "endOffset": 485
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 389,
-                        "endColumn": 100,
-                        "endOffset": 485
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 490,
-                    "endColumn": 109,
-                    "endOffset": 595
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 490,
-                        "endColumn": 109,
-                        "endOffset": 595
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 600,
-                    "endColumn": 88,
-                    "endOffset": 684
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 600,
-                        "endColumn": 88,
-                        "endOffset": 684
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 689,
-                    "endColumn": 105,
-                    "endOffset": 790
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 689,
-                        "endColumn": 105,
-                        "endOffset": 790
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 795,
-                    "endColumn": 114,
-                    "endOffset": 905
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 795,
-                        "endColumn": 114,
-                        "endOffset": 905
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 910,
-                    "endColumn": 81,
-                    "endOffset": 987
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 910,
-                        "endColumn": 81,
-                        "endOffset": 987
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 992,
-                    "endColumn": 80,
-                    "endOffset": 1068
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 992,
-                        "endColumn": 80,
-                        "endOffset": 1068
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1073,
-                    "endColumn": 84,
-                    "endOffset": 1153
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1073,
-                        "endColumn": 84,
-                        "endOffset": 1153
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1158,
-                    "endColumn": 106,
-                    "endOffset": 1260
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1158,
-                        "endColumn": 106,
-                        "endOffset": 1260
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1265,
-                    "endColumn": 106,
-                    "endOffset": 1367
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1265,
-                        "endColumn": 106,
-                        "endOffset": 1367
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1372,
-                    "endColumn": 98,
-                    "endOffset": 1466
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1372,
-                        "endColumn": 98,
-                        "endOffset": 1466
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1471,
-                    "endColumn": 109,
-                    "endOffset": 1576
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1471,
-                        "endColumn": 109,
-                        "endOffset": 1576
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1581,
-                    "endColumn": 106,
-                    "endOffset": 1683
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1581,
-                        "endColumn": 106,
-                        "endOffset": 1683
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1688,
-                    "endColumn": 99,
-                    "endOffset": 1783
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1688,
-                        "endColumn": 99,
-                        "endOffset": 1783
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1788,
-                    "endColumn": 124,
-                    "endOffset": 1908
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1788,
-                        "endColumn": 124,
-                        "endOffset": 1908
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1913,
-                    "endColumn": 98,
-                    "endOffset": 2007
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1913,
-                        "endColumn": 98,
-                        "endOffset": 2007
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2012,
-                    "endColumn": 81,
-                    "endOffset": 2089
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2012,
-                        "endColumn": 81,
-                        "endOffset": 2089
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2094,
-                    "endColumn": 100,
-                    "endOffset": 2190
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2094,
-                        "endColumn": 100,
-                        "endOffset": 2190
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-hy.json b/android/.build/intermediates/blame/res/debug/multi/values-hy.json
deleted file mode 100644
index 20ceb8d23979dfc9e9903cbe28952893bd554014..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-hy.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 107,
-                    "endOffset": 208
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 103,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 213,
-                    "endColumn": 196,
-                    "endOffset": 405
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 387,
-                        "endColumn": 196,
-                        "endOffset": 583
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 410,
-                    "endColumn": 135,
-                    "endOffset": 541
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 584,
-                        "endColumn": 131,
-                        "endOffset": 715
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 546,
-                    "endColumn": 109,
-                    "endOffset": 651
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 716,
-                        "endColumn": 105,
-                        "endOffset": 821
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 656,
-                    "endColumn": 212,
-                    "endOffset": 864
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 822,
-                        "endColumn": 212,
-                        "endOffset": 1034
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 869,
-                    "endColumn": 137,
-                    "endOffset": 1002
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1035,
-                        "endColumn": 133,
-                        "endOffset": 1168
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 1007,
-                    "endColumn": 141,
-                    "endOffset": 1144
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1169,
-                        "endColumn": 137,
-                        "endOffset": 1306
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1149,
-                    "endColumn": 209,
-                    "endOffset": 1354
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 209,
-                        "endOffset": 494
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1359,
-                    "endColumn": 225,
-                    "endOffset": 1580
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1307,
-                        "endColumn": 225,
-                        "endOffset": 1532
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1585,
-                    "endColumn": 109,
-                    "endOffset": 1690
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1533,
-                        "endColumn": 105,
-                        "endOffset": 1638
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1695,
-                    "endColumn": 198,
-                    "endOffset": 1889
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1639,
-                        "endColumn": 198,
-                        "endOffset": 1837
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1894,
-                    "endColumn": 137,
-                    "endOffset": 2027
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1838,
-                        "endColumn": 133,
-                        "endOffset": 1971
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 2032,
-                    "endColumn": 220,
-                    "endOffset": 2248
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1972,
-                        "endColumn": 220,
-                        "endOffset": 2192
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2253,
-                    "endColumn": 195,
-                    "endOffset": 2444
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2193,
-                        "endColumn": 191,
-                        "endOffset": 2384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2449,
-                    "endColumn": 94,
-                    "endOffset": 2539
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2385,
-                        "endColumn": 90,
-                        "endOffset": 2475
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2544,
-                    "endColumn": 96,
-                    "endOffset": 2636
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2476,
-                        "endColumn": 92,
-                        "endOffset": 2568
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2641,
-                    "endColumn": 110,
-                    "endOffset": 2747
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2569,
-                        "endColumn": 106,
-                        "endOffset": 2675
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-id.json b/android/.build/intermediates/blame/res/debug/multi/values-id.json
deleted file mode 100644
index b878763cdb3a7108a205b25c43d1fc792deeaf27..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-id.json
+++ /dev/null
@@ -1,64 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-id/values-id.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 112,
-                    "endOffset": 163
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-id/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 299,
-                        "endColumn": 112,
-                        "endOffset": 407
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 168,
-                    "endColumn": 123,
-                    "endOffset": 287
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-id/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 175,
-                        "endColumn": 123,
-                        "endOffset": 294
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 292,
-                    "endColumn": 119,
-                    "endOffset": 407
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-id/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 119,
-                        "endOffset": 170
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-in.json b/android/.build/intermediates/blame/res/debug/multi/values-in.json
deleted file mode 100644
index 325c73e469ccff6fcd04733cfeac189644b89102..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-in.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 109,
-                    "endOffset": 210
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 109,
-                        "endOffset": 160
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 215,
-                    "endColumn": 107,
-                    "endOffset": 318
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 165,
-                        "endColumn": 107,
-                        "endOffset": 268
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 323,
-                    "endColumn": 122,
-                    "endOffset": 441
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 273,
-                        "endColumn": 122,
-                        "endOffset": 391
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 446,
-                    "endColumn": 101,
-                    "endOffset": 543
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 396,
-                        "endColumn": 101,
-                        "endOffset": 493
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 548,
-                    "endColumn": 104,
-                    "endOffset": 648
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 498,
-                        "endColumn": 104,
-                        "endOffset": 598
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 653,
-                    "endColumn": 86,
-                    "endOffset": 735
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 603,
-                        "endColumn": 86,
-                        "endOffset": 685
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 740,
-                    "endColumn": 103,
-                    "endOffset": 839
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 690,
-                        "endColumn": 103,
-                        "endOffset": 789
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 844,
-                    "endColumn": 115,
-                    "endOffset": 955
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 794,
-                        "endColumn": 115,
-                        "endOffset": 905
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 960,
-                    "endColumn": 81,
-                    "endOffset": 1037
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 910,
-                        "endColumn": 81,
-                        "endOffset": 987
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1042,
-                    "endColumn": 78,
-                    "endOffset": 1116
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 992,
-                        "endColumn": 78,
-                        "endOffset": 1066
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1121,
-                    "endColumn": 85,
-                    "endOffset": 1202
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1071,
-                        "endColumn": 85,
-                        "endOffset": 1152
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1207,
-                    "endColumn": 102,
-                    "endOffset": 1305
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1157,
-                        "endColumn": 102,
-                        "endOffset": 1255
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1310,
-                    "endColumn": 108,
-                    "endOffset": 1414
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1260,
-                        "endColumn": 108,
-                        "endOffset": 1364
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1419,
-                    "endColumn": 100,
-                    "endOffset": 1515
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1369,
-                        "endColumn": 100,
-                        "endOffset": 1465
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1520,
-                    "endColumn": 103,
-                    "endOffset": 1619
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1470,
-                        "endColumn": 103,
-                        "endOffset": 1569
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1624,
-                    "endColumn": 107,
-                    "endOffset": 1727
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1574,
-                        "endColumn": 107,
-                        "endOffset": 1677
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1732,
-                    "endColumn": 107,
-                    "endOffset": 1835
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1682,
-                        "endColumn": 107,
-                        "endOffset": 1785
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1840,
-                    "endColumn": 122,
-                    "endOffset": 1958
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1790,
-                        "endColumn": 122,
-                        "endOffset": 1908
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1963,
-                    "endColumn": 98,
-                    "endOffset": 2057
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1913,
-                        "endColumn": 98,
-                        "endOffset": 2007
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2062,
-                    "endColumn": 108,
-                    "endOffset": 2166
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 104,
-                        "endOffset": 387
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2171,
-                    "endColumn": 195,
-                    "endOffset": 2362
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 388,
-                        "endColumn": 195,
-                        "endOffset": 583
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2367,
-                    "endColumn": 127,
-                    "endOffset": 2490
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 584,
-                        "endColumn": 123,
-                        "endOffset": 707
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2495,
-                    "endColumn": 107,
-                    "endOffset": 2598
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 708,
-                        "endColumn": 103,
-                        "endOffset": 811
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2603,
-                    "endColumn": 213,
-                    "endOffset": 2812
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 812,
-                        "endColumn": 213,
-                        "endOffset": 1025
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2817,
-                    "endColumn": 128,
-                    "endOffset": 2941
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1026,
-                        "endColumn": 124,
-                        "endOffset": 1150
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2946,
-                    "endColumn": 134,
-                    "endOffset": 3076
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1151,
-                        "endColumn": 130,
-                        "endOffset": 1281
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3081,
-                    "endColumn": 190,
-                    "endOffset": 3267
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 190,
-                        "endOffset": 475
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3272,
-                    "endColumn": 224,
-                    "endOffset": 3492
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1282,
-                        "endColumn": 224,
-                        "endOffset": 1506
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3497,
-                    "endColumn": 108,
-                    "endOffset": 3601
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1507,
-                        "endColumn": 104,
-                        "endOffset": 1611
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3606,
-                    "endColumn": 194,
-                    "endOffset": 3796
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1612,
-                        "endColumn": 194,
-                        "endOffset": 1806
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3801,
-                    "endColumn": 127,
-                    "endOffset": 3924
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1807,
-                        "endColumn": 123,
-                        "endOffset": 1930
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3929,
-                    "endColumn": 213,
-                    "endOffset": 4138
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1931,
-                        "endColumn": 213,
-                        "endOffset": 2144
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4143,
-                    "endColumn": 173,
-                    "endOffset": 4312
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2145,
-                        "endColumn": 169,
-                        "endOffset": 2314
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4317,
-                    "endColumn": 93,
-                    "endOffset": 4406
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2315,
-                        "endColumn": 89,
-                        "endOffset": 2404
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4411,
-                    "endColumn": 89,
-                    "endOffset": 4496
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2405,
-                        "endColumn": 85,
-                        "endOffset": 2490
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4501,
-                    "endColumn": 107,
-                    "endOffset": 4604
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2491,
-                        "endColumn": 103,
-                        "endOffset": 2594
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4609,
-                    "endColumn": 83,
-                    "endOffset": 4688
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2012,
-                        "endColumn": 83,
-                        "endOffset": 2091
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4693,
-                    "endColumn": 100,
-                    "endOffset": 4789
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2096,
-                        "endColumn": 100,
-                        "endOffset": 2192
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-is-rIS.json b/android/.build/intermediates/blame/res/debug/multi/values-is-rIS.json
deleted file mode 100644
index e5cc19c33435f01c279b1c8017e4aee8e267a5df..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-is-rIS.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 99,
-                    "endOffset": 150
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 99,
-                        "endOffset": 150
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 155,
-                    "endColumn": 107,
-                    "endOffset": 258
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 155,
-                        "endColumn": 107,
-                        "endOffset": 258
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 263,
-                    "endColumn": 122,
-                    "endOffset": 381
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 263,
-                        "endColumn": 122,
-                        "endOffset": 381
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 386,
-                    "endColumn": 96,
-                    "endOffset": 478
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 386,
-                        "endColumn": 96,
-                        "endOffset": 478
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 483,
-                    "endColumn": 111,
-                    "endOffset": 590
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 483,
-                        "endColumn": 111,
-                        "endOffset": 590
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 595,
-                    "endColumn": 84,
-                    "endOffset": 675
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 595,
-                        "endColumn": 84,
-                        "endOffset": 675
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 680,
-                    "endColumn": 100,
-                    "endOffset": 776
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 680,
-                        "endColumn": 100,
-                        "endOffset": 776
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 781,
-                    "endColumn": 113,
-                    "endOffset": 890
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 781,
-                        "endColumn": 113,
-                        "endOffset": 890
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 895,
-                    "endColumn": 79,
-                    "endOffset": 970
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 895,
-                        "endColumn": 79,
-                        "endOffset": 970
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 975,
-                    "endColumn": 79,
-                    "endOffset": 1050
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 975,
-                        "endColumn": 79,
-                        "endOffset": 1050
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1055,
-                    "endColumn": 80,
-                    "endOffset": 1131
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1055,
-                        "endColumn": 80,
-                        "endOffset": 1131
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1136,
-                    "endColumn": 109,
-                    "endOffset": 1241
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1136,
-                        "endColumn": 109,
-                        "endOffset": 1241
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1246,
-                    "endColumn": 107,
-                    "endOffset": 1349
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1246,
-                        "endColumn": 107,
-                        "endOffset": 1349
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1354,
-                    "endColumn": 97,
-                    "endOffset": 1447
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1354,
-                        "endColumn": 97,
-                        "endOffset": 1447
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1452,
-                    "endColumn": 108,
-                    "endOffset": 1556
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1452,
-                        "endColumn": 108,
-                        "endOffset": 1556
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1561,
-                    "endColumn": 98,
-                    "endOffset": 1655
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1561,
-                        "endColumn": 98,
-                        "endOffset": 1655
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1660,
-                    "endColumn": 102,
-                    "endOffset": 1758
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1660,
-                        "endColumn": 102,
-                        "endOffset": 1758
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1763,
-                    "endColumn": 117,
-                    "endOffset": 1876
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1763,
-                        "endColumn": 117,
-                        "endOffset": 1876
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1881,
-                    "endColumn": 97,
-                    "endOffset": 1974
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1881,
-                        "endColumn": 97,
-                        "endOffset": 1974
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 1979,
-                    "endColumn": 80,
-                    "endOffset": 2055
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1979,
-                        "endColumn": 80,
-                        "endOffset": 2055
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2060,
-                    "endColumn": 100,
-                    "endOffset": 2156
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2060,
-                        "endColumn": 100,
-                        "endOffset": 2156
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-is.json b/android/.build/intermediates/blame/res/debug/multi/values-is.json
deleted file mode 100644
index 582800d2768c965d1ecf1a2364d022249f137d49..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-is.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 107,
-                    "endOffset": 208
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 103,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 213,
-                    "endColumn": 185,
-                    "endOffset": 394
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 387,
-                        "endColumn": 185,
-                        "endOffset": 572
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 399,
-                    "endColumn": 126,
-                    "endOffset": 521
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 573,
-                        "endColumn": 122,
-                        "endOffset": 695
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 526,
-                    "endColumn": 110,
-                    "endOffset": 632
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 696,
-                        "endColumn": 106,
-                        "endOffset": 802
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 637,
-                    "endColumn": 199,
-                    "endOffset": 832
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 803,
-                        "endColumn": 199,
-                        "endOffset": 1002
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 837,
-                    "endColumn": 126,
-                    "endOffset": 959
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1003,
-                        "endColumn": 122,
-                        "endOffset": 1125
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 964,
-                    "endColumn": 133,
-                    "endOffset": 1093
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1126,
-                        "endColumn": 129,
-                        "endOffset": 1255
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1098,
-                    "endColumn": 187,
-                    "endOffset": 1281
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 187,
-                        "endOffset": 472
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1286,
-                    "endColumn": 212,
-                    "endOffset": 1494
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1256,
-                        "endColumn": 212,
-                        "endOffset": 1468
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1499,
-                    "endColumn": 107,
-                    "endOffset": 1602
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1469,
-                        "endColumn": 103,
-                        "endOffset": 1572
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1607,
-                    "endColumn": 187,
-                    "endOffset": 1790
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1573,
-                        "endColumn": 187,
-                        "endOffset": 1760
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1795,
-                    "endColumn": 127,
-                    "endOffset": 1918
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1761,
-                        "endColumn": 123,
-                        "endOffset": 1884
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1923,
-                    "endColumn": 200,
-                    "endOffset": 2119
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1885,
-                        "endColumn": 200,
-                        "endOffset": 2085
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2124,
-                    "endColumn": 183,
-                    "endOffset": 2303
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2086,
-                        "endColumn": 179,
-                        "endOffset": 2265
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2308,
-                    "endColumn": 93,
-                    "endOffset": 2397
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2266,
-                        "endColumn": 89,
-                        "endOffset": 2355
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2402,
-                    "endColumn": 92,
-                    "endOffset": 2490
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2356,
-                        "endColumn": 88,
-                        "endOffset": 2444
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2495,
-                    "endColumn": 107,
-                    "endOffset": 2598
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2445,
-                        "endColumn": 103,
-                        "endOffset": 2548
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-it.json b/android/.build/intermediates/blame/res/debug/multi/values-it.json
deleted file mode 100644
index a79e39dfa3cd5269aef9418a258047b4391e72d5..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-it.json
+++ /dev/null
@@ -1,786 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 108,
-                    "endOffset": 209
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 108,
-                        "endOffset": 159
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 214,
-                    "endColumn": 107,
-                    "endOffset": 317
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 164,
-                        "endColumn": 107,
-                        "endOffset": 267
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 322,
-                    "endColumn": 122,
-                    "endOffset": 440
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 272,
-                        "endColumn": 122,
-                        "endOffset": 390
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 445,
-                    "endColumn": 99,
-                    "endOffset": 540
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 395,
-                        "endColumn": 99,
-                        "endOffset": 490
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 545,
-                    "endColumn": 108,
-                    "endOffset": 649
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 495,
-                        "endColumn": 108,
-                        "endOffset": 599
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 654,
-                    "endColumn": 83,
-                    "endOffset": 733
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 604,
-                        "endColumn": 83,
-                        "endOffset": 683
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 738,
-                    "endColumn": 108,
-                    "endOffset": 842
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 688,
-                        "endColumn": 108,
-                        "endOffset": 792
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 847,
-                    "endColumn": 124,
-                    "endOffset": 967
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 797,
-                        "endColumn": 124,
-                        "endOffset": 917
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 972,
-                    "endColumn": 76,
-                    "endOffset": 1044
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 922,
-                        "endColumn": 76,
-                        "endOffset": 994
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1049,
-                    "endColumn": 75,
-                    "endOffset": 1120
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 999,
-                        "endColumn": 75,
-                        "endOffset": 1070
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1125,
-                    "endColumn": 80,
-                    "endOffset": 1201
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1075,
-                        "endColumn": 80,
-                        "endOffset": 1151
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1206,
-                    "endColumn": 105,
-                    "endOffset": 1307
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1156,
-                        "endColumn": 105,
-                        "endOffset": 1257
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1312,
-                    "endColumn": 107,
-                    "endOffset": 1415
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1262,
-                        "endColumn": 107,
-                        "endOffset": 1365
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1420,
-                    "endColumn": 97,
-                    "endOffset": 1513
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1370,
-                        "endColumn": 97,
-                        "endOffset": 1463
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1518,
-                    "endColumn": 103,
-                    "endOffset": 1617
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1468,
-                        "endColumn": 103,
-                        "endOffset": 1567
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1622,
-                    "endColumn": 104,
-                    "endOffset": 1722
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1572,
-                        "endColumn": 104,
-                        "endOffset": 1672
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1727,
-                    "endColumn": 106,
-                    "endOffset": 1829
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1677,
-                        "endColumn": 106,
-                        "endOffset": 1779
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1834,
-                    "endColumn": 121,
-                    "endOffset": 1951
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1784,
-                        "endColumn": 121,
-                        "endOffset": 1901
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1956,
-                    "endColumn": 99,
-                    "endOffset": 2051
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1906,
-                        "endColumn": 99,
-                        "endOffset": 2001
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2056,
-                    "endColumn": 106,
-                    "endOffset": 2158
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 102,
-                        "endOffset": 385
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2163,
-                    "endColumn": 182,
-                    "endOffset": 2341
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 386,
-                        "endColumn": 182,
-                        "endOffset": 568
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2346,
-                    "endColumn": 126,
-                    "endOffset": 2468
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 569,
-                        "endColumn": 122,
-                        "endOffset": 691
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2473,
-                    "endColumn": 109,
-                    "endOffset": 2578
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 692,
-                        "endColumn": 105,
-                        "endOffset": 797
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2583,
-                    "endColumn": 216,
-                    "endOffset": 2795
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 798,
-                        "endColumn": 216,
-                        "endOffset": 1014
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2800,
-                    "endColumn": 129,
-                    "endOffset": 2925
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1015,
-                        "endColumn": 125,
-                        "endOffset": 1140
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2930,
-                    "endColumn": 132,
-                    "endOffset": 3058
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1141,
-                        "endColumn": 128,
-                        "endOffset": 1269
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3063,
-                    "endColumn": 194,
-                    "endOffset": 3253
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 194,
-                        "endOffset": 479
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3258,
-                    "endColumn": 215,
-                    "endOffset": 3469
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1270,
-                        "endColumn": 215,
-                        "endOffset": 1485
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3474,
-                    "endColumn": 108,
-                    "endOffset": 3578
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1486,
-                        "endColumn": 104,
-                        "endOffset": 1590
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3583,
-                    "endColumn": 184,
-                    "endOffset": 3763
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1591,
-                        "endColumn": 184,
-                        "endOffset": 1775
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3768,
-                    "endColumn": 128,
-                    "endOffset": 3892
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1776,
-                        "endColumn": 124,
-                        "endOffset": 1900
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3897,
-                    "endColumn": 214,
-                    "endOffset": 4107
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1901,
-                        "endColumn": 214,
-                        "endOffset": 2115
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4112,
-                    "endColumn": 210,
-                    "endOffset": 4318
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2116,
-                        "endColumn": 206,
-                        "endOffset": 2322
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4323,
-                    "endColumn": 96,
-                    "endOffset": 4415
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2323,
-                        "endColumn": 92,
-                        "endOffset": 2415
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4420,
-                    "endColumn": 90,
-                    "endOffset": 4506
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2416,
-                        "endColumn": 86,
-                        "endOffset": 2502
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4511,
-                    "endColumn": 105,
-                    "endOffset": 4612
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2503,
-                        "endColumn": 101,
-                        "endOffset": 2604
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4617,
-                    "endColumn": 112,
-                    "endOffset": 4725
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-it/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 288,
-                        "endColumn": 112,
-                        "endOffset": 396
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4730,
-                    "endColumn": 110,
-                    "endOffset": 4836
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-it/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 177,
-                        "endColumn": 110,
-                        "endOffset": 283
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 4841,
-                    "endColumn": 121,
-                    "endOffset": 4958
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-it/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 121,
-                        "endOffset": 172
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 41,
-                    "startColumn": 4,
-                    "startOffset": 4963,
-                    "endColumn": 82,
-                    "endOffset": 5041
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2006,
-                        "endColumn": 82,
-                        "endOffset": 2084
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 5046,
-                    "endColumn": 100,
-                    "endOffset": 5142
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2089,
-                        "endColumn": 100,
-                        "endOffset": 2185
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-iw.json b/android/.build/intermediates/blame/res/debug/multi/values-iw.json
deleted file mode 100644
index e394ce35be040ca11af9d18d260fca45c4ad237f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-iw.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 103,
-                    "endOffset": 204
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 103,
-                        "endOffset": 154
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 209,
-                    "endColumn": 109,
-                    "endOffset": 314
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 159,
-                        "endColumn": 109,
-                        "endOffset": 264
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 319,
-                    "endColumn": 125,
-                    "endOffset": 440
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 269,
-                        "endColumn": 125,
-                        "endOffset": 390
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 445,
-                    "endColumn": 98,
-                    "endOffset": 539
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 395,
-                        "endColumn": 98,
-                        "endOffset": 489
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 544,
-                    "endColumn": 107,
-                    "endOffset": 647
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 494,
-                        "endColumn": 107,
-                        "endOffset": 597
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 652,
-                    "endColumn": 83,
-                    "endOffset": 731
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 602,
-                        "endColumn": 83,
-                        "endOffset": 681
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 736,
-                    "endColumn": 99,
-                    "endOffset": 831
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 686,
-                        "endColumn": 99,
-                        "endOffset": 781
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 836,
-                    "endColumn": 113,
-                    "endOffset": 945
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 786,
-                        "endColumn": 113,
-                        "endOffset": 895
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 950,
-                    "endColumn": 77,
-                    "endOffset": 1023
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 900,
-                        "endColumn": 77,
-                        "endOffset": 973
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1028,
-                    "endColumn": 77,
-                    "endOffset": 1101
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 978,
-                        "endColumn": 77,
-                        "endOffset": 1051
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1106,
-                    "endColumn": 78,
-                    "endOffset": 1180
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1056,
-                        "endColumn": 78,
-                        "endOffset": 1130
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1185,
-                    "endColumn": 101,
-                    "endOffset": 1282
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1135,
-                        "endColumn": 101,
-                        "endOffset": 1232
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1287,
-                    "endColumn": 103,
-                    "endOffset": 1386
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1237,
-                        "endColumn": 103,
-                        "endOffset": 1336
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1391,
-                    "endColumn": 95,
-                    "endOffset": 1482
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1341,
-                        "endColumn": 95,
-                        "endOffset": 1432
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1487,
-                    "endColumn": 102,
-                    "endOffset": 1585
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1437,
-                        "endColumn": 102,
-                        "endOffset": 1535
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1590,
-                    "endColumn": 100,
-                    "endOffset": 1686
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1540,
-                        "endColumn": 100,
-                        "endOffset": 1636
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1691,
-                    "endColumn": 99,
-                    "endOffset": 1786
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1641,
-                        "endColumn": 99,
-                        "endOffset": 1736
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1791,
-                    "endColumn": 115,
-                    "endOffset": 1902
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1741,
-                        "endColumn": 115,
-                        "endOffset": 1852
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1907,
-                    "endColumn": 95,
-                    "endOffset": 1998
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1857,
-                        "endColumn": 95,
-                        "endOffset": 1948
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2003,
-                    "endColumn": 104,
-                    "endOffset": 2103
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 100,
-                        "endOffset": 383
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2108,
-                    "endColumn": 185,
-                    "endOffset": 2289
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 384,
-                        "endColumn": 185,
-                        "endOffset": 569
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2294,
-                    "endColumn": 126,
-                    "endOffset": 2416
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 570,
-                        "endColumn": 122,
-                        "endOffset": 692
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2421,
-                    "endColumn": 105,
-                    "endOffset": 2522
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 693,
-                        "endColumn": 101,
-                        "endOffset": 794
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2527,
-                    "endColumn": 197,
-                    "endOffset": 2720
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 795,
-                        "endColumn": 197,
-                        "endOffset": 992
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2725,
-                    "endColumn": 126,
-                    "endOffset": 2847
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 993,
-                        "endColumn": 122,
-                        "endOffset": 1115
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2852,
-                    "endColumn": 131,
-                    "endOffset": 2979
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1116,
-                        "endColumn": 127,
-                        "endOffset": 1243
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 2984,
-                    "endColumn": 176,
-                    "endOffset": 3156
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 176,
-                        "endOffset": 461
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3161,
-                    "endColumn": 194,
-                    "endOffset": 3351
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1244,
-                        "endColumn": 194,
-                        "endOffset": 1438
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3356,
-                    "endColumn": 104,
-                    "endOffset": 3456
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1439,
-                        "endColumn": 100,
-                        "endOffset": 1539
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3461,
-                    "endColumn": 175,
-                    "endOffset": 3632
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1540,
-                        "endColumn": 175,
-                        "endOffset": 1715
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3637,
-                    "endColumn": 124,
-                    "endOffset": 3757
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1716,
-                        "endColumn": 120,
-                        "endOffset": 1836
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3762,
-                    "endColumn": 192,
-                    "endOffset": 3950
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1837,
-                        "endColumn": 192,
-                        "endOffset": 2029
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 3955,
-                    "endColumn": 174,
-                    "endOffset": 4125
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2030,
-                        "endColumn": 170,
-                        "endOffset": 2200
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4130,
-                    "endColumn": 89,
-                    "endOffset": 4215
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2201,
-                        "endColumn": 85,
-                        "endOffset": 2286
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4220,
-                    "endColumn": 89,
-                    "endOffset": 4305
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2287,
-                        "endColumn": 85,
-                        "endOffset": 2372
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4310,
-                    "endColumn": 109,
-                    "endOffset": 4415
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2373,
-                        "endColumn": 105,
-                        "endOffset": 2478
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4420,
-                    "endColumn": 78,
-                    "endOffset": 4494
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1953,
-                        "endColumn": 78,
-                        "endOffset": 2027
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4499,
-                    "endColumn": 102,
-                    "endOffset": 4597
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2032,
-                        "endColumn": 102,
-                        "endOffset": 2130
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ja.json b/android/.build/intermediates/blame/res/debug/multi/values-ja.json
deleted file mode 100644
index a96744e1b0407c3ddb008f03813095f5d8e92d54..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ja.json
+++ /dev/null
@@ -1,786 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 96,
-                    "endOffset": 197
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 96,
-                        "endOffset": 147
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 202,
-                    "endColumn": 106,
-                    "endOffset": 304
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 152,
-                        "endColumn": 106,
-                        "endOffset": 254
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 309,
-                    "endColumn": 120,
-                    "endOffset": 425
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 259,
-                        "endColumn": 120,
-                        "endOffset": 375
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 430,
-                    "endColumn": 92,
-                    "endOffset": 518
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 380,
-                        "endColumn": 92,
-                        "endOffset": 468
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 523,
-                    "endColumn": 104,
-                    "endOffset": 623
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 473,
-                        "endColumn": 104,
-                        "endOffset": 573
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 628,
-                    "endColumn": 81,
-                    "endOffset": 705
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 578,
-                        "endColumn": 81,
-                        "endOffset": 655
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 710,
-                    "endColumn": 97,
-                    "endOffset": 803
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 660,
-                        "endColumn": 97,
-                        "endOffset": 753
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 808,
-                    "endColumn": 107,
-                    "endOffset": 911
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 758,
-                        "endColumn": 107,
-                        "endOffset": 861
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 916,
-                    "endColumn": 76,
-                    "endOffset": 988
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 866,
-                        "endColumn": 76,
-                        "endOffset": 938
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 993,
-                    "endColumn": 75,
-                    "endOffset": 1064
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 943,
-                        "endColumn": 75,
-                        "endOffset": 1014
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1069,
-                    "endColumn": 77,
-                    "endOffset": 1142
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1019,
-                        "endColumn": 77,
-                        "endOffset": 1092
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1147,
-                    "endColumn": 101,
-                    "endOffset": 1244
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1097,
-                        "endColumn": 101,
-                        "endOffset": 1194
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1249,
-                    "endColumn": 98,
-                    "endOffset": 1343
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1199,
-                        "endColumn": 98,
-                        "endOffset": 1293
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1348,
-                    "endColumn": 94,
-                    "endOffset": 1438
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1298,
-                        "endColumn": 94,
-                        "endOffset": 1388
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1443,
-                    "endColumn": 102,
-                    "endOffset": 1541
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1393,
-                        "endColumn": 102,
-                        "endOffset": 1491
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1546,
-                    "endColumn": 94,
-                    "endOffset": 1636
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1496,
-                        "endColumn": 94,
-                        "endOffset": 1586
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1641,
-                    "endColumn": 95,
-                    "endOffset": 1732
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1591,
-                        "endColumn": 95,
-                        "endOffset": 1682
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1737,
-                    "endColumn": 110,
-                    "endOffset": 1843
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1687,
-                        "endColumn": 110,
-                        "endOffset": 1793
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1848,
-                    "endColumn": 96,
-                    "endOffset": 1940
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1798,
-                        "endColumn": 96,
-                        "endOffset": 1890
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 1945,
-                    "endColumn": 105,
-                    "endOffset": 2046
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 101,
-                        "endOffset": 384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2051,
-                    "endColumn": 165,
-                    "endOffset": 2212
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 385,
-                        "endColumn": 165,
-                        "endOffset": 550
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2217,
-                    "endColumn": 121,
-                    "endOffset": 2334
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 551,
-                        "endColumn": 117,
-                        "endOffset": 668
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2339,
-                    "endColumn": 107,
-                    "endOffset": 2442
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 669,
-                        "endColumn": 103,
-                        "endOffset": 772
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2447,
-                    "endColumn": 188,
-                    "endOffset": 2631
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 773,
-                        "endColumn": 188,
-                        "endOffset": 961
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2636,
-                    "endColumn": 121,
-                    "endOffset": 2753
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 962,
-                        "endColumn": 117,
-                        "endOffset": 1079
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2758,
-                    "endColumn": 127,
-                    "endOffset": 2881
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1080,
-                        "endColumn": 123,
-                        "endOffset": 1203
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 2886,
-                    "endColumn": 180,
-                    "endOffset": 3062
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 180,
-                        "endOffset": 465
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3067,
-                    "endColumn": 190,
-                    "endOffset": 3253
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1204,
-                        "endColumn": 190,
-                        "endOffset": 1394
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3258,
-                    "endColumn": 102,
-                    "endOffset": 3356
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1395,
-                        "endColumn": 98,
-                        "endOffset": 1493
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3361,
-                    "endColumn": 163,
-                    "endOffset": 3520
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1494,
-                        "endColumn": 163,
-                        "endOffset": 1657
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3525,
-                    "endColumn": 120,
-                    "endOffset": 3641
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1658,
-                        "endColumn": 116,
-                        "endOffset": 1774
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3646,
-                    "endColumn": 178,
-                    "endOffset": 3820
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1775,
-                        "endColumn": 178,
-                        "endOffset": 1953
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 3825,
-                    "endColumn": 149,
-                    "endOffset": 3970
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 1954,
-                        "endColumn": 145,
-                        "endOffset": 2099
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 3975,
-                    "endColumn": 89,
-                    "endOffset": 4060
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2100,
-                        "endColumn": 85,
-                        "endOffset": 2185
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4065,
-                    "endColumn": 88,
-                    "endOffset": 4149
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2186,
-                        "endColumn": 84,
-                        "endOffset": 2270
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4154,
-                    "endColumn": 99,
-                    "endOffset": 4249
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2271,
-                        "endColumn": 95,
-                        "endOffset": 2366
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4254,
-                    "endColumn": 75,
-                    "endOffset": 4325
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ja/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 244,
-                        "endColumn": 75,
-                        "endOffset": 315
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4330,
-                    "endColumn": 96,
-                    "endOffset": 4422
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ja/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 147,
-                        "endColumn": 96,
-                        "endOffset": 239
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 4427,
-                    "endColumn": 91,
-                    "endOffset": 4514
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ja/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 91,
-                        "endOffset": 142
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 41,
-                    "startColumn": 4,
-                    "startOffset": 4519,
-                    "endColumn": 77,
-                    "endOffset": 4592
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1895,
-                        "endColumn": 77,
-                        "endOffset": 1968
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 4597,
-                    "endColumn": 100,
-                    "endOffset": 4693
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 1973,
-                        "endColumn": 100,
-                        "endOffset": 2069
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ka-rGE.json b/android/.build/intermediates/blame/res/debug/multi/values-ka-rGE.json
deleted file mode 100644
index ba6e469fb335d8833c2119b12762d350a364a1dc..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ka-rGE.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 108,
-                    "endOffset": 159
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 108,
-                        "endOffset": 159
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 164,
-                    "endColumn": 107,
-                    "endOffset": 267
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 164,
-                        "endColumn": 107,
-                        "endOffset": 267
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 272,
-                    "endColumn": 122,
-                    "endOffset": 390
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 272,
-                        "endColumn": 122,
-                        "endOffset": 390
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 395,
-                    "endColumn": 103,
-                    "endOffset": 494
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 395,
-                        "endColumn": 103,
-                        "endOffset": 494
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 499,
-                    "endColumn": 110,
-                    "endOffset": 605
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 499,
-                        "endColumn": 110,
-                        "endOffset": 605
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 610,
-                    "endColumn": 87,
-                    "endOffset": 693
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 610,
-                        "endColumn": 87,
-                        "endOffset": 693
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 698,
-                    "endColumn": 104,
-                    "endOffset": 798
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 698,
-                        "endColumn": 104,
-                        "endOffset": 798
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 803,
-                    "endColumn": 112,
-                    "endOffset": 911
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 803,
-                        "endColumn": 112,
-                        "endOffset": 911
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 916,
-                    "endColumn": 83,
-                    "endOffset": 995
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 916,
-                        "endColumn": 83,
-                        "endOffset": 995
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1000,
-                    "endColumn": 81,
-                    "endOffset": 1077
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1000,
-                        "endColumn": 81,
-                        "endOffset": 1077
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1082,
-                    "endColumn": 82,
-                    "endOffset": 1160
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1082,
-                        "endColumn": 82,
-                        "endOffset": 1160
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1165,
-                    "endColumn": 112,
-                    "endOffset": 1273
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1165,
-                        "endColumn": 112,
-                        "endOffset": 1273
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1278,
-                    "endColumn": 106,
-                    "endOffset": 1380
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1278,
-                        "endColumn": 106,
-                        "endOffset": 1380
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1385,
-                    "endColumn": 97,
-                    "endOffset": 1478
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1385,
-                        "endColumn": 97,
-                        "endOffset": 1478
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1483,
-                    "endColumn": 112,
-                    "endOffset": 1591
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1483,
-                        "endColumn": 112,
-                        "endOffset": 1591
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1596,
-                    "endColumn": 103,
-                    "endOffset": 1695
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1596,
-                        "endColumn": 103,
-                        "endOffset": 1695
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1700,
-                    "endColumn": 103,
-                    "endOffset": 1799
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1700,
-                        "endColumn": 103,
-                        "endOffset": 1799
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1804,
-                    "endColumn": 121,
-                    "endOffset": 1921
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1804,
-                        "endColumn": 121,
-                        "endOffset": 1921
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1926,
-                    "endColumn": 97,
-                    "endOffset": 2019
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1926,
-                        "endColumn": 97,
-                        "endOffset": 2019
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2024,
-                    "endColumn": 80,
-                    "endOffset": 2100
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2024,
-                        "endColumn": 80,
-                        "endOffset": 2100
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2105,
-                    "endColumn": 100,
-                    "endOffset": 2201
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2105,
-                        "endColumn": 100,
-                        "endOffset": 2201
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ka.json b/android/.build/intermediates/blame/res/debug/multi/values-ka.json
deleted file mode 100644
index c868a0fb3a1b863cd08db12744b3a96e5862c9f3..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ka.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 106,
-                    "endOffset": 207
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 102,
-                        "endOffset": 385
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 212,
-                    "endColumn": 180,
-                    "endOffset": 388
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 386,
-                        "endColumn": 180,
-                        "endOffset": 566
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 393,
-                    "endColumn": 129,
-                    "endOffset": 518
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 567,
-                        "endColumn": 125,
-                        "endOffset": 692
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 523,
-                    "endColumn": 111,
-                    "endOffset": 630
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 693,
-                        "endColumn": 107,
-                        "endOffset": 800
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 635,
-                    "endColumn": 212,
-                    "endOffset": 843
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 801,
-                        "endColumn": 212,
-                        "endOffset": 1013
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 848,
-                    "endColumn": 135,
-                    "endOffset": 979
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1014,
-                        "endColumn": 131,
-                        "endOffset": 1145
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 984,
-                    "endColumn": 136,
-                    "endOffset": 1116
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1146,
-                        "endColumn": 132,
-                        "endOffset": 1278
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1121,
-                    "endColumn": 201,
-                    "endOffset": 1318
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 201,
-                        "endOffset": 486
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1323,
-                    "endColumn": 231,
-                    "endOffset": 1550
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1279,
-                        "endColumn": 231,
-                        "endOffset": 1510
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1555,
-                    "endColumn": 109,
-                    "endOffset": 1660
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1511,
-                        "endColumn": 105,
-                        "endOffset": 1616
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1665,
-                    "endColumn": 185,
-                    "endOffset": 1846
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1617,
-                        "endColumn": 185,
-                        "endOffset": 1802
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1851,
-                    "endColumn": 129,
-                    "endOffset": 1976
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1803,
-                        "endColumn": 125,
-                        "endOffset": 1928
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1981,
-                    "endColumn": 219,
-                    "endOffset": 2196
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1929,
-                        "endColumn": 219,
-                        "endOffset": 2148
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2201,
-                    "endColumn": 168,
-                    "endOffset": 2365
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2149,
-                        "endColumn": 164,
-                        "endOffset": 2313
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2370,
-                    "endColumn": 95,
-                    "endOffset": 2461
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2314,
-                        "endColumn": 91,
-                        "endOffset": 2405
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2466,
-                    "endColumn": 90,
-                    "endOffset": 2552
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2406,
-                        "endColumn": 86,
-                        "endOffset": 2492
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2557,
-                    "endColumn": 104,
-                    "endOffset": 2657
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2493,
-                        "endColumn": 100,
-                        "endOffset": 2593
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-kk-rKZ.json b/android/.build/intermediates/blame/res/debug/multi/values-kk-rKZ.json
deleted file mode 100644
index cb72d3114c8ef12570fb5ca997874dfc76258789..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-kk-rKZ.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 111,
-                    "endOffset": 162
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 111,
-                        "endOffset": 162
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 167,
-                    "endColumn": 107,
-                    "endOffset": 270
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 167,
-                        "endColumn": 107,
-                        "endOffset": 270
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 275,
-                    "endColumn": 122,
-                    "endOffset": 393
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 275,
-                        "endColumn": 122,
-                        "endOffset": 393
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 398,
-                    "endColumn": 102,
-                    "endOffset": 496
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 398,
-                        "endColumn": 102,
-                        "endOffset": 496
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 501,
-                    "endColumn": 109,
-                    "endOffset": 606
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 501,
-                        "endColumn": 109,
-                        "endOffset": 606
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 611,
-                    "endColumn": 84,
-                    "endOffset": 691
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 611,
-                        "endColumn": 84,
-                        "endOffset": 691
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 696,
-                    "endColumn": 105,
-                    "endOffset": 797
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 696,
-                        "endColumn": 105,
-                        "endOffset": 797
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 802,
-                    "endColumn": 118,
-                    "endOffset": 916
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 802,
-                        "endColumn": 118,
-                        "endOffset": 916
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 921,
-                    "endColumn": 80,
-                    "endOffset": 997
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 921,
-                        "endColumn": 80,
-                        "endOffset": 997
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1002,
-                    "endColumn": 79,
-                    "endOffset": 1077
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1002,
-                        "endColumn": 79,
-                        "endOffset": 1077
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1082,
-                    "endColumn": 80,
-                    "endOffset": 1158
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1082,
-                        "endColumn": 80,
-                        "endOffset": 1158
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1163,
-                    "endColumn": 102,
-                    "endOffset": 1261
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1163,
-                        "endColumn": 102,
-                        "endOffset": 1261
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1266,
-                    "endColumn": 104,
-                    "endOffset": 1366
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1266,
-                        "endColumn": 104,
-                        "endOffset": 1366
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1371,
-                    "endColumn": 97,
-                    "endOffset": 1464
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1371,
-                        "endColumn": 97,
-                        "endOffset": 1464
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1469,
-                    "endColumn": 106,
-                    "endOffset": 1571
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1469,
-                        "endColumn": 106,
-                        "endOffset": 1571
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1576,
-                    "endColumn": 108,
-                    "endOffset": 1680
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1576,
-                        "endColumn": 108,
-                        "endOffset": 1680
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1685,
-                    "endColumn": 99,
-                    "endOffset": 1780
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1685,
-                        "endColumn": 99,
-                        "endOffset": 1780
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1785,
-                    "endColumn": 114,
-                    "endOffset": 1895
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1785,
-                        "endColumn": 114,
-                        "endOffset": 1895
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1900,
-                    "endColumn": 98,
-                    "endOffset": 1994
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1900,
-                        "endColumn": 98,
-                        "endOffset": 1994
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 1999,
-                    "endColumn": 80,
-                    "endOffset": 2075
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1999,
-                        "endColumn": 80,
-                        "endOffset": 2075
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2080,
-                    "endColumn": 100,
-                    "endOffset": 2176
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2080,
-                        "endColumn": 100,
-                        "endOffset": 2176
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-kk.json b/android/.build/intermediates/blame/res/debug/multi/values-kk.json
deleted file mode 100644
index 44658b1b93ead13730e76815bcbd7a570f752057..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-kk.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 104,
-                    "endOffset": 205
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 100,
-                        "endOffset": 383
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 210,
-                    "endColumn": 184,
-                    "endOffset": 390
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 384,
-                        "endColumn": 184,
-                        "endOffset": 568
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 395,
-                    "endColumn": 127,
-                    "endOffset": 518
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 569,
-                        "endColumn": 123,
-                        "endOffset": 692
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 523,
-                    "endColumn": 107,
-                    "endOffset": 626
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 693,
-                        "endColumn": 103,
-                        "endOffset": 796
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 631,
-                    "endColumn": 198,
-                    "endOffset": 825
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 797,
-                        "endColumn": 198,
-                        "endOffset": 995
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 830,
-                    "endColumn": 127,
-                    "endOffset": 953
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 996,
-                        "endColumn": 123,
-                        "endOffset": 1119
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 958,
-                    "endColumn": 137,
-                    "endOffset": 1091
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1120,
-                        "endColumn": 133,
-                        "endOffset": 1253
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1096,
-                    "endColumn": 222,
-                    "endOffset": 1314
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 222,
-                        "endOffset": 507
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1319,
-                    "endColumn": 223,
-                    "endOffset": 1538
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1254,
-                        "endColumn": 223,
-                        "endOffset": 1477
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1543,
-                    "endColumn": 107,
-                    "endOffset": 1646
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1478,
-                        "endColumn": 103,
-                        "endOffset": 1581
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1651,
-                    "endColumn": 187,
-                    "endOffset": 1834
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1582,
-                        "endColumn": 187,
-                        "endOffset": 1769
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1839,
-                    "endColumn": 130,
-                    "endOffset": 1965
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1770,
-                        "endColumn": 126,
-                        "endOffset": 1896
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1970,
-                    "endColumn": 211,
-                    "endOffset": 2177
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1897,
-                        "endColumn": 211,
-                        "endOffset": 2108
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2182,
-                    "endColumn": 186,
-                    "endOffset": 2364
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2109,
-                        "endColumn": 182,
-                        "endOffset": 2291
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2369,
-                    "endColumn": 92,
-                    "endOffset": 2457
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2292,
-                        "endColumn": 88,
-                        "endOffset": 2380
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2462,
-                    "endColumn": 88,
-                    "endOffset": 2546
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2381,
-                        "endColumn": 84,
-                        "endOffset": 2465
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2551,
-                    "endColumn": 106,
-                    "endOffset": 2653
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2466,
-                        "endColumn": 102,
-                        "endOffset": 2568
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-km-rKH.json b/android/.build/intermediates/blame/res/debug/multi/values-km-rKH.json
deleted file mode 100644
index 28d41a077874e45fd9c122ec8570f2cb471ae37f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-km-rKH.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 102,
-                    "endOffset": 153
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 102,
-                        "endOffset": 153
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 158,
-                    "endColumn": 107,
-                    "endOffset": 261
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 158,
-                        "endColumn": 107,
-                        "endOffset": 261
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 266,
-                    "endColumn": 122,
-                    "endOffset": 384
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 266,
-                        "endColumn": 122,
-                        "endOffset": 384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 389,
-                    "endColumn": 99,
-                    "endOffset": 484
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 389,
-                        "endColumn": 99,
-                        "endOffset": 484
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 489,
-                    "endColumn": 111,
-                    "endOffset": 596
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 489,
-                        "endColumn": 111,
-                        "endOffset": 596
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 601,
-                    "endColumn": 86,
-                    "endOffset": 683
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 601,
-                        "endColumn": 86,
-                        "endOffset": 683
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 688,
-                    "endColumn": 103,
-                    "endOffset": 787
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 688,
-                        "endColumn": 103,
-                        "endOffset": 787
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 792,
-                    "endColumn": 117,
-                    "endOffset": 905
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 792,
-                        "endColumn": 117,
-                        "endOffset": 905
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 910,
-                    "endColumn": 76,
-                    "endOffset": 982
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 910,
-                        "endColumn": 76,
-                        "endOffset": 982
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 987,
-                    "endColumn": 76,
-                    "endOffset": 1059
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 987,
-                        "endColumn": 76,
-                        "endOffset": 1059
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1064,
-                    "endColumn": 82,
-                    "endOffset": 1142
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1064,
-                        "endColumn": 82,
-                        "endOffset": 1142
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1147,
-                    "endColumn": 103,
-                    "endOffset": 1246
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1147,
-                        "endColumn": 103,
-                        "endOffset": 1246
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1251,
-                    "endColumn": 104,
-                    "endOffset": 1351
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1251,
-                        "endColumn": 104,
-                        "endOffset": 1351
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1356,
-                    "endColumn": 99,
-                    "endOffset": 1451
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1356,
-                        "endColumn": 99,
-                        "endOffset": 1451
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1456,
-                    "endColumn": 109,
-                    "endOffset": 1561
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1456,
-                        "endColumn": 109,
-                        "endOffset": 1561
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1566,
-                    "endColumn": 106,
-                    "endOffset": 1668
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1566,
-                        "endColumn": 106,
-                        "endOffset": 1668
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1673,
-                    "endColumn": 107,
-                    "endOffset": 1776
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1673,
-                        "endColumn": 107,
-                        "endOffset": 1776
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1781,
-                    "endColumn": 122,
-                    "endOffset": 1899
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1781,
-                        "endColumn": 122,
-                        "endOffset": 1899
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1904,
-                    "endColumn": 97,
-                    "endOffset": 1997
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1904,
-                        "endColumn": 97,
-                        "endOffset": 1997
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2002,
-                    "endColumn": 82,
-                    "endOffset": 2080
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2002,
-                        "endColumn": 82,
-                        "endOffset": 2080
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2085,
-                    "endColumn": 100,
-                    "endOffset": 2181
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2085,
-                        "endColumn": 100,
-                        "endOffset": 2181
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-km.json b/android/.build/intermediates/blame/res/debug/multi/values-km.json
deleted file mode 100644
index dcd50e2ca872a2ddc6666670c05d5cc9e4cbbf46..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-km.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 103,
-                    "endOffset": 204
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 99,
-                        "endOffset": 382
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 209,
-                    "endColumn": 186,
-                    "endOffset": 391
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 383,
-                        "endColumn": 186,
-                        "endOffset": 569
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 396,
-                    "endColumn": 122,
-                    "endOffset": 514
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 570,
-                        "endColumn": 118,
-                        "endOffset": 688
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 519,
-                    "endColumn": 106,
-                    "endOffset": 621
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 689,
-                        "endColumn": 102,
-                        "endOffset": 791
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 626,
-                    "endColumn": 220,
-                    "endOffset": 842
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 792,
-                        "endColumn": 220,
-                        "endOffset": 1012
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 847,
-                    "endColumn": 125,
-                    "endOffset": 968
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1013,
-                        "endColumn": 121,
-                        "endOffset": 1134
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 973,
-                    "endColumn": 137,
-                    "endOffset": 1106
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1135,
-                        "endColumn": 133,
-                        "endOffset": 1268
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1111,
-                    "endColumn": 207,
-                    "endOffset": 1314
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 207,
-                        "endOffset": 492
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1319,
-                    "endColumn": 216,
-                    "endOffset": 1531
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1269,
-                        "endColumn": 216,
-                        "endOffset": 1485
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1536,
-                    "endColumn": 107,
-                    "endOffset": 1639
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1486,
-                        "endColumn": 103,
-                        "endOffset": 1589
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1644,
-                    "endColumn": 201,
-                    "endOffset": 1841
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1590,
-                        "endColumn": 201,
-                        "endOffset": 1791
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1846,
-                    "endColumn": 126,
-                    "endOffset": 1968
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1792,
-                        "endColumn": 122,
-                        "endOffset": 1914
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1973,
-                    "endColumn": 203,
-                    "endOffset": 2172
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1915,
-                        "endColumn": 203,
-                        "endOffset": 2118
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2177,
-                    "endColumn": 187,
-                    "endOffset": 2360
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2119,
-                        "endColumn": 183,
-                        "endOffset": 2302
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2365,
-                    "endColumn": 93,
-                    "endOffset": 2454
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2303,
-                        "endColumn": 89,
-                        "endOffset": 2392
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2459,
-                    "endColumn": 87,
-                    "endOffset": 2542
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2393,
-                        "endColumn": 83,
-                        "endOffset": 2476
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2547,
-                    "endColumn": 105,
-                    "endOffset": 2648
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2477,
-                        "endColumn": 101,
-                        "endOffset": 2578
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-kn-rIN.json b/android/.build/intermediates/blame/res/debug/multi/values-kn-rIN.json
deleted file mode 100644
index 36cc7ccc17937702f51e964f4b5878046871bc27..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-kn-rIN.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 117,
-                    "endOffset": 168
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 117,
-                        "endOffset": 168
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 173,
-                    "endColumn": 107,
-                    "endOffset": 276
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 173,
-                        "endColumn": 107,
-                        "endOffset": 276
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 281,
-                    "endColumn": 122,
-                    "endOffset": 399
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 281,
-                        "endColumn": 122,
-                        "endOffset": 399
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 404,
-                    "endColumn": 111,
-                    "endOffset": 511
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 404,
-                        "endColumn": 111,
-                        "endOffset": 511
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 516,
-                    "endColumn": 112,
-                    "endOffset": 624
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 516,
-                        "endColumn": 112,
-                        "endOffset": 624
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 629,
-                    "endColumn": 87,
-                    "endOffset": 712
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 629,
-                        "endColumn": 87,
-                        "endOffset": 712
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 717,
-                    "endColumn": 106,
-                    "endOffset": 819
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 717,
-                        "endColumn": 106,
-                        "endOffset": 819
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 824,
-                    "endColumn": 126,
-                    "endOffset": 946
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 824,
-                        "endColumn": 126,
-                        "endOffset": 946
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 951,
-                    "endColumn": 76,
-                    "endOffset": 1023
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 951,
-                        "endColumn": 76,
-                        "endOffset": 1023
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1028,
-                    "endColumn": 76,
-                    "endOffset": 1100
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1028,
-                        "endColumn": 76,
-                        "endOffset": 1100
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1105,
-                    "endColumn": 81,
-                    "endOffset": 1182
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1105,
-                        "endColumn": 81,
-                        "endOffset": 1182
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1187,
-                    "endColumn": 115,
-                    "endOffset": 1298
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1187,
-                        "endColumn": 115,
-                        "endOffset": 1298
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1303,
-                    "endColumn": 110,
-                    "endOffset": 1409
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1303,
-                        "endColumn": 110,
-                        "endOffset": 1409
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1414,
-                    "endColumn": 98,
-                    "endOffset": 1508
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1414,
-                        "endColumn": 98,
-                        "endOffset": 1508
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1513,
-                    "endColumn": 112,
-                    "endOffset": 1621
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1513,
-                        "endColumn": 112,
-                        "endOffset": 1621
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1626,
-                    "endColumn": 103,
-                    "endOffset": 1725
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1626,
-                        "endColumn": 103,
-                        "endOffset": 1725
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1730,
-                    "endColumn": 113,
-                    "endOffset": 1839
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1730,
-                        "endColumn": 113,
-                        "endOffset": 1839
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1844,
-                    "endColumn": 125,
-                    "endOffset": 1965
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1844,
-                        "endColumn": 125,
-                        "endOffset": 1965
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1970,
-                    "endColumn": 99,
-                    "endOffset": 2065
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1970,
-                        "endColumn": 99,
-                        "endOffset": 2065
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2070,
-                    "endColumn": 81,
-                    "endOffset": 2147
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2070,
-                        "endColumn": 81,
-                        "endOffset": 2147
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2152,
-                    "endColumn": 100,
-                    "endOffset": 2248
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2152,
-                        "endColumn": 100,
-                        "endOffset": 2248
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-kn.json b/android/.build/intermediates/blame/res/debug/multi/values-kn.json
deleted file mode 100644
index 82bee543589a8bbeed0d58d97a8381a1c908359e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-kn.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 112,
-                    "endOffset": 213
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 108,
-                        "endOffset": 391
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 218,
-                    "endColumn": 201,
-                    "endOffset": 415
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 392,
-                        "endColumn": 201,
-                        "endOffset": 593
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 420,
-                    "endColumn": 134,
-                    "endOffset": 550
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 594,
-                        "endColumn": 130,
-                        "endOffset": 724
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 555,
-                    "endColumn": 109,
-                    "endOffset": 660
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 725,
-                        "endColumn": 105,
-                        "endOffset": 830
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 665,
-                    "endColumn": 201,
-                    "endOffset": 862
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 831,
-                        "endColumn": 201,
-                        "endOffset": 1032
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 867,
-                    "endColumn": 130,
-                    "endOffset": 993
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1033,
-                        "endColumn": 126,
-                        "endOffset": 1159
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 998,
-                    "endColumn": 127,
-                    "endOffset": 1121
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1160,
-                        "endColumn": 123,
-                        "endOffset": 1283
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1126,
-                    "endColumn": 204,
-                    "endOffset": 1326
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 204,
-                        "endOffset": 489
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1331,
-                    "endColumn": 208,
-                    "endOffset": 1535
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1284,
-                        "endColumn": 208,
-                        "endOffset": 1492
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1540,
-                    "endColumn": 114,
-                    "endOffset": 1650
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1493,
-                        "endColumn": 110,
-                        "endOffset": 1603
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1655,
-                    "endColumn": 190,
-                    "endOffset": 1841
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1604,
-                        "endColumn": 190,
-                        "endOffset": 1794
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1846,
-                    "endColumn": 136,
-                    "endOffset": 1978
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1795,
-                        "endColumn": 132,
-                        "endOffset": 1927
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1983,
-                    "endColumn": 203,
-                    "endOffset": 2182
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1928,
-                        "endColumn": 203,
-                        "endOffset": 2131
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2187,
-                    "endColumn": 186,
-                    "endOffset": 2369
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2132,
-                        "endColumn": 182,
-                        "endOffset": 2314
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2374,
-                    "endColumn": 98,
-                    "endOffset": 2468
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2315,
-                        "endColumn": 94,
-                        "endOffset": 2409
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2473,
-                    "endColumn": 92,
-                    "endOffset": 2561
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2410,
-                        "endColumn": 88,
-                        "endOffset": 2498
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2566,
-                    "endColumn": 113,
-                    "endOffset": 2675
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2499,
-                        "endColumn": 109,
-                        "endOffset": 2608
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ko.json b/android/.build/intermediates/blame/res/debug/multi/values-ko.json
deleted file mode 100644
index 6e32c8328352b7c0f2fced509e8ec85b762ec647..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ko.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 94,
-                    "endOffset": 195
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 94,
-                        "endOffset": 145
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 200,
-                    "endColumn": 107,
-                    "endOffset": 303
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 150,
-                        "endColumn": 107,
-                        "endOffset": 253
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 308,
-                    "endColumn": 122,
-                    "endOffset": 426
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 258,
-                        "endColumn": 122,
-                        "endOffset": 376
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 431,
-                    "endColumn": 93,
-                    "endOffset": 520
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 381,
-                        "endColumn": 93,
-                        "endOffset": 470
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 525,
-                    "endColumn": 101,
-                    "endOffset": 622
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 475,
-                        "endColumn": 101,
-                        "endOffset": 572
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 627,
-                    "endColumn": 81,
-                    "endOffset": 704
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 577,
-                        "endColumn": 81,
-                        "endOffset": 654
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 709,
-                    "endColumn": 97,
-                    "endOffset": 802
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 659,
-                        "endColumn": 97,
-                        "endOffset": 752
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 807,
-                    "endColumn": 105,
-                    "endOffset": 908
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 757,
-                        "endColumn": 105,
-                        "endOffset": 858
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 913,
-                    "endColumn": 78,
-                    "endOffset": 987
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 863,
-                        "endColumn": 78,
-                        "endOffset": 937
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 992,
-                    "endColumn": 75,
-                    "endOffset": 1063
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 942,
-                        "endColumn": 75,
-                        "endOffset": 1013
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1068,
-                    "endColumn": 79,
-                    "endOffset": 1143
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1018,
-                        "endColumn": 79,
-                        "endOffset": 1093
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1148,
-                    "endColumn": 97,
-                    "endOffset": 1241
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1098,
-                        "endColumn": 97,
-                        "endOffset": 1191
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1246,
-                    "endColumn": 94,
-                    "endOffset": 1336
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1196,
-                        "endColumn": 94,
-                        "endOffset": 1286
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1341,
-                    "endColumn": 94,
-                    "endOffset": 1431
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1291,
-                        "endColumn": 94,
-                        "endOffset": 1381
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1436,
-                    "endColumn": 99,
-                    "endOffset": 1531
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1386,
-                        "endColumn": 99,
-                        "endOffset": 1481
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1536,
-                    "endColumn": 95,
-                    "endOffset": 1627
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1486,
-                        "endColumn": 95,
-                        "endOffset": 1577
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1632,
-                    "endColumn": 98,
-                    "endOffset": 1726
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1582,
-                        "endColumn": 98,
-                        "endOffset": 1676
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1731,
-                    "endColumn": 114,
-                    "endOffset": 1841
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1681,
-                        "endColumn": 114,
-                        "endOffset": 1791
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1846,
-                    "endColumn": 93,
-                    "endOffset": 1935
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1796,
-                        "endColumn": 93,
-                        "endOffset": 1885
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 1940,
-                    "endColumn": 105,
-                    "endOffset": 2041
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 101,
-                        "endOffset": 384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2046,
-                    "endColumn": 170,
-                    "endOffset": 2212
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 385,
-                        "endColumn": 170,
-                        "endOffset": 555
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2217,
-                    "endColumn": 117,
-                    "endOffset": 2330
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 556,
-                        "endColumn": 113,
-                        "endOffset": 669
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2335,
-                    "endColumn": 103,
-                    "endOffset": 2434
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 670,
-                        "endColumn": 99,
-                        "endOffset": 769
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2439,
-                    "endColumn": 173,
-                    "endOffset": 2608
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 770,
-                        "endColumn": 173,
-                        "endOffset": 943
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2613,
-                    "endColumn": 118,
-                    "endOffset": 2727
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 944,
-                        "endColumn": 114,
-                        "endOffset": 1058
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2732,
-                    "endColumn": 123,
-                    "endOffset": 2851
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1059,
-                        "endColumn": 119,
-                        "endOffset": 1178
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 2856,
-                    "endColumn": 179,
-                    "endOffset": 3031
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 179,
-                        "endOffset": 464
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3036,
-                    "endColumn": 203,
-                    "endOffset": 3235
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1179,
-                        "endColumn": 203,
-                        "endOffset": 1382
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3240,
-                    "endColumn": 104,
-                    "endOffset": 3340
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1383,
-                        "endColumn": 100,
-                        "endOffset": 1483
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3345,
-                    "endColumn": 166,
-                    "endOffset": 3507
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1484,
-                        "endColumn": 166,
-                        "endOffset": 1650
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3512,
-                    "endColumn": 119,
-                    "endOffset": 3627
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1651,
-                        "endColumn": 115,
-                        "endOffset": 1766
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3632,
-                    "endColumn": 176,
-                    "endOffset": 3804
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1767,
-                        "endColumn": 176,
-                        "endOffset": 1943
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 3809,
-                    "endColumn": 148,
-                    "endOffset": 3953
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 1944,
-                        "endColumn": 144,
-                        "endOffset": 2088
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 3958,
-                    "endColumn": 88,
-                    "endOffset": 4042
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2089,
-                        "endColumn": 84,
-                        "endOffset": 2173
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4047,
-                    "endColumn": 87,
-                    "endOffset": 4130
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2174,
-                        "endColumn": 83,
-                        "endOffset": 2257
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4135,
-                    "endColumn": 103,
-                    "endOffset": 4234
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2258,
-                        "endColumn": 99,
-                        "endOffset": 2357
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4239,
-                    "endColumn": 77,
-                    "endOffset": 4312
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1890,
-                        "endColumn": 77,
-                        "endOffset": 1963
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4317,
-                    "endColumn": 100,
-                    "endOffset": 4413
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 1968,
-                        "endColumn": 100,
-                        "endOffset": 2064
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ky-rKG.json b/android/.build/intermediates/blame/res/debug/multi/values-ky-rKG.json
deleted file mode 100644
index e4c9ed0f69dd0ce738dbaf56e549216a70a26529..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ky-rKG.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 103,
-                    "endOffset": 154
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 103,
-                        "endOffset": 154
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 159,
-                    "endColumn": 107,
-                    "endOffset": 262
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 159,
-                        "endColumn": 107,
-                        "endOffset": 262
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 267,
-                    "endColumn": 122,
-                    "endOffset": 385
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 267,
-                        "endColumn": 122,
-                        "endOffset": 385
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 390,
-                    "endColumn": 94,
-                    "endOffset": 480
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 390,
-                        "endColumn": 94,
-                        "endOffset": 480
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 485,
-                    "endColumn": 118,
-                    "endOffset": 599
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 485,
-                        "endColumn": 118,
-                        "endOffset": 599
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 604,
-                    "endColumn": 83,
-                    "endOffset": 683
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 604,
-                        "endColumn": 83,
-                        "endOffset": 683
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 688,
-                    "endColumn": 106,
-                    "endOffset": 790
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 688,
-                        "endColumn": 106,
-                        "endOffset": 790
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 795,
-                    "endColumn": 116,
-                    "endOffset": 907
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 795,
-                        "endColumn": 116,
-                        "endOffset": 907
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 912,
-                    "endColumn": 77,
-                    "endOffset": 985
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 912,
-                        "endColumn": 77,
-                        "endOffset": 985
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 990,
-                    "endColumn": 78,
-                    "endOffset": 1064
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 990,
-                        "endColumn": 78,
-                        "endOffset": 1064
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1069,
-                    "endColumn": 80,
-                    "endOffset": 1145
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1069,
-                        "endColumn": 80,
-                        "endOffset": 1145
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1150,
-                    "endColumn": 109,
-                    "endOffset": 1255
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1150,
-                        "endColumn": 109,
-                        "endOffset": 1255
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1260,
-                    "endColumn": 106,
-                    "endOffset": 1362
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1260,
-                        "endColumn": 106,
-                        "endOffset": 1362
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1367,
-                    "endColumn": 97,
-                    "endOffset": 1460
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1367,
-                        "endColumn": 97,
-                        "endOffset": 1460
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1465,
-                    "endColumn": 105,
-                    "endOffset": 1566
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1465,
-                        "endColumn": 105,
-                        "endOffset": 1566
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1571,
-                    "endColumn": 106,
-                    "endOffset": 1673
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1571,
-                        "endColumn": 106,
-                        "endOffset": 1673
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1678,
-                    "endColumn": 100,
-                    "endOffset": 1774
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1678,
-                        "endColumn": 100,
-                        "endOffset": 1774
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1779,
-                    "endColumn": 123,
-                    "endOffset": 1898
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1779,
-                        "endColumn": 123,
-                        "endOffset": 1898
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1903,
-                    "endColumn": 102,
-                    "endOffset": 2001
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1903,
-                        "endColumn": 102,
-                        "endOffset": 2001
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2006,
-                    "endColumn": 80,
-                    "endOffset": 2082
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2006,
-                        "endColumn": 80,
-                        "endOffset": 2082
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2087,
-                    "endColumn": 100,
-                    "endOffset": 2183
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2087,
-                        "endColumn": 100,
-                        "endOffset": 2183
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ky.json b/android/.build/intermediates/blame/res/debug/multi/values-ky.json
deleted file mode 100644
index 611eabf2cbff33baf2f11b06d288b94782af1897..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ky.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 107,
-                    "endOffset": 208
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 103,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 213,
-                    "endColumn": 180,
-                    "endOffset": 389
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 387,
-                        "endColumn": 180,
-                        "endOffset": 567
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 394,
-                    "endColumn": 130,
-                    "endOffset": 520
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 568,
-                        "endColumn": 126,
-                        "endOffset": 694
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 525,
-                    "endColumn": 108,
-                    "endOffset": 629
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 695,
-                        "endColumn": 104,
-                        "endOffset": 799
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 634,
-                    "endColumn": 203,
-                    "endOffset": 833
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 800,
-                        "endColumn": 203,
-                        "endOffset": 1003
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 838,
-                    "endColumn": 128,
-                    "endOffset": 962
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1004,
-                        "endColumn": 124,
-                        "endOffset": 1128
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 967,
-                    "endColumn": 137,
-                    "endOffset": 1100
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1129,
-                        "endColumn": 133,
-                        "endOffset": 1262
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1105,
-                    "endColumn": 220,
-                    "endOffset": 1321
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 220,
-                        "endOffset": 505
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1326,
-                    "endColumn": 227,
-                    "endOffset": 1549
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1263,
-                        "endColumn": 227,
-                        "endOffset": 1490
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1554,
-                    "endColumn": 108,
-                    "endOffset": 1658
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1491,
-                        "endColumn": 104,
-                        "endOffset": 1595
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1663,
-                    "endColumn": 180,
-                    "endOffset": 1839
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1596,
-                        "endColumn": 180,
-                        "endOffset": 1776
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1844,
-                    "endColumn": 131,
-                    "endOffset": 1971
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1777,
-                        "endColumn": 127,
-                        "endOffset": 1904
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1976,
-                    "endColumn": 195,
-                    "endOffset": 2167
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1905,
-                        "endColumn": 195,
-                        "endOffset": 2100
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2172,
-                    "endColumn": 196,
-                    "endOffset": 2364
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2101,
-                        "endColumn": 192,
-                        "endOffset": 2293
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2369,
-                    "endColumn": 93,
-                    "endOffset": 2458
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2294,
-                        "endColumn": 89,
-                        "endOffset": 2383
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2463,
-                    "endColumn": 89,
-                    "endOffset": 2548
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2384,
-                        "endColumn": 85,
-                        "endOffset": 2469
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2553,
-                    "endColumn": 106,
-                    "endOffset": 2655
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2470,
-                        "endColumn": 102,
-                        "endOffset": 2572
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-land.json b/android/.build/intermediates/blame/res/debug/multi/values-land.json
deleted file mode 100644
index 9334ed1e1333ce39e51ab1356785009711aee6c2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-land.json
+++ /dev/null
@@ -1,83 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 69,
-                    "endOffset": 120
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-land/values-land.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 69,
-                        "endOffset": 120
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 125,
-                    "endColumn": 63,
-                    "endOffset": 184
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-land/values-land.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 125,
-                        "endColumn": 63,
-                        "endOffset": 184
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 189,
-                    "endColumn": 70,
-                    "endOffset": 255
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-land/values-land.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 189,
-                        "endColumn": 70,
-                        "endOffset": 255
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 260,
-                    "endColumn": 67,
-                    "endOffset": 323
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-land/values-land.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 260,
-                        "endColumn": 67,
-                        "endOffset": 323
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-large-v4.json b/android/.build/intermediates/blame/res/debug/multi/values-large-v4.json
deleted file mode 100644
index fa2568bf0bc027a373f4e3e7e521c6d4f2fcc8fa..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-large-v4.json
+++ /dev/null
@@ -1,178 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 58,
-                    "endOffset": 109
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-large-v4/values-large-v4.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 58,
-                        "endOffset": 109
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 114,
-                    "endColumn": 70,
-                    "endOffset": 180
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-large-v4/values-large-v4.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 114,
-                        "endColumn": 70,
-                        "endOffset": 180
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 185,
-                    "endColumn": 70,
-                    "endOffset": 251
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-large-v4/values-large-v4.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 185,
-                        "endColumn": 70,
-                        "endOffset": 251
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 256,
-                    "endColumn": 69,
-                    "endOffset": 321
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-large-v4/values-large-v4.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 256,
-                        "endColumn": 69,
-                        "endOffset": 321
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 326,
-                    "endColumn": 69,
-                    "endOffset": 391
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-large-v4/values-large-v4.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 326,
-                        "endColumn": 69,
-                        "endOffset": 391
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 396,
-                    "endColumn": 67,
-                    "endOffset": 459
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-large-v4/values-large-v4.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 396,
-                        "endColumn": 67,
-                        "endOffset": 459
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 464,
-                    "endColumn": 67,
-                    "endOffset": 527
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-large-v4/values-large-v4.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 464,
-                        "endColumn": 67,
-                        "endOffset": 527
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 532,
-                    "endColumn": 103,
-                    "endOffset": 631
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-large-v4/values-large-v4.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 532,
-                        "endColumn": 103,
-                        "endOffset": 631
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 636,
-                    "endColumn": 115,
-                    "endOffset": 747
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-large-v4/values-large-v4.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 636,
-                        "endColumn": 115,
-                        "endOffset": 747
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ldltr-v21.json b/android/.build/intermediates/blame/res/debug/multi/values-ldltr-v21.json
deleted file mode 100644
index 8d4b247cbecc121acf461889214ba5c042a29ae2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ldltr-v21.json
+++ /dev/null
@@ -1,26 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 112,
-                    "endOffset": 163
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ldltr-v21/values-ldltr-v21.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 112,
-                        "endOffset": 163
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-lo-rLA.json b/android/.build/intermediates/blame/res/debug/multi/values-lo-rLA.json
deleted file mode 100644
index ff90f7b4f77ad8deba615debf8e5e7e5f75e2e40..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-lo-rLA.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-lo-rLA/values-lo-rLA.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 102,
-                    "endOffset": 153
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 102,
-                        "endOffset": 153
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 158,
-                    "endColumn": 107,
-                    "endOffset": 261
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 158,
-                        "endColumn": 107,
-                        "endOffset": 261
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 266,
-                    "endColumn": 122,
-                    "endOffset": 384
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 266,
-                        "endColumn": 122,
-                        "endOffset": 384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 389,
-                    "endColumn": 96,
-                    "endOffset": 481
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 389,
-                        "endColumn": 96,
-                        "endOffset": 481
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 486,
-                    "endColumn": 106,
-                    "endOffset": 588
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 486,
-                        "endColumn": 106,
-                        "endOffset": 588
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 593,
-                    "endColumn": 84,
-                    "endOffset": 673
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 593,
-                        "endColumn": 84,
-                        "endOffset": 673
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 678,
-                    "endColumn": 104,
-                    "endOffset": 778
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 678,
-                        "endColumn": 104,
-                        "endOffset": 778
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 783,
-                    "endColumn": 111,
-                    "endOffset": 890
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 783,
-                        "endColumn": 111,
-                        "endOffset": 890
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 895,
-                    "endColumn": 76,
-                    "endOffset": 967
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 895,
-                        "endColumn": 76,
-                        "endOffset": 967
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 972,
-                    "endColumn": 77,
-                    "endOffset": 1045
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 972,
-                        "endColumn": 77,
-                        "endOffset": 1045
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1050,
-                    "endColumn": 79,
-                    "endOffset": 1125
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1050,
-                        "endColumn": 79,
-                        "endOffset": 1125
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1130,
-                    "endColumn": 106,
-                    "endOffset": 1232
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1130,
-                        "endColumn": 106,
-                        "endOffset": 1232
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1237,
-                    "endColumn": 96,
-                    "endOffset": 1329
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1237,
-                        "endColumn": 96,
-                        "endOffset": 1329
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1334,
-                    "endColumn": 97,
-                    "endOffset": 1427
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1334,
-                        "endColumn": 97,
-                        "endOffset": 1427
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1432,
-                    "endColumn": 104,
-                    "endOffset": 1532
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1432,
-                        "endColumn": 104,
-                        "endOffset": 1532
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1537,
-                    "endColumn": 102,
-                    "endOffset": 1635
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1537,
-                        "endColumn": 102,
-                        "endOffset": 1635
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1640,
-                    "endColumn": 103,
-                    "endOffset": 1739
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1640,
-                        "endColumn": 103,
-                        "endOffset": 1739
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1744,
-                    "endColumn": 121,
-                    "endOffset": 1861
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1744,
-                        "endColumn": 121,
-                        "endOffset": 1861
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1866,
-                    "endColumn": 95,
-                    "endOffset": 1957
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1866,
-                        "endColumn": 95,
-                        "endOffset": 1957
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 1962,
-                    "endColumn": 80,
-                    "endOffset": 2038
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1962,
-                        "endColumn": 80,
-                        "endOffset": 2038
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2043,
-                    "endColumn": 100,
-                    "endOffset": 2139
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2043,
-                        "endColumn": 100,
-                        "endOffset": 2139
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-lo.json b/android/.build/intermediates/blame/res/debug/multi/values-lo.json
deleted file mode 100644
index 4bf886a1a9c5897e1cd89308e6950837d67cf96a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-lo.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-lo/values-lo.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 109,
-                    "endOffset": 210
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 105,
-                        "endOffset": 388
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 215,
-                    "endColumn": 201,
-                    "endOffset": 412
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 389,
-                        "endColumn": 201,
-                        "endOffset": 590
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 417,
-                    "endColumn": 131,
-                    "endOffset": 544
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 591,
-                        "endColumn": 127,
-                        "endOffset": 718
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 549,
-                    "endColumn": 108,
-                    "endOffset": 653
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 719,
-                        "endColumn": 104,
-                        "endOffset": 823
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 658,
-                    "endColumn": 210,
-                    "endOffset": 864
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 824,
-                        "endColumn": 210,
-                        "endOffset": 1034
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 869,
-                    "endColumn": 126,
-                    "endOffset": 991
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1035,
-                        "endColumn": 122,
-                        "endOffset": 1157
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 996,
-                    "endColumn": 144,
-                    "endOffset": 1136
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1158,
-                        "endColumn": 140,
-                        "endOffset": 1298
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1141,
-                    "endColumn": 190,
-                    "endOffset": 1327
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 190,
-                        "endOffset": 475
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1332,
-                    "endColumn": 210,
-                    "endOffset": 1538
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1299,
-                        "endColumn": 210,
-                        "endOffset": 1509
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1543,
-                    "endColumn": 106,
-                    "endOffset": 1645
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1510,
-                        "endColumn": 102,
-                        "endOffset": 1612
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1650,
-                    "endColumn": 196,
-                    "endOffset": 1842
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1613,
-                        "endColumn": 196,
-                        "endOffset": 1809
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1847,
-                    "endColumn": 130,
-                    "endOffset": 1973
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1810,
-                        "endColumn": 126,
-                        "endOffset": 1936
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1978,
-                    "endColumn": 229,
-                    "endOffset": 2203
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1937,
-                        "endColumn": 229,
-                        "endOffset": 2166
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2208,
-                    "endColumn": 190,
-                    "endOffset": 2394
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2167,
-                        "endColumn": 186,
-                        "endOffset": 2353
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2399,
-                    "endColumn": 97,
-                    "endOffset": 2492
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2354,
-                        "endColumn": 93,
-                        "endOffset": 2447
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2497,
-                    "endColumn": 98,
-                    "endOffset": 2591
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2448,
-                        "endColumn": 94,
-                        "endOffset": 2542
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2596,
-                    "endColumn": 113,
-                    "endOffset": 2705
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2543,
-                        "endColumn": 109,
-                        "endOffset": 2652
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-lt.json b/android/.build/intermediates/blame/res/debug/multi/values-lt.json
deleted file mode 100644
index 2cef0de2068351e332385d746241c0c3aa2fe1ce..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-lt.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-lt/values-lt.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 115,
-                    "endOffset": 216
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 115,
-                        "endOffset": 166
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 221,
-                    "endColumn": 107,
-                    "endOffset": 324
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 171,
-                        "endColumn": 107,
-                        "endOffset": 274
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 329,
-                    "endColumn": 122,
-                    "endOffset": 447
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 279,
-                        "endColumn": 122,
-                        "endOffset": 397
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 452,
-                    "endColumn": 100,
-                    "endOffset": 548
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 402,
-                        "endColumn": 100,
-                        "endOffset": 498
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 553,
-                    "endColumn": 112,
-                    "endOffset": 661
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 503,
-                        "endColumn": 112,
-                        "endOffset": 611
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 666,
-                    "endColumn": 86,
-                    "endOffset": 748
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 616,
-                        "endColumn": 86,
-                        "endOffset": 698
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 753,
-                    "endColumn": 108,
-                    "endOffset": 857
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 703,
-                        "endColumn": 108,
-                        "endOffset": 807
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 862,
-                    "endColumn": 120,
-                    "endOffset": 978
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 812,
-                        "endColumn": 120,
-                        "endOffset": 928
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 983,
-                    "endColumn": 81,
-                    "endOffset": 1060
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 933,
-                        "endColumn": 81,
-                        "endOffset": 1010
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1065,
-                    "endColumn": 80,
-                    "endOffset": 1141
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1015,
-                        "endColumn": 80,
-                        "endOffset": 1091
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1146,
-                    "endColumn": 84,
-                    "endOffset": 1226
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1096,
-                        "endColumn": 84,
-                        "endOffset": 1176
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1231,
-                    "endColumn": 108,
-                    "endOffset": 1335
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1181,
-                        "endColumn": 108,
-                        "endOffset": 1285
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1340,
-                    "endColumn": 108,
-                    "endOffset": 1444
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1290,
-                        "endColumn": 108,
-                        "endOffset": 1394
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1449,
-                    "endColumn": 99,
-                    "endOffset": 1544
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1399,
-                        "endColumn": 99,
-                        "endOffset": 1494
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1549,
-                    "endColumn": 109,
-                    "endOffset": 1654
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1499,
-                        "endColumn": 109,
-                        "endOffset": 1604
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1659,
-                    "endColumn": 103,
-                    "endOffset": 1758
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1609,
-                        "endColumn": 103,
-                        "endOffset": 1708
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1763,
-                    "endColumn": 112,
-                    "endOffset": 1871
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1713,
-                        "endColumn": 112,
-                        "endOffset": 1821
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1876,
-                    "endColumn": 129,
-                    "endOffset": 2001
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1826,
-                        "endColumn": 129,
-                        "endOffset": 1951
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 2006,
-                    "endColumn": 100,
-                    "endOffset": 2102
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1956,
-                        "endColumn": 100,
-                        "endOffset": 2052
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2107,
-                    "endColumn": 108,
-                    "endOffset": 2211
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 104,
-                        "endOffset": 387
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2216,
-                    "endColumn": 183,
-                    "endOffset": 2395
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 388,
-                        "endColumn": 183,
-                        "endOffset": 571
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2400,
-                    "endColumn": 133,
-                    "endOffset": 2529
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 572,
-                        "endColumn": 129,
-                        "endOffset": 701
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2534,
-                    "endColumn": 108,
-                    "endOffset": 2638
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 702,
-                        "endColumn": 104,
-                        "endOffset": 806
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2643,
-                    "endColumn": 211,
-                    "endOffset": 2850
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 807,
-                        "endColumn": 211,
-                        "endOffset": 1018
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2855,
-                    "endColumn": 131,
-                    "endOffset": 2982
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1019,
-                        "endColumn": 127,
-                        "endOffset": 1146
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2987,
-                    "endColumn": 134,
-                    "endOffset": 3117
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1147,
-                        "endColumn": 130,
-                        "endOffset": 1277
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3122,
-                    "endColumn": 217,
-                    "endOffset": 3335
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 217,
-                        "endOffset": 502
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3340,
-                    "endColumn": 224,
-                    "endOffset": 3560
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1278,
-                        "endColumn": 224,
-                        "endOffset": 1502
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3565,
-                    "endColumn": 110,
-                    "endOffset": 3671
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1503,
-                        "endColumn": 106,
-                        "endOffset": 1609
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3676,
-                    "endColumn": 195,
-                    "endOffset": 3867
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1610,
-                        "endColumn": 195,
-                        "endOffset": 1805
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3872,
-                    "endColumn": 135,
-                    "endOffset": 4003
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1806,
-                        "endColumn": 131,
-                        "endOffset": 1937
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 4008,
-                    "endColumn": 211,
-                    "endOffset": 4215
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1938,
-                        "endColumn": 211,
-                        "endOffset": 2149
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4220,
-                    "endColumn": 179,
-                    "endOffset": 4395
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2150,
-                        "endColumn": 175,
-                        "endOffset": 2325
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4400,
-                    "endColumn": 97,
-                    "endOffset": 4493
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2326,
-                        "endColumn": 93,
-                        "endOffset": 2419
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4498,
-                    "endColumn": 95,
-                    "endOffset": 4589
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2420,
-                        "endColumn": 91,
-                        "endOffset": 2511
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4594,
-                    "endColumn": 118,
-                    "endOffset": 4708
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2512,
-                        "endColumn": 114,
-                        "endOffset": 2626
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4713,
-                    "endColumn": 82,
-                    "endOffset": 4791
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2057,
-                        "endColumn": 82,
-                        "endOffset": 2135
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4796,
-                    "endColumn": 100,
-                    "endOffset": 4892
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2140,
-                        "endColumn": 100,
-                        "endOffset": 2236
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-lv.json b/android/.build/intermediates/blame/res/debug/multi/values-lv.json
deleted file mode 100644
index e1b3c65cb66052d12af3443a60fb743c01c68f1c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-lv.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-lv/values-lv.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 119,
-                    "endOffset": 220
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 119,
-                        "endOffset": 170
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 225,
-                    "endColumn": 107,
-                    "endOffset": 328
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 175,
-                        "endColumn": 107,
-                        "endOffset": 278
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 333,
-                    "endColumn": 122,
-                    "endOffset": 451
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 283,
-                        "endColumn": 122,
-                        "endOffset": 401
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 456,
-                    "endColumn": 107,
-                    "endOffset": 559
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 406,
-                        "endColumn": 107,
-                        "endOffset": 509
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 564,
-                    "endColumn": 108,
-                    "endOffset": 668
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 514,
-                        "endColumn": 108,
-                        "endOffset": 618
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 673,
-                    "endColumn": 85,
-                    "endOffset": 754
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 623,
-                        "endColumn": 85,
-                        "endOffset": 704
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 759,
-                    "endColumn": 103,
-                    "endOffset": 858
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 709,
-                        "endColumn": 103,
-                        "endOffset": 808
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 863,
-                    "endColumn": 121,
-                    "endOffset": 980
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 813,
-                        "endColumn": 121,
-                        "endOffset": 930
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 985,
-                    "endColumn": 81,
-                    "endOffset": 1062
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 935,
-                        "endColumn": 81,
-                        "endOffset": 1012
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1067,
-                    "endColumn": 81,
-                    "endOffset": 1144
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1017,
-                        "endColumn": 81,
-                        "endOffset": 1094
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1149,
-                    "endColumn": 84,
-                    "endOffset": 1229
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1099,
-                        "endColumn": 84,
-                        "endOffset": 1179
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1234,
-                    "endColumn": 108,
-                    "endOffset": 1338
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1184,
-                        "endColumn": 108,
-                        "endOffset": 1288
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1343,
-                    "endColumn": 111,
-                    "endOffset": 1450
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1293,
-                        "endColumn": 111,
-                        "endOffset": 1400
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1455,
-                    "endColumn": 98,
-                    "endOffset": 1549
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1405,
-                        "endColumn": 98,
-                        "endOffset": 1499
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1554,
-                    "endColumn": 110,
-                    "endOffset": 1660
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1504,
-                        "endColumn": 110,
-                        "endOffset": 1610
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1665,
-                    "endColumn": 108,
-                    "endOffset": 1769
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1615,
-                        "endColumn": 108,
-                        "endOffset": 1719
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1774,
-                    "endColumn": 104,
-                    "endOffset": 1874
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1724,
-                        "endColumn": 104,
-                        "endOffset": 1824
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1879,
-                    "endColumn": 118,
-                    "endOffset": 1993
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1829,
-                        "endColumn": 118,
-                        "endOffset": 1943
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1998,
-                    "endColumn": 98,
-                    "endOffset": 2092
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1948,
-                        "endColumn": 98,
-                        "endOffset": 2042
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2097,
-                    "endColumn": 108,
-                    "endOffset": 2201
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 104,
-                        "endOffset": 387
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2206,
-                    "endColumn": 192,
-                    "endOffset": 2394
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 388,
-                        "endColumn": 192,
-                        "endOffset": 580
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2399,
-                    "endColumn": 134,
-                    "endOffset": 2529
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 581,
-                        "endColumn": 130,
-                        "endOffset": 711
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2534,
-                    "endColumn": 109,
-                    "endOffset": 2639
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 712,
-                        "endColumn": 105,
-                        "endOffset": 817
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2644,
-                    "endColumn": 200,
-                    "endOffset": 2840
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 818,
-                        "endColumn": 200,
-                        "endOffset": 1018
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2845,
-                    "endColumn": 132,
-                    "endOffset": 2973
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1019,
-                        "endColumn": 128,
-                        "endOffset": 1147
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2978,
-                    "endColumn": 134,
-                    "endOffset": 3108
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1148,
-                        "endColumn": 130,
-                        "endOffset": 1278
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3113,
-                    "endColumn": 224,
-                    "endOffset": 3333
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 224,
-                        "endOffset": 509
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3338,
-                    "endColumn": 233,
-                    "endOffset": 3567
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1279,
-                        "endColumn": 233,
-                        "endOffset": 1512
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3572,
-                    "endColumn": 110,
-                    "endOffset": 3678
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1513,
-                        "endColumn": 106,
-                        "endOffset": 1619
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3683,
-                    "endColumn": 199,
-                    "endOffset": 3878
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1620,
-                        "endColumn": 199,
-                        "endOffset": 1819
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3883,
-                    "endColumn": 136,
-                    "endOffset": 4015
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1820,
-                        "endColumn": 132,
-                        "endOffset": 1952
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 4020,
-                    "endColumn": 227,
-                    "endOffset": 4243
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1953,
-                        "endColumn": 227,
-                        "endOffset": 2180
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4248,
-                    "endColumn": 184,
-                    "endOffset": 4428
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2181,
-                        "endColumn": 180,
-                        "endOffset": 2361
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4433,
-                    "endColumn": 93,
-                    "endOffset": 4522
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2362,
-                        "endColumn": 89,
-                        "endOffset": 2451
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4527,
-                    "endColumn": 97,
-                    "endOffset": 4620
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2452,
-                        "endColumn": 93,
-                        "endOffset": 2545
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4625,
-                    "endColumn": 117,
-                    "endOffset": 4738
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2546,
-                        "endColumn": 113,
-                        "endOffset": 2659
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4743,
-                    "endColumn": 81,
-                    "endOffset": 4820
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2047,
-                        "endColumn": 81,
-                        "endOffset": 2124
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4825,
-                    "endColumn": 100,
-                    "endOffset": 4921
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2129,
-                        "endColumn": 100,
-                        "endOffset": 2225
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-mk-rMK.json b/android/.build/intermediates/blame/res/debug/multi/values-mk-rMK.json
deleted file mode 100644
index e995fbacf3a941393a67e7bb7daa0e7321c711bb..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-mk-rMK.json
+++ /dev/null
@@ -1,368 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-mk-rMK/values-mk-rMK.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 107,
-                    "endOffset": 158
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 107,
-                        "endOffset": 158
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 163,
-                    "endColumn": 122,
-                    "endOffset": 281
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 163,
-                        "endColumn": 122,
-                        "endOffset": 281
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 286,
-                    "endColumn": 103,
-                    "endOffset": 385
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 286,
-                        "endColumn": 103,
-                        "endOffset": 385
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 390,
-                    "endColumn": 107,
-                    "endOffset": 493
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 390,
-                        "endColumn": 107,
-                        "endOffset": 493
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 498,
-                    "endColumn": 85,
-                    "endOffset": 579
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 498,
-                        "endColumn": 85,
-                        "endOffset": 579
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 584,
-                    "endColumn": 104,
-                    "endOffset": 684
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 584,
-                        "endColumn": 104,
-                        "endOffset": 684
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 689,
-                    "endColumn": 118,
-                    "endOffset": 803
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 689,
-                        "endColumn": 118,
-                        "endOffset": 803
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 808,
-                    "endColumn": 82,
-                    "endOffset": 886
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 808,
-                        "endColumn": 82,
-                        "endOffset": 886
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 891,
-                    "endColumn": 81,
-                    "endOffset": 968
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 891,
-                        "endColumn": 81,
-                        "endOffset": 968
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 973,
-                    "endColumn": 86,
-                    "endOffset": 1055
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 973,
-                        "endColumn": 86,
-                        "endOffset": 1055
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1060,
-                    "endColumn": 105,
-                    "endOffset": 1161
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1060,
-                        "endColumn": 105,
-                        "endOffset": 1161
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1166,
-                    "endColumn": 106,
-                    "endOffset": 1268
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1166,
-                        "endColumn": 106,
-                        "endOffset": 1268
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1273,
-                    "endColumn": 100,
-                    "endOffset": 1369
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1273,
-                        "endColumn": 100,
-                        "endOffset": 1369
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1374,
-                    "endColumn": 106,
-                    "endOffset": 1476
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1374,
-                        "endColumn": 106,
-                        "endOffset": 1476
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1481,
-                    "endColumn": 110,
-                    "endOffset": 1587
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1481,
-                        "endColumn": 110,
-                        "endOffset": 1587
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1592,
-                    "endColumn": 103,
-                    "endOffset": 1691
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1592,
-                        "endColumn": 103,
-                        "endOffset": 1691
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1696,
-                    "endColumn": 97,
-                    "endOffset": 1789
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1696,
-                        "endColumn": 97,
-                        "endOffset": 1789
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1794,
-                    "endColumn": 83,
-                    "endOffset": 1873
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1794,
-                        "endColumn": 83,
-                        "endOffset": 1873
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1878,
-                    "endColumn": 100,
-                    "endOffset": 1974
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1878,
-                        "endColumn": 100,
-                        "endOffset": 1974
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-mk.json b/android/.build/intermediates/blame/res/debug/multi/values-mk.json
deleted file mode 100644
index c92a63507d1119d27ceab4cfae8b34912cf61c56..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-mk.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-mk/values-mk.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 108,
-                    "endOffset": 209
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 104,
-                        "endOffset": 387
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 214,
-                    "endColumn": 192,
-                    "endOffset": 402
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 388,
-                        "endColumn": 192,
-                        "endOffset": 580
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 407,
-                    "endColumn": 134,
-                    "endOffset": 537
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 581,
-                        "endColumn": 130,
-                        "endOffset": 711
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 542,
-                    "endColumn": 111,
-                    "endOffset": 649
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 712,
-                        "endColumn": 107,
-                        "endOffset": 819
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 654,
-                    "endColumn": 203,
-                    "endOffset": 853
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 820,
-                        "endColumn": 203,
-                        "endOffset": 1023
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 858,
-                    "endColumn": 134,
-                    "endOffset": 988
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1024,
-                        "endColumn": 130,
-                        "endOffset": 1154
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 993,
-                    "endColumn": 138,
-                    "endOffset": 1127
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1155,
-                        "endColumn": 134,
-                        "endOffset": 1289
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1132,
-                    "endColumn": 195,
-                    "endOffset": 1323
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 195,
-                        "endOffset": 480
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1328,
-                    "endColumn": 215,
-                    "endOffset": 1539
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1290,
-                        "endColumn": 215,
-                        "endOffset": 1505
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1544,
-                    "endColumn": 108,
-                    "endOffset": 1648
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1506,
-                        "endColumn": 104,
-                        "endOffset": 1610
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1653,
-                    "endColumn": 196,
-                    "endOffset": 1845
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1611,
-                        "endColumn": 196,
-                        "endOffset": 1807
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1850,
-                    "endColumn": 134,
-                    "endOffset": 1980
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1808,
-                        "endColumn": 130,
-                        "endOffset": 1938
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1985,
-                    "endColumn": 211,
-                    "endOffset": 2192
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1939,
-                        "endColumn": 211,
-                        "endOffset": 2150
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2197,
-                    "endColumn": 188,
-                    "endOffset": 2381
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2151,
-                        "endColumn": 184,
-                        "endOffset": 2335
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2386,
-                    "endColumn": 98,
-                    "endOffset": 2480
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2336,
-                        "endColumn": 94,
-                        "endOffset": 2430
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2485,
-                    "endColumn": 93,
-                    "endOffset": 2574
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2431,
-                        "endColumn": 89,
-                        "endOffset": 2520
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2579,
-                    "endColumn": 107,
-                    "endOffset": 2682
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2521,
-                        "endColumn": 103,
-                        "endOffset": 2624
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ml-rIN.json b/android/.build/intermediates/blame/res/debug/multi/values-ml-rIN.json
deleted file mode 100644
index dcb59e0617d8fa6551f9871277b1c9dd039e9845..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ml-rIN.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ml-rIN/values-ml-rIN.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 118,
-                    "endOffset": 169
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 118,
-                        "endOffset": 169
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 174,
-                    "endColumn": 107,
-                    "endOffset": 277
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 174,
-                        "endColumn": 107,
-                        "endOffset": 277
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 282,
-                    "endColumn": 122,
-                    "endOffset": 400
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 282,
-                        "endColumn": 122,
-                        "endOffset": 400
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 405,
-                    "endColumn": 117,
-                    "endOffset": 518
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 405,
-                        "endColumn": 117,
-                        "endOffset": 518
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 523,
-                    "endColumn": 114,
-                    "endOffset": 633
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 523,
-                        "endColumn": 114,
-                        "endOffset": 633
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 638,
-                    "endColumn": 92,
-                    "endOffset": 726
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 638,
-                        "endColumn": 92,
-                        "endOffset": 726
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 731,
-                    "endColumn": 104,
-                    "endOffset": 831
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 731,
-                        "endColumn": 104,
-                        "endOffset": 831
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 836,
-                    "endColumn": 131,
-                    "endOffset": 963
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 836,
-                        "endColumn": 131,
-                        "endOffset": 963
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 968,
-                    "endColumn": 76,
-                    "endOffset": 1040
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 968,
-                        "endColumn": 76,
-                        "endOffset": 1040
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1045,
-                    "endColumn": 75,
-                    "endOffset": 1116
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1045,
-                        "endColumn": 75,
-                        "endOffset": 1116
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1121,
-                    "endColumn": 81,
-                    "endOffset": 1198
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1121,
-                        "endColumn": 81,
-                        "endOffset": 1198
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1203,
-                    "endColumn": 110,
-                    "endOffset": 1309
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1203,
-                        "endColumn": 110,
-                        "endOffset": 1309
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1314,
-                    "endColumn": 105,
-                    "endOffset": 1415
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1314,
-                        "endColumn": 105,
-                        "endOffset": 1415
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1420,
-                    "endColumn": 97,
-                    "endOffset": 1513
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1420,
-                        "endColumn": 97,
-                        "endOffset": 1513
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1518,
-                    "endColumn": 113,
-                    "endOffset": 1627
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1518,
-                        "endColumn": 113,
-                        "endOffset": 1627
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1632,
-                    "endColumn": 99,
-                    "endOffset": 1727
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1632,
-                        "endColumn": 99,
-                        "endOffset": 1727
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1732,
-                    "endColumn": 110,
-                    "endOffset": 1838
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1732,
-                        "endColumn": 110,
-                        "endOffset": 1838
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1843,
-                    "endColumn": 127,
-                    "endOffset": 1966
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1843,
-                        "endColumn": 127,
-                        "endOffset": 1966
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1971,
-                    "endColumn": 100,
-                    "endOffset": 2067
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1971,
-                        "endColumn": 100,
-                        "endOffset": 2067
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2072,
-                    "endColumn": 81,
-                    "endOffset": 2149
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2072,
-                        "endColumn": 81,
-                        "endOffset": 2149
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2154,
-                    "endColumn": 100,
-                    "endOffset": 2250
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2154,
-                        "endColumn": 100,
-                        "endOffset": 2250
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ml.json b/android/.build/intermediates/blame/res/debug/multi/values-ml.json
deleted file mode 100644
index 00240d718f2b3443a5b63657e49116cb925fc7c2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ml.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ml/values-ml.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 120,
-                    "endOffset": 221
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 116,
-                        "endOffset": 399
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 226,
-                    "endColumn": 210,
-                    "endOffset": 432
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 400,
-                        "endColumn": 210,
-                        "endOffset": 610
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 437,
-                    "endColumn": 140,
-                    "endOffset": 573
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 611,
-                        "endColumn": 136,
-                        "endOffset": 747
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 578,
-                    "endColumn": 122,
-                    "endOffset": 696
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 748,
-                        "endColumn": 118,
-                        "endOffset": 866
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 701,
-                    "endColumn": 222,
-                    "endOffset": 919
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 867,
-                        "endColumn": 222,
-                        "endOffset": 1089
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 924,
-                    "endColumn": 126,
-                    "endOffset": 1046
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1090,
-                        "endColumn": 122,
-                        "endOffset": 1212
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 1051,
-                    "endColumn": 134,
-                    "endOffset": 1181
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1213,
-                        "endColumn": 130,
-                        "endOffset": 1343
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1186,
-                    "endColumn": 218,
-                    "endOffset": 1400
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 218,
-                        "endOffset": 503
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1405,
-                    "endColumn": 240,
-                    "endOffset": 1641
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1344,
-                        "endColumn": 240,
-                        "endOffset": 1584
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1646,
-                    "endColumn": 117,
-                    "endOffset": 1759
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1585,
-                        "endColumn": 113,
-                        "endOffset": 1698
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1764,
-                    "endColumn": 204,
-                    "endOffset": 1964
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1699,
-                        "endColumn": 204,
-                        "endOffset": 1903
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1969,
-                    "endColumn": 137,
-                    "endOffset": 2102
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1904,
-                        "endColumn": 133,
-                        "endOffset": 2037
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 2107,
-                    "endColumn": 207,
-                    "endOffset": 2310
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 2038,
-                        "endColumn": 207,
-                        "endOffset": 2245
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2315,
-                    "endColumn": 190,
-                    "endOffset": 2501
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2246,
-                        "endColumn": 186,
-                        "endOffset": 2432
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2506,
-                    "endColumn": 93,
-                    "endOffset": 2595
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2433,
-                        "endColumn": 89,
-                        "endOffset": 2522
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2600,
-                    "endColumn": 98,
-                    "endOffset": 2694
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2523,
-                        "endColumn": 94,
-                        "endOffset": 2617
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2699,
-                    "endColumn": 120,
-                    "endOffset": 2815
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2618,
-                        "endColumn": 116,
-                        "endOffset": 2734
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-mn-rMN.json b/android/.build/intermediates/blame/res/debug/multi/values-mn-rMN.json
deleted file mode 100644
index d27c9f7a29c5edff68a04893a037e8ecc654c722..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-mn-rMN.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-mn-rMN/values-mn-rMN.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 112,
-                    "endOffset": 163
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 112,
-                        "endOffset": 163
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 168,
-                    "endColumn": 107,
-                    "endOffset": 271
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 168,
-                        "endColumn": 107,
-                        "endOffset": 271
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 276,
-                    "endColumn": 122,
-                    "endOffset": 394
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 276,
-                        "endColumn": 122,
-                        "endOffset": 394
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 399,
-                    "endColumn": 99,
-                    "endOffset": 494
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 399,
-                        "endColumn": 99,
-                        "endOffset": 494
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 499,
-                    "endColumn": 112,
-                    "endOffset": 607
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 499,
-                        "endColumn": 112,
-                        "endOffset": 607
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 612,
-                    "endColumn": 86,
-                    "endOffset": 694
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 612,
-                        "endColumn": 86,
-                        "endOffset": 694
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 699,
-                    "endColumn": 105,
-                    "endOffset": 800
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 699,
-                        "endColumn": 105,
-                        "endOffset": 800
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 805,
-                    "endColumn": 111,
-                    "endOffset": 912
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 805,
-                        "endColumn": 111,
-                        "endOffset": 912
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 917,
-                    "endColumn": 81,
-                    "endOffset": 994
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 917,
-                        "endColumn": 81,
-                        "endOffset": 994
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 999,
-                    "endColumn": 81,
-                    "endOffset": 1076
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 999,
-                        "endColumn": 81,
-                        "endOffset": 1076
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1081,
-                    "endColumn": 81,
-                    "endOffset": 1158
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1081,
-                        "endColumn": 81,
-                        "endOffset": 1158
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1163,
-                    "endColumn": 108,
-                    "endOffset": 1267
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1163,
-                        "endColumn": 108,
-                        "endOffset": 1267
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1272,
-                    "endColumn": 103,
-                    "endOffset": 1371
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1272,
-                        "endColumn": 103,
-                        "endOffset": 1371
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1376,
-                    "endColumn": 96,
-                    "endOffset": 1468
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1376,
-                        "endColumn": 96,
-                        "endOffset": 1468
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1473,
-                    "endColumn": 107,
-                    "endOffset": 1576
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1473,
-                        "endColumn": 107,
-                        "endOffset": 1576
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1581,
-                    "endColumn": 100,
-                    "endOffset": 1677
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1581,
-                        "endColumn": 100,
-                        "endOffset": 1677
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1682,
-                    "endColumn": 102,
-                    "endOffset": 1780
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1682,
-                        "endColumn": 102,
-                        "endOffset": 1780
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1785,
-                    "endColumn": 121,
-                    "endOffset": 1902
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1785,
-                        "endColumn": 121,
-                        "endOffset": 1902
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1907,
-                    "endColumn": 96,
-                    "endOffset": 1999
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1907,
-                        "endColumn": 96,
-                        "endOffset": 1999
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2004,
-                    "endColumn": 80,
-                    "endOffset": 2080
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2004,
-                        "endColumn": 80,
-                        "endOffset": 2080
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2085,
-                    "endColumn": 100,
-                    "endOffset": 2181
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2085,
-                        "endColumn": 100,
-                        "endOffset": 2181
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-mn.json b/android/.build/intermediates/blame/res/debug/multi/values-mn.json
deleted file mode 100644
index 3e4606fc1804a546c4694224d96e402a1572a515..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-mn.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-mn/values-mn.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 111,
-                    "endOffset": 212
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 107,
-                        "endOffset": 390
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 217,
-                    "endColumn": 188,
-                    "endOffset": 401
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 391,
-                        "endColumn": 188,
-                        "endOffset": 579
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 406,
-                    "endColumn": 133,
-                    "endOffset": 535
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 580,
-                        "endColumn": 129,
-                        "endOffset": 709
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 540,
-                    "endColumn": 108,
-                    "endOffset": 644
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 710,
-                        "endColumn": 104,
-                        "endOffset": 814
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 649,
-                    "endColumn": 195,
-                    "endOffset": 840
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 815,
-                        "endColumn": 195,
-                        "endOffset": 1010
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 845,
-                    "endColumn": 127,
-                    "endOffset": 968
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1011,
-                        "endColumn": 123,
-                        "endOffset": 1134
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 973,
-                    "endColumn": 138,
-                    "endOffset": 1107
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1135,
-                        "endColumn": 134,
-                        "endOffset": 1269
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1112,
-                    "endColumn": 208,
-                    "endOffset": 1316
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 208,
-                        "endOffset": 493
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1321,
-                    "endColumn": 202,
-                    "endOffset": 1519
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1270,
-                        "endColumn": 202,
-                        "endOffset": 1472
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1524,
-                    "endColumn": 108,
-                    "endOffset": 1628
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1473,
-                        "endColumn": 104,
-                        "endOffset": 1577
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1633,
-                    "endColumn": 198,
-                    "endOffset": 1827
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1578,
-                        "endColumn": 198,
-                        "endOffset": 1776
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1832,
-                    "endColumn": 130,
-                    "endOffset": 1958
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1777,
-                        "endColumn": 126,
-                        "endOffset": 1903
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1963,
-                    "endColumn": 199,
-                    "endOffset": 2158
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1904,
-                        "endColumn": 199,
-                        "endOffset": 2103
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2163,
-                    "endColumn": 197,
-                    "endOffset": 2356
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2104,
-                        "endColumn": 193,
-                        "endOffset": 2297
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2361,
-                    "endColumn": 90,
-                    "endOffset": 2447
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2298,
-                        "endColumn": 86,
-                        "endOffset": 2384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2452,
-                    "endColumn": 91,
-                    "endOffset": 2539
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2385,
-                        "endColumn": 87,
-                        "endOffset": 2472
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2544,
-                    "endColumn": 105,
-                    "endOffset": 2645
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2473,
-                        "endColumn": 101,
-                        "endOffset": 2574
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-mr-rIN.json b/android/.build/intermediates/blame/res/debug/multi/values-mr-rIN.json
deleted file mode 100644
index 6e8c2f932ef8146593f77f9284a41541c95e5259..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-mr-rIN.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-mr-rIN/values-mr-rIN.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 117,
-                    "endOffset": 168
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 117,
-                        "endOffset": 168
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 173,
-                    "endColumn": 107,
-                    "endOffset": 276
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 173,
-                        "endColumn": 107,
-                        "endOffset": 276
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 281,
-                    "endColumn": 122,
-                    "endOffset": 399
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 281,
-                        "endColumn": 122,
-                        "endOffset": 399
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 404,
-                    "endColumn": 105,
-                    "endOffset": 505
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 404,
-                        "endColumn": 105,
-                        "endOffset": 505
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 510,
-                    "endColumn": 106,
-                    "endOffset": 612
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 510,
-                        "endColumn": 106,
-                        "endOffset": 612
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 617,
-                    "endColumn": 89,
-                    "endOffset": 702
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 617,
-                        "endColumn": 89,
-                        "endOffset": 702
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 707,
-                    "endColumn": 100,
-                    "endOffset": 803
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 707,
-                        "endColumn": 100,
-                        "endOffset": 803
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 808,
-                    "endColumn": 114,
-                    "endOffset": 918
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 808,
-                        "endColumn": 114,
-                        "endOffset": 918
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 923,
-                    "endColumn": 76,
-                    "endOffset": 995
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 923,
-                        "endColumn": 76,
-                        "endOffset": 995
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1000,
-                    "endColumn": 77,
-                    "endOffset": 1073
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1000,
-                        "endColumn": 77,
-                        "endOffset": 1073
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1078,
-                    "endColumn": 79,
-                    "endOffset": 1153
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1078,
-                        "endColumn": 79,
-                        "endOffset": 1153
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1158,
-                    "endColumn": 111,
-                    "endOffset": 1265
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1158,
-                        "endColumn": 111,
-                        "endOffset": 1265
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1270,
-                    "endColumn": 101,
-                    "endOffset": 1367
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1270,
-                        "endColumn": 101,
-                        "endOffset": 1367
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1372,
-                    "endColumn": 95,
-                    "endOffset": 1463
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1372,
-                        "endColumn": 95,
-                        "endOffset": 1463
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1468,
-                    "endColumn": 108,
-                    "endOffset": 1572
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1468,
-                        "endColumn": 108,
-                        "endOffset": 1572
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1577,
-                    "endColumn": 100,
-                    "endOffset": 1673
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1577,
-                        "endColumn": 100,
-                        "endOffset": 1673
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1678,
-                    "endColumn": 114,
-                    "endOffset": 1788
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1678,
-                        "endColumn": 114,
-                        "endOffset": 1788
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1793,
-                    "endColumn": 122,
-                    "endOffset": 1911
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1793,
-                        "endColumn": 122,
-                        "endOffset": 1911
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1916,
-                    "endColumn": 104,
-                    "endOffset": 2016
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1916,
-                        "endColumn": 104,
-                        "endOffset": 2016
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2021,
-                    "endColumn": 79,
-                    "endOffset": 2096
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2021,
-                        "endColumn": 79,
-                        "endOffset": 2096
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2101,
-                    "endColumn": 100,
-                    "endOffset": 2197
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2101,
-                        "endColumn": 100,
-                        "endOffset": 2197
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-mr.json b/android/.build/intermediates/blame/res/debug/multi/values-mr.json
deleted file mode 100644
index f4487e1c164e797c1b3b21856f83ad336f50e4ab..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-mr.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-mr/values-mr.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 109,
-                    "endOffset": 210
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 105,
-                        "endOffset": 388
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 215,
-                    "endColumn": 195,
-                    "endOffset": 406
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 389,
-                        "endColumn": 195,
-                        "endOffset": 584
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 411,
-                    "endColumn": 125,
-                    "endOffset": 532
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 585,
-                        "endColumn": 121,
-                        "endOffset": 706
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 537,
-                    "endColumn": 113,
-                    "endOffset": 646
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 707,
-                        "endColumn": 109,
-                        "endOffset": 816
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 651,
-                    "endColumn": 203,
-                    "endOffset": 850
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 817,
-                        "endColumn": 203,
-                        "endOffset": 1020
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 855,
-                    "endColumn": 122,
-                    "endOffset": 973
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1021,
-                        "endColumn": 118,
-                        "endOffset": 1139
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 978,
-                    "endColumn": 128,
-                    "endOffset": 1102
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1140,
-                        "endColumn": 124,
-                        "endOffset": 1264
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1107,
-                    "endColumn": 201,
-                    "endOffset": 1304
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 201,
-                        "endOffset": 486
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1309,
-                    "endColumn": 207,
-                    "endOffset": 1512
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1265,
-                        "endColumn": 207,
-                        "endOffset": 1472
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1517,
-                    "endColumn": 112,
-                    "endOffset": 1625
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1473,
-                        "endColumn": 108,
-                        "endOffset": 1581
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1630,
-                    "endColumn": 184,
-                    "endOffset": 1810
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1582,
-                        "endColumn": 184,
-                        "endOffset": 1766
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1815,
-                    "endColumn": 128,
-                    "endOffset": 1939
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1767,
-                        "endColumn": 124,
-                        "endOffset": 1891
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1944,
-                    "endColumn": 200,
-                    "endOffset": 2140
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1892,
-                        "endColumn": 200,
-                        "endOffset": 2092
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2145,
-                    "endColumn": 185,
-                    "endOffset": 2326
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2093,
-                        "endColumn": 181,
-                        "endOffset": 2274
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2331,
-                    "endColumn": 89,
-                    "endOffset": 2416
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2275,
-                        "endColumn": 85,
-                        "endOffset": 2360
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2421,
-                    "endColumn": 95,
-                    "endOffset": 2512
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2361,
-                        "endColumn": 91,
-                        "endOffset": 2452
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2517,
-                    "endColumn": 109,
-                    "endOffset": 2622
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2453,
-                        "endColumn": 105,
-                        "endOffset": 2558
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ms-rMY.json b/android/.build/intermediates/blame/res/debug/multi/values-ms-rMY.json
deleted file mode 100644
index 51ba8eb7d1a7e50d07b8c9fbbd1869b4a50cba87..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ms-rMY.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ms-rMY/values-ms-rMY.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 110,
-                    "endOffset": 161
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 110,
-                        "endOffset": 161
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 166,
-                    "endColumn": 107,
-                    "endOffset": 269
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 166,
-                        "endColumn": 107,
-                        "endOffset": 269
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 274,
-                    "endColumn": 122,
-                    "endOffset": 392
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 274,
-                        "endColumn": 122,
-                        "endOffset": 392
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 397,
-                    "endColumn": 104,
-                    "endOffset": 497
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 397,
-                        "endColumn": 104,
-                        "endOffset": 497
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 502,
-                    "endColumn": 107,
-                    "endOffset": 605
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 502,
-                        "endColumn": 107,
-                        "endOffset": 605
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 610,
-                    "endColumn": 86,
-                    "endOffset": 692
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 610,
-                        "endColumn": 86,
-                        "endOffset": 692
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 697,
-                    "endColumn": 103,
-                    "endOffset": 796
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 697,
-                        "endColumn": 103,
-                        "endOffset": 796
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 801,
-                    "endColumn": 110,
-                    "endOffset": 907
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 801,
-                        "endColumn": 110,
-                        "endOffset": 907
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 912,
-                    "endColumn": 77,
-                    "endOffset": 985
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 912,
-                        "endColumn": 77,
-                        "endOffset": 985
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 990,
-                    "endColumn": 78,
-                    "endOffset": 1064
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 990,
-                        "endColumn": 78,
-                        "endOffset": 1064
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1069,
-                    "endColumn": 79,
-                    "endOffset": 1144
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1069,
-                        "endColumn": 79,
-                        "endOffset": 1144
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1149,
-                    "endColumn": 111,
-                    "endOffset": 1256
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1149,
-                        "endColumn": 111,
-                        "endOffset": 1256
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1261,
-                    "endColumn": 108,
-                    "endOffset": 1365
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1261,
-                        "endColumn": 108,
-                        "endOffset": 1365
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1370,
-                    "endColumn": 96,
-                    "endOffset": 1462
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1370,
-                        "endColumn": 96,
-                        "endOffset": 1462
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1467,
-                    "endColumn": 108,
-                    "endOffset": 1571
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1467,
-                        "endColumn": 108,
-                        "endOffset": 1571
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1576,
-                    "endColumn": 102,
-                    "endOffset": 1674
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1576,
-                        "endColumn": 102,
-                        "endOffset": 1674
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1679,
-                    "endColumn": 106,
-                    "endOffset": 1781
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1679,
-                        "endColumn": 106,
-                        "endOffset": 1781
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1786,
-                    "endColumn": 121,
-                    "endOffset": 1903
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1786,
-                        "endColumn": 121,
-                        "endOffset": 1903
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1908,
-                    "endColumn": 100,
-                    "endOffset": 2004
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1908,
-                        "endColumn": 100,
-                        "endOffset": 2004
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2009,
-                    "endColumn": 79,
-                    "endOffset": 2084
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2009,
-                        "endColumn": 79,
-                        "endOffset": 2084
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2089,
-                    "endColumn": 100,
-                    "endOffset": 2185
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2089,
-                        "endColumn": 100,
-                        "endOffset": 2185
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ms.json b/android/.build/intermediates/blame/res/debug/multi/values-ms.json
deleted file mode 100644
index e5dc8e394ee5b55d6862bf3b674f533cf2ad704e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ms.json
+++ /dev/null
@@ -1,387 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ms/values-ms.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 107,
-                    "endOffset": 208
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 103,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 213,
-                    "endColumn": 204,
-                    "endOffset": 413
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 387,
-                        "endColumn": 204,
-                        "endOffset": 591
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 418,
-                    "endColumn": 131,
-                    "endOffset": 545
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 592,
-                        "endColumn": 127,
-                        "endOffset": 719
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 550,
-                    "endColumn": 107,
-                    "endOffset": 653
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 720,
-                        "endColumn": 103,
-                        "endOffset": 823
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 658,
-                    "endColumn": 230,
-                    "endOffset": 884
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 824,
-                        "endColumn": 230,
-                        "endOffset": 1054
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 889,
-                    "endColumn": 133,
-                    "endOffset": 1018
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1055,
-                        "endColumn": 129,
-                        "endOffset": 1184
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 1023,
-                    "endColumn": 135,
-                    "endOffset": 1154
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1185,
-                        "endColumn": 131,
-                        "endOffset": 1316
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1159,
-                    "endColumn": 204,
-                    "endOffset": 1359
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 204,
-                        "endOffset": 489
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1364,
-                    "endColumn": 243,
-                    "endOffset": 1603
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1317,
-                        "endColumn": 243,
-                        "endOffset": 1560
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1608,
-                    "endColumn": 110,
-                    "endOffset": 1714
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1561,
-                        "endColumn": 106,
-                        "endOffset": 1667
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1719,
-                    "endColumn": 205,
-                    "endOffset": 1920
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1668,
-                        "endColumn": 205,
-                        "endOffset": 1873
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1925,
-                    "endColumn": 136,
-                    "endOffset": 2057
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1874,
-                        "endColumn": 132,
-                        "endOffset": 2006
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 2062,
-                    "endColumn": 229,
-                    "endOffset": 2287
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 2007,
-                        "endColumn": 229,
-                        "endOffset": 2236
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2292,
-                    "endColumn": 204,
-                    "endOffset": 2492
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2237,
-                        "endColumn": 200,
-                        "endOffset": 2437
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2497,
-                    "endColumn": 96,
-                    "endOffset": 2589
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2438,
-                        "endColumn": 92,
-                        "endOffset": 2530
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2594,
-                    "endColumn": 93,
-                    "endOffset": 2683
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2531,
-                        "endColumn": 89,
-                        "endOffset": 2620
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2688,
-                    "endColumn": 111,
-                    "endOffset": 2795
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2621,
-                        "endColumn": 107,
-                        "endOffset": 2728
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 2800,
-                    "endColumn": 104,
-                    "endOffset": 2900
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ms/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 294,
-                        "endColumn": 104,
-                        "endOffset": 394
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 2905,
-                    "endColumn": 125,
-                    "endOffset": 3026
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ms/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 168,
-                        "endColumn": 125,
-                        "endOffset": 289
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 3031,
-                    "endColumn": 112,
-                    "endOffset": 3139
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ms/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 112,
-                        "endOffset": 163
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-my-rMM.json b/android/.build/intermediates/blame/res/debug/multi/values-my-rMM.json
deleted file mode 100644
index 688a122a4b4bfd6b32215d7cfc0fae9f4060db5d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-my-rMM.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-my-rMM/values-my-rMM.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 108,
-                    "endOffset": 159
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 108,
-                        "endOffset": 159
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 164,
-                    "endColumn": 107,
-                    "endOffset": 267
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 164,
-                        "endColumn": 107,
-                        "endOffset": 267
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 272,
-                    "endColumn": 124,
-                    "endOffset": 392
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 272,
-                        "endColumn": 124,
-                        "endOffset": 392
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 397,
-                    "endColumn": 104,
-                    "endOffset": 497
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 397,
-                        "endColumn": 104,
-                        "endOffset": 497
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 502,
-                    "endColumn": 116,
-                    "endOffset": 614
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 502,
-                        "endColumn": 116,
-                        "endOffset": 614
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 619,
-                    "endColumn": 92,
-                    "endOffset": 707
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 619,
-                        "endColumn": 92,
-                        "endOffset": 707
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 712,
-                    "endColumn": 111,
-                    "endOffset": 819
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 712,
-                        "endColumn": 111,
-                        "endOffset": 819
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 824,
-                    "endColumn": 127,
-                    "endOffset": 947
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 824,
-                        "endColumn": 127,
-                        "endOffset": 947
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 952,
-                    "endColumn": 77,
-                    "endOffset": 1025
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 952,
-                        "endColumn": 77,
-                        "endOffset": 1025
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1030,
-                    "endColumn": 78,
-                    "endOffset": 1104
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1030,
-                        "endColumn": 78,
-                        "endOffset": 1104
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1109,
-                    "endColumn": 85,
-                    "endOffset": 1190
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1109,
-                        "endColumn": 85,
-                        "endOffset": 1190
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1195,
-                    "endColumn": 122,
-                    "endOffset": 1313
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1195,
-                        "endColumn": 122,
-                        "endOffset": 1313
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1318,
-                    "endColumn": 111,
-                    "endOffset": 1425
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1318,
-                        "endColumn": 111,
-                        "endOffset": 1425
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1430,
-                    "endColumn": 101,
-                    "endOffset": 1527
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1430,
-                        "endColumn": 101,
-                        "endOffset": 1527
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1532,
-                    "endColumn": 125,
-                    "endOffset": 1653
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1532,
-                        "endColumn": 125,
-                        "endOffset": 1653
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1658,
-                    "endColumn": 110,
-                    "endOffset": 1764
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1658,
-                        "endColumn": 110,
-                        "endOffset": 1764
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1769,
-                    "endColumn": 109,
-                    "endOffset": 1874
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1769,
-                        "endColumn": 109,
-                        "endOffset": 1874
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1879,
-                    "endColumn": 122,
-                    "endOffset": 1997
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1879,
-                        "endColumn": 122,
-                        "endOffset": 1997
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 2002,
-                    "endColumn": 99,
-                    "endOffset": 2097
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 2002,
-                        "endColumn": 99,
-                        "endOffset": 2097
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2102,
-                    "endColumn": 83,
-                    "endOffset": 2181
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2102,
-                        "endColumn": 83,
-                        "endOffset": 2181
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2186,
-                    "endColumn": 100,
-                    "endOffset": 2282
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2186,
-                        "endColumn": 100,
-                        "endOffset": 2282
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-my.json b/android/.build/intermediates/blame/res/debug/multi/values-my.json
deleted file mode 100644
index c72dec38c73924a0e3f4ff020f1946c60c978f85..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-my.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-my/values-my.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 108,
-                    "endOffset": 209
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 104,
-                        "endOffset": 387
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 214,
-                    "endColumn": 195,
-                    "endOffset": 405
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 388,
-                        "endColumn": 195,
-                        "endOffset": 583
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 410,
-                    "endColumn": 135,
-                    "endOffset": 541
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 584,
-                        "endColumn": 131,
-                        "endOffset": 715
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 546,
-                    "endColumn": 112,
-                    "endOffset": 654
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 716,
-                        "endColumn": 108,
-                        "endOffset": 824
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 659,
-                    "endColumn": 205,
-                    "endOffset": 860
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 825,
-                        "endColumn": 205,
-                        "endOffset": 1030
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 865,
-                    "endColumn": 133,
-                    "endOffset": 994
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1031,
-                        "endColumn": 129,
-                        "endOffset": 1160
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 999,
-                    "endColumn": 138,
-                    "endOffset": 1133
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1161,
-                        "endColumn": 134,
-                        "endOffset": 1295
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1138,
-                    "endColumn": 212,
-                    "endOffset": 1346
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 212,
-                        "endOffset": 497
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1351,
-                    "endColumn": 234,
-                    "endOffset": 1581
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1296,
-                        "endColumn": 234,
-                        "endOffset": 1530
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1586,
-                    "endColumn": 107,
-                    "endOffset": 1689
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1531,
-                        "endColumn": 103,
-                        "endOffset": 1634
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1694,
-                    "endColumn": 200,
-                    "endOffset": 1890
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1635,
-                        "endColumn": 200,
-                        "endOffset": 1835
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1895,
-                    "endColumn": 144,
-                    "endOffset": 2035
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1836,
-                        "endColumn": 140,
-                        "endOffset": 1976
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 2040,
-                    "endColumn": 216,
-                    "endOffset": 2252
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1977,
-                        "endColumn": 216,
-                        "endOffset": 2193
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2257,
-                    "endColumn": 216,
-                    "endOffset": 2469
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2194,
-                        "endColumn": 212,
-                        "endOffset": 2406
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2474,
-                    "endColumn": 99,
-                    "endOffset": 2569
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2407,
-                        "endColumn": 95,
-                        "endOffset": 2502
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2574,
-                    "endColumn": 102,
-                    "endOffset": 2672
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2503,
-                        "endColumn": 98,
-                        "endOffset": 2601
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2677,
-                    "endColumn": 117,
-                    "endOffset": 2790
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2602,
-                        "endColumn": 113,
-                        "endOffset": 2715
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-nb.json b/android/.build/intermediates/blame/res/debug/multi/values-nb.json
deleted file mode 100644
index b31302bb761e4e1c653f529d88b11132cf7fe2db..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-nb.json
+++ /dev/null
@@ -1,786 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-nb/values-nb.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 107,
-                    "endOffset": 208
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 107,
-                        "endOffset": 158
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 213,
-                    "endColumn": 108,
-                    "endOffset": 317
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 163,
-                        "endColumn": 108,
-                        "endOffset": 267
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 322,
-                    "endColumn": 124,
-                    "endOffset": 442
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 272,
-                        "endColumn": 124,
-                        "endOffset": 392
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 447,
-                    "endColumn": 94,
-                    "endOffset": 537
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 397,
-                        "endColumn": 94,
-                        "endOffset": 487
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 542,
-                    "endColumn": 113,
-                    "endOffset": 651
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 492,
-                        "endColumn": 113,
-                        "endOffset": 601
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 656,
-                    "endColumn": 85,
-                    "endOffset": 737
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 606,
-                        "endColumn": 85,
-                        "endOffset": 687
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 742,
-                    "endColumn": 99,
-                    "endOffset": 837
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 692,
-                        "endColumn": 99,
-                        "endOffset": 787
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 842,
-                    "endColumn": 112,
-                    "endOffset": 950
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 792,
-                        "endColumn": 112,
-                        "endOffset": 900
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 955,
-                    "endColumn": 75,
-                    "endOffset": 1026
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 905,
-                        "endColumn": 75,
-                        "endOffset": 976
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1031,
-                    "endColumn": 75,
-                    "endOffset": 1102
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 981,
-                        "endColumn": 75,
-                        "endOffset": 1052
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1107,
-                    "endColumn": 79,
-                    "endOffset": 1182
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1057,
-                        "endColumn": 79,
-                        "endOffset": 1132
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1187,
-                    "endColumn": 102,
-                    "endOffset": 1285
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1137,
-                        "endColumn": 102,
-                        "endOffset": 1235
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1290,
-                    "endColumn": 98,
-                    "endOffset": 1384
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1240,
-                        "endColumn": 98,
-                        "endOffset": 1334
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1389,
-                    "endColumn": 95,
-                    "endOffset": 1480
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1339,
-                        "endColumn": 95,
-                        "endOffset": 1430
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1485,
-                    "endColumn": 103,
-                    "endOffset": 1584
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1435,
-                        "endColumn": 103,
-                        "endOffset": 1534
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1589,
-                    "endColumn": 97,
-                    "endOffset": 1682
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1539,
-                        "endColumn": 97,
-                        "endOffset": 1632
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1687,
-                    "endColumn": 100,
-                    "endOffset": 1783
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1637,
-                        "endColumn": 100,
-                        "endOffset": 1733
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1788,
-                    "endColumn": 115,
-                    "endOffset": 1899
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1738,
-                        "endColumn": 115,
-                        "endOffset": 1849
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1904,
-                    "endColumn": 96,
-                    "endOffset": 1996
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1854,
-                        "endColumn": 96,
-                        "endOffset": 1946
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2001,
-                    "endColumn": 106,
-                    "endOffset": 2103
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 102,
-                        "endOffset": 385
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2108,
-                    "endColumn": 190,
-                    "endOffset": 2294
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 386,
-                        "endColumn": 190,
-                        "endOffset": 576
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2299,
-                    "endColumn": 127,
-                    "endOffset": 2422
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 577,
-                        "endColumn": 123,
-                        "endOffset": 700
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2427,
-                    "endColumn": 110,
-                    "endOffset": 2533
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 701,
-                        "endColumn": 106,
-                        "endOffset": 807
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2538,
-                    "endColumn": 214,
-                    "endOffset": 2748
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 808,
-                        "endColumn": 214,
-                        "endOffset": 1022
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2753,
-                    "endColumn": 131,
-                    "endOffset": 2880
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1023,
-                        "endColumn": 127,
-                        "endOffset": 1150
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2885,
-                    "endColumn": 131,
-                    "endOffset": 3012
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1151,
-                        "endColumn": 127,
-                        "endOffset": 1278
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3017,
-                    "endColumn": 188,
-                    "endOffset": 3201
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 188,
-                        "endOffset": 473
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3206,
-                    "endColumn": 212,
-                    "endOffset": 3414
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1279,
-                        "endColumn": 212,
-                        "endOffset": 1491
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3419,
-                    "endColumn": 108,
-                    "endOffset": 3523
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1492,
-                        "endColumn": 104,
-                        "endOffset": 1596
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3528,
-                    "endColumn": 191,
-                    "endOffset": 3715
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1597,
-                        "endColumn": 191,
-                        "endOffset": 1788
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3720,
-                    "endColumn": 129,
-                    "endOffset": 3845
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1789,
-                        "endColumn": 125,
-                        "endOffset": 1914
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3850,
-                    "endColumn": 200,
-                    "endOffset": 4046
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1915,
-                        "endColumn": 200,
-                        "endOffset": 2115
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4051,
-                    "endColumn": 205,
-                    "endOffset": 4252
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2116,
-                        "endColumn": 201,
-                        "endOffset": 2317
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4257,
-                    "endColumn": 96,
-                    "endOffset": 4349
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2318,
-                        "endColumn": 92,
-                        "endOffset": 2410
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4354,
-                    "endColumn": 91,
-                    "endOffset": 4441
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2411,
-                        "endColumn": 87,
-                        "endOffset": 2498
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4446,
-                    "endColumn": 106,
-                    "endOffset": 4548
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2499,
-                        "endColumn": 102,
-                        "endOffset": 2601
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4553,
-                    "endColumn": 100,
-                    "endOffset": 4649
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-nb/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 292,
-                        "endColumn": 100,
-                        "endOffset": 388
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4654,
-                    "endColumn": 119,
-                    "endOffset": 4769
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-nb/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 172,
-                        "endColumn": 119,
-                        "endOffset": 287
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 4774,
-                    "endColumn": 116,
-                    "endOffset": 4886
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-nb/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 116,
-                        "endOffset": 167
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 41,
-                    "startColumn": 4,
-                    "startOffset": 4891,
-                    "endColumn": 78,
-                    "endOffset": 4965
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1951,
-                        "endColumn": 78,
-                        "endOffset": 2025
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 4970,
-                    "endColumn": 100,
-                    "endOffset": 5066
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2030,
-                        "endColumn": 100,
-                        "endOffset": 2126
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ne-rNP.json b/android/.build/intermediates/blame/res/debug/multi/values-ne-rNP.json
deleted file mode 100644
index 7c21ddead414ef2914fd6da7047209cb03e68d79..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ne-rNP.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ne-rNP/values-ne-rNP.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 104,
-                    "endOffset": 155
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 104,
-                        "endOffset": 155
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 160,
-                    "endColumn": 107,
-                    "endOffset": 263
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 160,
-                        "endColumn": 107,
-                        "endOffset": 263
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 268,
-                    "endColumn": 122,
-                    "endOffset": 386
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 268,
-                        "endColumn": 122,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 391,
-                    "endColumn": 103,
-                    "endOffset": 490
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 391,
-                        "endColumn": 103,
-                        "endOffset": 490
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 495,
-                    "endColumn": 107,
-                    "endOffset": 598
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 495,
-                        "endColumn": 107,
-                        "endOffset": 598
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 603,
-                    "endColumn": 90,
-                    "endOffset": 689
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 603,
-                        "endColumn": 90,
-                        "endOffset": 689
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 694,
-                    "endColumn": 106,
-                    "endOffset": 796
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 694,
-                        "endColumn": 106,
-                        "endOffset": 796
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 801,
-                    "endColumn": 126,
-                    "endOffset": 923
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 801,
-                        "endColumn": 126,
-                        "endOffset": 923
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 928,
-                    "endColumn": 93,
-                    "endOffset": 1017
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 928,
-                        "endColumn": 93,
-                        "endOffset": 1017
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1022,
-                    "endColumn": 89,
-                    "endOffset": 1107
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1022,
-                        "endColumn": 89,
-                        "endOffset": 1107
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1112,
-                    "endColumn": 87,
-                    "endOffset": 1195
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1112,
-                        "endColumn": 87,
-                        "endOffset": 1195
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1200,
-                    "endColumn": 109,
-                    "endOffset": 1305
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1200,
-                        "endColumn": 109,
-                        "endOffset": 1305
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1310,
-                    "endColumn": 115,
-                    "endOffset": 1421
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1310,
-                        "endColumn": 115,
-                        "endOffset": 1421
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1426,
-                    "endColumn": 102,
-                    "endOffset": 1524
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1426,
-                        "endColumn": 102,
-                        "endOffset": 1524
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1529,
-                    "endColumn": 114,
-                    "endOffset": 1639
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1529,
-                        "endColumn": 114,
-                        "endOffset": 1639
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1644,
-                    "endColumn": 101,
-                    "endOffset": 1741
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1644,
-                        "endColumn": 101,
-                        "endOffset": 1741
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1746,
-                    "endColumn": 114,
-                    "endOffset": 1856
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1746,
-                        "endColumn": 114,
-                        "endOffset": 1856
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1861,
-                    "endColumn": 130,
-                    "endOffset": 1987
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1861,
-                        "endColumn": 130,
-                        "endOffset": 1987
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1992,
-                    "endColumn": 111,
-                    "endOffset": 2099
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1992,
-                        "endColumn": 111,
-                        "endOffset": 2099
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2104,
-                    "endColumn": 85,
-                    "endOffset": 2185
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2104,
-                        "endColumn": 85,
-                        "endOffset": 2185
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2190,
-                    "endColumn": 100,
-                    "endOffset": 2286
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2190,
-                        "endColumn": 100,
-                        "endOffset": 2286
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ne.json b/android/.build/intermediates/blame/res/debug/multi/values-ne.json
deleted file mode 100644
index cdbc6568b4fa90c64e6380eb411cd88154aaf33a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ne.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ne/values-ne.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 116,
-                    "endOffset": 217
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 112,
-                        "endOffset": 395
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 222,
-                    "endColumn": 189,
-                    "endOffset": 407
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 396,
-                        "endColumn": 189,
-                        "endOffset": 585
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 412,
-                    "endColumn": 135,
-                    "endOffset": 543
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 586,
-                        "endColumn": 131,
-                        "endOffset": 717
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 548,
-                    "endColumn": 118,
-                    "endOffset": 662
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 718,
-                        "endColumn": 114,
-                        "endOffset": 832
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 667,
-                    "endColumn": 229,
-                    "endOffset": 892
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 833,
-                        "endColumn": 229,
-                        "endOffset": 1062
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 897,
-                    "endColumn": 137,
-                    "endOffset": 1030
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1063,
-                        "endColumn": 133,
-                        "endOffset": 1196
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 1035,
-                    "endColumn": 133,
-                    "endOffset": 1164
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1197,
-                        "endColumn": 129,
-                        "endOffset": 1326
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1169,
-                    "endColumn": 222,
-                    "endOffset": 1387
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 222,
-                        "endOffset": 507
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1392,
-                    "endColumn": 238,
-                    "endOffset": 1626
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1327,
-                        "endColumn": 238,
-                        "endOffset": 1565
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1631,
-                    "endColumn": 119,
-                    "endOffset": 1746
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1566,
-                        "endColumn": 115,
-                        "endOffset": 1681
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1751,
-                    "endColumn": 194,
-                    "endOffset": 1941
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1682,
-                        "endColumn": 194,
-                        "endOffset": 1876
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1946,
-                    "endColumn": 138,
-                    "endOffset": 2080
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1877,
-                        "endColumn": 134,
-                        "endOffset": 2011
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 2085,
-                    "endColumn": 206,
-                    "endOffset": 2287
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 2012,
-                        "endColumn": 206,
-                        "endOffset": 2218
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2292,
-                    "endColumn": 181,
-                    "endOffset": 2469
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2219,
-                        "endColumn": 177,
-                        "endOffset": 2396
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2474,
-                    "endColumn": 95,
-                    "endOffset": 2565
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2397,
-                        "endColumn": 91,
-                        "endOffset": 2488
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2570,
-                    "endColumn": 101,
-                    "endOffset": 2667
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2489,
-                        "endColumn": 97,
-                        "endOffset": 2586
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2672,
-                    "endColumn": 120,
-                    "endOffset": 2788
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2587,
-                        "endColumn": 116,
-                        "endOffset": 2703
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-night-v8.json b/android/.build/intermediates/blame/res/debug/multi/values-night-v8.json
deleted file mode 100644
index 59e0f9313056df600a7cb6f17eb7d0f9e460032b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-night-v8.json
+++ /dev/null
@@ -1,140 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 69,
-                    "endOffset": 120
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-night-v8/values-night-v8.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 69,
-                        "endOffset": 120
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 125,
-                    "endColumn": 83,
-                    "endOffset": 204
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-night-v8/values-night-v8.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 125,
-                        "endColumn": 83,
-                        "endOffset": 204
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 209,
-                    "endColumn": 83,
-                    "endOffset": 288
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-night-v8/values-night-v8.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 209,
-                        "endColumn": 83,
-                        "endOffset": 288
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 293,
-                    "endColumn": 95,
-                    "endOffset": 384
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-night-v8/values-night-v8.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 293,
-                        "endColumn": 95,
-                        "endOffset": 384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 389,
-                    "endColumn": 101,
-                    "endOffset": 486
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-night-v8/values-night-v8.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 389,
-                        "endColumn": 101,
-                        "endOffset": 486
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 491,
-                    "endColumn": 101,
-                    "endOffset": 588
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-night-v8/values-night-v8.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 491,
-                        "endColumn": 101,
-                        "endOffset": 588
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 593,
-                    "endColumn": 93,
-                    "endOffset": 682
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-night-v8/values-night-v8.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 593,
-                        "endColumn": 93,
-                        "endOffset": 682
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-nl.json b/android/.build/intermediates/blame/res/debug/multi/values-nl.json
deleted file mode 100644
index 05c464242bf62701064a1b1550ff8b7bf414793a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-nl.json
+++ /dev/null
@@ -1,786 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-nl/values-nl.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 117,
-                    "endOffset": 218
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 117,
-                        "endOffset": 168
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 223,
-                    "endColumn": 107,
-                    "endOffset": 326
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 173,
-                        "endColumn": 107,
-                        "endOffset": 276
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 331,
-                    "endColumn": 122,
-                    "endOffset": 449
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 281,
-                        "endColumn": 122,
-                        "endOffset": 399
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 454,
-                    "endColumn": 104,
-                    "endOffset": 554
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 404,
-                        "endColumn": 104,
-                        "endOffset": 504
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 559,
-                    "endColumn": 106,
-                    "endOffset": 661
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 509,
-                        "endColumn": 106,
-                        "endOffset": 611
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 666,
-                    "endColumn": 85,
-                    "endOffset": 747
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 616,
-                        "endColumn": 85,
-                        "endOffset": 697
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 752,
-                    "endColumn": 107,
-                    "endOffset": 855
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 702,
-                        "endColumn": 107,
-                        "endOffset": 805
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 860,
-                    "endColumn": 119,
-                    "endOffset": 975
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 810,
-                        "endColumn": 119,
-                        "endOffset": 925
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 980,
-                    "endColumn": 76,
-                    "endOffset": 1052
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 930,
-                        "endColumn": 76,
-                        "endOffset": 1002
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1057,
-                    "endColumn": 76,
-                    "endOffset": 1129
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1007,
-                        "endColumn": 76,
-                        "endOffset": 1079
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1134,
-                    "endColumn": 81,
-                    "endOffset": 1211
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1084,
-                        "endColumn": 81,
-                        "endOffset": 1161
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1216,
-                    "endColumn": 110,
-                    "endOffset": 1322
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1166,
-                        "endColumn": 110,
-                        "endOffset": 1272
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1327,
-                    "endColumn": 103,
-                    "endOffset": 1426
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1277,
-                        "endColumn": 103,
-                        "endOffset": 1376
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1431,
-                    "endColumn": 98,
-                    "endOffset": 1525
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1381,
-                        "endColumn": 98,
-                        "endOffset": 1475
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1530,
-                    "endColumn": 114,
-                    "endOffset": 1640
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1480,
-                        "endColumn": 114,
-                        "endOffset": 1590
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1645,
-                    "endColumn": 112,
-                    "endOffset": 1753
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1595,
-                        "endColumn": 112,
-                        "endOffset": 1703
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1758,
-                    "endColumn": 102,
-                    "endOffset": 1856
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1708,
-                        "endColumn": 102,
-                        "endOffset": 1806
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1861,
-                    "endColumn": 117,
-                    "endOffset": 1974
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1811,
-                        "endColumn": 117,
-                        "endOffset": 1924
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1979,
-                    "endColumn": 102,
-                    "endOffset": 2077
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1929,
-                        "endColumn": 102,
-                        "endOffset": 2027
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2082,
-                    "endColumn": 111,
-                    "endOffset": 2189
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 107,
-                        "endOffset": 390
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2194,
-                    "endColumn": 186,
-                    "endOffset": 2376
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 391,
-                        "endColumn": 186,
-                        "endOffset": 577
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2381,
-                    "endColumn": 131,
-                    "endOffset": 2508
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 578,
-                        "endColumn": 127,
-                        "endOffset": 705
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2513,
-                    "endColumn": 112,
-                    "endOffset": 2621
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 706,
-                        "endColumn": 108,
-                        "endOffset": 814
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2626,
-                    "endColumn": 225,
-                    "endOffset": 2847
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 815,
-                        "endColumn": 225,
-                        "endOffset": 1040
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2852,
-                    "endColumn": 128,
-                    "endOffset": 2976
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1041,
-                        "endColumn": 124,
-                        "endOffset": 1165
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2981,
-                    "endColumn": 134,
-                    "endOffset": 3111
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1166,
-                        "endColumn": 130,
-                        "endOffset": 1296
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3116,
-                    "endColumn": 201,
-                    "endOffset": 3313
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 201,
-                        "endOffset": 486
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3318,
-                    "endColumn": 236,
-                    "endOffset": 3550
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1297,
-                        "endColumn": 236,
-                        "endOffset": 1533
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3555,
-                    "endColumn": 107,
-                    "endOffset": 3658
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1534,
-                        "endColumn": 103,
-                        "endOffset": 1637
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3663,
-                    "endColumn": 199,
-                    "endOffset": 3858
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1638,
-                        "endColumn": 199,
-                        "endOffset": 1837
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3863,
-                    "endColumn": 127,
-                    "endOffset": 3986
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1838,
-                        "endColumn": 123,
-                        "endOffset": 1961
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3991,
-                    "endColumn": 221,
-                    "endOffset": 4208
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1962,
-                        "endColumn": 221,
-                        "endOffset": 2183
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4213,
-                    "endColumn": 211,
-                    "endOffset": 4420
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2184,
-                        "endColumn": 207,
-                        "endOffset": 2391
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4425,
-                    "endColumn": 97,
-                    "endOffset": 4518
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2392,
-                        "endColumn": 93,
-                        "endOffset": 2485
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4523,
-                    "endColumn": 92,
-                    "endOffset": 4611
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2486,
-                        "endColumn": 88,
-                        "endOffset": 2574
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4616,
-                    "endColumn": 107,
-                    "endOffset": 4719
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2575,
-                        "endColumn": 103,
-                        "endOffset": 2678
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4724,
-                    "endColumn": 130,
-                    "endOffset": 4850
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-nl/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 305,
-                        "endColumn": 130,
-                        "endOffset": 431
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4855,
-                    "endColumn": 127,
-                    "endOffset": 4978
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-nl/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 177,
-                        "endColumn": 127,
-                        "endOffset": 300
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 4983,
-                    "endColumn": 121,
-                    "endOffset": 5100
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-nl/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 121,
-                        "endOffset": 172
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 41,
-                    "startColumn": 4,
-                    "startOffset": 5105,
-                    "endColumn": 81,
-                    "endOffset": 5182
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2032,
-                        "endColumn": 81,
-                        "endOffset": 2109
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 5187,
-                    "endColumn": 100,
-                    "endOffset": 5283
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2114,
-                        "endColumn": 100,
-                        "endOffset": 2210
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-pa-rIN.json b/android/.build/intermediates/blame/res/debug/multi/values-pa-rIN.json
deleted file mode 100644
index 8f23582d517915fbfd3c9273e863bba06fb3db0e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-pa-rIN.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-pa-rIN/values-pa-rIN.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 105,
-                    "endOffset": 156
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 105,
-                        "endOffset": 156
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 161,
-                    "endColumn": 107,
-                    "endOffset": 264
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 161,
-                        "endColumn": 107,
-                        "endOffset": 264
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 269,
-                    "endColumn": 122,
-                    "endOffset": 387
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 269,
-                        "endColumn": 122,
-                        "endOffset": 387
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 392,
-                    "endColumn": 104,
-                    "endOffset": 492
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 392,
-                        "endColumn": 104,
-                        "endOffset": 492
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 497,
-                    "endColumn": 104,
-                    "endOffset": 597
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 497,
-                        "endColumn": 104,
-                        "endOffset": 597
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 602,
-                    "endColumn": 85,
-                    "endOffset": 683
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 602,
-                        "endColumn": 85,
-                        "endOffset": 683
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 688,
-                    "endColumn": 99,
-                    "endOffset": 783
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 688,
-                        "endColumn": 99,
-                        "endOffset": 783
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 788,
-                    "endColumn": 112,
-                    "endOffset": 896
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 788,
-                        "endColumn": 112,
-                        "endOffset": 896
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 901,
-                    "endColumn": 76,
-                    "endOffset": 973
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 901,
-                        "endColumn": 76,
-                        "endOffset": 973
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 978,
-                    "endColumn": 75,
-                    "endOffset": 1049
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 978,
-                        "endColumn": 75,
-                        "endOffset": 1049
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1054,
-                    "endColumn": 78,
-                    "endOffset": 1128
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1054,
-                        "endColumn": 78,
-                        "endOffset": 1128
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1133,
-                    "endColumn": 100,
-                    "endOffset": 1229
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1133,
-                        "endColumn": 100,
-                        "endOffset": 1229
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1234,
-                    "endColumn": 100,
-                    "endOffset": 1330
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1234,
-                        "endColumn": 100,
-                        "endOffset": 1330
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1335,
-                    "endColumn": 96,
-                    "endOffset": 1427
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1335,
-                        "endColumn": 96,
-                        "endOffset": 1427
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1432,
-                    "endColumn": 108,
-                    "endOffset": 1536
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1432,
-                        "endColumn": 108,
-                        "endOffset": 1536
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1541,
-                    "endColumn": 98,
-                    "endOffset": 1635
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1541,
-                        "endColumn": 98,
-                        "endOffset": 1635
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1640,
-                    "endColumn": 109,
-                    "endOffset": 1745
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1640,
-                        "endColumn": 109,
-                        "endOffset": 1745
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1750,
-                    "endColumn": 121,
-                    "endOffset": 1867
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1750,
-                        "endColumn": 121,
-                        "endOffset": 1867
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1872,
-                    "endColumn": 99,
-                    "endOffset": 1967
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1872,
-                        "endColumn": 99,
-                        "endOffset": 1967
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 1972,
-                    "endColumn": 78,
-                    "endOffset": 2046
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1972,
-                        "endColumn": 78,
-                        "endOffset": 2046
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2051,
-                    "endColumn": 100,
-                    "endOffset": 2147
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2051,
-                        "endColumn": 100,
-                        "endOffset": 2147
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-pa.json b/android/.build/intermediates/blame/res/debug/multi/values-pa.json
deleted file mode 100644
index e67e147156b1f856441d6360401e4c526bb4eb33..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-pa.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-pa/values-pa.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 108,
-                    "endOffset": 209
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 104,
-                        "endOffset": 387
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 214,
-                    "endColumn": 206,
-                    "endOffset": 416
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 388,
-                        "endColumn": 206,
-                        "endOffset": 594
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 421,
-                    "endColumn": 131,
-                    "endOffset": 548
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 595,
-                        "endColumn": 127,
-                        "endOffset": 722
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 553,
-                    "endColumn": 110,
-                    "endOffset": 659
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 723,
-                        "endColumn": 106,
-                        "endOffset": 829
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 664,
-                    "endColumn": 205,
-                    "endOffset": 865
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 830,
-                        "endColumn": 205,
-                        "endOffset": 1035
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 870,
-                    "endColumn": 130,
-                    "endOffset": 996
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1036,
-                        "endColumn": 126,
-                        "endOffset": 1162
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 1001,
-                    "endColumn": 132,
-                    "endOffset": 1129
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1163,
-                        "endColumn": 128,
-                        "endOffset": 1291
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1134,
-                    "endColumn": 209,
-                    "endOffset": 1339
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 209,
-                        "endOffset": 494
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1344,
-                    "endColumn": 220,
-                    "endOffset": 1560
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1292,
-                        "endColumn": 220,
-                        "endOffset": 1512
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1565,
-                    "endColumn": 110,
-                    "endOffset": 1671
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1513,
-                        "endColumn": 106,
-                        "endOffset": 1619
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1676,
-                    "endColumn": 199,
-                    "endOffset": 1871
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1620,
-                        "endColumn": 199,
-                        "endOffset": 1819
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1876,
-                    "endColumn": 133,
-                    "endOffset": 2005
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1820,
-                        "endColumn": 129,
-                        "endOffset": 1949
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 2010,
-                    "endColumn": 210,
-                    "endOffset": 2216
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1950,
-                        "endColumn": 210,
-                        "endOffset": 2160
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2221,
-                    "endColumn": 180,
-                    "endOffset": 2397
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2161,
-                        "endColumn": 176,
-                        "endOffset": 2337
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2402,
-                    "endColumn": 95,
-                    "endOffset": 2493
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2338,
-                        "endColumn": 91,
-                        "endOffset": 2429
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2498,
-                    "endColumn": 95,
-                    "endOffset": 2589
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2430,
-                        "endColumn": 91,
-                        "endOffset": 2521
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2594,
-                    "endColumn": 110,
-                    "endOffset": 2700
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2522,
-                        "endColumn": 106,
-                        "endOffset": 2628
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-pl.json b/android/.build/intermediates/blame/res/debug/multi/values-pl.json
deleted file mode 100644
index 51e8c358e16bc0c48284d440249154b8d12b8215..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-pl.json
+++ /dev/null
@@ -1,786 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-pl/values-pl.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 115,
-                    "endOffset": 216
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 115,
-                        "endOffset": 166
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 221,
-                    "endColumn": 107,
-                    "endOffset": 324
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 171,
-                        "endColumn": 107,
-                        "endOffset": 274
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 329,
-                    "endColumn": 122,
-                    "endOffset": 447
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 279,
-                        "endColumn": 122,
-                        "endOffset": 397
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 452,
-                    "endColumn": 101,
-                    "endOffset": 549
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 402,
-                        "endColumn": 101,
-                        "endOffset": 499
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 554,
-                    "endColumn": 107,
-                    "endOffset": 657
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 504,
-                        "endColumn": 107,
-                        "endOffset": 607
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 662,
-                    "endColumn": 85,
-                    "endOffset": 743
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 612,
-                        "endColumn": 85,
-                        "endOffset": 693
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 748,
-                    "endColumn": 108,
-                    "endOffset": 852
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 698,
-                        "endColumn": 108,
-                        "endOffset": 802
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 857,
-                    "endColumn": 118,
-                    "endOffset": 971
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 807,
-                        "endColumn": 118,
-                        "endOffset": 921
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 976,
-                    "endColumn": 77,
-                    "endOffset": 1049
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 926,
-                        "endColumn": 77,
-                        "endOffset": 999
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1054,
-                    "endColumn": 76,
-                    "endOffset": 1126
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1004,
-                        "endColumn": 76,
-                        "endOffset": 1076
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1131,
-                    "endColumn": 81,
-                    "endOffset": 1208
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1081,
-                        "endColumn": 81,
-                        "endOffset": 1158
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1213,
-                    "endColumn": 108,
-                    "endOffset": 1317
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1163,
-                        "endColumn": 108,
-                        "endOffset": 1267
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1322,
-                    "endColumn": 108,
-                    "endOffset": 1426
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1272,
-                        "endColumn": 108,
-                        "endOffset": 1376
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1431,
-                    "endColumn": 98,
-                    "endOffset": 1525
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1381,
-                        "endColumn": 98,
-                        "endOffset": 1475
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1530,
-                    "endColumn": 108,
-                    "endOffset": 1634
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1480,
-                        "endColumn": 108,
-                        "endOffset": 1584
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1639,
-                    "endColumn": 110,
-                    "endOffset": 1745
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1589,
-                        "endColumn": 110,
-                        "endOffset": 1695
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1750,
-                    "endColumn": 107,
-                    "endOffset": 1853
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1700,
-                        "endColumn": 107,
-                        "endOffset": 1803
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1858,
-                    "endColumn": 122,
-                    "endOffset": 1976
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1808,
-                        "endColumn": 122,
-                        "endOffset": 1926
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1981,
-                    "endColumn": 95,
-                    "endOffset": 2072
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1931,
-                        "endColumn": 95,
-                        "endOffset": 2022
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2077,
-                    "endColumn": 105,
-                    "endOffset": 2178
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 101,
-                        "endOffset": 384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2183,
-                    "endColumn": 199,
-                    "endOffset": 2378
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 385,
-                        "endColumn": 199,
-                        "endOffset": 584
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2383,
-                    "endColumn": 123,
-                    "endOffset": 2502
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 585,
-                        "endColumn": 119,
-                        "endOffset": 704
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2507,
-                    "endColumn": 111,
-                    "endOffset": 2614
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 705,
-                        "endColumn": 107,
-                        "endOffset": 812
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2619,
-                    "endColumn": 209,
-                    "endOffset": 2824
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 813,
-                        "endColumn": 209,
-                        "endOffset": 1022
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2829,
-                    "endColumn": 126,
-                    "endOffset": 2951
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1023,
-                        "endColumn": 122,
-                        "endOffset": 1145
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2956,
-                    "endColumn": 127,
-                    "endOffset": 3079
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1146,
-                        "endColumn": 123,
-                        "endOffset": 1269
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3084,
-                    "endColumn": 198,
-                    "endOffset": 3278
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 198,
-                        "endOffset": 483
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3283,
-                    "endColumn": 229,
-                    "endOffset": 3508
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1270,
-                        "endColumn": 229,
-                        "endOffset": 1499
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3513,
-                    "endColumn": 110,
-                    "endOffset": 3619
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1500,
-                        "endColumn": 106,
-                        "endOffset": 1606
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3624,
-                    "endColumn": 205,
-                    "endOffset": 3825
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1607,
-                        "endColumn": 205,
-                        "endOffset": 1812
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3830,
-                    "endColumn": 129,
-                    "endOffset": 3955
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1813,
-                        "endColumn": 125,
-                        "endOffset": 1938
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3960,
-                    "endColumn": 217,
-                    "endOffset": 4173
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1939,
-                        "endColumn": 217,
-                        "endOffset": 2156
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4178,
-                    "endColumn": 190,
-                    "endOffset": 4364
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2157,
-                        "endColumn": 186,
-                        "endOffset": 2343
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4369,
-                    "endColumn": 98,
-                    "endOffset": 4463
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2344,
-                        "endColumn": 94,
-                        "endOffset": 2438
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4468,
-                    "endColumn": 95,
-                    "endOffset": 4559
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2439,
-                        "endColumn": 91,
-                        "endOffset": 2530
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4564,
-                    "endColumn": 112,
-                    "endOffset": 4672
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2531,
-                        "endColumn": 108,
-                        "endOffset": 2639
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4677,
-                    "endColumn": 98,
-                    "endOffset": 4771
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-pl/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 296,
-                        "endColumn": 98,
-                        "endOffset": 390
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4776,
-                    "endColumn": 109,
-                    "endOffset": 4881
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-pl/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 186,
-                        "endColumn": 109,
-                        "endOffset": 291
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 4886,
-                    "endColumn": 130,
-                    "endOffset": 5012
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-pl/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 130,
-                        "endOffset": 181
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 41,
-                    "startColumn": 4,
-                    "startOffset": 5017,
-                    "endColumn": 81,
-                    "endOffset": 5094
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2027,
-                        "endColumn": 81,
-                        "endOffset": 2104
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 5099,
-                    "endColumn": 100,
-                    "endOffset": 5195
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2109,
-                        "endColumn": 100,
-                        "endOffset": 2205
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-port.json b/android/.build/intermediates/blame/res/debug/multi/values-port.json
deleted file mode 100644
index ab3461bfeaaff459903c6282dc123daa13e7b0be..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-port.json
+++ /dev/null
@@ -1,26 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-port/values-port.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 55,
-                    "endOffset": 106
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-port/values-port.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 55,
-                        "endOffset": 106
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-pt-rBR.json b/android/.build/intermediates/blame/res/debug/multi/values-pt-rBR.json
deleted file mode 100644
index b40a9aea083b0f3e9d95431aeea18fb24e855064..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-pt-rBR.json
+++ /dev/null
@@ -1,786 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 119,
-                    "endOffset": 220
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 119,
-                        "endOffset": 170
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 225,
-                    "endColumn": 107,
-                    "endOffset": 328
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 175,
-                        "endColumn": 107,
-                        "endOffset": 278
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 333,
-                    "endColumn": 122,
-                    "endOffset": 451
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 283,
-                        "endColumn": 122,
-                        "endOffset": 401
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 456,
-                    "endColumn": 105,
-                    "endOffset": 557
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 406,
-                        "endColumn": 105,
-                        "endOffset": 507
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 562,
-                    "endColumn": 106,
-                    "endOffset": 664
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 512,
-                        "endColumn": 106,
-                        "endOffset": 614
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 669,
-                    "endColumn": 88,
-                    "endOffset": 753
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 619,
-                        "endColumn": 88,
-                        "endOffset": 703
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 758,
-                    "endColumn": 100,
-                    "endOffset": 854
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 708,
-                        "endColumn": 100,
-                        "endOffset": 804
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 859,
-                    "endColumn": 117,
-                    "endOffset": 972
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 809,
-                        "endColumn": 117,
-                        "endOffset": 922
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 977,
-                    "endColumn": 82,
-                    "endOffset": 1055
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 927,
-                        "endColumn": 82,
-                        "endOffset": 1005
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1060,
-                    "endColumn": 79,
-                    "endOffset": 1135
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1010,
-                        "endColumn": 79,
-                        "endOffset": 1085
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1140,
-                    "endColumn": 86,
-                    "endOffset": 1222
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1090,
-                        "endColumn": 86,
-                        "endOffset": 1172
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1227,
-                    "endColumn": 106,
-                    "endOffset": 1329
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1177,
-                        "endColumn": 106,
-                        "endOffset": 1279
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1334,
-                    "endColumn": 111,
-                    "endOffset": 1441
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1284,
-                        "endColumn": 111,
-                        "endOffset": 1391
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1446,
-                    "endColumn": 101,
-                    "endOffset": 1543
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1396,
-                        "endColumn": 101,
-                        "endOffset": 1493
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1548,
-                    "endColumn": 107,
-                    "endOffset": 1651
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1498,
-                        "endColumn": 107,
-                        "endOffset": 1601
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1656,
-                    "endColumn": 106,
-                    "endOffset": 1758
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1606,
-                        "endColumn": 106,
-                        "endOffset": 1708
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1763,
-                    "endColumn": 109,
-                    "endOffset": 1868
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1713,
-                        "endColumn": 109,
-                        "endOffset": 1818
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1873,
-                    "endColumn": 124,
-                    "endOffset": 1993
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1823,
-                        "endColumn": 124,
-                        "endOffset": 1943
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1998,
-                    "endColumn": 99,
-                    "endOffset": 2093
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1948,
-                        "endColumn": 99,
-                        "endOffset": 2043
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2098,
-                    "endColumn": 106,
-                    "endOffset": 2200
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 287,
-                        "endColumn": 102,
-                        "endOffset": 389
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2205,
-                    "endColumn": 179,
-                    "endOffset": 2380
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 390,
-                        "endColumn": 179,
-                        "endOffset": 569
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2385,
-                    "endColumn": 128,
-                    "endOffset": 2509
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 570,
-                        "endColumn": 124,
-                        "endOffset": 694
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2514,
-                    "endColumn": 109,
-                    "endOffset": 2619
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 695,
-                        "endColumn": 105,
-                        "endOffset": 800
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2624,
-                    "endColumn": 225,
-                    "endOffset": 2845
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 801,
-                        "endColumn": 225,
-                        "endOffset": 1026
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2850,
-                    "endColumn": 131,
-                    "endOffset": 2977
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1027,
-                        "endColumn": 127,
-                        "endOffset": 1154
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2982,
-                    "endColumn": 133,
-                    "endOffset": 3111
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1155,
-                        "endColumn": 129,
-                        "endOffset": 1284
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3116,
-                    "endColumn": 203,
-                    "endOffset": 3315
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 289,
-                        "endColumn": 203,
-                        "endOffset": 492
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3320,
-                    "endColumn": 228,
-                    "endOffset": 3544
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1285,
-                        "endColumn": 228,
-                        "endOffset": 1513
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3549,
-                    "endColumn": 109,
-                    "endOffset": 3654
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1514,
-                        "endColumn": 105,
-                        "endOffset": 1619
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3659,
-                    "endColumn": 194,
-                    "endOffset": 3849
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1620,
-                        "endColumn": 194,
-                        "endOffset": 1814
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3854,
-                    "endColumn": 131,
-                    "endOffset": 3981
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1815,
-                        "endColumn": 127,
-                        "endOffset": 1942
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3986,
-                    "endColumn": 215,
-                    "endOffset": 4197
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1943,
-                        "endColumn": 215,
-                        "endOffset": 2158
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4202,
-                    "endColumn": 186,
-                    "endOffset": 4384
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2159,
-                        "endColumn": 182,
-                        "endOffset": 2341
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4389,
-                    "endColumn": 98,
-                    "endOffset": 4483
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2342,
-                        "endColumn": 94,
-                        "endOffset": 2436
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4488,
-                    "endColumn": 95,
-                    "endOffset": 4579
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2437,
-                        "endColumn": 91,
-                        "endOffset": 2528
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4584,
-                    "endColumn": 112,
-                    "endOffset": 4692
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2529,
-                        "endColumn": 108,
-                        "endOffset": 2637
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4697,
-                    "endColumn": 103,
-                    "endOffset": 4796
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-pt-rBR/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 298,
-                        "endColumn": 103,
-                        "endOffset": 397
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4801,
-                    "endColumn": 113,
-                    "endOffset": 4910
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-pt-rBR/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 184,
-                        "endColumn": 113,
-                        "endOffset": 293
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 4915,
-                    "endColumn": 128,
-                    "endOffset": 5039
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-pt-rBR/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 128,
-                        "endOffset": 179
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 41,
-                    "startColumn": 4,
-                    "startOffset": 5044,
-                    "endColumn": 84,
-                    "endOffset": 5124
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2048,
-                        "endColumn": 84,
-                        "endOffset": 2128
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 5129,
-                    "endColumn": 100,
-                    "endOffset": 5225
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2133,
-                        "endColumn": 100,
-                        "endOffset": 2229
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-pt-rPT.json b/android/.build/intermediates/blame/res/debug/multi/values-pt-rPT.json
deleted file mode 100644
index c0f2c767e5826c2c7b1c0502c2b528858c72bdc3..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-pt-rPT.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 119,
-                    "endOffset": 220
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 119,
-                        "endOffset": 170
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 225,
-                    "endColumn": 107,
-                    "endOffset": 328
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 175,
-                        "endColumn": 107,
-                        "endOffset": 278
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 333,
-                    "endColumn": 122,
-                    "endOffset": 451
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 283,
-                        "endColumn": 122,
-                        "endOffset": 401
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 456,
-                    "endColumn": 105,
-                    "endOffset": 557
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 406,
-                        "endColumn": 105,
-                        "endOffset": 507
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 562,
-                    "endColumn": 106,
-                    "endOffset": 664
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 512,
-                        "endColumn": 106,
-                        "endOffset": 614
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 669,
-                    "endColumn": 88,
-                    "endOffset": 753
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 619,
-                        "endColumn": 88,
-                        "endOffset": 703
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 758,
-                    "endColumn": 100,
-                    "endOffset": 854
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 708,
-                        "endColumn": 100,
-                        "endOffset": 804
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 859,
-                    "endColumn": 123,
-                    "endOffset": 978
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 809,
-                        "endColumn": 123,
-                        "endOffset": 928
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 983,
-                    "endColumn": 83,
-                    "endOffset": 1062
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 933,
-                        "endColumn": 83,
-                        "endOffset": 1012
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1067,
-                    "endColumn": 80,
-                    "endOffset": 1143
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1017,
-                        "endColumn": 80,
-                        "endOffset": 1093
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1148,
-                    "endColumn": 86,
-                    "endOffset": 1230
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1098,
-                        "endColumn": 86,
-                        "endOffset": 1180
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1235,
-                    "endColumn": 106,
-                    "endOffset": 1337
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1185,
-                        "endColumn": 106,
-                        "endOffset": 1287
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1342,
-                    "endColumn": 111,
-                    "endOffset": 1449
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1292,
-                        "endColumn": 111,
-                        "endOffset": 1399
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1454,
-                    "endColumn": 101,
-                    "endOffset": 1551
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1404,
-                        "endColumn": 101,
-                        "endOffset": 1501
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1556,
-                    "endColumn": 107,
-                    "endOffset": 1659
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1506,
-                        "endColumn": 107,
-                        "endOffset": 1609
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1664,
-                    "endColumn": 106,
-                    "endOffset": 1766
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1614,
-                        "endColumn": 106,
-                        "endOffset": 1716
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1771,
-                    "endColumn": 106,
-                    "endOffset": 1873
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1721,
-                        "endColumn": 106,
-                        "endOffset": 1823
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1878,
-                    "endColumn": 121,
-                    "endOffset": 1995
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1828,
-                        "endColumn": 121,
-                        "endOffset": 1945
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 2000,
-                    "endColumn": 98,
-                    "endOffset": 2094
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1950,
-                        "endColumn": 98,
-                        "endOffset": 2044
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2099,
-                    "endColumn": 106,
-                    "endOffset": 2201
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 287,
-                        "endColumn": 102,
-                        "endOffset": 389
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2206,
-                    "endColumn": 194,
-                    "endOffset": 2396
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 390,
-                        "endColumn": 194,
-                        "endOffset": 584
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2401,
-                    "endColumn": 129,
-                    "endOffset": 2526
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 585,
-                        "endColumn": 125,
-                        "endOffset": 710
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2531,
-                    "endColumn": 109,
-                    "endOffset": 2636
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 711,
-                        "endColumn": 105,
-                        "endOffset": 816
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2641,
-                    "endColumn": 226,
-                    "endOffset": 2863
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 817,
-                        "endColumn": 226,
-                        "endOffset": 1043
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2868,
-                    "endColumn": 129,
-                    "endOffset": 2993
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1044,
-                        "endColumn": 125,
-                        "endOffset": 1169
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2998,
-                    "endColumn": 137,
-                    "endOffset": 3131
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1170,
-                        "endColumn": 133,
-                        "endOffset": 1303
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3136,
-                    "endColumn": 203,
-                    "endOffset": 3335
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 289,
-                        "endColumn": 203,
-                        "endOffset": 492
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3340,
-                    "endColumn": 246,
-                    "endOffset": 3582
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1304,
-                        "endColumn": 246,
-                        "endOffset": 1550
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3587,
-                    "endColumn": 109,
-                    "endOffset": 3692
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1551,
-                        "endColumn": 105,
-                        "endOffset": 1656
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3697,
-                    "endColumn": 200,
-                    "endOffset": 3893
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1657,
-                        "endColumn": 200,
-                        "endOffset": 1857
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3898,
-                    "endColumn": 132,
-                    "endOffset": 4026
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1858,
-                        "endColumn": 128,
-                        "endOffset": 1986
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 4031,
-                    "endColumn": 217,
-                    "endOffset": 4244
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1987,
-                        "endColumn": 217,
-                        "endOffset": 2204
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4249,
-                    "endColumn": 207,
-                    "endOffset": 4452
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2205,
-                        "endColumn": 203,
-                        "endOffset": 2408
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4457,
-                    "endColumn": 97,
-                    "endOffset": 4550
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2409,
-                        "endColumn": 93,
-                        "endOffset": 2502
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4555,
-                    "endColumn": 98,
-                    "endOffset": 4649
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2503,
-                        "endColumn": 94,
-                        "endOffset": 2597
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4654,
-                    "endColumn": 115,
-                    "endOffset": 4765
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2598,
-                        "endColumn": 111,
-                        "endOffset": 2709
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4770,
-                    "endColumn": 84,
-                    "endOffset": 4850
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2049,
-                        "endColumn": 84,
-                        "endOffset": 2129
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4855,
-                    "endColumn": 100,
-                    "endOffset": 4951
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2134,
-                        "endColumn": 100,
-                        "endOffset": 2230
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-pt.json b/android/.build/intermediates/blame/res/debug/multi/values-pt.json
deleted file mode 100644
index 009f25d85a203f6d1e05588e7f4756506cc62527..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-pt.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt/values-pt.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 119,
-                    "endOffset": 170
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 119,
-                        "endOffset": 170
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 175,
-                    "endColumn": 107,
-                    "endOffset": 278
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 175,
-                        "endColumn": 107,
-                        "endOffset": 278
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 283,
-                    "endColumn": 122,
-                    "endOffset": 401
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 283,
-                        "endColumn": 122,
-                        "endOffset": 401
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 406,
-                    "endColumn": 105,
-                    "endOffset": 507
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 406,
-                        "endColumn": 105,
-                        "endOffset": 507
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 512,
-                    "endColumn": 106,
-                    "endOffset": 614
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 512,
-                        "endColumn": 106,
-                        "endOffset": 614
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 619,
-                    "endColumn": 88,
-                    "endOffset": 703
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 619,
-                        "endColumn": 88,
-                        "endOffset": 703
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 708,
-                    "endColumn": 100,
-                    "endOffset": 804
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 708,
-                        "endColumn": 100,
-                        "endOffset": 804
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 809,
-                    "endColumn": 117,
-                    "endOffset": 922
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 809,
-                        "endColumn": 117,
-                        "endOffset": 922
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 927,
-                    "endColumn": 82,
-                    "endOffset": 1005
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 927,
-                        "endColumn": 82,
-                        "endOffset": 1005
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1010,
-                    "endColumn": 79,
-                    "endOffset": 1085
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1010,
-                        "endColumn": 79,
-                        "endOffset": 1085
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1090,
-                    "endColumn": 86,
-                    "endOffset": 1172
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1090,
-                        "endColumn": 86,
-                        "endOffset": 1172
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1177,
-                    "endColumn": 106,
-                    "endOffset": 1279
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1177,
-                        "endColumn": 106,
-                        "endOffset": 1279
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1284,
-                    "endColumn": 111,
-                    "endOffset": 1391
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1284,
-                        "endColumn": 111,
-                        "endOffset": 1391
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1396,
-                    "endColumn": 101,
-                    "endOffset": 1493
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1396,
-                        "endColumn": 101,
-                        "endOffset": 1493
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1498,
-                    "endColumn": 107,
-                    "endOffset": 1601
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1498,
-                        "endColumn": 107,
-                        "endOffset": 1601
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1606,
-                    "endColumn": 106,
-                    "endOffset": 1708
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1606,
-                        "endColumn": 106,
-                        "endOffset": 1708
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1713,
-                    "endColumn": 109,
-                    "endOffset": 1818
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1713,
-                        "endColumn": 109,
-                        "endOffset": 1818
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1823,
-                    "endColumn": 124,
-                    "endOffset": 1943
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1823,
-                        "endColumn": 124,
-                        "endOffset": 1943
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1948,
-                    "endColumn": 99,
-                    "endOffset": 2043
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1948,
-                        "endColumn": 99,
-                        "endOffset": 2043
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2048,
-                    "endColumn": 84,
-                    "endOffset": 2128
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2048,
-                        "endColumn": 84,
-                        "endOffset": 2128
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2133,
-                    "endColumn": 100,
-                    "endOffset": 2229
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2133,
-                        "endColumn": 100,
-                        "endOffset": 2229
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ro.json b/android/.build/intermediates/blame/res/debug/multi/values-ro.json
deleted file mode 100644
index e46dc1037f8d2d57dbdbf334ef690a2d0a207a1b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ro.json
+++ /dev/null
@@ -1,805 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ro/values-ro.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 120,
-                    "endOffset": 221
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 120,
-                        "endOffset": 171
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 226,
-                    "endColumn": 107,
-                    "endOffset": 329
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 176,
-                        "endColumn": 107,
-                        "endOffset": 279
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 334,
-                    "endColumn": 122,
-                    "endOffset": 452
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 284,
-                        "endColumn": 122,
-                        "endOffset": 402
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 457,
-                    "endColumn": 103,
-                    "endOffset": 556
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 407,
-                        "endColumn": 103,
-                        "endOffset": 506
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 561,
-                    "endColumn": 112,
-                    "endOffset": 669
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 511,
-                        "endColumn": 112,
-                        "endOffset": 619
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 674,
-                    "endColumn": 87,
-                    "endOffset": 757
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 624,
-                        "endColumn": 87,
-                        "endOffset": 707
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 762,
-                    "endColumn": 111,
-                    "endOffset": 869
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 712,
-                        "endColumn": 111,
-                        "endOffset": 819
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 874,
-                    "endColumn": 120,
-                    "endOffset": 990
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 824,
-                        "endColumn": 120,
-                        "endOffset": 940
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 995,
-                    "endColumn": 84,
-                    "endOffset": 1075
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 945,
-                        "endColumn": 84,
-                        "endOffset": 1025
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1080,
-                    "endColumn": 81,
-                    "endOffset": 1157
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1030,
-                        "endColumn": 81,
-                        "endOffset": 1107
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1162,
-                    "endColumn": 82,
-                    "endOffset": 1240
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1112,
-                        "endColumn": 82,
-                        "endOffset": 1190
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1245,
-                    "endColumn": 111,
-                    "endOffset": 1352
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1195,
-                        "endColumn": 111,
-                        "endOffset": 1302
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1357,
-                    "endColumn": 112,
-                    "endOffset": 1465
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1307,
-                        "endColumn": 112,
-                        "endOffset": 1415
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1470,
-                    "endColumn": 99,
-                    "endOffset": 1565
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1420,
-                        "endColumn": 99,
-                        "endOffset": 1515
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1570,
-                    "endColumn": 113,
-                    "endOffset": 1679
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1520,
-                        "endColumn": 113,
-                        "endOffset": 1629
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1684,
-                    "endColumn": 104,
-                    "endOffset": 1784
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1634,
-                        "endColumn": 104,
-                        "endOffset": 1734
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1789,
-                    "endColumn": 105,
-                    "endOffset": 1890
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1739,
-                        "endColumn": 105,
-                        "endOffset": 1840
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1895,
-                    "endColumn": 120,
-                    "endOffset": 2011
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1845,
-                        "endColumn": 120,
-                        "endOffset": 1961
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 2016,
-                    "endColumn": 102,
-                    "endOffset": 2114
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1966,
-                        "endColumn": 102,
-                        "endOffset": 2064
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2119,
-                    "endColumn": 108,
-                    "endOffset": 2223
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 104,
-                        "endOffset": 387
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2228,
-                    "endColumn": 191,
-                    "endOffset": 2415
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 388,
-                        "endColumn": 191,
-                        "endOffset": 579
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2420,
-                    "endColumn": 130,
-                    "endOffset": 2546
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 580,
-                        "endColumn": 126,
-                        "endOffset": 706
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2551,
-                    "endColumn": 110,
-                    "endOffset": 2657
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 707,
-                        "endColumn": 106,
-                        "endOffset": 813
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2662,
-                    "endColumn": 209,
-                    "endOffset": 2867
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 814,
-                        "endColumn": 209,
-                        "endOffset": 1023
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2872,
-                    "endColumn": 133,
-                    "endOffset": 3001
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1024,
-                        "endColumn": 129,
-                        "endOffset": 1153
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 3006,
-                    "endColumn": 137,
-                    "endOffset": 3139
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1154,
-                        "endColumn": 133,
-                        "endOffset": 1287
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3144,
-                    "endColumn": 203,
-                    "endOffset": 3343
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 203,
-                        "endOffset": 488
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3348,
-                    "endColumn": 220,
-                    "endOffset": 3564
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1288,
-                        "endColumn": 220,
-                        "endOffset": 1508
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3569,
-                    "endColumn": 111,
-                    "endOffset": 3676
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1509,
-                        "endColumn": 107,
-                        "endOffset": 1616
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3681,
-                    "endColumn": 189,
-                    "endOffset": 3866
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1617,
-                        "endColumn": 189,
-                        "endOffset": 1806
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3871,
-                    "endColumn": 133,
-                    "endOffset": 4000
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1807,
-                        "endColumn": 129,
-                        "endOffset": 1936
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 4005,
-                    "endColumn": 204,
-                    "endOffset": 4205
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1937,
-                        "endColumn": 204,
-                        "endOffset": 2141
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4210,
-                    "endColumn": 195,
-                    "endOffset": 4401
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2142,
-                        "endColumn": 191,
-                        "endOffset": 2333
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4406,
-                    "endColumn": 100,
-                    "endOffset": 4502
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2334,
-                        "endColumn": 96,
-                        "endOffset": 2430
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4507,
-                    "endColumn": 96,
-                    "endOffset": 4599
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2431,
-                        "endColumn": 92,
-                        "endOffset": 2523
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4604,
-                    "endColumn": 110,
-                    "endOffset": 4710
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2524,
-                        "endColumn": 106,
-                        "endOffset": 2630
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4715,
-                    "endColumn": 118,
-                    "endOffset": 4829
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ro/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 290,
-                        "endColumn": 118,
-                        "endOffset": 404
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4834,
-                    "endColumn": 118,
-                    "endOffset": 4948
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ro/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 171,
-                        "endColumn": 118,
-                        "endOffset": 285
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 4953,
-                    "endColumn": 115,
-                    "endOffset": 5064
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ro/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 115,
-                        "endOffset": 166
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 41,
-                    "startColumn": 4,
-                    "startOffset": 5069,
-                    "endColumn": 82,
-                    "endOffset": 5147
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2069,
-                        "endColumn": 82,
-                        "endOffset": 2147
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 5152,
-                    "endColumn": 100,
-                    "endOffset": 5248
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2152,
-                        "endColumn": 100,
-                        "endOffset": 2248
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 43,
-                    "startColumn": 4,
-                    "startOffset": 5253,
-                    "endColumn": 85,
-                    "endOffset": 5334
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ro/strings.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 409,
-                        "endColumn": 85,
-                        "endOffset": 490
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-rs.json b/android/.build/intermediates/blame/res/debug/multi/values-rs.json
deleted file mode 100644
index 2447ce4d23d018cb73ba2d1b8a7dd27e0c596a74..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-rs.json
+++ /dev/null
@@ -1,64 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-rs/values-rs.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 117,
-                    "endOffset": 168
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-rs/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 290,
-                        "endColumn": 117,
-                        "endOffset": 403
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 173,
-                    "endColumn": 116,
-                    "endOffset": 285
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-rs/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 173,
-                        "endColumn": 116,
-                        "endOffset": 285
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 290,
-                    "endColumn": 117,
-                    "endOffset": 403
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-rs/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 117,
-                        "endOffset": 168
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ru.json b/android/.build/intermediates/blame/res/debug/multi/values-ru.json
deleted file mode 100644
index a8e34702cf20544e106110fe6cc92c03e710e8f2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ru.json
+++ /dev/null
@@ -1,786 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ru/values-ru.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 114,
-                    "endOffset": 215
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 114,
-                        "endOffset": 165
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 220,
-                    "endColumn": 107,
-                    "endOffset": 323
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 170,
-                        "endColumn": 107,
-                        "endOffset": 273
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 328,
-                    "endColumn": 122,
-                    "endOffset": 446
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 278,
-                        "endColumn": 122,
-                        "endOffset": 396
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 451,
-                    "endColumn": 101,
-                    "endOffset": 548
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 401,
-                        "endColumn": 101,
-                        "endOffset": 498
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 553,
-                    "endColumn": 111,
-                    "endOffset": 660
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 503,
-                        "endColumn": 111,
-                        "endOffset": 610
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 665,
-                    "endColumn": 85,
-                    "endOffset": 746
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 615,
-                        "endColumn": 85,
-                        "endOffset": 696
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 751,
-                    "endColumn": 104,
-                    "endOffset": 851
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 701,
-                        "endColumn": 104,
-                        "endOffset": 801
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 856,
-                    "endColumn": 119,
-                    "endOffset": 971
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 806,
-                        "endColumn": 119,
-                        "endOffset": 921
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 976,
-                    "endColumn": 78,
-                    "endOffset": 1050
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 926,
-                        "endColumn": 78,
-                        "endOffset": 1000
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1055,
-                    "endColumn": 77,
-                    "endOffset": 1128
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1005,
-                        "endColumn": 77,
-                        "endOffset": 1078
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1133,
-                    "endColumn": 79,
-                    "endOffset": 1208
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1083,
-                        "endColumn": 79,
-                        "endOffset": 1158
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1213,
-                    "endColumn": 105,
-                    "endOffset": 1314
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1163,
-                        "endColumn": 105,
-                        "endOffset": 1264
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1319,
-                    "endColumn": 107,
-                    "endOffset": 1422
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1269,
-                        "endColumn": 107,
-                        "endOffset": 1372
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1427,
-                    "endColumn": 97,
-                    "endOffset": 1520
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1377,
-                        "endColumn": 97,
-                        "endOffset": 1470
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1525,
-                    "endColumn": 108,
-                    "endOffset": 1629
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1475,
-                        "endColumn": 108,
-                        "endOffset": 1579
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1634,
-                    "endColumn": 105,
-                    "endOffset": 1735
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1584,
-                        "endColumn": 105,
-                        "endOffset": 1685
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1740,
-                    "endColumn": 107,
-                    "endOffset": 1843
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1690,
-                        "endColumn": 107,
-                        "endOffset": 1793
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1848,
-                    "endColumn": 135,
-                    "endOffset": 1979
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1798,
-                        "endColumn": 135,
-                        "endOffset": 1929
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1984,
-                    "endColumn": 99,
-                    "endOffset": 2079
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1934,
-                        "endColumn": 99,
-                        "endOffset": 2029
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2084,
-                    "endColumn": 108,
-                    "endOffset": 2188
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 104,
-                        "endOffset": 387
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2193,
-                    "endColumn": 197,
-                    "endOffset": 2386
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 388,
-                        "endColumn": 197,
-                        "endOffset": 585
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2391,
-                    "endColumn": 127,
-                    "endOffset": 2514
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 586,
-                        "endColumn": 123,
-                        "endOffset": 709
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2519,
-                    "endColumn": 111,
-                    "endOffset": 2626
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 710,
-                        "endColumn": 107,
-                        "endOffset": 817
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2631,
-                    "endColumn": 200,
-                    "endOffset": 2827
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 818,
-                        "endColumn": 200,
-                        "endOffset": 1018
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2832,
-                    "endColumn": 130,
-                    "endOffset": 2958
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1019,
-                        "endColumn": 126,
-                        "endOffset": 1145
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2963,
-                    "endColumn": 132,
-                    "endOffset": 3091
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1146,
-                        "endColumn": 128,
-                        "endOffset": 1274
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3096,
-                    "endColumn": 215,
-                    "endOffset": 3307
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 215,
-                        "endOffset": 500
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3312,
-                    "endColumn": 239,
-                    "endOffset": 3547
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1275,
-                        "endColumn": 239,
-                        "endOffset": 1514
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3552,
-                    "endColumn": 108,
-                    "endOffset": 3656
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1515,
-                        "endColumn": 104,
-                        "endOffset": 1619
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3661,
-                    "endColumn": 193,
-                    "endOffset": 3850
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1620,
-                        "endColumn": 193,
-                        "endOffset": 1813
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3855,
-                    "endColumn": 127,
-                    "endOffset": 3978
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1814,
-                        "endColumn": 123,
-                        "endOffset": 1937
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3983,
-                    "endColumn": 225,
-                    "endOffset": 4204
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1938,
-                        "endColumn": 225,
-                        "endOffset": 2163
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4209,
-                    "endColumn": 187,
-                    "endOffset": 4392
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2164,
-                        "endColumn": 183,
-                        "endOffset": 2347
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4397,
-                    "endColumn": 98,
-                    "endOffset": 4491
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2348,
-                        "endColumn": 94,
-                        "endOffset": 2442
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4496,
-                    "endColumn": 89,
-                    "endOffset": 4581
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2443,
-                        "endColumn": 85,
-                        "endOffset": 2528
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4586,
-                    "endColumn": 114,
-                    "endOffset": 4696
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2529,
-                        "endColumn": 110,
-                        "endOffset": 2639
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4701,
-                    "endColumn": 118,
-                    "endOffset": 4815
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ru/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 281,
-                        "endColumn": 118,
-                        "endOffset": 395
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4820,
-                    "endColumn": 117,
-                    "endOffset": 4933
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ru/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 163,
-                        "endColumn": 117,
-                        "endOffset": 276
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 4938,
-                    "endColumn": 107,
-                    "endOffset": 5041
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ru/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 107,
-                        "endOffset": 158
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 41,
-                    "startColumn": 4,
-                    "startOffset": 5046,
-                    "endColumn": 80,
-                    "endOffset": 5122
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2034,
-                        "endColumn": 80,
-                        "endOffset": 2110
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 5127,
-                    "endColumn": 100,
-                    "endOffset": 5223
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2115,
-                        "endColumn": 100,
-                        "endOffset": 2211
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-si-rLK.json b/android/.build/intermediates/blame/res/debug/multi/values-si-rLK.json
deleted file mode 100644
index 8869604e8a4eed3b085359245033b7041b83f954..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-si-rLK.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 109,
-                    "endOffset": 160
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 109,
-                        "endOffset": 160
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 165,
-                    "endColumn": 107,
-                    "endOffset": 268
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 165,
-                        "endColumn": 107,
-                        "endOffset": 268
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 273,
-                    "endColumn": 122,
-                    "endOffset": 391
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 273,
-                        "endColumn": 122,
-                        "endOffset": 391
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 396,
-                    "endColumn": 106,
-                    "endOffset": 498
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 396,
-                        "endColumn": 106,
-                        "endOffset": 498
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 503,
-                    "endColumn": 106,
-                    "endOffset": 605
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 503,
-                        "endColumn": 106,
-                        "endOffset": 605
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 610,
-                    "endColumn": 87,
-                    "endOffset": 693
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 610,
-                        "endColumn": 87,
-                        "endOffset": 693
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 698,
-                    "endColumn": 104,
-                    "endOffset": 798
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 698,
-                        "endColumn": 104,
-                        "endOffset": 798
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 803,
-                    "endColumn": 115,
-                    "endOffset": 914
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 803,
-                        "endColumn": 115,
-                        "endOffset": 914
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 919,
-                    "endColumn": 88,
-                    "endOffset": 1003
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 919,
-                        "endColumn": 88,
-                        "endOffset": 1003
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1008,
-                    "endColumn": 86,
-                    "endOffset": 1090
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1008,
-                        "endColumn": 86,
-                        "endOffset": 1090
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1095,
-                    "endColumn": 83,
-                    "endOffset": 1174
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1095,
-                        "endColumn": 83,
-                        "endOffset": 1174
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1179,
-                    "endColumn": 108,
-                    "endOffset": 1283
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1179,
-                        "endColumn": 108,
-                        "endOffset": 1283
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1288,
-                    "endColumn": 104,
-                    "endOffset": 1388
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1288,
-                        "endColumn": 104,
-                        "endOffset": 1388
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1393,
-                    "endColumn": 97,
-                    "endOffset": 1486
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1393,
-                        "endColumn": 97,
-                        "endOffset": 1486
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1491,
-                    "endColumn": 109,
-                    "endOffset": 1596
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1491,
-                        "endColumn": 109,
-                        "endOffset": 1596
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1601,
-                    "endColumn": 98,
-                    "endOffset": 1695
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1601,
-                        "endColumn": 98,
-                        "endOffset": 1695
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1700,
-                    "endColumn": 105,
-                    "endOffset": 1801
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1700,
-                        "endColumn": 105,
-                        "endOffset": 1801
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1806,
-                    "endColumn": 120,
-                    "endOffset": 1922
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1806,
-                        "endColumn": 120,
-                        "endOffset": 1922
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1927,
-                    "endColumn": 98,
-                    "endOffset": 2021
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1927,
-                        "endColumn": 98,
-                        "endOffset": 2021
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2026,
-                    "endColumn": 81,
-                    "endOffset": 2103
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2026,
-                        "endColumn": 81,
-                        "endOffset": 2103
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2108,
-                    "endColumn": 100,
-                    "endOffset": 2204
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2108,
-                        "endColumn": 100,
-                        "endOffset": 2204
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-si.json b/android/.build/intermediates/blame/res/debug/multi/values-si.json
deleted file mode 100644
index c53cc713f5047be743369f3683cda04cd135c616..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-si.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-si/values-si.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 109,
-                    "endOffset": 210
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 105,
-                        "endOffset": 388
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 215,
-                    "endColumn": 185,
-                    "endOffset": 396
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 389,
-                        "endColumn": 185,
-                        "endOffset": 574
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 401,
-                    "endColumn": 125,
-                    "endOffset": 522
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 575,
-                        "endColumn": 121,
-                        "endOffset": 696
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 527,
-                    "endColumn": 114,
-                    "endOffset": 637
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 697,
-                        "endColumn": 110,
-                        "endOffset": 807
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 642,
-                    "endColumn": 200,
-                    "endOffset": 838
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 808,
-                        "endColumn": 200,
-                        "endOffset": 1008
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 843,
-                    "endColumn": 125,
-                    "endOffset": 964
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1009,
-                        "endColumn": 121,
-                        "endOffset": 1130
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 969,
-                    "endColumn": 126,
-                    "endOffset": 1091
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1131,
-                        "endColumn": 122,
-                        "endOffset": 1253
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1096,
-                    "endColumn": 197,
-                    "endOffset": 1289
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 197,
-                        "endOffset": 482
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1294,
-                    "endColumn": 209,
-                    "endOffset": 1499
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1254,
-                        "endColumn": 209,
-                        "endOffset": 1463
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1504,
-                    "endColumn": 116,
-                    "endOffset": 1616
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1464,
-                        "endColumn": 112,
-                        "endOffset": 1576
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1621,
-                    "endColumn": 186,
-                    "endOffset": 1803
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1577,
-                        "endColumn": 186,
-                        "endOffset": 1763
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1808,
-                    "endColumn": 132,
-                    "endOffset": 1936
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1764,
-                        "endColumn": 128,
-                        "endOffset": 1892
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1941,
-                    "endColumn": 202,
-                    "endOffset": 2139
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1893,
-                        "endColumn": 202,
-                        "endOffset": 2095
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2144,
-                    "endColumn": 190,
-                    "endOffset": 2330
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2096,
-                        "endColumn": 186,
-                        "endOffset": 2282
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2335,
-                    "endColumn": 102,
-                    "endOffset": 2433
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2283,
-                        "endColumn": 98,
-                        "endOffset": 2381
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2438,
-                    "endColumn": 90,
-                    "endOffset": 2524
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2382,
-                        "endColumn": 86,
-                        "endOffset": 2468
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2529,
-                    "endColumn": 108,
-                    "endOffset": 2633
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2469,
-                        "endColumn": 104,
-                        "endOffset": 2573
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-sk.json b/android/.build/intermediates/blame/res/debug/multi/values-sk.json
deleted file mode 100644
index b5a67076baff59b64f6184a843b7e9934e3a409a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-sk.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-sk/values-sk.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 106,
-                    "endOffset": 207
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 106,
-                        "endOffset": 157
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 212,
-                    "endColumn": 107,
-                    "endOffset": 315
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 162,
-                        "endColumn": 107,
-                        "endOffset": 265
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 320,
-                    "endColumn": 122,
-                    "endOffset": 438
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 270,
-                        "endColumn": 122,
-                        "endOffset": 388
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 443,
-                    "endColumn": 99,
-                    "endOffset": 538
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 393,
-                        "endColumn": 99,
-                        "endOffset": 488
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 543,
-                    "endColumn": 110,
-                    "endOffset": 649
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 493,
-                        "endColumn": 110,
-                        "endOffset": 599
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 654,
-                    "endColumn": 85,
-                    "endOffset": 735
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 604,
-                        "endColumn": 85,
-                        "endOffset": 685
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 740,
-                    "endColumn": 107,
-                    "endOffset": 843
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 690,
-                        "endColumn": 107,
-                        "endOffset": 793
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 848,
-                    "endColumn": 117,
-                    "endOffset": 961
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 798,
-                        "endColumn": 117,
-                        "endOffset": 911
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 966,
-                    "endColumn": 77,
-                    "endOffset": 1039
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 916,
-                        "endColumn": 77,
-                        "endOffset": 989
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1044,
-                    "endColumn": 77,
-                    "endOffset": 1117
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 994,
-                        "endColumn": 77,
-                        "endOffset": 1067
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1122,
-                    "endColumn": 83,
-                    "endOffset": 1201
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1072,
-                        "endColumn": 83,
-                        "endOffset": 1151
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1206,
-                    "endColumn": 104,
-                    "endOffset": 1306
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1156,
-                        "endColumn": 104,
-                        "endOffset": 1256
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1311,
-                    "endColumn": 108,
-                    "endOffset": 1415
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1261,
-                        "endColumn": 108,
-                        "endOffset": 1365
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1420,
-                    "endColumn": 98,
-                    "endOffset": 1514
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1370,
-                        "endColumn": 98,
-                        "endOffset": 1464
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1519,
-                    "endColumn": 105,
-                    "endOffset": 1620
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1469,
-                        "endColumn": 105,
-                        "endOffset": 1570
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1625,
-                    "endColumn": 110,
-                    "endOffset": 1731
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1575,
-                        "endColumn": 110,
-                        "endOffset": 1681
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1736,
-                    "endColumn": 108,
-                    "endOffset": 1840
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1686,
-                        "endColumn": 108,
-                        "endOffset": 1790
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1845,
-                    "endColumn": 123,
-                    "endOffset": 1964
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1795,
-                        "endColumn": 123,
-                        "endOffset": 1914
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1969,
-                    "endColumn": 97,
-                    "endOffset": 2062
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1919,
-                        "endColumn": 97,
-                        "endOffset": 2012
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2067,
-                    "endColumn": 107,
-                    "endOffset": 2170
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 103,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2175,
-                    "endColumn": 191,
-                    "endOffset": 2362
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 387,
-                        "endColumn": 191,
-                        "endOffset": 578
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2367,
-                    "endColumn": 125,
-                    "endOffset": 2488
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 579,
-                        "endColumn": 121,
-                        "endOffset": 700
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2493,
-                    "endColumn": 111,
-                    "endOffset": 2600
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 701,
-                        "endColumn": 107,
-                        "endOffset": 808
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2605,
-                    "endColumn": 214,
-                    "endOffset": 2815
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 809,
-                        "endColumn": 214,
-                        "endOffset": 1023
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2820,
-                    "endColumn": 129,
-                    "endOffset": 2945
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1024,
-                        "endColumn": 125,
-                        "endOffset": 1149
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2950,
-                    "endColumn": 130,
-                    "endOffset": 3076
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1150,
-                        "endColumn": 126,
-                        "endOffset": 1276
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3081,
-                    "endColumn": 197,
-                    "endOffset": 3274
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 197,
-                        "endOffset": 482
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3279,
-                    "endColumn": 227,
-                    "endOffset": 3502
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1277,
-                        "endColumn": 227,
-                        "endOffset": 1504
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3507,
-                    "endColumn": 112,
-                    "endOffset": 3615
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1505,
-                        "endColumn": 108,
-                        "endOffset": 1613
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3620,
-                    "endColumn": 200,
-                    "endOffset": 3816
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1614,
-                        "endColumn": 200,
-                        "endOffset": 1814
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3821,
-                    "endColumn": 131,
-                    "endOffset": 3948
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1815,
-                        "endColumn": 127,
-                        "endOffset": 1942
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3953,
-                    "endColumn": 221,
-                    "endOffset": 4170
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1943,
-                        "endColumn": 221,
-                        "endOffset": 2164
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4175,
-                    "endColumn": 193,
-                    "endOffset": 4364
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2165,
-                        "endColumn": 189,
-                        "endOffset": 2354
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4369,
-                    "endColumn": 97,
-                    "endOffset": 4462
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2355,
-                        "endColumn": 93,
-                        "endOffset": 2448
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4467,
-                    "endColumn": 96,
-                    "endOffset": 4559
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2449,
-                        "endColumn": 92,
-                        "endOffset": 2541
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4564,
-                    "endColumn": 115,
-                    "endOffset": 4675
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2542,
-                        "endColumn": 111,
-                        "endOffset": 2653
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4680,
-                    "endColumn": 87,
-                    "endOffset": 4763
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2017,
-                        "endColumn": 87,
-                        "endOffset": 2100
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4768,
-                    "endColumn": 100,
-                    "endOffset": 4864
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2105,
-                        "endColumn": 100,
-                        "endOffset": 2201
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-sl.json b/android/.build/intermediates/blame/res/debug/multi/values-sl.json
deleted file mode 100644
index 82851668722b25d68dc5f141ce2f3b0a887e52e4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-sl.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-sl/values-sl.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 106,
-                    "endOffset": 207
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 106,
-                        "endOffset": 157
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 212,
-                    "endColumn": 107,
-                    "endOffset": 315
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 162,
-                        "endColumn": 107,
-                        "endOffset": 265
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 320,
-                    "endColumn": 122,
-                    "endOffset": 438
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 270,
-                        "endColumn": 122,
-                        "endOffset": 388
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 443,
-                    "endColumn": 106,
-                    "endOffset": 545
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 393,
-                        "endColumn": 106,
-                        "endOffset": 495
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 550,
-                    "endColumn": 107,
-                    "endOffset": 653
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 500,
-                        "endColumn": 107,
-                        "endOffset": 603
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 658,
-                    "endColumn": 86,
-                    "endOffset": 740
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 608,
-                        "endColumn": 86,
-                        "endOffset": 690
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 745,
-                    "endColumn": 102,
-                    "endOffset": 843
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 695,
-                        "endColumn": 102,
-                        "endOffset": 793
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 848,
-                    "endColumn": 118,
-                    "endOffset": 962
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 798,
-                        "endColumn": 118,
-                        "endOffset": 912
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 967,
-                    "endColumn": 84,
-                    "endOffset": 1047
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 917,
-                        "endColumn": 84,
-                        "endOffset": 997
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1052,
-                    "endColumn": 83,
-                    "endOffset": 1131
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1002,
-                        "endColumn": 83,
-                        "endOffset": 1081
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1136,
-                    "endColumn": 83,
-                    "endOffset": 1215
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1086,
-                        "endColumn": 83,
-                        "endOffset": 1165
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1220,
-                    "endColumn": 107,
-                    "endOffset": 1323
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1170,
-                        "endColumn": 107,
-                        "endOffset": 1273
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1328,
-                    "endColumn": 108,
-                    "endOffset": 1432
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1278,
-                        "endColumn": 108,
-                        "endOffset": 1382
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1437,
-                    "endColumn": 99,
-                    "endOffset": 1532
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1387,
-                        "endColumn": 99,
-                        "endOffset": 1482
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1537,
-                    "endColumn": 112,
-                    "endOffset": 1645
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1487,
-                        "endColumn": 112,
-                        "endOffset": 1595
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1650,
-                    "endColumn": 106,
-                    "endOffset": 1752
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1600,
-                        "endColumn": 106,
-                        "endOffset": 1702
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1757,
-                    "endColumn": 103,
-                    "endOffset": 1856
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1707,
-                        "endColumn": 103,
-                        "endOffset": 1806
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1861,
-                    "endColumn": 116,
-                    "endOffset": 1973
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1811,
-                        "endColumn": 116,
-                        "endOffset": 1923
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1978,
-                    "endColumn": 96,
-                    "endOffset": 2070
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1928,
-                        "endColumn": 96,
-                        "endOffset": 2020
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2075,
-                    "endColumn": 107,
-                    "endOffset": 2178
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 103,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2183,
-                    "endColumn": 196,
-                    "endOffset": 2375
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 387,
-                        "endColumn": 196,
-                        "endOffset": 583
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2380,
-                    "endColumn": 130,
-                    "endOffset": 2506
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 584,
-                        "endColumn": 126,
-                        "endOffset": 710
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2511,
-                    "endColumn": 108,
-                    "endOffset": 2615
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 711,
-                        "endColumn": 104,
-                        "endOffset": 815
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2620,
-                    "endColumn": 205,
-                    "endOffset": 2821
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 816,
-                        "endColumn": 205,
-                        "endOffset": 1021
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2826,
-                    "endColumn": 131,
-                    "endOffset": 2953
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1022,
-                        "endColumn": 127,
-                        "endOffset": 1149
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2958,
-                    "endColumn": 132,
-                    "endOffset": 3086
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1150,
-                        "endColumn": 128,
-                        "endOffset": 1278
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3091,
-                    "endColumn": 198,
-                    "endOffset": 3285
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 198,
-                        "endOffset": 483
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3290,
-                    "endColumn": 216,
-                    "endOffset": 3502
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1279,
-                        "endColumn": 216,
-                        "endOffset": 1495
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3507,
-                    "endColumn": 108,
-                    "endOffset": 3611
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1496,
-                        "endColumn": 104,
-                        "endOffset": 1600
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3616,
-                    "endColumn": 197,
-                    "endOffset": 3809
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1601,
-                        "endColumn": 197,
-                        "endOffset": 1798
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3814,
-                    "endColumn": 131,
-                    "endOffset": 3941
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1799,
-                        "endColumn": 127,
-                        "endOffset": 1926
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3946,
-                    "endColumn": 210,
-                    "endOffset": 4152
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1927,
-                        "endColumn": 210,
-                        "endOffset": 2137
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4157,
-                    "endColumn": 181,
-                    "endOffset": 4334
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2138,
-                        "endColumn": 177,
-                        "endOffset": 2315
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4339,
-                    "endColumn": 99,
-                    "endOffset": 4434
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2316,
-                        "endColumn": 95,
-                        "endOffset": 2411
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4439,
-                    "endColumn": 91,
-                    "endOffset": 4526
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2412,
-                        "endColumn": 87,
-                        "endOffset": 2499
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4531,
-                    "endColumn": 112,
-                    "endOffset": 4639
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2500,
-                        "endColumn": 108,
-                        "endOffset": 2608
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4644,
-                    "endColumn": 82,
-                    "endOffset": 4722
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2025,
-                        "endColumn": 82,
-                        "endOffset": 2103
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4727,
-                    "endColumn": 100,
-                    "endOffset": 4823
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2108,
-                        "endColumn": 100,
-                        "endOffset": 2204
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-sq-rAL.json b/android/.build/intermediates/blame/res/debug/multi/values-sq-rAL.json
deleted file mode 100644
index 469741a523b0e95eb257a8331c286df7a491ca7e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-sq-rAL.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-sq-rAL/values-sq-rAL.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 113,
-                    "endOffset": 164
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 113,
-                        "endOffset": 164
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 169,
-                    "endColumn": 107,
-                    "endOffset": 272
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 169,
-                        "endColumn": 107,
-                        "endOffset": 272
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 277,
-                    "endColumn": 122,
-                    "endOffset": 395
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 277,
-                        "endColumn": 122,
-                        "endOffset": 395
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 400,
-                    "endColumn": 99,
-                    "endOffset": 495
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 400,
-                        "endColumn": 99,
-                        "endOffset": 495
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 500,
-                    "endColumn": 111,
-                    "endOffset": 607
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 500,
-                        "endColumn": 111,
-                        "endOffset": 607
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 612,
-                    "endColumn": 86,
-                    "endOffset": 694
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 612,
-                        "endColumn": 86,
-                        "endOffset": 694
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 699,
-                    "endColumn": 109,
-                    "endOffset": 804
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 699,
-                        "endColumn": 109,
-                        "endOffset": 804
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 809,
-                    "endColumn": 122,
-                    "endOffset": 927
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 809,
-                        "endColumn": 122,
-                        "endOffset": 927
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 932,
-                    "endColumn": 80,
-                    "endOffset": 1008
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 932,
-                        "endColumn": 80,
-                        "endOffset": 1008
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1013,
-                    "endColumn": 78,
-                    "endOffset": 1087
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1013,
-                        "endColumn": 78,
-                        "endOffset": 1087
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1092,
-                    "endColumn": 82,
-                    "endOffset": 1170
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1092,
-                        "endColumn": 82,
-                        "endOffset": 1170
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1175,
-                    "endColumn": 105,
-                    "endOffset": 1276
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1175,
-                        "endColumn": 105,
-                        "endOffset": 1276
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1281,
-                    "endColumn": 104,
-                    "endOffset": 1381
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1281,
-                        "endColumn": 104,
-                        "endOffset": 1381
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1386,
-                    "endColumn": 97,
-                    "endOffset": 1479
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1386,
-                        "endColumn": 97,
-                        "endOffset": 1479
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1484,
-                    "endColumn": 105,
-                    "endOffset": 1585
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1484,
-                        "endColumn": 105,
-                        "endOffset": 1585
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1590,
-                    "endColumn": 102,
-                    "endOffset": 1688
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1590,
-                        "endColumn": 102,
-                        "endOffset": 1688
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1693,
-                    "endColumn": 115,
-                    "endOffset": 1804
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1693,
-                        "endColumn": 115,
-                        "endOffset": 1804
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1809,
-                    "endColumn": 130,
-                    "endOffset": 1935
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1809,
-                        "endColumn": 130,
-                        "endOffset": 1935
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1940,
-                    "endColumn": 98,
-                    "endOffset": 2034
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1940,
-                        "endColumn": 98,
-                        "endOffset": 2034
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2039,
-                    "endColumn": 80,
-                    "endOffset": 2115
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2039,
-                        "endColumn": 80,
-                        "endOffset": 2115
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2120,
-                    "endColumn": 100,
-                    "endOffset": 2216
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2120,
-                        "endColumn": 100,
-                        "endOffset": 2216
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-sq.json b/android/.build/intermediates/blame/res/debug/multi/values-sq.json
deleted file mode 100644
index 24150daa59a40433e35fbfa5eb2b5ce0e53d496c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-sq.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-sq/values-sq.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 108,
-                    "endOffset": 209
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 104,
-                        "endOffset": 387
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 214,
-                    "endColumn": 204,
-                    "endOffset": 414
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 388,
-                        "endColumn": 204,
-                        "endOffset": 592
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 419,
-                    "endColumn": 138,
-                    "endOffset": 553
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 593,
-                        "endColumn": 134,
-                        "endOffset": 727
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 558,
-                    "endColumn": 108,
-                    "endOffset": 662
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 728,
-                        "endColumn": 104,
-                        "endOffset": 832
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 667,
-                    "endColumn": 219,
-                    "endOffset": 882
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 833,
-                        "endColumn": 219,
-                        "endOffset": 1052
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 887,
-                    "endColumn": 135,
-                    "endOffset": 1018
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1053,
-                        "endColumn": 131,
-                        "endOffset": 1184
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 1023,
-                    "endColumn": 144,
-                    "endOffset": 1163
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1185,
-                        "endColumn": 140,
-                        "endOffset": 1325
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1168,
-                    "endColumn": 187,
-                    "endOffset": 1351
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 187,
-                        "endOffset": 472
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1356,
-                    "endColumn": 228,
-                    "endOffset": 1580
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1326,
-                        "endColumn": 228,
-                        "endOffset": 1554
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1585,
-                    "endColumn": 109,
-                    "endOffset": 1690
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1555,
-                        "endColumn": 105,
-                        "endOffset": 1660
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1695,
-                    "endColumn": 205,
-                    "endOffset": 1896
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1661,
-                        "endColumn": 205,
-                        "endOffset": 1866
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1901,
-                    "endColumn": 139,
-                    "endOffset": 2036
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1867,
-                        "endColumn": 135,
-                        "endOffset": 2002
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 2041,
-                    "endColumn": 227,
-                    "endOffset": 2264
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 2003,
-                        "endColumn": 227,
-                        "endOffset": 2230
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2269,
-                    "endColumn": 213,
-                    "endOffset": 2478
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2231,
-                        "endColumn": 209,
-                        "endOffset": 2440
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2483,
-                    "endColumn": 94,
-                    "endOffset": 2573
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2441,
-                        "endColumn": 90,
-                        "endOffset": 2531
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2578,
-                    "endColumn": 96,
-                    "endOffset": 2670
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2532,
-                        "endColumn": 92,
-                        "endOffset": 2624
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2675,
-                    "endColumn": 110,
-                    "endOffset": 2781
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2625,
-                        "endColumn": 106,
-                        "endOffset": 2731
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-sr.json b/android/.build/intermediates/blame/res/debug/multi/values-sr.json
deleted file mode 100644
index 6f8c4152cee0845ab91ee011a79128b887b44425..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-sr.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-sr/values-sr.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 108,
-                    "endOffset": 209
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 108,
-                        "endOffset": 159
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 214,
-                    "endColumn": 107,
-                    "endOffset": 317
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 164,
-                        "endColumn": 107,
-                        "endOffset": 267
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 322,
-                    "endColumn": 122,
-                    "endOffset": 440
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 272,
-                        "endColumn": 122,
-                        "endOffset": 390
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 445,
-                    "endColumn": 102,
-                    "endOffset": 543
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 395,
-                        "endColumn": 102,
-                        "endOffset": 493
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 548,
-                    "endColumn": 105,
-                    "endOffset": 649
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 498,
-                        "endColumn": 105,
-                        "endOffset": 599
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 654,
-                    "endColumn": 85,
-                    "endOffset": 735
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 604,
-                        "endColumn": 85,
-                        "endOffset": 685
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 740,
-                    "endColumn": 103,
-                    "endOffset": 839
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 690,
-                        "endColumn": 103,
-                        "endOffset": 789
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 844,
-                    "endColumn": 117,
-                    "endOffset": 957
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 794,
-                        "endColumn": 117,
-                        "endOffset": 907
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 962,
-                    "endColumn": 80,
-                    "endOffset": 1038
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 912,
-                        "endColumn": 80,
-                        "endOffset": 988
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1043,
-                    "endColumn": 79,
-                    "endOffset": 1118
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 993,
-                        "endColumn": 79,
-                        "endOffset": 1068
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1123,
-                    "endColumn": 87,
-                    "endOffset": 1206
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1073,
-                        "endColumn": 87,
-                        "endOffset": 1156
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1211,
-                    "endColumn": 104,
-                    "endOffset": 1311
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1161,
-                        "endColumn": 104,
-                        "endOffset": 1261
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1316,
-                    "endColumn": 107,
-                    "endOffset": 1419
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1266,
-                        "endColumn": 107,
-                        "endOffset": 1369
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1424,
-                    "endColumn": 100,
-                    "endOffset": 1520
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1374,
-                        "endColumn": 100,
-                        "endOffset": 1470
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1525,
-                    "endColumn": 103,
-                    "endOffset": 1624
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1475,
-                        "endColumn": 103,
-                        "endOffset": 1574
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1629,
-                    "endColumn": 107,
-                    "endOffset": 1732
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1579,
-                        "endColumn": 107,
-                        "endOffset": 1682
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1737,
-                    "endColumn": 100,
-                    "endOffset": 1833
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1687,
-                        "endColumn": 100,
-                        "endOffset": 1783
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1838,
-                    "endColumn": 127,
-                    "endOffset": 1961
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1788,
-                        "endColumn": 127,
-                        "endOffset": 1911
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1966,
-                    "endColumn": 96,
-                    "endOffset": 2058
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1916,
-                        "endColumn": 96,
-                        "endOffset": 2008
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2063,
-                    "endColumn": 107,
-                    "endOffset": 2166
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 103,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2171,
-                    "endColumn": 187,
-                    "endOffset": 2354
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 387,
-                        "endColumn": 187,
-                        "endOffset": 574
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2359,
-                    "endColumn": 127,
-                    "endOffset": 2482
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 575,
-                        "endColumn": 123,
-                        "endOffset": 698
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2487,
-                    "endColumn": 111,
-                    "endOffset": 2594
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 699,
-                        "endColumn": 107,
-                        "endOffset": 806
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2599,
-                    "endColumn": 212,
-                    "endOffset": 2807
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 807,
-                        "endColumn": 212,
-                        "endOffset": 1019
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2812,
-                    "endColumn": 128,
-                    "endOffset": 2936
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1020,
-                        "endColumn": 124,
-                        "endOffset": 1144
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2941,
-                    "endColumn": 130,
-                    "endOffset": 3067
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1145,
-                        "endColumn": 126,
-                        "endOffset": 1271
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3072,
-                    "endColumn": 188,
-                    "endOffset": 3256
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 188,
-                        "endOffset": 473
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3261,
-                    "endColumn": 207,
-                    "endOffset": 3464
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1272,
-                        "endColumn": 207,
-                        "endOffset": 1479
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3469,
-                    "endColumn": 108,
-                    "endOffset": 3573
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1480,
-                        "endColumn": 104,
-                        "endOffset": 1584
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3578,
-                    "endColumn": 190,
-                    "endOffset": 3764
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1585,
-                        "endColumn": 190,
-                        "endOffset": 1775
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3769,
-                    "endColumn": 128,
-                    "endOffset": 3893
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1776,
-                        "endColumn": 124,
-                        "endOffset": 1900
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3898,
-                    "endColumn": 207,
-                    "endOffset": 4101
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1901,
-                        "endColumn": 207,
-                        "endOffset": 2108
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4106,
-                    "endColumn": 171,
-                    "endOffset": 4273
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2109,
-                        "endColumn": 167,
-                        "endOffset": 2276
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4278,
-                    "endColumn": 97,
-                    "endOffset": 4371
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2277,
-                        "endColumn": 93,
-                        "endOffset": 2370
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4376,
-                    "endColumn": 94,
-                    "endOffset": 4466
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2371,
-                        "endColumn": 90,
-                        "endOffset": 2461
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4471,
-                    "endColumn": 108,
-                    "endOffset": 4575
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2462,
-                        "endColumn": 104,
-                        "endOffset": 2566
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4580,
-                    "endColumn": 83,
-                    "endOffset": 4659
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2013,
-                        "endColumn": 83,
-                        "endOffset": 2092
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4664,
-                    "endColumn": 100,
-                    "endOffset": 4760
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2097,
-                        "endColumn": 100,
-                        "endOffset": 2193
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-sv.json b/android/.build/intermediates/blame/res/debug/multi/values-sv.json
deleted file mode 100644
index 567ffe0b5c615f905a605c2b78e6b5092c4dc738..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-sv.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-sv/values-sv.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 105,
-                    "endOffset": 206
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 105,
-                        "endOffset": 156
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 211,
-                    "endColumn": 107,
-                    "endOffset": 314
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 161,
-                        "endColumn": 107,
-                        "endOffset": 264
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 319,
-                    "endColumn": 122,
-                    "endOffset": 437
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 269,
-                        "endColumn": 122,
-                        "endOffset": 387
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 442,
-                    "endColumn": 102,
-                    "endOffset": 540
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 392,
-                        "endColumn": 102,
-                        "endOffset": 490
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 545,
-                    "endColumn": 110,
-                    "endOffset": 651
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 495,
-                        "endColumn": 110,
-                        "endOffset": 601
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 656,
-                    "endColumn": 84,
-                    "endOffset": 736
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 606,
-                        "endColumn": 84,
-                        "endOffset": 686
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 741,
-                    "endColumn": 101,
-                    "endOffset": 838
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 691,
-                        "endColumn": 101,
-                        "endOffset": 788
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 843,
-                    "endColumn": 112,
-                    "endOffset": 951
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 793,
-                        "endColumn": 112,
-                        "endOffset": 901
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 956,
-                    "endColumn": 75,
-                    "endOffset": 1027
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 906,
-                        "endColumn": 75,
-                        "endOffset": 977
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1032,
-                    "endColumn": 75,
-                    "endOffset": 1103
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 982,
-                        "endColumn": 75,
-                        "endOffset": 1053
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1108,
-                    "endColumn": 79,
-                    "endOffset": 1183
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1058,
-                        "endColumn": 79,
-                        "endOffset": 1133
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1188,
-                    "endColumn": 105,
-                    "endOffset": 1289
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1138,
-                        "endColumn": 105,
-                        "endOffset": 1239
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1294,
-                    "endColumn": 99,
-                    "endOffset": 1389
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1244,
-                        "endColumn": 99,
-                        "endOffset": 1339
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1394,
-                    "endColumn": 95,
-                    "endOffset": 1485
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1344,
-                        "endColumn": 95,
-                        "endOffset": 1435
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1490,
-                    "endColumn": 104,
-                    "endOffset": 1590
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1440,
-                        "endColumn": 104,
-                        "endOffset": 1540
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1595,
-                    "endColumn": 101,
-                    "endOffset": 1692
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1545,
-                        "endColumn": 101,
-                        "endOffset": 1642
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1697,
-                    "endColumn": 101,
-                    "endOffset": 1794
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1647,
-                        "endColumn": 101,
-                        "endOffset": 1744
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1799,
-                    "endColumn": 116,
-                    "endOffset": 1911
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1749,
-                        "endColumn": 116,
-                        "endOffset": 1861
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1916,
-                    "endColumn": 101,
-                    "endOffset": 2013
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1866,
-                        "endColumn": 101,
-                        "endOffset": 1963
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2018,
-                    "endColumn": 108,
-                    "endOffset": 2122
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 104,
-                        "endOffset": 387
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2127,
-                    "endColumn": 188,
-                    "endOffset": 2311
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 388,
-                        "endColumn": 188,
-                        "endOffset": 576
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2316,
-                    "endColumn": 128,
-                    "endOffset": 2440
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 577,
-                        "endColumn": 124,
-                        "endOffset": 701
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2445,
-                    "endColumn": 111,
-                    "endOffset": 2552
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 702,
-                        "endColumn": 107,
-                        "endOffset": 809
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2557,
-                    "endColumn": 199,
-                    "endOffset": 2752
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 810,
-                        "endColumn": 199,
-                        "endOffset": 1009
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2757,
-                    "endColumn": 126,
-                    "endOffset": 2879
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1010,
-                        "endColumn": 122,
-                        "endOffset": 1132
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2884,
-                    "endColumn": 132,
-                    "endOffset": 3012
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1133,
-                        "endColumn": 128,
-                        "endOffset": 1261
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3017,
-                    "endColumn": 206,
-                    "endOffset": 3219
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 206,
-                        "endOffset": 491
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3224,
-                    "endColumn": 206,
-                    "endOffset": 3426
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1262,
-                        "endColumn": 206,
-                        "endOffset": 1468
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3431,
-                    "endColumn": 109,
-                    "endOffset": 3536
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1469,
-                        "endColumn": 105,
-                        "endOffset": 1574
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3541,
-                    "endColumn": 192,
-                    "endOffset": 3729
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1575,
-                        "endColumn": 192,
-                        "endOffset": 1767
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3734,
-                    "endColumn": 129,
-                    "endOffset": 3859
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1768,
-                        "endColumn": 125,
-                        "endOffset": 1893
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3864,
-                    "endColumn": 212,
-                    "endOffset": 4072
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1894,
-                        "endColumn": 212,
-                        "endOffset": 2106
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4077,
-                    "endColumn": 185,
-                    "endOffset": 4258
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2107,
-                        "endColumn": 181,
-                        "endOffset": 2288
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4263,
-                    "endColumn": 95,
-                    "endOffset": 4354
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2289,
-                        "endColumn": 91,
-                        "endOffset": 2380
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4359,
-                    "endColumn": 92,
-                    "endOffset": 4447
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2381,
-                        "endColumn": 88,
-                        "endOffset": 2469
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4452,
-                    "endColumn": 107,
-                    "endOffset": 4555
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2470,
-                        "endColumn": 103,
-                        "endOffset": 2573
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4560,
-                    "endColumn": 78,
-                    "endOffset": 4634
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1968,
-                        "endColumn": 78,
-                        "endOffset": 2042
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4639,
-                    "endColumn": 100,
-                    "endOffset": 4735
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2047,
-                        "endColumn": 100,
-                        "endOffset": 2143
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-sw.json b/android/.build/intermediates/blame/res/debug/multi/values-sw.json
deleted file mode 100644
index e66a02e0ac9e003b490a82afa6c18c95723b5ba5..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-sw.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw/values-sw.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 102,
-                    "endOffset": 203
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 102,
-                        "endOffset": 153
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 208,
-                    "endColumn": 107,
-                    "endOffset": 311
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 158,
-                        "endColumn": 107,
-                        "endOffset": 261
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 316,
-                    "endColumn": 122,
-                    "endOffset": 434
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 266,
-                        "endColumn": 122,
-                        "endOffset": 384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 439,
-                    "endColumn": 97,
-                    "endOffset": 532
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 389,
-                        "endColumn": 97,
-                        "endOffset": 482
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 537,
-                    "endColumn": 107,
-                    "endOffset": 640
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 487,
-                        "endColumn": 107,
-                        "endOffset": 590
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 645,
-                    "endColumn": 89,
-                    "endOffset": 730
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 595,
-                        "endColumn": 89,
-                        "endOffset": 680
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 735,
-                    "endColumn": 104,
-                    "endOffset": 835
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 685,
-                        "endColumn": 104,
-                        "endOffset": 785
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 840,
-                    "endColumn": 116,
-                    "endOffset": 952
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 790,
-                        "endColumn": 116,
-                        "endOffset": 902
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 957,
-                    "endColumn": 81,
-                    "endOffset": 1034
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 907,
-                        "endColumn": 81,
-                        "endOffset": 984
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1039,
-                    "endColumn": 82,
-                    "endOffset": 1117
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 989,
-                        "endColumn": 82,
-                        "endOffset": 1067
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1122,
-                    "endColumn": 81,
-                    "endOffset": 1199
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1072,
-                        "endColumn": 81,
-                        "endOffset": 1149
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1204,
-                    "endColumn": 100,
-                    "endOffset": 1300
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1154,
-                        "endColumn": 100,
-                        "endOffset": 1250
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1305,
-                    "endColumn": 108,
-                    "endOffset": 1409
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1255,
-                        "endColumn": 108,
-                        "endOffset": 1359
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1414,
-                    "endColumn": 98,
-                    "endOffset": 1508
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1364,
-                        "endColumn": 98,
-                        "endOffset": 1458
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1513,
-                    "endColumn": 106,
-                    "endOffset": 1615
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1463,
-                        "endColumn": 106,
-                        "endOffset": 1565
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1620,
-                    "endColumn": 108,
-                    "endOffset": 1724
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1570,
-                        "endColumn": 108,
-                        "endOffset": 1674
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1729,
-                    "endColumn": 104,
-                    "endOffset": 1829
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1679,
-                        "endColumn": 104,
-                        "endOffset": 1779
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1834,
-                    "endColumn": 118,
-                    "endOffset": 1948
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1784,
-                        "endColumn": 118,
-                        "endOffset": 1898
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1953,
-                    "endColumn": 96,
-                    "endOffset": 2045
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1903,
-                        "endColumn": 96,
-                        "endOffset": 1995
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2050,
-                    "endColumn": 105,
-                    "endOffset": 2151
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 101,
-                        "endOffset": 384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2156,
-                    "endColumn": 187,
-                    "endOffset": 2339
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 385,
-                        "endColumn": 187,
-                        "endOffset": 572
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2344,
-                    "endColumn": 126,
-                    "endOffset": 2466
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 573,
-                        "endColumn": 122,
-                        "endOffset": 695
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2471,
-                    "endColumn": 110,
-                    "endOffset": 2577
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 696,
-                        "endColumn": 106,
-                        "endOffset": 802
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2582,
-                    "endColumn": 221,
-                    "endOffset": 2799
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 803,
-                        "endColumn": 221,
-                        "endOffset": 1024
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2804,
-                    "endColumn": 126,
-                    "endOffset": 2926
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1025,
-                        "endColumn": 122,
-                        "endOffset": 1147
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2931,
-                    "endColumn": 142,
-                    "endOffset": 3069
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1148,
-                        "endColumn": 138,
-                        "endOffset": 1286
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3074,
-                    "endColumn": 204,
-                    "endOffset": 3274
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 204,
-                        "endOffset": 489
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3279,
-                    "endColumn": 223,
-                    "endOffset": 3498
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1287,
-                        "endColumn": 223,
-                        "endOffset": 1510
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3503,
-                    "endColumn": 107,
-                    "endOffset": 3606
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1511,
-                        "endColumn": 103,
-                        "endOffset": 1614
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3611,
-                    "endColumn": 184,
-                    "endOffset": 3791
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1615,
-                        "endColumn": 184,
-                        "endOffset": 1799
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3796,
-                    "endColumn": 128,
-                    "endOffset": 3920
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1800,
-                        "endColumn": 124,
-                        "endOffset": 1924
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3925,
-                    "endColumn": 208,
-                    "endOffset": 4129
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1925,
-                        "endColumn": 208,
-                        "endOffset": 2133
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4134,
-                    "endColumn": 188,
-                    "endOffset": 4318
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2134,
-                        "endColumn": 184,
-                        "endOffset": 2318
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4323,
-                    "endColumn": 97,
-                    "endOffset": 4416
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2319,
-                        "endColumn": 93,
-                        "endOffset": 2412
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4421,
-                    "endColumn": 104,
-                    "endOffset": 4521
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2413,
-                        "endColumn": 100,
-                        "endOffset": 2513
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4526,
-                    "endColumn": 124,
-                    "endOffset": 4646
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2514,
-                        "endColumn": 120,
-                        "endOffset": 2634
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4651,
-                    "endColumn": 81,
-                    "endOffset": 4728
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2000,
-                        "endColumn": 81,
-                        "endOffset": 2077
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4733,
-                    "endColumn": 100,
-                    "endOffset": 4829
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2082,
-                        "endColumn": 100,
-                        "endOffset": 2178
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json b/android/.build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json
deleted file mode 100644
index 247bc26e2c6cff4b63d444a68f971ae46f0bd892..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json
+++ /dev/null
@@ -1,159 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 68,
-                    "endOffset": 119
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw600dp-v13/values-sw600dp-v13.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 68,
-                        "endOffset": 119
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 124,
-                    "endColumn": 68,
-                    "endOffset": 188
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw600dp-v13/values-sw600dp-v13.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 124,
-                        "endColumn": 68,
-                        "endOffset": 188
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 193,
-                    "endColumn": 69,
-                    "endOffset": 258
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw600dp-v13/values-sw600dp-v13.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 193,
-                        "endColumn": 69,
-                        "endOffset": 258
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 263,
-                    "endColumn": 73,
-                    "endOffset": 332
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw600dp-v13/values-sw600dp-v13.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 263,
-                        "endColumn": 73,
-                        "endOffset": 332
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 337,
-                    "endColumn": 75,
-                    "endOffset": 408
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw600dp-v13/values-sw600dp-v13.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 337,
-                        "endColumn": 75,
-                        "endOffset": 408
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 413,
-                    "endColumn": 58,
-                    "endOffset": 467
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw600dp-v13/values-sw600dp-v13.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 413,
-                        "endColumn": 58,
-                        "endOffset": 467
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 472,
-                    "endColumn": 70,
-                    "endOffset": 538
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw600dp-v13/values-sw600dp-v13.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 472,
-                        "endColumn": 70,
-                        "endOffset": 538
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 543,
-                    "endColumn": 67,
-                    "endOffset": 606
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw600dp-v13/values-sw600dp-v13.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 543,
-                        "endColumn": 67,
-                        "endOffset": 606
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ta-rIN.json b/android/.build/intermediates/blame/res/debug/multi/values-ta-rIN.json
deleted file mode 100644
index 748f58156fbaa5ad20a843da1f8b28cea1525eb0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ta-rIN.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 113,
-                    "endOffset": 164
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 113,
-                        "endOffset": 164
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 169,
-                    "endColumn": 107,
-                    "endOffset": 272
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 169,
-                        "endColumn": 107,
-                        "endOffset": 272
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 277,
-                    "endColumn": 122,
-                    "endOffset": 395
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 277,
-                        "endColumn": 122,
-                        "endOffset": 395
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 400,
-                    "endColumn": 104,
-                    "endOffset": 500
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 400,
-                        "endColumn": 104,
-                        "endOffset": 500
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 505,
-                    "endColumn": 114,
-                    "endOffset": 615
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 505,
-                        "endColumn": 114,
-                        "endOffset": 615
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 620,
-                    "endColumn": 88,
-                    "endOffset": 704
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 620,
-                        "endColumn": 88,
-                        "endOffset": 704
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 709,
-                    "endColumn": 106,
-                    "endOffset": 811
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 709,
-                        "endColumn": 106,
-                        "endOffset": 811
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 816,
-                    "endColumn": 125,
-                    "endOffset": 937
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 816,
-                        "endColumn": 125,
-                        "endOffset": 937
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 942,
-                    "endColumn": 80,
-                    "endOffset": 1018
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 942,
-                        "endColumn": 80,
-                        "endOffset": 1018
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1023,
-                    "endColumn": 79,
-                    "endOffset": 1098
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1023,
-                        "endColumn": 79,
-                        "endOffset": 1098
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1103,
-                    "endColumn": 81,
-                    "endOffset": 1180
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1103,
-                        "endColumn": 81,
-                        "endOffset": 1180
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1185,
-                    "endColumn": 101,
-                    "endOffset": 1282
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1185,
-                        "endColumn": 101,
-                        "endOffset": 1282
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1287,
-                    "endColumn": 103,
-                    "endOffset": 1386
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1287,
-                        "endColumn": 103,
-                        "endOffset": 1386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1391,
-                    "endColumn": 96,
-                    "endOffset": 1483
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1391,
-                        "endColumn": 96,
-                        "endOffset": 1483
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1488,
-                    "endColumn": 109,
-                    "endOffset": 1593
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1488,
-                        "endColumn": 109,
-                        "endOffset": 1593
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1598,
-                    "endColumn": 101,
-                    "endOffset": 1695
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1598,
-                        "endColumn": 101,
-                        "endOffset": 1695
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1700,
-                    "endColumn": 106,
-                    "endOffset": 1802
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1700,
-                        "endColumn": 106,
-                        "endOffset": 1802
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1807,
-                    "endColumn": 118,
-                    "endOffset": 1921
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1807,
-                        "endColumn": 118,
-                        "endOffset": 1921
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1926,
-                    "endColumn": 99,
-                    "endOffset": 2021
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1926,
-                        "endColumn": 99,
-                        "endOffset": 2021
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2026,
-                    "endColumn": 79,
-                    "endOffset": 2101
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2026,
-                        "endColumn": 79,
-                        "endOffset": 2101
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2106,
-                    "endColumn": 100,
-                    "endOffset": 2202
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2106,
-                        "endColumn": 100,
-                        "endOffset": 2202
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ta.json b/android/.build/intermediates/blame/res/debug/multi/values-ta.json
deleted file mode 100644
index 97cf94249c36a2ec8dbb51800b400f7cdf50ff46..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ta.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta/values-ta.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 106,
-                    "endOffset": 207
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 102,
-                        "endOffset": 385
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 212,
-                    "endColumn": 183,
-                    "endOffset": 391
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 386,
-                        "endColumn": 183,
-                        "endOffset": 569
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 396,
-                    "endColumn": 128,
-                    "endOffset": 520
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 570,
-                        "endColumn": 124,
-                        "endOffset": 694
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 525,
-                    "endColumn": 107,
-                    "endOffset": 628
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 695,
-                        "endColumn": 103,
-                        "endOffset": 798
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 633,
-                    "endColumn": 210,
-                    "endOffset": 839
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 799,
-                        "endColumn": 210,
-                        "endOffset": 1009
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 844,
-                    "endColumn": 129,
-                    "endOffset": 969
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1010,
-                        "endColumn": 125,
-                        "endOffset": 1135
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 974,
-                    "endColumn": 129,
-                    "endOffset": 1099
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1136,
-                        "endColumn": 125,
-                        "endOffset": 1261
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1104,
-                    "endColumn": 224,
-                    "endOffset": 1324
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 224,
-                        "endOffset": 509
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1329,
-                    "endColumn": 241,
-                    "endOffset": 1566
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1262,
-                        "endColumn": 241,
-                        "endOffset": 1503
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1571,
-                    "endColumn": 108,
-                    "endOffset": 1675
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1504,
-                        "endColumn": 104,
-                        "endOffset": 1608
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1680,
-                    "endColumn": 183,
-                    "endOffset": 1859
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1609,
-                        "endColumn": 183,
-                        "endOffset": 1792
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1864,
-                    "endColumn": 136,
-                    "endOffset": 1996
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1793,
-                        "endColumn": 132,
-                        "endOffset": 1925
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 2001,
-                    "endColumn": 212,
-                    "endOffset": 2209
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1926,
-                        "endColumn": 212,
-                        "endOffset": 2138
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2214,
-                    "endColumn": 185,
-                    "endOffset": 2395
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2139,
-                        "endColumn": 181,
-                        "endOffset": 2320
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2400,
-                    "endColumn": 91,
-                    "endOffset": 2487
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2321,
-                        "endColumn": 87,
-                        "endOffset": 2408
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2492,
-                    "endColumn": 92,
-                    "endOffset": 2580
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2409,
-                        "endColumn": 88,
-                        "endOffset": 2497
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2585,
-                    "endColumn": 109,
-                    "endOffset": 2690
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2498,
-                        "endColumn": 105,
-                        "endOffset": 2603
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-te-rIN.json b/android/.build/intermediates/blame/res/debug/multi/values-te-rIN.json
deleted file mode 100644
index 68a012d5179b38163c0469d0f7e28ddcbfd1e8ae..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-te-rIN.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 113,
-                    "endOffset": 164
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 113,
-                        "endOffset": 164
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 169,
-                    "endColumn": 107,
-                    "endOffset": 272
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 169,
-                        "endColumn": 107,
-                        "endOffset": 272
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 277,
-                    "endColumn": 122,
-                    "endOffset": 395
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 277,
-                        "endColumn": 122,
-                        "endOffset": 395
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 400,
-                    "endColumn": 108,
-                    "endOffset": 504
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 400,
-                        "endColumn": 108,
-                        "endOffset": 504
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 509,
-                    "endColumn": 110,
-                    "endOffset": 615
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 509,
-                        "endColumn": 110,
-                        "endOffset": 615
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 620,
-                    "endColumn": 89,
-                    "endOffset": 705
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 620,
-                        "endColumn": 89,
-                        "endOffset": 705
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 710,
-                    "endColumn": 104,
-                    "endOffset": 810
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 710,
-                        "endColumn": 104,
-                        "endOffset": 810
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 815,
-                    "endColumn": 124,
-                    "endOffset": 935
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 815,
-                        "endColumn": 124,
-                        "endOffset": 935
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 940,
-                    "endColumn": 81,
-                    "endOffset": 1017
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 940,
-                        "endColumn": 81,
-                        "endOffset": 1017
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1022,
-                    "endColumn": 81,
-                    "endOffset": 1099
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1022,
-                        "endColumn": 81,
-                        "endOffset": 1099
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1104,
-                    "endColumn": 84,
-                    "endOffset": 1184
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1104,
-                        "endColumn": 84,
-                        "endOffset": 1184
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1189,
-                    "endColumn": 112,
-                    "endOffset": 1297
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1189,
-                        "endColumn": 112,
-                        "endOffset": 1297
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1302,
-                    "endColumn": 107,
-                    "endOffset": 1405
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1302,
-                        "endColumn": 107,
-                        "endOffset": 1405
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1410,
-                    "endColumn": 99,
-                    "endOffset": 1505
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1410,
-                        "endColumn": 99,
-                        "endOffset": 1505
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1510,
-                    "endColumn": 110,
-                    "endOffset": 1616
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1510,
-                        "endColumn": 110,
-                        "endOffset": 1616
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1621,
-                    "endColumn": 101,
-                    "endOffset": 1718
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1621,
-                        "endColumn": 101,
-                        "endOffset": 1718
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1723,
-                    "endColumn": 116,
-                    "endOffset": 1835
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1723,
-                        "endColumn": 116,
-                        "endOffset": 1835
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1840,
-                    "endColumn": 126,
-                    "endOffset": 1962
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1840,
-                        "endColumn": 126,
-                        "endOffset": 1962
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1967,
-                    "endColumn": 100,
-                    "endOffset": 2063
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1967,
-                        "endColumn": 100,
-                        "endOffset": 2063
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2068,
-                    "endColumn": 82,
-                    "endOffset": 2146
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2068,
-                        "endColumn": 82,
-                        "endOffset": 2146
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2151,
-                    "endColumn": 100,
-                    "endOffset": 2247
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2151,
-                        "endColumn": 100,
-                        "endOffset": 2247
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-te.json b/android/.build/intermediates/blame/res/debug/multi/values-te.json
deleted file mode 100644
index 36d0f59d05c2434434c29188b86c51767d6e6025..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-te.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-te/values-te.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 111,
-                    "endOffset": 212
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 107,
-                        "endOffset": 390
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 217,
-                    "endColumn": 185,
-                    "endOffset": 398
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 391,
-                        "endColumn": 185,
-                        "endOffset": 576
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 403,
-                    "endColumn": 131,
-                    "endOffset": 530
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 577,
-                        "endColumn": 127,
-                        "endOffset": 704
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 535,
-                    "endColumn": 116,
-                    "endOffset": 647
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 705,
-                        "endColumn": 112,
-                        "endOffset": 817
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 652,
-                    "endColumn": 195,
-                    "endOffset": 843
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 818,
-                        "endColumn": 195,
-                        "endOffset": 1013
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 848,
-                    "endColumn": 126,
-                    "endOffset": 970
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1014,
-                        "endColumn": 122,
-                        "endOffset": 1136
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 975,
-                    "endColumn": 126,
-                    "endOffset": 1097
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1137,
-                        "endColumn": 122,
-                        "endOffset": 1259
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1102,
-                    "endColumn": 198,
-                    "endOffset": 1296
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 198,
-                        "endOffset": 483
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1301,
-                    "endColumn": 207,
-                    "endOffset": 1504
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1260,
-                        "endColumn": 207,
-                        "endOffset": 1467
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1509,
-                    "endColumn": 109,
-                    "endOffset": 1614
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1468,
-                        "endColumn": 105,
-                        "endOffset": 1573
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1619,
-                    "endColumn": 183,
-                    "endOffset": 1798
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1574,
-                        "endColumn": 183,
-                        "endOffset": 1757
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1803,
-                    "endColumn": 129,
-                    "endOffset": 1928
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1758,
-                        "endColumn": 125,
-                        "endOffset": 1883
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1933,
-                    "endColumn": 209,
-                    "endOffset": 2138
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1884,
-                        "endColumn": 209,
-                        "endOffset": 2093
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2143,
-                    "endColumn": 188,
-                    "endOffset": 2327
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2094,
-                        "endColumn": 184,
-                        "endOffset": 2278
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2332,
-                    "endColumn": 93,
-                    "endOffset": 2421
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2279,
-                        "endColumn": 89,
-                        "endOffset": 2368
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2426,
-                    "endColumn": 97,
-                    "endOffset": 2519
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2369,
-                        "endColumn": 93,
-                        "endOffset": 2462
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2524,
-                    "endColumn": 110,
-                    "endOffset": 2630
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2463,
-                        "endColumn": 106,
-                        "endOffset": 2569
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-th.json b/android/.build/intermediates/blame/res/debug/multi/values-th.json
deleted file mode 100644
index ed14e529dbe6b0a87d061c40ef9dd77ae8d8af92..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-th.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 104,
-                    "endOffset": 205
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 104,
-                        "endOffset": 155
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 210,
-                    "endColumn": 107,
-                    "endOffset": 313
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 160,
-                        "endColumn": 107,
-                        "endOffset": 263
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 318,
-                    "endColumn": 122,
-                    "endOffset": 436
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 268,
-                        "endColumn": 122,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 441,
-                    "endColumn": 97,
-                    "endOffset": 534
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 391,
-                        "endColumn": 97,
-                        "endOffset": 484
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 539,
-                    "endColumn": 107,
-                    "endOffset": 642
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 489,
-                        "endColumn": 107,
-                        "endOffset": 592
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 647,
-                    "endColumn": 88,
-                    "endOffset": 731
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 597,
-                        "endColumn": 88,
-                        "endOffset": 681
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 736,
-                    "endColumn": 101,
-                    "endOffset": 833
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 686,
-                        "endColumn": 101,
-                        "endOffset": 783
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 838,
-                    "endColumn": 109,
-                    "endOffset": 943
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 788,
-                        "endColumn": 109,
-                        "endOffset": 893
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 948,
-                    "endColumn": 76,
-                    "endOffset": 1020
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 898,
-                        "endColumn": 76,
-                        "endOffset": 970
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1025,
-                    "endColumn": 77,
-                    "endOffset": 1098
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 975,
-                        "endColumn": 77,
-                        "endOffset": 1048
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1103,
-                    "endColumn": 80,
-                    "endOffset": 1179
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1053,
-                        "endColumn": 80,
-                        "endOffset": 1129
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1184,
-                    "endColumn": 107,
-                    "endOffset": 1287
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1134,
-                        "endColumn": 107,
-                        "endOffset": 1237
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1292,
-                    "endColumn": 103,
-                    "endOffset": 1391
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1242,
-                        "endColumn": 103,
-                        "endOffset": 1341
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1396,
-                    "endColumn": 97,
-                    "endOffset": 1489
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1346,
-                        "endColumn": 97,
-                        "endOffset": 1439
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1494,
-                    "endColumn": 107,
-                    "endOffset": 1597
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1444,
-                        "endColumn": 107,
-                        "endOffset": 1547
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1602,
-                    "endColumn": 104,
-                    "endOffset": 1702
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1552,
-                        "endColumn": 104,
-                        "endOffset": 1652
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1707,
-                    "endColumn": 100,
-                    "endOffset": 1803
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1657,
-                        "endColumn": 100,
-                        "endOffset": 1753
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1808,
-                    "endColumn": 115,
-                    "endOffset": 1919
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1758,
-                        "endColumn": 115,
-                        "endOffset": 1869
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1924,
-                    "endColumn": 94,
-                    "endOffset": 2014
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1874,
-                        "endColumn": 94,
-                        "endOffset": 1964
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2019,
-                    "endColumn": 107,
-                    "endOffset": 2122
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 103,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2127,
-                    "endColumn": 178,
-                    "endOffset": 2301
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 387,
-                        "endColumn": 178,
-                        "endOffset": 565
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2306,
-                    "endColumn": 124,
-                    "endOffset": 2426
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 566,
-                        "endColumn": 120,
-                        "endOffset": 686
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2431,
-                    "endColumn": 108,
-                    "endOffset": 2535
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 687,
-                        "endColumn": 104,
-                        "endOffset": 791
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2540,
-                    "endColumn": 194,
-                    "endOffset": 2730
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 792,
-                        "endColumn": 194,
-                        "endOffset": 986
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2735,
-                    "endColumn": 125,
-                    "endOffset": 2856
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 987,
-                        "endColumn": 121,
-                        "endOffset": 1108
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2861,
-                    "endColumn": 136,
-                    "endOffset": 2993
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1109,
-                        "endColumn": 132,
-                        "endOffset": 1241
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 2998,
-                    "endColumn": 187,
-                    "endOffset": 3181
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 187,
-                        "endOffset": 472
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3186,
-                    "endColumn": 202,
-                    "endOffset": 3384
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1242,
-                        "endColumn": 202,
-                        "endOffset": 1444
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3389,
-                    "endColumn": 106,
-                    "endOffset": 3491
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1445,
-                        "endColumn": 102,
-                        "endOffset": 1547
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3496,
-                    "endColumn": 177,
-                    "endOffset": 3669
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1548,
-                        "endColumn": 177,
-                        "endOffset": 1725
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3674,
-                    "endColumn": 123,
-                    "endOffset": 3793
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1726,
-                        "endColumn": 119,
-                        "endOffset": 1845
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3798,
-                    "endColumn": 198,
-                    "endOffset": 3992
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1846,
-                        "endColumn": 198,
-                        "endOffset": 2044
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 3997,
-                    "endColumn": 180,
-                    "endOffset": 4173
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2045,
-                        "endColumn": 176,
-                        "endOffset": 2221
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4178,
-                    "endColumn": 93,
-                    "endOffset": 4267
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2222,
-                        "endColumn": 89,
-                        "endOffset": 2311
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4272,
-                    "endColumn": 97,
-                    "endOffset": 4365
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2312,
-                        "endColumn": 93,
-                        "endOffset": 2405
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4370,
-                    "endColumn": 112,
-                    "endOffset": 4478
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2406,
-                        "endColumn": 108,
-                        "endOffset": 2514
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4483,
-                    "endColumn": 80,
-                    "endOffset": 4559
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1969,
-                        "endColumn": 80,
-                        "endOffset": 2045
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4564,
-                    "endColumn": 100,
-                    "endOffset": 4660
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2050,
-                        "endColumn": 100,
-                        "endOffset": 2146
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-tl.json b/android/.build/intermediates/blame/res/debug/multi/values-tl.json
deleted file mode 100644
index 7d0e7dcd0f6c22d72a377966e5d4e6683fc5bc54..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-tl.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 118,
-                    "endOffset": 219
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 118,
-                        "endOffset": 169
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 224,
-                    "endColumn": 107,
-                    "endOffset": 327
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 174,
-                        "endColumn": 107,
-                        "endOffset": 277
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 332,
-                    "endColumn": 122,
-                    "endOffset": 450
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 282,
-                        "endColumn": 122,
-                        "endOffset": 400
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 455,
-                    "endColumn": 107,
-                    "endOffset": 558
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 405,
-                        "endColumn": 107,
-                        "endOffset": 508
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 563,
-                    "endColumn": 116,
-                    "endOffset": 675
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 513,
-                        "endColumn": 116,
-                        "endOffset": 625
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 680,
-                    "endColumn": 87,
-                    "endOffset": 763
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 630,
-                        "endColumn": 87,
-                        "endOffset": 713
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 768,
-                    "endColumn": 105,
-                    "endOffset": 869
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 718,
-                        "endColumn": 105,
-                        "endOffset": 819
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 874,
-                    "endColumn": 120,
-                    "endOffset": 990
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 824,
-                        "endColumn": 120,
-                        "endOffset": 940
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 995,
-                    "endColumn": 78,
-                    "endOffset": 1069
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 945,
-                        "endColumn": 78,
-                        "endOffset": 1019
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1074,
-                    "endColumn": 77,
-                    "endOffset": 1147
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1024,
-                        "endColumn": 77,
-                        "endOffset": 1097
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1152,
-                    "endColumn": 83,
-                    "endOffset": 1231
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1102,
-                        "endColumn": 83,
-                        "endOffset": 1181
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1236,
-                    "endColumn": 108,
-                    "endOffset": 1340
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1186,
-                        "endColumn": 108,
-                        "endOffset": 1290
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1345,
-                    "endColumn": 110,
-                    "endOffset": 1451
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1295,
-                        "endColumn": 110,
-                        "endOffset": 1401
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1456,
-                    "endColumn": 100,
-                    "endOffset": 1552
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1406,
-                        "endColumn": 100,
-                        "endOffset": 1502
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1557,
-                    "endColumn": 109,
-                    "endOffset": 1662
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1507,
-                        "endColumn": 109,
-                        "endOffset": 1612
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1667,
-                    "endColumn": 116,
-                    "endOffset": 1779
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1617,
-                        "endColumn": 116,
-                        "endOffset": 1729
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1784,
-                    "endColumn": 107,
-                    "endOffset": 1887
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1734,
-                        "endColumn": 107,
-                        "endOffset": 1837
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1892,
-                    "endColumn": 122,
-                    "endOffset": 2010
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1842,
-                        "endColumn": 122,
-                        "endOffset": 1960
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 2015,
-                    "endColumn": 101,
-                    "endOffset": 2112
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1965,
-                        "endColumn": 101,
-                        "endOffset": 2062
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2117,
-                    "endColumn": 108,
-                    "endOffset": 2221
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 104,
-                        "endOffset": 387
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2226,
-                    "endColumn": 207,
-                    "endOffset": 2429
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 388,
-                        "endColumn": 207,
-                        "endOffset": 595
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2434,
-                    "endColumn": 139,
-                    "endOffset": 2569
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 596,
-                        "endColumn": 135,
-                        "endOffset": 731
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2574,
-                    "endColumn": 110,
-                    "endOffset": 2680
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 732,
-                        "endColumn": 106,
-                        "endOffset": 838
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2685,
-                    "endColumn": 216,
-                    "endOffset": 2897
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 839,
-                        "endColumn": 216,
-                        "endOffset": 1055
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2902,
-                    "endColumn": 137,
-                    "endOffset": 3035
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1056,
-                        "endColumn": 133,
-                        "endOffset": 1189
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 3040,
-                    "endColumn": 141,
-                    "endOffset": 3177
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1190,
-                        "endColumn": 137,
-                        "endOffset": 1327
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3182,
-                    "endColumn": 204,
-                    "endOffset": 3382
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 204,
-                        "endOffset": 489
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3387,
-                    "endColumn": 237,
-                    "endOffset": 3620
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1328,
-                        "endColumn": 237,
-                        "endOffset": 1565
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3625,
-                    "endColumn": 108,
-                    "endOffset": 3729
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1566,
-                        "endColumn": 104,
-                        "endOffset": 1670
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3734,
-                    "endColumn": 208,
-                    "endOffset": 3938
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1671,
-                        "endColumn": 208,
-                        "endOffset": 1879
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3943,
-                    "endColumn": 139,
-                    "endOffset": 4078
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1880,
-                        "endColumn": 135,
-                        "endOffset": 2015
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 4083,
-                    "endColumn": 220,
-                    "endOffset": 4299
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 2016,
-                        "endColumn": 220,
-                        "endOffset": 2236
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4304,
-                    "endColumn": 208,
-                    "endOffset": 4508
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2237,
-                        "endColumn": 204,
-                        "endOffset": 2441
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4513,
-                    "endColumn": 97,
-                    "endOffset": 4606
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2442,
-                        "endColumn": 93,
-                        "endOffset": 2535
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4611,
-                    "endColumn": 95,
-                    "endOffset": 4702
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2536,
-                        "endColumn": 91,
-                        "endOffset": 2627
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4707,
-                    "endColumn": 109,
-                    "endOffset": 4812
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2628,
-                        "endColumn": 105,
-                        "endOffset": 2733
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4817,
-                    "endColumn": 83,
-                    "endOffset": 4896
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2067,
-                        "endColumn": 83,
-                        "endOffset": 2146
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4901,
-                    "endColumn": 100,
-                    "endOffset": 4997
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2151,
-                        "endColumn": 100,
-                        "endOffset": 2247
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-tr.json b/android/.build/intermediates/blame/res/debug/multi/values-tr.json
deleted file mode 100644
index 7e7aa34b24aaff3b086c4526c62b5cc4e83dde1b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-tr.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 104,
-                    "endOffset": 205
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 104,
-                        "endOffset": 155
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 210,
-                    "endColumn": 107,
-                    "endOffset": 313
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 160,
-                        "endColumn": 107,
-                        "endOffset": 263
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 318,
-                    "endColumn": 122,
-                    "endOffset": 436
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 268,
-                        "endColumn": 122,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 441,
-                    "endColumn": 98,
-                    "endOffset": 535
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 391,
-                        "endColumn": 98,
-                        "endOffset": 485
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 540,
-                    "endColumn": 111,
-                    "endOffset": 647
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 490,
-                        "endColumn": 111,
-                        "endOffset": 597
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 652,
-                    "endColumn": 84,
-                    "endOffset": 732
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 602,
-                        "endColumn": 84,
-                        "endOffset": 682
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 737,
-                    "endColumn": 105,
-                    "endOffset": 838
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 687,
-                        "endColumn": 105,
-                        "endOffset": 788
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 843,
-                    "endColumn": 119,
-                    "endOffset": 958
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 793,
-                        "endColumn": 119,
-                        "endOffset": 908
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 963,
-                    "endColumn": 78,
-                    "endOffset": 1037
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 913,
-                        "endColumn": 78,
-                        "endOffset": 987
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1042,
-                    "endColumn": 75,
-                    "endOffset": 1113
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 992,
-                        "endColumn": 75,
-                        "endOffset": 1063
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1118,
-                    "endColumn": 78,
-                    "endOffset": 1192
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1068,
-                        "endColumn": 78,
-                        "endOffset": 1142
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1197,
-                    "endColumn": 106,
-                    "endOffset": 1299
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1147,
-                        "endColumn": 106,
-                        "endOffset": 1249
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1304,
-                    "endColumn": 104,
-                    "endOffset": 1404
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1254,
-                        "endColumn": 104,
-                        "endOffset": 1354
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1409,
-                    "endColumn": 95,
-                    "endOffset": 1500
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1359,
-                        "endColumn": 95,
-                        "endOffset": 1450
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1505,
-                    "endColumn": 106,
-                    "endOffset": 1607
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1455,
-                        "endColumn": 106,
-                        "endOffset": 1557
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1612,
-                    "endColumn": 101,
-                    "endOffset": 1709
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1562,
-                        "endColumn": 101,
-                        "endOffset": 1659
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1714,
-                    "endColumn": 107,
-                    "endOffset": 1817
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1664,
-                        "endColumn": 107,
-                        "endOffset": 1767
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1822,
-                    "endColumn": 118,
-                    "endOffset": 1936
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1772,
-                        "endColumn": 118,
-                        "endOffset": 1886
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1941,
-                    "endColumn": 97,
-                    "endOffset": 2034
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1891,
-                        "endColumn": 97,
-                        "endOffset": 1984
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2039,
-                    "endColumn": 111,
-                    "endOffset": 2146
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 107,
-                        "endOffset": 390
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2151,
-                    "endColumn": 186,
-                    "endOffset": 2333
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 391,
-                        "endColumn": 186,
-                        "endOffset": 577
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2338,
-                    "endColumn": 137,
-                    "endOffset": 2471
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 578,
-                        "endColumn": 133,
-                        "endOffset": 711
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2476,
-                    "endColumn": 106,
-                    "endOffset": 2578
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 712,
-                        "endColumn": 102,
-                        "endOffset": 814
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2583,
-                    "endColumn": 205,
-                    "endOffset": 2784
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 815,
-                        "endColumn": 205,
-                        "endOffset": 1020
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2789,
-                    "endColumn": 131,
-                    "endOffset": 2916
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1021,
-                        "endColumn": 127,
-                        "endOffset": 1148
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2921,
-                    "endColumn": 134,
-                    "endOffset": 3051
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1149,
-                        "endColumn": 130,
-                        "endOffset": 1279
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3056,
-                    "endColumn": 205,
-                    "endOffset": 3257
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 205,
-                        "endOffset": 490
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3262,
-                    "endColumn": 230,
-                    "endOffset": 3488
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1280,
-                        "endColumn": 230,
-                        "endOffset": 1510
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3493,
-                    "endColumn": 108,
-                    "endOffset": 3597
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1511,
-                        "endColumn": 104,
-                        "endOffset": 1615
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3602,
-                    "endColumn": 187,
-                    "endOffset": 3785
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1616,
-                        "endColumn": 187,
-                        "endOffset": 1803
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3790,
-                    "endColumn": 135,
-                    "endOffset": 3921
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1804,
-                        "endColumn": 131,
-                        "endOffset": 1935
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3926,
-                    "endColumn": 203,
-                    "endOffset": 4125
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1936,
-                        "endColumn": 203,
-                        "endOffset": 2139
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4130,
-                    "endColumn": 196,
-                    "endOffset": 4322
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2140,
-                        "endColumn": 192,
-                        "endOffset": 2332
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4327,
-                    "endColumn": 91,
-                    "endOffset": 4414
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2333,
-                        "endColumn": 87,
-                        "endOffset": 2420
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4419,
-                    "endColumn": 93,
-                    "endOffset": 4508
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2421,
-                        "endColumn": 89,
-                        "endOffset": 2510
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4513,
-                    "endColumn": 108,
-                    "endOffset": 4617
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2511,
-                        "endColumn": 104,
-                        "endOffset": 2615
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4622,
-                    "endColumn": 78,
-                    "endOffset": 4696
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1989,
-                        "endColumn": 78,
-                        "endOffset": 2063
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4701,
-                    "endColumn": 100,
-                    "endOffset": 4797
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2068,
-                        "endColumn": 100,
-                        "endOffset": 2164
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-uk.json b/android/.build/intermediates/blame/res/debug/multi/values-uk.json
deleted file mode 100644
index 1e39d0a50e8c936c93366533f5a930952d70926b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-uk.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 109,
-                    "endOffset": 210
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 109,
-                        "endOffset": 160
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 215,
-                    "endColumn": 107,
-                    "endOffset": 318
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 165,
-                        "endColumn": 107,
-                        "endOffset": 268
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 323,
-                    "endColumn": 122,
-                    "endOffset": 441
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 273,
-                        "endColumn": 122,
-                        "endOffset": 391
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 446,
-                    "endColumn": 101,
-                    "endOffset": 543
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 396,
-                        "endColumn": 101,
-                        "endOffset": 493
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 548,
-                    "endColumn": 105,
-                    "endOffset": 649
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 498,
-                        "endColumn": 105,
-                        "endOffset": 599
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 654,
-                    "endColumn": 85,
-                    "endOffset": 735
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 604,
-                        "endColumn": 85,
-                        "endOffset": 685
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 740,
-                    "endColumn": 107,
-                    "endOffset": 843
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 690,
-                        "endColumn": 107,
-                        "endOffset": 793
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 848,
-                    "endColumn": 117,
-                    "endOffset": 961
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 798,
-                        "endColumn": 117,
-                        "endOffset": 911
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 966,
-                    "endColumn": 78,
-                    "endOffset": 1040
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 916,
-                        "endColumn": 78,
-                        "endOffset": 990
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1045,
-                    "endColumn": 79,
-                    "endOffset": 1120
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 995,
-                        "endColumn": 79,
-                        "endOffset": 1070
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1125,
-                    "endColumn": 80,
-                    "endOffset": 1201
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1075,
-                        "endColumn": 80,
-                        "endOffset": 1151
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1206,
-                    "endColumn": 105,
-                    "endOffset": 1307
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1156,
-                        "endColumn": 105,
-                        "endOffset": 1257
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1312,
-                    "endColumn": 106,
-                    "endOffset": 1414
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1262,
-                        "endColumn": 106,
-                        "endOffset": 1364
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1419,
-                    "endColumn": 97,
-                    "endOffset": 1512
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1369,
-                        "endColumn": 97,
-                        "endOffset": 1462
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1517,
-                    "endColumn": 107,
-                    "endOffset": 1620
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1467,
-                        "endColumn": 107,
-                        "endOffset": 1570
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1625,
-                    "endColumn": 105,
-                    "endOffset": 1726
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1575,
-                        "endColumn": 105,
-                        "endOffset": 1676
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1731,
-                    "endColumn": 108,
-                    "endOffset": 1835
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1681,
-                        "endColumn": 108,
-                        "endOffset": 1785
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1840,
-                    "endColumn": 123,
-                    "endOffset": 1959
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1790,
-                        "endColumn": 123,
-                        "endOffset": 1909
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1964,
-                    "endColumn": 99,
-                    "endOffset": 2059
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1914,
-                        "endColumn": 99,
-                        "endOffset": 2009
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2064,
-                    "endColumn": 109,
-                    "endOffset": 2169
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 105,
-                        "endOffset": 388
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2174,
-                    "endColumn": 194,
-                    "endOffset": 2364
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 389,
-                        "endColumn": 194,
-                        "endOffset": 583
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2369,
-                    "endColumn": 128,
-                    "endOffset": 2493
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 584,
-                        "endColumn": 124,
-                        "endOffset": 708
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2498,
-                    "endColumn": 111,
-                    "endOffset": 2605
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 709,
-                        "endColumn": 107,
-                        "endOffset": 816
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2610,
-                    "endColumn": 212,
-                    "endOffset": 2818
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 817,
-                        "endColumn": 212,
-                        "endOffset": 1029
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2823,
-                    "endColumn": 130,
-                    "endOffset": 2949
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1030,
-                        "endColumn": 126,
-                        "endOffset": 1156
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2954,
-                    "endColumn": 133,
-                    "endOffset": 3083
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1157,
-                        "endColumn": 129,
-                        "endOffset": 1286
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3088,
-                    "endColumn": 204,
-                    "endOffset": 3288
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 204,
-                        "endOffset": 489
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3293,
-                    "endColumn": 226,
-                    "endOffset": 3515
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1287,
-                        "endColumn": 226,
-                        "endOffset": 1513
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3520,
-                    "endColumn": 107,
-                    "endOffset": 3623
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1514,
-                        "endColumn": 103,
-                        "endOffset": 1617
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3628,
-                    "endColumn": 192,
-                    "endOffset": 3816
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1618,
-                        "endColumn": 192,
-                        "endOffset": 1810
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3821,
-                    "endColumn": 126,
-                    "endOffset": 3943
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1811,
-                        "endColumn": 122,
-                        "endOffset": 1933
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3948,
-                    "endColumn": 205,
-                    "endOffset": 4149
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1934,
-                        "endColumn": 205,
-                        "endOffset": 2139
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4154,
-                    "endColumn": 171,
-                    "endOffset": 4321
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2140,
-                        "endColumn": 167,
-                        "endOffset": 2307
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4326,
-                    "endColumn": 99,
-                    "endOffset": 4421
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2308,
-                        "endColumn": 95,
-                        "endOffset": 2403
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4426,
-                    "endColumn": 90,
-                    "endOffset": 4512
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2404,
-                        "endColumn": 86,
-                        "endOffset": 2490
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4517,
-                    "endColumn": 116,
-                    "endOffset": 4629
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2491,
-                        "endColumn": 112,
-                        "endOffset": 2603
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4634,
-                    "endColumn": 80,
-                    "endOffset": 4710
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2014,
-                        "endColumn": 80,
-                        "endOffset": 2090
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4715,
-                    "endColumn": 100,
-                    "endOffset": 4811
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2095,
-                        "endColumn": 100,
-                        "endOffset": 2191
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ur-rPK.json b/android/.build/intermediates/blame/res/debug/multi/values-ur-rPK.json
deleted file mode 100644
index 42051de64b54a10cb77db339ba618026c70fc6b9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ur-rPK.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 109,
-                    "endOffset": 160
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 109,
-                        "endOffset": 160
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 165,
-                    "endColumn": 107,
-                    "endOffset": 268
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 165,
-                        "endColumn": 107,
-                        "endOffset": 268
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 273,
-                    "endColumn": 122,
-                    "endOffset": 391
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 273,
-                        "endColumn": 122,
-                        "endOffset": 391
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 396,
-                    "endColumn": 105,
-                    "endOffset": 497
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 396,
-                        "endColumn": 105,
-                        "endOffset": 497
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 502,
-                    "endColumn": 108,
-                    "endOffset": 606
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 502,
-                        "endColumn": 108,
-                        "endOffset": 606
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 611,
-                    "endColumn": 85,
-                    "endOffset": 692
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 611,
-                        "endColumn": 85,
-                        "endOffset": 692
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 697,
-                    "endColumn": 103,
-                    "endOffset": 796
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 697,
-                        "endColumn": 103,
-                        "endOffset": 796
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 801,
-                    "endColumn": 119,
-                    "endOffset": 916
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 801,
-                        "endColumn": 119,
-                        "endOffset": 916
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 921,
-                    "endColumn": 75,
-                    "endOffset": 992
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 921,
-                        "endColumn": 75,
-                        "endOffset": 992
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 997,
-                    "endColumn": 75,
-                    "endOffset": 1068
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 997,
-                        "endColumn": 75,
-                        "endOffset": 1068
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1073,
-                    "endColumn": 84,
-                    "endOffset": 1153
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1073,
-                        "endColumn": 84,
-                        "endOffset": 1153
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1158,
-                    "endColumn": 107,
-                    "endOffset": 1261
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1158,
-                        "endColumn": 107,
-                        "endOffset": 1261
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1266,
-                    "endColumn": 108,
-                    "endOffset": 1370
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1266,
-                        "endColumn": 108,
-                        "endOffset": 1370
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1375,
-                    "endColumn": 101,
-                    "endOffset": 1472
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1375,
-                        "endColumn": 101,
-                        "endOffset": 1472
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1477,
-                    "endColumn": 110,
-                    "endOffset": 1583
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1477,
-                        "endColumn": 110,
-                        "endOffset": 1583
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1588,
-                    "endColumn": 99,
-                    "endOffset": 1683
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1588,
-                        "endColumn": 99,
-                        "endOffset": 1683
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1688,
-                    "endColumn": 107,
-                    "endOffset": 1791
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1688,
-                        "endColumn": 107,
-                        "endOffset": 1791
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1796,
-                    "endColumn": 128,
-                    "endOffset": 1920
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1796,
-                        "endColumn": 128,
-                        "endOffset": 1920
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1925,
-                    "endColumn": 97,
-                    "endOffset": 2018
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1925,
-                        "endColumn": 97,
-                        "endOffset": 2018
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2023,
-                    "endColumn": 79,
-                    "endOffset": 2098
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2023,
-                        "endColumn": 79,
-                        "endOffset": 2098
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2103,
-                    "endColumn": 102,
-                    "endOffset": 2201
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2103,
-                        "endColumn": 102,
-                        "endOffset": 2201
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-ur.json b/android/.build/intermediates/blame/res/debug/multi/values-ur.json
deleted file mode 100644
index fd905ecdef01ef1004f2410adfdb745009194ddb..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-ur.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur/values-ur.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 109,
-                    "endOffset": 210
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 105,
-                        "endOffset": 388
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 215,
-                    "endColumn": 195,
-                    "endOffset": 406
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 389,
-                        "endColumn": 195,
-                        "endOffset": 584
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 411,
-                    "endColumn": 127,
-                    "endOffset": 534
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 585,
-                        "endColumn": 123,
-                        "endOffset": 708
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 539,
-                    "endColumn": 112,
-                    "endOffset": 647
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 709,
-                        "endColumn": 108,
-                        "endOffset": 817
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 652,
-                    "endColumn": 198,
-                    "endOffset": 846
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 818,
-                        "endColumn": 198,
-                        "endOffset": 1016
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 851,
-                    "endColumn": 128,
-                    "endOffset": 975
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1017,
-                        "endColumn": 124,
-                        "endOffset": 1141
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 980,
-                    "endColumn": 132,
-                    "endOffset": 1108
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1142,
-                        "endColumn": 128,
-                        "endOffset": 1270
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1113,
-                    "endColumn": 210,
-                    "endOffset": 1319
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 210,
-                        "endOffset": 495
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1324,
-                    "endColumn": 210,
-                    "endOffset": 1530
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1271,
-                        "endColumn": 210,
-                        "endOffset": 1481
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1535,
-                    "endColumn": 111,
-                    "endOffset": 1642
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1482,
-                        "endColumn": 107,
-                        "endOffset": 1589
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1647,
-                    "endColumn": 202,
-                    "endOffset": 1845
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1590,
-                        "endColumn": 202,
-                        "endOffset": 1792
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1850,
-                    "endColumn": 129,
-                    "endOffset": 1975
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1793,
-                        "endColumn": 125,
-                        "endOffset": 1918
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1980,
-                    "endColumn": 204,
-                    "endOffset": 2180
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1919,
-                        "endColumn": 204,
-                        "endOffset": 2123
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2185,
-                    "endColumn": 198,
-                    "endOffset": 2379
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2124,
-                        "endColumn": 194,
-                        "endOffset": 2318
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2384,
-                    "endColumn": 92,
-                    "endOffset": 2472
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2319,
-                        "endColumn": 88,
-                        "endOffset": 2407
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2477,
-                    "endColumn": 96,
-                    "endOffset": 2569
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2408,
-                        "endColumn": 92,
-                        "endOffset": 2500
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2574,
-                    "endColumn": 116,
-                    "endOffset": 2686
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2501,
-                        "endColumn": 112,
-                        "endOffset": 2613
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-uz-rUZ.json b/android/.build/intermediates/blame/res/debug/multi/values-uz-rUZ.json
deleted file mode 100644
index e11eee39e84cc101cd05fd6838aed17c62e4aaa6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-uz-rUZ.json
+++ /dev/null
@@ -1,406 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 104,
-                    "endOffset": 155
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 104,
-                        "endOffset": 155
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 160,
-                    "endColumn": 107,
-                    "endOffset": 263
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 160,
-                        "endColumn": 107,
-                        "endOffset": 263
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 268,
-                    "endColumn": 122,
-                    "endOffset": 386
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 268,
-                        "endColumn": 122,
-                        "endOffset": 386
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 391,
-                    "endColumn": 103,
-                    "endOffset": 490
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 391,
-                        "endColumn": 103,
-                        "endOffset": 490
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 495,
-                    "endColumn": 113,
-                    "endOffset": 604
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 495,
-                        "endColumn": 113,
-                        "endOffset": 604
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 609,
-                    "endColumn": 85,
-                    "endOffset": 690
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 609,
-                        "endColumn": 85,
-                        "endOffset": 690
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 695,
-                    "endColumn": 110,
-                    "endOffset": 801
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 695,
-                        "endColumn": 110,
-                        "endOffset": 801
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 806,
-                    "endColumn": 115,
-                    "endOffset": 917
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 806,
-                        "endColumn": 115,
-                        "endOffset": 917
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 922,
-                    "endColumn": 79,
-                    "endOffset": 997
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 922,
-                        "endColumn": 79,
-                        "endOffset": 997
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1002,
-                    "endColumn": 78,
-                    "endOffset": 1076
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1002,
-                        "endColumn": 78,
-                        "endOffset": 1076
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1081,
-                    "endColumn": 83,
-                    "endOffset": 1160
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1081,
-                        "endColumn": 83,
-                        "endOffset": 1160
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1165,
-                    "endColumn": 108,
-                    "endOffset": 1269
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1165,
-                        "endColumn": 108,
-                        "endOffset": 1269
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1274,
-                    "endColumn": 106,
-                    "endOffset": 1376
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1274,
-                        "endColumn": 106,
-                        "endOffset": 1376
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1381,
-                    "endColumn": 100,
-                    "endOffset": 1477
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1381,
-                        "endColumn": 100,
-                        "endOffset": 1477
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1482,
-                    "endColumn": 107,
-                    "endOffset": 1585
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1482,
-                        "endColumn": 107,
-                        "endOffset": 1585
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1590,
-                    "endColumn": 104,
-                    "endOffset": 1690
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1590,
-                        "endColumn": 104,
-                        "endOffset": 1690
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1695,
-                    "endColumn": 106,
-                    "endOffset": 1797
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1695,
-                        "endColumn": 106,
-                        "endOffset": 1797
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1802,
-                    "endColumn": 123,
-                    "endOffset": 1921
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1802,
-                        "endColumn": 123,
-                        "endOffset": 1921
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1926,
-                    "endColumn": 98,
-                    "endOffset": 2020
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1926,
-                        "endColumn": 98,
-                        "endOffset": 2020
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2025,
-                    "endColumn": 83,
-                    "endOffset": 2104
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2025,
-                        "endColumn": 83,
-                        "endOffset": 2104
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2109,
-                    "endColumn": 100,
-                    "endOffset": 2205
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2109,
-                        "endColumn": 100,
-                        "endOffset": 2205
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-uz.json b/android/.build/intermediates/blame/res/debug/multi/values-uz.json
deleted file mode 100644
index 730dbab4e4a55fe776d054a90503b6ff0aa5cb43..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-uz.json
+++ /dev/null
@@ -1,330 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz/values-uz.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 106,
-                    "endOffset": 207
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 102,
-                        "endOffset": 385
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 212,
-                    "endColumn": 181,
-                    "endOffset": 389
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 386,
-                        "endColumn": 181,
-                        "endOffset": 567
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 394,
-                    "endColumn": 130,
-                    "endOffset": 520
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 568,
-                        "endColumn": 126,
-                        "endOffset": 694
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 525,
-                    "endColumn": 110,
-                    "endOffset": 631
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 695,
-                        "endColumn": 106,
-                        "endOffset": 801
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 636,
-                    "endColumn": 203,
-                    "endOffset": 835
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 802,
-                        "endColumn": 203,
-                        "endOffset": 1005
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 840,
-                    "endColumn": 134,
-                    "endOffset": 970
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1006,
-                        "endColumn": 130,
-                        "endOffset": 1136
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 975,
-                    "endColumn": 134,
-                    "endOffset": 1105
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1137,
-                        "endColumn": 130,
-                        "endOffset": 1267
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 1110,
-                    "endColumn": 208,
-                    "endOffset": 1314
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 208,
-                        "endOffset": 493
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 1319,
-                    "endColumn": 230,
-                    "endOffset": 1545
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1268,
-                        "endColumn": 230,
-                        "endOffset": 1498
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1550,
-                    "endColumn": 109,
-                    "endOffset": 1655
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1499,
-                        "endColumn": 105,
-                        "endOffset": 1604
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1660,
-                    "endColumn": 189,
-                    "endOffset": 1845
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1605,
-                        "endColumn": 189,
-                        "endOffset": 1794
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1850,
-                    "endColumn": 133,
-                    "endOffset": 1979
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1795,
-                        "endColumn": 129,
-                        "endOffset": 1924
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1984,
-                    "endColumn": 212,
-                    "endOffset": 2192
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1925,
-                        "endColumn": 212,
-                        "endOffset": 2137
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 2197,
-                    "endColumn": 191,
-                    "endOffset": 2384
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2138,
-                        "endColumn": 187,
-                        "endOffset": 2325
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 2389,
-                    "endColumn": 95,
-                    "endOffset": 2480
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2326,
-                        "endColumn": 91,
-                        "endOffset": 2417
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 2485,
-                    "endColumn": 90,
-                    "endOffset": 2571
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2418,
-                        "endColumn": 86,
-                        "endOffset": 2504
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 2576,
-                    "endColumn": 108,
-                    "endOffset": 2680
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2505,
-                        "endColumn": 104,
-                        "endOffset": 2609
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-v11.json b/android/.build/intermediates/blame/res/debug/multi/values-v11.json
deleted file mode 100644
index 8aa3e57eb3beff7311a97426480d7484d0625d13..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-v11.json
+++ /dev/null
@@ -1,499 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-v11/values-v11.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endLine": 7,
-                    "endColumn": 12,
-                    "endOffset": 469
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endLine": 7,
-                        "endColumn": 12,
-                        "endOffset": 469
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 474,
-                    "endLine": 13,
-                    "endColumn": 12,
-                    "endOffset": 894
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 474,
-                        "endLine": 13,
-                        "endColumn": 12,
-                        "endOffset": 894
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 899,
-                    "endLine": 19,
-                    "endColumn": 12,
-                    "endOffset": 1322
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 899,
-                        "endLine": 19,
-                        "endColumn": 12,
-                        "endOffset": 1322
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1327,
-                    "endLine": 25,
-                    "endColumn": 12,
-                    "endOffset": 1748
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1327,
-                        "endLine": 25,
-                        "endColumn": 12,
-                        "endOffset": 1748
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 1753,
-                    "endLine": 31,
-                    "endColumn": 12,
-                    "endOffset": 2175
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 26,
-                        "startColumn": 4,
-                        "startOffset": 1753,
-                        "endLine": 31,
-                        "endColumn": 12,
-                        "endOffset": 2175
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 2180,
-                    "endLine": 37,
-                    "endColumn": 12,
-                    "endOffset": 2600
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 32,
-                        "startColumn": 4,
-                        "startOffset": 2180,
-                        "endLine": 37,
-                        "endColumn": 12,
-                        "endOffset": 2600
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 2605,
-                    "endColumn": 88,
-                    "endOffset": 2689
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 38,
-                        "startColumn": 4,
-                        "startOffset": 2605,
-                        "endColumn": 88,
-                        "endOffset": 2689
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 2694,
-                    "endLine": 42,
-                    "endColumn": 12,
-                    "endOffset": 2935
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 39,
-                        "startColumn": 4,
-                        "startOffset": 2694,
-                        "endLine": 42,
-                        "endColumn": 12,
-                        "endOffset": 2935
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 43,
-                    "startColumn": 4,
-                    "startOffset": 2940,
-                    "endLine": 46,
-                    "endColumn": 12,
-                    "endOffset": 3184
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 43,
-                        "startColumn": 4,
-                        "startOffset": 2940,
-                        "endLine": 46,
-                        "endColumn": 12,
-                        "endOffset": 3184
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 47,
-                    "startColumn": 4,
-                    "startOffset": 3189,
-                    "endColumn": 100,
-                    "endOffset": 3285
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 47,
-                        "startColumn": 4,
-                        "startOffset": 3189,
-                        "endColumn": 100,
-                        "endOffset": 3285
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 48,
-                    "startColumn": 4,
-                    "startOffset": 3290,
-                    "endLine": 51,
-                    "endColumn": 12,
-                    "endOffset": 3537
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 48,
-                        "startColumn": 4,
-                        "startOffset": 3290,
-                        "endLine": 51,
-                        "endColumn": 12,
-                        "endOffset": 3537
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 52,
-                    "startColumn": 4,
-                    "startOffset": 3542,
-                    "endLine": 55,
-                    "endColumn": 12,
-                    "endOffset": 3792
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 52,
-                        "startColumn": 4,
-                        "startOffset": 3542,
-                        "endLine": 55,
-                        "endColumn": 12,
-                        "endOffset": 3792
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 56,
-                    "startColumn": 4,
-                    "startOffset": 3797,
-                    "endColumn": 102,
-                    "endOffset": 3895
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 56,
-                        "startColumn": 4,
-                        "startOffset": 3797,
-                        "endColumn": 102,
-                        "endOffset": 3895
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 57,
-                    "startColumn": 4,
-                    "startOffset": 3900,
-                    "endLine": 60,
-                    "endColumn": 12,
-                    "endOffset": 4148
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 57,
-                        "startColumn": 4,
-                        "startOffset": 3900,
-                        "endLine": 60,
-                        "endColumn": 12,
-                        "endOffset": 4148
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 61,
-                    "startColumn": 4,
-                    "startOffset": 4153,
-                    "endLine": 65,
-                    "endColumn": 12,
-                    "endOffset": 4556
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 61,
-                        "startColumn": 4,
-                        "startOffset": 4153,
-                        "endLine": 65,
-                        "endColumn": 12,
-                        "endOffset": 4556
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 66,
-                    "startColumn": 4,
-                    "startOffset": 4561,
-                    "endLine": 70,
-                    "endColumn": 12,
-                    "endOffset": 4976
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 66,
-                        "startColumn": 4,
-                        "startOffset": 4561,
-                        "endLine": 70,
-                        "endColumn": 12,
-                        "endOffset": 4976
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 71,
-                    "startColumn": 4,
-                    "startOffset": 4981,
-                    "endLine": 75,
-                    "endColumn": 12,
-                    "endOffset": 5398
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 71,
-                        "startColumn": 4,
-                        "startOffset": 4981,
-                        "endLine": 75,
-                        "endColumn": 12,
-                        "endOffset": 5398
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 76,
-                    "startColumn": 4,
-                    "startOffset": 5403,
-                    "endLine": 77,
-                    "endColumn": 12,
-                    "endOffset": 5505
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 76,
-                        "startColumn": 4,
-                        "startOffset": 5403,
-                        "endLine": 77,
-                        "endColumn": 12,
-                        "endOffset": 5505
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 78,
-                    "startColumn": 4,
-                    "startOffset": 5510,
-                    "endLine": 79,
-                    "endColumn": 12,
-                    "endOffset": 5634
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 78,
-                        "startColumn": 4,
-                        "startOffset": 5510,
-                        "endLine": 79,
-                        "endColumn": 12,
-                        "endOffset": 5634
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 80,
-                    "startColumn": 4,
-                    "startOffset": 5639,
-                    "endColumn": 70,
-                    "endOffset": 5705
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 80,
-                        "startColumn": 4,
-                        "startOffset": 5639,
-                        "endColumn": 70,
-                        "endOffset": 5705
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 81,
-                    "startColumn": 4,
-                    "startOffset": 5710,
-                    "endColumn": 82,
-                    "endOffset": 5788
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 81,
-                        "startColumn": 4,
-                        "startOffset": 5710,
-                        "endColumn": 82,
-                        "endOffset": 5788
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 82,
-                    "startColumn": 4,
-                    "startOffset": 5793,
-                    "endLine": 134,
-                    "endColumn": 12,
-                    "endOffset": 9727
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 82,
-                        "startColumn": 4,
-                        "startOffset": 5793,
-                        "endLine": 134,
-                        "endColumn": 12,
-                        "endOffset": 9727
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 135,
-                    "startColumn": 4,
-                    "startOffset": 9732,
-                    "endLine": 188,
-                    "endColumn": 12,
-                    "endOffset": 13809
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 135,
-                        "startColumn": 4,
-                        "startOffset": 9732,
-                        "endLine": 188,
-                        "endColumn": 12,
-                        "endOffset": 13809
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 189,
-                    "startColumn": 4,
-                    "startOffset": 13814,
-                    "endColumn": 90,
-                    "endOffset": 13900
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml",
-                    "position": {
-                        "startLine": 189,
-                        "startColumn": 4,
-                        "startOffset": 13814,
-                        "endColumn": 90,
-                        "endOffset": 13900
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-v12.json b/android/.build/intermediates/blame/res/debug/multi/values-v12.json
deleted file mode 100644
index 4dc78fa139eefd72af778e3d68f0de1324d2e60a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-v12.json
+++ /dev/null
@@ -1,87 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-v12/values-v12.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endLine": 4,
-                    "endColumn": 12,
-                    "endOffset": 274
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v12/values-v12.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endLine": 4,
-                        "endColumn": 12,
-                        "endOffset": 274
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 279,
-                    "endLine": 7,
-                    "endColumn": 12,
-                    "endOffset": 474
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v12/values-v12.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 279,
-                        "endLine": 7,
-                        "endColumn": 12,
-                        "endOffset": 474
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 479,
-                    "endColumn": 118,
-                    "endOffset": 593
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v12/values-v12.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 479,
-                        "endColumn": 118,
-                        "endOffset": 593
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 598,
-                    "endColumn": 94,
-                    "endOffset": 688
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v12/values-v12.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 598,
-                        "endColumn": 94,
-                        "endOffset": 688
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-v13.json b/android/.build/intermediates/blame/res/debug/multi/values-v13.json
deleted file mode 100644
index c173b99de35159bf1b7432a02a489fdfcccf5c3a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-v13.json
+++ /dev/null
@@ -1,26 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-v13/values-v13.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 58,
-                    "endOffset": 109
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v13/values-v13.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 58,
-                        "endOffset": 109
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-v14.json b/android/.build/intermediates/blame/res/debug/multi/values-v14.json
deleted file mode 100644
index d6cc6640ac3b9b125f87886ab4aa9561f288fb9d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-v14.json
+++ /dev/null
@@ -1,243 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endLine": 6,
-                    "endColumn": 12,
-                    "endOffset": 326
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v14/values-v14.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endLine": 6,
-                        "endColumn": 12,
-                        "endOffset": 326
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 331,
-                    "endColumn": 70,
-                    "endOffset": 397
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v14/values-v14.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 331,
-                        "endColumn": 70,
-                        "endOffset": 397
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 402,
-                    "endColumn": 82,
-                    "endOffset": 480
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v14/values-v14.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 402,
-                        "endColumn": 82,
-                        "endOffset": 480
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 485,
-                    "endLine": 14,
-                    "endColumn": 12,
-                    "endOffset": 890
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v14/values-v14.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 485,
-                        "endLine": 14,
-                        "endColumn": 12,
-                        "endOffset": 890
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 895,
-                    "endLine": 20,
-                    "endColumn": 12,
-                    "endOffset": 1312
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v14/values-v14.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 895,
-                        "endLine": 20,
-                        "endColumn": 12,
-                        "endOffset": 1312
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 1317,
-                    "endColumn": 119,
-                    "endOffset": 1432
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v14/values-v14.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1317,
-                        "endColumn": 119,
-                        "endOffset": 1432
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 1437,
-                    "endColumn": 131,
-                    "endOffset": 1564
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v14/values-v14.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 1437,
-                        "endColumn": 131,
-                        "endOffset": 1564
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 1569,
-                    "endColumn": 119,
-                    "endOffset": 1684
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v14/values-v14.xml",
-                    "position": {
-                        "startLine": 23,
-                        "startColumn": 4,
-                        "startOffset": 1569,
-                        "endColumn": 119,
-                        "endOffset": 1684
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 1689,
-                    "endColumn": 62,
-                    "endOffset": 1747
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v14/values-v14.xml",
-                    "position": {
-                        "startLine": 24,
-                        "startColumn": 4,
-                        "startOffset": 1689,
-                        "endColumn": 62,
-                        "endOffset": 1747
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 1752,
-                    "endLine": 27,
-                    "endColumn": 12,
-                    "endOffset": 1901
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v14/values-v14.xml",
-                    "position": {
-                        "startLine": 25,
-                        "startColumn": 4,
-                        "startOffset": 1752,
-                        "endLine": 27,
-                        "endColumn": 12,
-                        "endOffset": 1901
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 1906,
-                    "endColumn": 62,
-                    "endOffset": 1964
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v14/values-v14.xml",
-                    "position": {
-                        "startLine": 28,
-                        "startColumn": 4,
-                        "startOffset": 1906,
-                        "endColumn": 62,
-                        "endOffset": 1964
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 1969,
-                    "endColumn": 131,
-                    "endOffset": 2096
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v14/values-v14.xml",
-                    "position": {
-                        "startLine": 29,
-                        "startColumn": 4,
-                        "startOffset": 1969,
-                        "endColumn": 131,
-                        "endOffset": 2096
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-v16.json b/android/.build/intermediates/blame/res/debug/multi/values-v16.json
deleted file mode 100644
index f7f7b42debd70f0adb949e57db8a0319dc4dfaf9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-v16.json
+++ /dev/null
@@ -1,26 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-v16/values-v16.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 65,
-                    "endOffset": 116
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v16/values-v16.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 65,
-                        "endOffset": 116
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-v17.json b/android/.build/intermediates/blame/res/debug/multi/values-v17.json
deleted file mode 100644
index 03c0c8a723419cdd3bf7c427413886bd597aec8b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-v17.json
+++ /dev/null
@@ -1,301 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endLine": 4,
-                    "endColumn": 12,
-                    "endOffset": 223
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endLine": 4,
-                        "endColumn": 12,
-                        "endOffset": 223
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 228,
-                    "endLine": 8,
-                    "endColumn": 12,
-                    "endOffset": 451
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 228,
-                        "endLine": 8,
-                        "endColumn": 12,
-                        "endOffset": 451
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 456,
-                    "endLine": 11,
-                    "endColumn": 12,
-                    "endOffset": 609
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 456,
-                        "endLine": 11,
-                        "endColumn": 12,
-                        "endOffset": 609
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 614,
-                    "endLine": 14,
-                    "endColumn": 12,
-                    "endOffset": 759
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 614,
-                        "endLine": 14,
-                        "endColumn": 12,
-                        "endOffset": 759
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 764,
-                    "endLine": 17,
-                    "endColumn": 12,
-                    "endOffset": 931
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 764,
-                        "endLine": 17,
-                        "endColumn": 12,
-                        "endOffset": 931
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 936,
-                    "endLine": 21,
-                    "endColumn": 12,
-                    "endOffset": 1159
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 936,
-                        "endLine": 21,
-                        "endColumn": 12,
-                        "endOffset": 1159
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 1164,
-                    "endLine": 25,
-                    "endColumn": 12,
-                    "endOffset": 1401
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 1164,
-                        "endLine": 25,
-                        "endColumn": 12,
-                        "endOffset": 1401
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 1406,
-                    "endLine": 28,
-                    "endColumn": 12,
-                    "endOffset": 1572
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml",
-                    "position": {
-                        "startLine": 26,
-                        "startColumn": 4,
-                        "startOffset": 1406,
-                        "endLine": 28,
-                        "endColumn": 12,
-                        "endOffset": 1572
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 1577,
-                    "endLine": 31,
-                    "endColumn": 12,
-                    "endOffset": 1746
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml",
-                    "position": {
-                        "startLine": 29,
-                        "startColumn": 4,
-                        "startOffset": 1577,
-                        "endLine": 31,
-                        "endColumn": 12,
-                        "endOffset": 1746
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 1751,
-                    "endLine": 34,
-                    "endColumn": 12,
-                    "endOffset": 1915
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml",
-                    "position": {
-                        "startLine": 32,
-                        "startColumn": 4,
-                        "startOffset": 1751,
-                        "endLine": 34,
-                        "endColumn": 12,
-                        "endOffset": 1915
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 1920,
-                    "endLine": 38,
-                    "endColumn": 12,
-                    "endOffset": 2188
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml",
-                    "position": {
-                        "startLine": 35,
-                        "startColumn": 4,
-                        "startOffset": 1920,
-                        "endLine": 38,
-                        "endColumn": 12,
-                        "endOffset": 2188
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 2193,
-                    "endLine": 41,
-                    "endColumn": 12,
-                    "endOffset": 2388
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml",
-                    "position": {
-                        "startLine": 39,
-                        "startColumn": 4,
-                        "startOffset": 2193,
-                        "endLine": 41,
-                        "endColumn": 12,
-                        "endOffset": 2388
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 2393,
-                    "endLine": 45,
-                    "endColumn": 12,
-                    "endOffset": 2592
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml",
-                    "position": {
-                        "startLine": 42,
-                        "startColumn": 4,
-                        "startOffset": 2393,
-                        "endLine": 45,
-                        "endColumn": 12,
-                        "endOffset": 2592
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 46,
-                    "startColumn": 4,
-                    "startOffset": 2597,
-                    "endLine": 49,
-                    "endColumn": 12,
-                    "endOffset": 2921
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml",
-                    "position": {
-                        "startLine": 46,
-                        "startColumn": 4,
-                        "startOffset": 2597,
-                        "endLine": 49,
-                        "endColumn": 12,
-                        "endOffset": 2921
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-v18.json b/android/.build/intermediates/blame/res/debug/multi/values-v18.json
deleted file mode 100644
index 17a9eeda293c502b2f01ae9ffcf726e86fea6e88..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-v18.json
+++ /dev/null
@@ -1,26 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 48,
-                    "endOffset": 99
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v18/values-v18.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 48,
-                        "endOffset": 99
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-v21.json b/android/.build/intermediates/blame/res/debug/multi/values-v21.json
deleted file mode 100644
index 598ab05b7c95e22d4fa37f94a4fdd899cdde7546..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-v21.json
+++ /dev/null
@@ -1,2060 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 103,
-                    "endOffset": 154
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 103,
-                        "endOffset": 154
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 159,
-                    "endColumn": 63,
-                    "endOffset": 218
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 159,
-                        "endColumn": 63,
-                        "endOffset": 218
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 223,
-                    "endColumn": 66,
-                    "endOffset": 285
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 223,
-                        "endColumn": 66,
-                        "endOffset": 285
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 290,
-                    "endColumn": 63,
-                    "endOffset": 349
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 290,
-                        "endColumn": 63,
-                        "endOffset": 349
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 354,
-                    "endColumn": 90,
-                    "endOffset": 440
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 354,
-                        "endColumn": 90,
-                        "endOffset": 440
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 445,
-                    "endColumn": 102,
-                    "endOffset": 543
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 445,
-                        "endColumn": 102,
-                        "endOffset": 543
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 548,
-                    "endColumn": 102,
-                    "endOffset": 646
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 548,
-                        "endColumn": 102,
-                        "endOffset": 646
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 651,
-                    "endColumn": 104,
-                    "endOffset": 751
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 651,
-                        "endColumn": 104,
-                        "endOffset": 751
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 756,
-                    "endColumn": 106,
-                    "endOffset": 858
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 756,
-                        "endColumn": 106,
-                        "endOffset": 858
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 863,
-                    "endColumn": 108,
-                    "endOffset": 967
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 863,
-                        "endColumn": 108,
-                        "endOffset": 967
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 972,
-                    "endColumn": 108,
-                    "endOffset": 1076
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 972,
-                        "endColumn": 108,
-                        "endOffset": 1076
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1081,
-                    "endColumn": 108,
-                    "endOffset": 1185
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1081,
-                        "endColumn": 108,
-                        "endOffset": 1185
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1190,
-                    "endColumn": 108,
-                    "endOffset": 1294
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1190,
-                        "endColumn": 108,
-                        "endOffset": 1294
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1299,
-                    "endColumn": 108,
-                    "endOffset": 1403
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1299,
-                        "endColumn": 108,
-                        "endOffset": 1403
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1408,
-                    "endColumn": 106,
-                    "endOffset": 1510
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1408,
-                        "endColumn": 106,
-                        "endOffset": 1510
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1515,
-                    "endColumn": 102,
-                    "endOffset": 1613
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1515,
-                        "endColumn": 102,
-                        "endOffset": 1613
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1618,
-                    "endColumn": 118,
-                    "endOffset": 1732
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1618,
-                        "endColumn": 118,
-                        "endOffset": 1732
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1737,
-                    "endLine": 20,
-                    "endColumn": 12,
-                    "endOffset": 1887
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1737,
-                        "endLine": 20,
-                        "endColumn": 12,
-                        "endOffset": 1887
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 1892,
-                    "endLine": 22,
-                    "endColumn": 12,
-                    "endOffset": 2042
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1892,
-                        "endLine": 22,
-                        "endColumn": 12,
-                        "endOffset": 2042
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2047,
-                    "endColumn": 104,
-                    "endOffset": 2147
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 23,
-                        "startColumn": 4,
-                        "startOffset": 2047,
-                        "endColumn": 104,
-                        "endOffset": 2147
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2152,
-                    "endColumn": 120,
-                    "endOffset": 2268
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 24,
-                        "startColumn": 4,
-                        "startOffset": 2152,
-                        "endColumn": 120,
-                        "endOffset": 2268
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2273,
-                    "endColumn": 100,
-                    "endOffset": 2369
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 25,
-                        "startColumn": 4,
-                        "startOffset": 2273,
-                        "endColumn": 100,
-                        "endOffset": 2369
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2374,
-                    "endLine": 27,
-                    "endColumn": 12,
-                    "endOffset": 2516
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 26,
-                        "startColumn": 4,
-                        "startOffset": 2374,
-                        "endLine": 27,
-                        "endColumn": 12,
-                        "endOffset": 2516
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 2521,
-                    "endLine": 29,
-                    "endColumn": 12,
-                    "endOffset": 2657
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 28,
-                        "startColumn": 4,
-                        "startOffset": 2521,
-                        "endLine": 29,
-                        "endColumn": 12,
-                        "endOffset": 2657
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 2662,
-                    "endColumn": 102,
-                    "endOffset": 2760
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 30,
-                        "startColumn": 4,
-                        "startOffset": 2662,
-                        "endColumn": 102,
-                        "endOffset": 2760
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 2765,
-                    "endColumn": 118,
-                    "endOffset": 2879
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 31,
-                        "startColumn": 4,
-                        "startOffset": 2765,
-                        "endColumn": 118,
-                        "endOffset": 2879
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 2884,
-                    "endColumn": 106,
-                    "endOffset": 2986
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 32,
-                        "startColumn": 4,
-                        "startOffset": 2884,
-                        "endColumn": 106,
-                        "endOffset": 2986
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 2991,
-                    "endColumn": 102,
-                    "endOffset": 3089
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 33,
-                        "startColumn": 4,
-                        "startOffset": 2991,
-                        "endColumn": 102,
-                        "endOffset": 3089
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 3094,
-                    "endLine": 35,
-                    "endColumn": 12,
-                    "endOffset": 3244
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 34,
-                        "startColumn": 4,
-                        "startOffset": 3094,
-                        "endLine": 35,
-                        "endColumn": 12,
-                        "endOffset": 3244
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 3249,
-                    "endLine": 37,
-                    "endColumn": 12,
-                    "endOffset": 3415
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 36,
-                        "startColumn": 4,
-                        "startOffset": 3249,
-                        "endLine": 37,
-                        "endColumn": 12,
-                        "endOffset": 3415
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 3420,
-                    "endLine": 39,
-                    "endColumn": 12,
-                    "endOffset": 3564
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 38,
-                        "startColumn": 4,
-                        "startOffset": 3420,
-                        "endLine": 39,
-                        "endColumn": 12,
-                        "endOffset": 3564
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 3569,
-                    "endLine": 41,
-                    "endColumn": 12,
-                    "endOffset": 3729
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 40,
-                        "startColumn": 4,
-                        "startOffset": 3569,
-                        "endLine": 41,
-                        "endColumn": 12,
-                        "endOffset": 3729
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 3734,
-                    "endLine": 43,
-                    "endColumn": 12,
-                    "endOffset": 3886
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 42,
-                        "startColumn": 4,
-                        "startOffset": 3734,
-                        "endLine": 43,
-                        "endColumn": 12,
-                        "endOffset": 3886
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 44,
-                    "startColumn": 4,
-                    "startOffset": 3891,
-                    "endLine": 45,
-                    "endColumn": 12,
-                    "endOffset": 4037
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 44,
-                        "startColumn": 4,
-                        "startOffset": 3891,
-                        "endLine": 45,
-                        "endColumn": 12,
-                        "endOffset": 4037
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 46,
-                    "startColumn": 4,
-                    "startOffset": 4042,
-                    "endColumn": 118,
-                    "endOffset": 4156
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 46,
-                        "startColumn": 4,
-                        "startOffset": 4042,
-                        "endColumn": 118,
-                        "endOffset": 4156
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 47,
-                    "startColumn": 4,
-                    "startOffset": 4161,
-                    "endLine": 51,
-                    "endColumn": 12,
-                    "endOffset": 4528
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 47,
-                        "startColumn": 4,
-                        "startOffset": 4161,
-                        "endLine": 51,
-                        "endColumn": 12,
-                        "endOffset": 4528
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 52,
-                    "startColumn": 4,
-                    "startOffset": 4533,
-                    "endLine": 53,
-                    "endColumn": 12,
-                    "endOffset": 4677
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 52,
-                        "startColumn": 4,
-                        "startOffset": 4533,
-                        "endLine": 53,
-                        "endColumn": 12,
-                        "endOffset": 4677
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 54,
-                    "startColumn": 4,
-                    "startOffset": 4682,
-                    "endLine": 55,
-                    "endColumn": 12,
-                    "endOffset": 4826
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 54,
-                        "startColumn": 4,
-                        "startOffset": 4682,
-                        "endLine": 55,
-                        "endColumn": 12,
-                        "endOffset": 4826
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 56,
-                    "startColumn": 4,
-                    "startOffset": 4831,
-                    "endColumn": 111,
-                    "endOffset": 4938
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 56,
-                        "startColumn": 4,
-                        "startOffset": 4831,
-                        "endColumn": 111,
-                        "endOffset": 4938
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 57,
-                    "startColumn": 4,
-                    "startOffset": 4943,
-                    "endColumn": 146,
-                    "endOffset": 5085
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 57,
-                        "startColumn": 4,
-                        "startOffset": 4943,
-                        "endColumn": 146,
-                        "endOffset": 5085
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 58,
-                    "startColumn": 4,
-                    "startOffset": 5090,
-                    "endLine": 59,
-                    "endColumn": 12,
-                    "endOffset": 5238
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 58,
-                        "startColumn": 4,
-                        "startOffset": 5090,
-                        "endLine": 59,
-                        "endColumn": 12,
-                        "endOffset": 5238
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 60,
-                    "startColumn": 4,
-                    "startOffset": 5243,
-                    "endLine": 61,
-                    "endColumn": 12,
-                    "endOffset": 5385
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 60,
-                        "startColumn": 4,
-                        "startOffset": 5243,
-                        "endLine": 61,
-                        "endColumn": 12,
-                        "endOffset": 5385
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 62,
-                    "startColumn": 4,
-                    "startOffset": 5390,
-                    "endColumn": 74,
-                    "endOffset": 5460
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 62,
-                        "startColumn": 4,
-                        "startOffset": 5390,
-                        "endColumn": 74,
-                        "endOffset": 5460
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 63,
-                    "startColumn": 4,
-                    "startOffset": 5465,
-                    "endColumn": 88,
-                    "endOffset": 5549
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 63,
-                        "startColumn": 4,
-                        "startOffset": 5465,
-                        "endColumn": 88,
-                        "endOffset": 5549
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 64,
-                    "startColumn": 4,
-                    "startOffset": 5554,
-                    "endColumn": 86,
-                    "endOffset": 5636
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 64,
-                        "startColumn": 4,
-                        "startOffset": 5554,
-                        "endColumn": 86,
-                        "endOffset": 5636
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 65,
-                    "startColumn": 4,
-                    "startOffset": 5641,
-                    "endColumn": 100,
-                    "endOffset": 5737
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 65,
-                        "startColumn": 4,
-                        "startOffset": 5641,
-                        "endColumn": 100,
-                        "endOffset": 5737
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 66,
-                    "startColumn": 4,
-                    "startOffset": 5742,
-                    "endColumn": 102,
-                    "endOffset": 5840
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 66,
-                        "startColumn": 4,
-                        "startOffset": 5742,
-                        "endColumn": 102,
-                        "endOffset": 5840
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 67,
-                    "startColumn": 4,
-                    "startOffset": 5845,
-                    "endLine": 110,
-                    "endColumn": 12,
-                    "endOffset": 8908
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 67,
-                        "startColumn": 4,
-                        "startOffset": 5845,
-                        "endLine": 110,
-                        "endColumn": 12,
-                        "endOffset": 8908
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 111,
-                    "startColumn": 4,
-                    "startOffset": 8913,
-                    "endLine": 113,
-                    "endColumn": 12,
-                    "endOffset": 9094
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 111,
-                        "startColumn": 4,
-                        "startOffset": 8913,
-                        "endLine": 113,
-                        "endColumn": 12,
-                        "endOffset": 9094
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 114,
-                    "startColumn": 4,
-                    "startOffset": 9099,
-                    "endLine": 157,
-                    "endColumn": 12,
-                    "endOffset": 12174
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 114,
-                        "startColumn": 4,
-                        "startOffset": 9099,
-                        "endLine": 157,
-                        "endColumn": 12,
-                        "endOffset": 12174
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 158,
-                    "startColumn": 4,
-                    "startOffset": 12179,
-                    "endLine": 160,
-                    "endColumn": 12,
-                    "endOffset": 12372
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 158,
-                        "startColumn": 4,
-                        "startOffset": 12179,
-                        "endLine": 160,
-                        "endColumn": 12,
-                        "endOffset": 12372
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 161,
-                    "startColumn": 4,
-                    "startOffset": 12377,
-                    "endLine": 163,
-                    "endColumn": 12,
-                    "endOffset": 12572
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 161,
-                        "startColumn": 4,
-                        "startOffset": 12377,
-                        "endLine": 163,
-                        "endColumn": 12,
-                        "endOffset": 12572
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 164,
-                    "startColumn": 4,
-                    "startOffset": 12577,
-                    "endLine": 165,
-                    "endColumn": 12,
-                    "endOffset": 12695
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 164,
-                        "startColumn": 4,
-                        "startOffset": 12577,
-                        "endLine": 165,
-                        "endColumn": 12,
-                        "endOffset": 12695
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 166,
-                    "startColumn": 4,
-                    "startOffset": 12700,
-                    "endLine": 167,
-                    "endColumn": 12,
-                    "endOffset": 12818
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 166,
-                        "startColumn": 4,
-                        "startOffset": 12700,
-                        "endLine": 167,
-                        "endColumn": 12,
-                        "endOffset": 12818
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 168,
-                    "startColumn": 4,
-                    "startOffset": 12823,
-                    "endLine": 169,
-                    "endColumn": 12,
-                    "endOffset": 12931
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 168,
-                        "startColumn": 4,
-                        "startOffset": 12823,
-                        "endLine": 169,
-                        "endColumn": 12,
-                        "endOffset": 12931
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 170,
-                    "startColumn": 4,
-                    "startOffset": 12936,
-                    "endLine": 172,
-                    "endColumn": 12,
-                    "endOffset": 13114
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 170,
-                        "startColumn": 4,
-                        "startOffset": 12936,
-                        "endLine": 172,
-                        "endColumn": 12,
-                        "endOffset": 13114
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 173,
-                    "startColumn": 4,
-                    "startOffset": 13119,
-                    "endLine": 174,
-                    "endColumn": 12,
-                    "endOffset": 13245
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 173,
-                        "startColumn": 4,
-                        "startOffset": 13119,
-                        "endLine": 174,
-                        "endColumn": 12,
-                        "endOffset": 13245
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 175,
-                    "startColumn": 4,
-                    "startOffset": 13250,
-                    "endLine": 177,
-                    "endColumn": 12,
-                    "endOffset": 13446
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 175,
-                        "startColumn": 4,
-                        "startOffset": 13250,
-                        "endLine": 177,
-                        "endColumn": 12,
-                        "endOffset": 13446
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 178,
-                    "startColumn": 4,
-                    "startOffset": 13451,
-                    "endColumn": 88,
-                    "endOffset": 13535
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 178,
-                        "startColumn": 4,
-                        "startOffset": 13451,
-                        "endColumn": 88,
-                        "endOffset": 13535
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 179,
-                    "startColumn": 4,
-                    "startOffset": 13540,
-                    "endColumn": 110,
-                    "endOffset": 13646
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 179,
-                        "startColumn": 4,
-                        "startOffset": 13540,
-                        "endColumn": 110,
-                        "endOffset": 13646
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 180,
-                    "startColumn": 4,
-                    "startOffset": 13651,
-                    "endLine": 182,
-                    "endColumn": 12,
-                    "endOffset": 13879
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 180,
-                        "startColumn": 4,
-                        "startOffset": 13651,
-                        "endLine": 182,
-                        "endColumn": 12,
-                        "endOffset": 13879
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 183,
-                    "startColumn": 4,
-                    "startOffset": 13884,
-                    "endColumn": 100,
-                    "endOffset": 13980
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 183,
-                        "startColumn": 4,
-                        "startOffset": 13884,
-                        "endColumn": 100,
-                        "endOffset": 13980
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 184,
-                    "startColumn": 4,
-                    "startOffset": 13985,
-                    "endColumn": 94,
-                    "endOffset": 14075
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 184,
-                        "startColumn": 4,
-                        "startOffset": 13985,
-                        "endColumn": 94,
-                        "endOffset": 14075
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 185,
-                    "startColumn": 4,
-                    "startOffset": 14080,
-                    "endColumn": 122,
-                    "endOffset": 14198
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 185,
-                        "startColumn": 4,
-                        "startOffset": 14080,
-                        "endColumn": 122,
-                        "endOffset": 14198
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 186,
-                    "startColumn": 4,
-                    "startOffset": 14203,
-                    "endColumn": 128,
-                    "endOffset": 14327
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 186,
-                        "startColumn": 4,
-                        "startOffset": 14203,
-                        "endColumn": 128,
-                        "endOffset": 14327
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 187,
-                    "startColumn": 4,
-                    "startOffset": 14332,
-                    "endColumn": 116,
-                    "endOffset": 14444
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 187,
-                        "startColumn": 4,
-                        "startOffset": 14332,
-                        "endColumn": 116,
-                        "endOffset": 14444
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 188,
-                    "startColumn": 4,
-                    "startOffset": 14449,
-                    "endLine": 190,
-                    "endColumn": 12,
-                    "endOffset": 14621
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 188,
-                        "startColumn": 4,
-                        "startOffset": 14449,
-                        "endLine": 190,
-                        "endColumn": 12,
-                        "endOffset": 14621
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 191,
-                    "startColumn": 4,
-                    "startOffset": 14626,
-                    "endColumn": 98,
-                    "endOffset": 14720
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 191,
-                        "startColumn": 4,
-                        "startOffset": 14626,
-                        "endColumn": 98,
-                        "endOffset": 14720
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 192,
-                    "startColumn": 4,
-                    "startOffset": 14725,
-                    "endLine": 193,
-                    "endColumn": 12,
-                    "endOffset": 14855
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 192,
-                        "startColumn": 4,
-                        "startOffset": 14725,
-                        "endLine": 193,
-                        "endColumn": 12,
-                        "endOffset": 14855
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 194,
-                    "startColumn": 4,
-                    "startOffset": 14860,
-                    "endLine": 195,
-                    "endColumn": 12,
-                    "endOffset": 14998
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 194,
-                        "startColumn": 4,
-                        "startOffset": 14860,
-                        "endLine": 195,
-                        "endColumn": 12,
-                        "endOffset": 14998
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 196,
-                    "startColumn": 4,
-                    "startOffset": 15003,
-                    "endLine": 197,
-                    "endColumn": 12,
-                    "endOffset": 15133
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 196,
-                        "startColumn": 4,
-                        "startOffset": 15003,
-                        "endLine": 197,
-                        "endColumn": 12,
-                        "endOffset": 15133
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 198,
-                    "startColumn": 4,
-                    "startOffset": 15138,
-                    "endLine": 199,
-                    "endColumn": 12,
-                    "endOffset": 15252
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 198,
-                        "startColumn": 4,
-                        "startOffset": 15138,
-                        "endLine": 199,
-                        "endColumn": 12,
-                        "endOffset": 15252
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 200,
-                    "startColumn": 4,
-                    "startOffset": 15257,
-                    "endLine": 203,
-                    "endColumn": 12,
-                    "endOffset": 15453
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 200,
-                        "startColumn": 4,
-                        "startOffset": 15257,
-                        "endLine": 203,
-                        "endColumn": 12,
-                        "endOffset": 15453
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 204,
-                    "startColumn": 4,
-                    "startOffset": 15458,
-                    "endLine": 205,
-                    "endColumn": 12,
-                    "endOffset": 15572
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 204,
-                        "startColumn": 4,
-                        "startOffset": 15458,
-                        "endLine": 205,
-                        "endColumn": 12,
-                        "endOffset": 15572
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 206,
-                    "startColumn": 4,
-                    "startOffset": 15577,
-                    "endColumn": 92,
-                    "endOffset": 15665
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 206,
-                        "startColumn": 4,
-                        "startOffset": 15577,
-                        "endColumn": 92,
-                        "endOffset": 15665
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 207,
-                    "startColumn": 4,
-                    "startOffset": 15670,
-                    "endColumn": 110,
-                    "endOffset": 15776
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 207,
-                        "startColumn": 4,
-                        "startOffset": 15670,
-                        "endColumn": 110,
-                        "endOffset": 15776
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 208,
-                    "startColumn": 4,
-                    "startOffset": 15781,
-                    "endColumn": 55,
-                    "endOffset": 15832
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 208,
-                        "startColumn": 4,
-                        "startOffset": 15781,
-                        "endColumn": 55,
-                        "endOffset": 15832
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 209,
-                    "startColumn": 4,
-                    "startOffset": 15837,
-                    "endLine": 210,
-                    "endColumn": 12,
-                    "endOffset": 15939
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 209,
-                        "startColumn": 4,
-                        "startOffset": 15837,
-                        "endLine": 210,
-                        "endColumn": 12,
-                        "endOffset": 15939
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 211,
-                    "startColumn": 4,
-                    "startOffset": 15944,
-                    "endLine": 214,
-                    "endColumn": 12,
-                    "endOffset": 16134
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 211,
-                        "startColumn": 4,
-                        "startOffset": 15944,
-                        "endLine": 214,
-                        "endColumn": 12,
-                        "endOffset": 16134
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 215,
-                    "startColumn": 4,
-                    "startOffset": 16139,
-                    "endLine": 216,
-                    "endColumn": 12,
-                    "endOffset": 16245
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 215,
-                        "startColumn": 4,
-                        "startOffset": 16139,
-                        "endLine": 216,
-                        "endColumn": 12,
-                        "endOffset": 16245
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 217,
-                    "startColumn": 4,
-                    "startOffset": 16250,
-                    "endLine": 218,
-                    "endColumn": 12,
-                    "endOffset": 16378
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 217,
-                        "startColumn": 4,
-                        "startOffset": 16250,
-                        "endLine": 218,
-                        "endColumn": 12,
-                        "endOffset": 16378
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 219,
-                    "startColumn": 4,
-                    "startOffset": 16383,
-                    "endColumn": 94,
-                    "endOffset": 16473
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 219,
-                        "startColumn": 4,
-                        "startOffset": 16383,
-                        "endColumn": 94,
-                        "endOffset": 16473
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 220,
-                    "startColumn": 4,
-                    "startOffset": 16478,
-                    "endColumn": 90,
-                    "endOffset": 16564
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 220,
-                        "startColumn": 4,
-                        "startOffset": 16478,
-                        "endColumn": 90,
-                        "endOffset": 16564
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 221,
-                    "startColumn": 4,
-                    "startOffset": 16569,
-                    "endColumn": 90,
-                    "endOffset": 16655
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 221,
-                        "startColumn": 4,
-                        "startOffset": 16569,
-                        "endColumn": 90,
-                        "endOffset": 16655
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 222,
-                    "startColumn": 4,
-                    "startOffset": 16660,
-                    "endColumn": 116,
-                    "endOffset": 16772
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 222,
-                        "startColumn": 4,
-                        "startOffset": 16660,
-                        "endColumn": 116,
-                        "endOffset": 16772
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 223,
-                    "startColumn": 4,
-                    "startOffset": 16777,
-                    "endLine": 224,
-                    "endColumn": 12,
-                    "endOffset": 16911
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 223,
-                        "startColumn": 4,
-                        "startOffset": 16777,
-                        "endLine": 224,
-                        "endColumn": 12,
-                        "endOffset": 16911
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 225,
-                    "startColumn": 4,
-                    "startOffset": 16916,
-                    "endColumn": 70,
-                    "endOffset": 16982
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 225,
-                        "startColumn": 4,
-                        "startOffset": 16916,
-                        "endColumn": 70,
-                        "endOffset": 16982
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 226,
-                    "startColumn": 4,
-                    "startOffset": 16987,
-                    "endColumn": 82,
-                    "endOffset": 17065
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 226,
-                        "startColumn": 4,
-                        "startOffset": 16987,
-                        "endColumn": 82,
-                        "endOffset": 17065
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 227,
-                    "startColumn": 4,
-                    "startOffset": 17070,
-                    "endLine": 236,
-                    "endColumn": 12,
-                    "endOffset": 17745
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 227,
-                        "startColumn": 4,
-                        "startOffset": 17070,
-                        "endLine": 236,
-                        "endColumn": 12,
-                        "endOffset": 17745
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 237,
-                    "startColumn": 4,
-                    "startOffset": 17750,
-                    "endColumn": 56,
-                    "endOffset": 17802
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 237,
-                        "startColumn": 4,
-                        "startOffset": 17750,
-                        "endColumn": 56,
-                        "endOffset": 17802
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 238,
-                    "startColumn": 4,
-                    "startOffset": 17807,
-                    "endColumn": 57,
-                    "endOffset": 17860
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 238,
-                        "startColumn": 4,
-                        "startOffset": 17807,
-                        "endColumn": 57,
-                        "endOffset": 17860
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 239,
-                    "startColumn": 4,
-                    "startOffset": 17865,
-                    "endLine": 250,
-                    "endColumn": 12,
-                    "endOffset": 18554
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 239,
-                        "startColumn": 4,
-                        "startOffset": 17865,
-                        "endLine": 250,
-                        "endColumn": 12,
-                        "endOffset": 18554
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 251,
-                    "startColumn": 4,
-                    "startOffset": 18559,
-                    "endLine": 262,
-                    "endColumn": 12,
-                    "endOffset": 19260
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 251,
-                        "startColumn": 4,
-                        "startOffset": 18559,
-                        "endLine": 262,
-                        "endColumn": 12,
-                        "endOffset": 19260
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 263,
-                    "startColumn": 4,
-                    "startOffset": 19265,
-                    "endColumn": 118,
-                    "endOffset": 19379
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 263,
-                        "startColumn": 4,
-                        "startOffset": 19265,
-                        "endColumn": 118,
-                        "endOffset": 19379
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 264,
-                    "startColumn": 4,
-                    "startOffset": 19384,
-                    "endColumn": 128,
-                    "endOffset": 19508
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 264,
-                        "startColumn": 4,
-                        "startOffset": 19384,
-                        "endColumn": 128,
-                        "endOffset": 19508
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 265,
-                    "startColumn": 4,
-                    "startOffset": 19513,
-                    "endLine": 267,
-                    "endColumn": 12,
-                    "endOffset": 19679
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 265,
-                        "startColumn": 4,
-                        "startOffset": 19513,
-                        "endLine": 267,
-                        "endColumn": 12,
-                        "endOffset": 19679
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 268,
-                    "startColumn": 4,
-                    "startOffset": 19684,
-                    "endLine": 270,
-                    "endColumn": 12,
-                    "endOffset": 19845
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 268,
-                        "startColumn": 4,
-                        "startOffset": 19684,
-                        "endLine": 270,
-                        "endColumn": 12,
-                        "endOffset": 19845
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 271,
-                    "startColumn": 4,
-                    "startOffset": 19850,
-                    "endColumn": 128,
-                    "endOffset": 19974
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 271,
-                        "startColumn": 4,
-                        "startOffset": 19850,
-                        "endColumn": 128,
-                        "endOffset": 19974
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 272,
-                    "startColumn": 4,
-                    "startOffset": 19979,
-                    "endLine": 274,
-                    "endColumn": 12,
-                    "endOffset": 20145
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 272,
-                        "startColumn": 4,
-                        "startOffset": 19979,
-                        "endLine": 274,
-                        "endColumn": 12,
-                        "endOffset": 20145
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 275,
-                    "startColumn": 4,
-                    "startOffset": 20150,
-                    "endColumn": 130,
-                    "endOffset": 20276
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 275,
-                        "startColumn": 4,
-                        "startOffset": 20150,
-                        "endColumn": 130,
-                        "endOffset": 20276
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 276,
-                    "startColumn": 4,
-                    "startOffset": 20281,
-                    "endLine": 278,
-                    "endColumn": 12,
-                    "endOffset": 20446
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 276,
-                        "startColumn": 4,
-                        "startOffset": 20281,
-                        "endLine": 278,
-                        "endColumn": 12,
-                        "endOffset": 20446
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 279,
-                    "startColumn": 4,
-                    "startOffset": 20451,
-                    "endLine": 281,
-                    "endColumn": 12,
-                    "endOffset": 20621
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 279,
-                        "startColumn": 4,
-                        "startOffset": 20451,
-                        "endLine": 281,
-                        "endColumn": 12,
-                        "endOffset": 20621
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 282,
-                    "startColumn": 4,
-                    "startOffset": 20626,
-                    "endLine": 286,
-                    "endColumn": 12,
-                    "endOffset": 20962
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml",
-                    "position": {
-                        "startLine": 282,
-                        "startColumn": 4,
-                        "startOffset": 20626,
-                        "endLine": 286,
-                        "endColumn": 12,
-                        "endOffset": 20962
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-v22.json b/android/.build/intermediates/blame/res/debug/multi/values-v22.json
deleted file mode 100644
index b90d42c955a8645820259d8bc071e963d9c42a62..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-v22.json
+++ /dev/null
@@ -1,87 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 74,
-                    "endOffset": 125
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v22/values-v22.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 74,
-                        "endOffset": 125
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 130,
-                    "endColumn": 86,
-                    "endOffset": 212
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v22/values-v22.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 130,
-                        "endColumn": 86,
-                        "endOffset": 212
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 217,
-                    "endLine": 8,
-                    "endColumn": 12,
-                    "endOffset": 548
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v22/values-v22.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 217,
-                        "endLine": 8,
-                        "endColumn": 12,
-                        "endOffset": 548
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 553,
-                    "endLine": 13,
-                    "endColumn": 12,
-                    "endOffset": 896
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v22/values-v22.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 553,
-                        "endLine": 13,
-                        "endColumn": 12,
-                        "endOffset": 896
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-v23.json b/android/.build/intermediates/blame/res/debug/multi/values-v23.json
deleted file mode 100644
index c7208a283fc83d0ac1c468e8bc45aba902a5910f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-v23.json
+++ /dev/null
@@ -1,220 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 134,
-                    "endOffset": 185
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v23/values-v23.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 134,
-                        "endOffset": 185
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 190,
-                    "endColumn": 134,
-                    "endOffset": 320
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v23/values-v23.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 190,
-                        "endColumn": 134,
-                        "endOffset": 320
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 325,
-                    "endColumn": 74,
-                    "endOffset": 395
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v23/values-v23.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 325,
-                        "endColumn": 74,
-                        "endOffset": 395
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 400,
-                    "endColumn": 86,
-                    "endOffset": 482
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v23/values-v23.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 400,
-                        "endColumn": 86,
-                        "endOffset": 482
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 487,
-                    "endLine": 18,
-                    "endColumn": 12,
-                    "endOffset": 1272
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v23/values-v23.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 487,
-                        "endLine": 18,
-                        "endColumn": 12,
-                        "endOffset": 1272
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1277,
-                    "endLine": 31,
-                    "endColumn": 12,
-                    "endOffset": 2074
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v23/values-v23.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1277,
-                        "endLine": 31,
-                        "endColumn": 12,
-                        "endOffset": 2074
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 2079,
-                    "endColumn": 126,
-                    "endOffset": 2201
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v23/values-v23.xml",
-                    "position": {
-                        "startLine": 32,
-                        "startColumn": 4,
-                        "startOffset": 2079,
-                        "endColumn": 126,
-                        "endOffset": 2201
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 2206,
-                    "endColumn": 104,
-                    "endOffset": 2306
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v23/values-v23.xml",
-                    "position": {
-                        "startLine": 33,
-                        "startColumn": 4,
-                        "startOffset": 2206,
-                        "endColumn": 104,
-                        "endOffset": 2306
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 2311,
-                    "endColumn": 114,
-                    "endOffset": 2421
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v23/values-v23.xml",
-                    "position": {
-                        "startLine": 34,
-                        "startColumn": 4,
-                        "startOffset": 2311,
-                        "endColumn": 114,
-                        "endOffset": 2421
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 2426,
-                    "endColumn": 106,
-                    "endOffset": 2528
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v23/values-v23.xml",
-                    "position": {
-                        "startLine": 35,
-                        "startColumn": 4,
-                        "startOffset": 2426,
-                        "endColumn": 106,
-                        "endOffset": 2528
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 2533,
-                    "endColumn": 112,
-                    "endOffset": 2641
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v23/values-v23.xml",
-                    "position": {
-                        "startLine": 36,
-                        "startColumn": 4,
-                        "startOffset": 2533,
-                        "endColumn": 112,
-                        "endOffset": 2641
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-v24.json b/android/.build/intermediates/blame/res/debug/multi/values-v24.json
deleted file mode 100644
index 4d202de9baa1fdc0fddcd3df5b177ee0799416d5..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-v24.json
+++ /dev/null
@@ -1,121 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-v24/values-v24.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 156,
-                    "endOffset": 207
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v24/values-v24.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 156,
-                        "endOffset": 207
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 212,
-                    "endColumn": 134,
-                    "endOffset": 342
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v24/values-v24.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 212,
-                        "endColumn": 134,
-                        "endOffset": 342
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 347,
-                    "endColumn": 68,
-                    "endOffset": 411
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v24/values-v24.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 347,
-                        "endColumn": 68,
-                        "endOffset": 411
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 416,
-                    "endColumn": 63,
-                    "endOffset": 475
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v24/values-v24.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 416,
-                        "endColumn": 63,
-                        "endOffset": 475
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 480,
-                    "endColumn": 68,
-                    "endOffset": 544
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v24/values-v24.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 480,
-                        "endColumn": 68,
-                        "endOffset": 544
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 549,
-                    "endColumn": 69,
-                    "endOffset": 614
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v24/values-v24.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 549,
-                        "endColumn": 69,
-                        "endOffset": 614
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-v25.json b/android/.build/intermediates/blame/res/debug/multi/values-v25.json
deleted file mode 100644
index 3ffbdfc607a077b0069d48627c147a86b4be732f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-v25.json
+++ /dev/null
@@ -1,87 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-v25/values-v25.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 70,
-                    "endOffset": 121
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v25/values-v25.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 70,
-                        "endOffset": 121
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 126,
-                    "endColumn": 82,
-                    "endOffset": 204
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v25/values-v25.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 126,
-                        "endColumn": 82,
-                        "endOffset": 204
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 209,
-                    "endLine": 5,
-                    "endColumn": 12,
-                    "endOffset": 303
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v25/values-v25.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 209,
-                        "endLine": 5,
-                        "endColumn": 12,
-                        "endOffset": 303
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 308,
-                    "endLine": 7,
-                    "endColumn": 12,
-                    "endOffset": 414
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v25/values-v25.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 308,
-                        "endLine": 7,
-                        "endColumn": 12,
-                        "endOffset": 414
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-vi.json b/android/.build/intermediates/blame/res/debug/multi/values-vi.json
deleted file mode 100644
index 3e03967d2bf6ca5564631cb2a43bc5a208999406..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-vi.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 113,
-                    "endOffset": 214
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 113,
-                        "endOffset": 164
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 219,
-                    "endColumn": 107,
-                    "endOffset": 322
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 169,
-                        "endColumn": 107,
-                        "endOffset": 272
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 327,
-                    "endColumn": 122,
-                    "endOffset": 445
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 277,
-                        "endColumn": 122,
-                        "endOffset": 395
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 450,
-                    "endColumn": 107,
-                    "endOffset": 553
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 400,
-                        "endColumn": 107,
-                        "endOffset": 503
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 558,
-                    "endColumn": 108,
-                    "endOffset": 662
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 508,
-                        "endColumn": 108,
-                        "endOffset": 612
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 667,
-                    "endColumn": 83,
-                    "endOffset": 746
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 617,
-                        "endColumn": 83,
-                        "endOffset": 696
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 751,
-                    "endColumn": 102,
-                    "endOffset": 849
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 701,
-                        "endColumn": 102,
-                        "endOffset": 799
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 854,
-                    "endColumn": 118,
-                    "endOffset": 968
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 804,
-                        "endColumn": 118,
-                        "endOffset": 918
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 973,
-                    "endColumn": 76,
-                    "endOffset": 1045
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 923,
-                        "endColumn": 76,
-                        "endOffset": 995
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1050,
-                    "endColumn": 76,
-                    "endOffset": 1122
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1000,
-                        "endColumn": 76,
-                        "endOffset": 1072
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1127,
-                    "endColumn": 83,
-                    "endOffset": 1206
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1077,
-                        "endColumn": 83,
-                        "endOffset": 1156
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1211,
-                    "endColumn": 103,
-                    "endOffset": 1310
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1161,
-                        "endColumn": 103,
-                        "endOffset": 1260
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1315,
-                    "endColumn": 108,
-                    "endOffset": 1419
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1265,
-                        "endColumn": 108,
-                        "endOffset": 1369
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1424,
-                    "endColumn": 100,
-                    "endOffset": 1520
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1374,
-                        "endColumn": 100,
-                        "endOffset": 1470
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1525,
-                    "endColumn": 104,
-                    "endOffset": 1625
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1475,
-                        "endColumn": 104,
-                        "endOffset": 1575
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1630,
-                    "endColumn": 113,
-                    "endOffset": 1739
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1580,
-                        "endColumn": 113,
-                        "endOffset": 1689
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1744,
-                    "endColumn": 104,
-                    "endOffset": 1844
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1694,
-                        "endColumn": 104,
-                        "endOffset": 1794
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1849,
-                    "endColumn": 119,
-                    "endOffset": 1964
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1799,
-                        "endColumn": 119,
-                        "endOffset": 1914
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1969,
-                    "endColumn": 98,
-                    "endOffset": 2063
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1919,
-                        "endColumn": 98,
-                        "endOffset": 2013
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2068,
-                    "endColumn": 103,
-                    "endOffset": 2167
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 99,
-                        "endOffset": 382
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2172,
-                    "endColumn": 193,
-                    "endOffset": 2361
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 383,
-                        "endColumn": 193,
-                        "endOffset": 576
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2366,
-                    "endColumn": 126,
-                    "endOffset": 2488
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 577,
-                        "endColumn": 122,
-                        "endOffset": 699
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2493,
-                    "endColumn": 108,
-                    "endOffset": 2597
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 700,
-                        "endColumn": 104,
-                        "endOffset": 804
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2602,
-                    "endColumn": 223,
-                    "endOffset": 2821
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 805,
-                        "endColumn": 223,
-                        "endOffset": 1028
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2826,
-                    "endColumn": 131,
-                    "endOffset": 2953
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1029,
-                        "endColumn": 127,
-                        "endOffset": 1156
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2958,
-                    "endColumn": 132,
-                    "endOffset": 3086
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1157,
-                        "endColumn": 128,
-                        "endOffset": 1285
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3091,
-                    "endColumn": 194,
-                    "endOffset": 3281
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 194,
-                        "endOffset": 479
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3286,
-                    "endColumn": 239,
-                    "endOffset": 3521
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1286,
-                        "endColumn": 239,
-                        "endOffset": 1525
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3526,
-                    "endColumn": 108,
-                    "endOffset": 3630
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1526,
-                        "endColumn": 104,
-                        "endOffset": 1630
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3635,
-                    "endColumn": 191,
-                    "endOffset": 3822
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1631,
-                        "endColumn": 191,
-                        "endOffset": 1822
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3827,
-                    "endColumn": 131,
-                    "endOffset": 3954
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1823,
-                        "endColumn": 127,
-                        "endOffset": 1950
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3959,
-                    "endColumn": 217,
-                    "endOffset": 4172
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1951,
-                        "endColumn": 217,
-                        "endOffset": 2168
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4177,
-                    "endColumn": 178,
-                    "endOffset": 4351
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2169,
-                        "endColumn": 174,
-                        "endOffset": 2343
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4356,
-                    "endColumn": 97,
-                    "endOffset": 4449
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2344,
-                        "endColumn": 93,
-                        "endOffset": 2437
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4454,
-                    "endColumn": 93,
-                    "endOffset": 4543
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2438,
-                        "endColumn": 89,
-                        "endOffset": 2527
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4548,
-                    "endColumn": 109,
-                    "endOffset": 4653
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2528,
-                        "endColumn": 105,
-                        "endOffset": 2633
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4658,
-                    "endColumn": 83,
-                    "endOffset": 4737
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2018,
-                        "endColumn": 83,
-                        "endOffset": 2097
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4742,
-                    "endColumn": 100,
-                    "endOffset": 4838
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2102,
-                        "endColumn": 100,
-                        "endOffset": 2198
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-w820dp-v13.json b/android/.build/intermediates/blame/res/debug/multi/values-w820dp-v13.json
deleted file mode 100644
index fdcff2f3688dedf95c1e56fa9cec30e188641867..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-w820dp-v13.json
+++ /dev/null
@@ -1,26 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 57,
-                    "endOffset": 108
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-w820dp/dimens.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 291,
-                        "endColumn": 57,
-                        "endOffset": 344
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-xlarge-v4.json b/android/.build/intermediates/blame/res/debug/multi/values-xlarge-v4.json
deleted file mode 100644
index da7b6eb0af7f0def8267f25aacc3681ea50f6165..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-xlarge-v4.json
+++ /dev/null
@@ -1,121 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 55,
-                    "endColumn": 70,
-                    "endOffset": 121
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-xlarge-v4/values-xlarge-v4.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 70,
-                        "endOffset": 121
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 126,
-                    "endColumn": 70,
-                    "endOffset": 192
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-xlarge-v4/values-xlarge-v4.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 126,
-                        "endColumn": 70,
-                        "endOffset": 192
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 197,
-                    "endColumn": 69,
-                    "endOffset": 262
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-xlarge-v4/values-xlarge-v4.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 197,
-                        "endColumn": 69,
-                        "endOffset": 262
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 267,
-                    "endColumn": 69,
-                    "endOffset": 332
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-xlarge-v4/values-xlarge-v4.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 267,
-                        "endColumn": 69,
-                        "endOffset": 332
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 337,
-                    "endColumn": 67,
-                    "endOffset": 400
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-xlarge-v4/values-xlarge-v4.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 337,
-                        "endColumn": 67,
-                        "endOffset": 400
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 405,
-                    "endColumn": 67,
-                    "endOffset": 468
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-xlarge-v4/values-xlarge-v4.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 405,
-                        "endColumn": 67,
-                        "endOffset": 468
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-zh-rCN.json b/android/.build/intermediates/blame/res/debug/multi/values-zh-rCN.json
deleted file mode 100644
index 150402af823d5f917301e0da559c942dfbbe004e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-zh-rCN.json
+++ /dev/null
@@ -1,786 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 95,
-                    "endOffset": 196
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 95,
-                        "endOffset": 146
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 201,
-                    "endColumn": 106,
-                    "endOffset": 303
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 151,
-                        "endColumn": 106,
-                        "endOffset": 253
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 308,
-                    "endColumn": 122,
-                    "endOffset": 426
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 258,
-                        "endColumn": 122,
-                        "endOffset": 376
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 431,
-                    "endColumn": 94,
-                    "endOffset": 521
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 381,
-                        "endColumn": 94,
-                        "endOffset": 471
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 526,
-                    "endColumn": 99,
-                    "endOffset": 621
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 476,
-                        "endColumn": 99,
-                        "endOffset": 571
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 626,
-                    "endColumn": 81,
-                    "endOffset": 703
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 576,
-                        "endColumn": 81,
-                        "endOffset": 653
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 708,
-                    "endColumn": 96,
-                    "endOffset": 800
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 658,
-                        "endColumn": 96,
-                        "endOffset": 750
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 805,
-                    "endColumn": 105,
-                    "endOffset": 906
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 755,
-                        "endColumn": 105,
-                        "endOffset": 856
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 911,
-                    "endColumn": 75,
-                    "endOffset": 982
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 861,
-                        "endColumn": 75,
-                        "endOffset": 932
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 987,
-                    "endColumn": 75,
-                    "endOffset": 1058
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 937,
-                        "endColumn": 75,
-                        "endOffset": 1008
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1063,
-                    "endColumn": 77,
-                    "endOffset": 1136
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1013,
-                        "endColumn": 77,
-                        "endOffset": 1086
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1141,
-                    "endColumn": 95,
-                    "endOffset": 1232
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1091,
-                        "endColumn": 95,
-                        "endOffset": 1182
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1237,
-                    "endColumn": 95,
-                    "endOffset": 1328
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1187,
-                        "endColumn": 95,
-                        "endOffset": 1278
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1333,
-                    "endColumn": 94,
-                    "endOffset": 1423
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1283,
-                        "endColumn": 94,
-                        "endOffset": 1373
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1428,
-                    "endColumn": 96,
-                    "endOffset": 1520
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1378,
-                        "endColumn": 96,
-                        "endOffset": 1470
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1525,
-                    "endColumn": 94,
-                    "endOffset": 1615
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1475,
-                        "endColumn": 94,
-                        "endOffset": 1565
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1620,
-                    "endColumn": 97,
-                    "endOffset": 1713
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1570,
-                        "endColumn": 97,
-                        "endOffset": 1663
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1718,
-                    "endColumn": 111,
-                    "endOffset": 1825
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1668,
-                        "endColumn": 111,
-                        "endOffset": 1775
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1830,
-                    "endColumn": 93,
-                    "endOffset": 1919
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1780,
-                        "endColumn": 93,
-                        "endOffset": 1869
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 1924,
-                    "endColumn": 102,
-                    "endOffset": 2022
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 287,
-                        "endColumn": 98,
-                        "endOffset": 385
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2027,
-                    "endColumn": 160,
-                    "endOffset": 2183
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 386,
-                        "endColumn": 160,
-                        "endOffset": 546
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2188,
-                    "endColumn": 116,
-                    "endOffset": 2300
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 547,
-                        "endColumn": 112,
-                        "endOffset": 659
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2305,
-                    "endColumn": 103,
-                    "endOffset": 2404
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 660,
-                        "endColumn": 99,
-                        "endOffset": 759
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2409,
-                    "endColumn": 163,
-                    "endOffset": 2568
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 760,
-                        "endColumn": 163,
-                        "endOffset": 923
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2573,
-                    "endColumn": 117,
-                    "endOffset": 2686
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 924,
-                        "endColumn": 113,
-                        "endOffset": 1037
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2691,
-                    "endColumn": 120,
-                    "endOffset": 2807
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1038,
-                        "endColumn": 116,
-                        "endOffset": 1154
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 2812,
-                    "endColumn": 157,
-                    "endOffset": 2965
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 289,
-                        "endColumn": 157,
-                        "endOffset": 446
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 2970,
-                    "endColumn": 166,
-                    "endOffset": 3132
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1155,
-                        "endColumn": 166,
-                        "endOffset": 1321
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3137,
-                    "endColumn": 102,
-                    "endOffset": 3235
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1322,
-                        "endColumn": 98,
-                        "endOffset": 1420
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3240,
-                    "endColumn": 160,
-                    "endOffset": 3396
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1421,
-                        "endColumn": 160,
-                        "endOffset": 1581
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3401,
-                    "endColumn": 116,
-                    "endOffset": 3513
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1582,
-                        "endColumn": 112,
-                        "endOffset": 1694
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3518,
-                    "endColumn": 162,
-                    "endOffset": 3676
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1695,
-                        "endColumn": 162,
-                        "endOffset": 1857
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 3681,
-                    "endColumn": 137,
-                    "endOffset": 3814
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 1858,
-                        "endColumn": 133,
-                        "endOffset": 1991
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 3819,
-                    "endColumn": 85,
-                    "endOffset": 3900
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 1992,
-                        "endColumn": 81,
-                        "endOffset": 2073
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 3905,
-                    "endColumn": 86,
-                    "endOffset": 3987
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2074,
-                        "endColumn": 82,
-                        "endOffset": 2156
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 3992,
-                    "endColumn": 102,
-                    "endOffset": 4090
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2157,
-                        "endColumn": 98,
-                        "endOffset": 2255
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4095,
-                    "endColumn": 66,
-                    "endOffset": 4157
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-zh-rCN/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 207,
-                        "endColumn": 66,
-                        "endOffset": 269
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4162,
-                    "endColumn": 73,
-                    "endOffset": 4231
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-zh-rCN/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 133,
-                        "endColumn": 73,
-                        "endOffset": 202
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 4236,
-                    "endColumn": 77,
-                    "endOffset": 4309
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-zh-rCN/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 77,
-                        "endOffset": 128
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 41,
-                    "startColumn": 4,
-                    "startOffset": 4314,
-                    "endColumn": 77,
-                    "endOffset": 4387
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1874,
-                        "endColumn": 77,
-                        "endOffset": 1947
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 4392,
-                    "endColumn": 100,
-                    "endOffset": 4488
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 1952,
-                        "endColumn": 100,
-                        "endOffset": 2048
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-zh-rHK.json b/android/.build/intermediates/blame/res/debug/multi/values-zh-rHK.json
deleted file mode 100644
index 4622b29a0270dc234f1dd8f3ef2a34f53f83e7dd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-zh-rHK.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 94,
-                    "endOffset": 195
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 94,
-                        "endOffset": 145
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 200,
-                    "endColumn": 106,
-                    "endOffset": 302
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 150,
-                        "endColumn": 106,
-                        "endOffset": 252
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 307,
-                    "endColumn": 122,
-                    "endOffset": 425
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 257,
-                        "endColumn": 122,
-                        "endOffset": 375
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 430,
-                    "endColumn": 92,
-                    "endOffset": 518
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 380,
-                        "endColumn": 92,
-                        "endOffset": 468
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 523,
-                    "endColumn": 99,
-                    "endOffset": 618
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 473,
-                        "endColumn": 99,
-                        "endOffset": 568
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 623,
-                    "endColumn": 81,
-                    "endOffset": 700
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 573,
-                        "endColumn": 81,
-                        "endOffset": 650
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 705,
-                    "endColumn": 96,
-                    "endOffset": 797
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 655,
-                        "endColumn": 96,
-                        "endOffset": 747
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 802,
-                    "endColumn": 107,
-                    "endOffset": 905
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 752,
-                        "endColumn": 107,
-                        "endOffset": 855
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 910,
-                    "endColumn": 75,
-                    "endOffset": 981
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 860,
-                        "endColumn": 75,
-                        "endOffset": 931
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 986,
-                    "endColumn": 75,
-                    "endOffset": 1057
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 936,
-                        "endColumn": 75,
-                        "endOffset": 1007
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1062,
-                    "endColumn": 77,
-                    "endOffset": 1135
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1012,
-                        "endColumn": 77,
-                        "endOffset": 1085
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1140,
-                    "endColumn": 95,
-                    "endOffset": 1231
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1090,
-                        "endColumn": 95,
-                        "endOffset": 1181
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1236,
-                    "endColumn": 95,
-                    "endOffset": 1327
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1186,
-                        "endColumn": 95,
-                        "endOffset": 1277
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1332,
-                    "endColumn": 94,
-                    "endOffset": 1422
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1282,
-                        "endColumn": 94,
-                        "endOffset": 1372
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1427,
-                    "endColumn": 96,
-                    "endOffset": 1519
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1377,
-                        "endColumn": 96,
-                        "endOffset": 1469
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1524,
-                    "endColumn": 94,
-                    "endOffset": 1614
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1474,
-                        "endColumn": 94,
-                        "endOffset": 1564
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1619,
-                    "endColumn": 97,
-                    "endOffset": 1712
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1569,
-                        "endColumn": 97,
-                        "endOffset": 1662
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1717,
-                    "endColumn": 112,
-                    "endOffset": 1825
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1667,
-                        "endColumn": 112,
-                        "endOffset": 1775
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1830,
-                    "endColumn": 93,
-                    "endOffset": 1919
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1780,
-                        "endColumn": 93,
-                        "endOffset": 1869
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 1924,
-                    "endColumn": 102,
-                    "endOffset": 2022
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 287,
-                        "endColumn": 98,
-                        "endOffset": 385
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2027,
-                    "endColumn": 159,
-                    "endOffset": 2182
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 386,
-                        "endColumn": 159,
-                        "endOffset": 545
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2187,
-                    "endColumn": 116,
-                    "endOffset": 2299
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 546,
-                        "endColumn": 112,
-                        "endOffset": 658
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2304,
-                    "endColumn": 103,
-                    "endOffset": 2403
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 659,
-                        "endColumn": 99,
-                        "endOffset": 758
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2408,
-                    "endColumn": 165,
-                    "endOffset": 2569
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 759,
-                        "endColumn": 165,
-                        "endOffset": 924
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2574,
-                    "endColumn": 117,
-                    "endOffset": 2687
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 925,
-                        "endColumn": 113,
-                        "endOffset": 1038
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2692,
-                    "endColumn": 121,
-                    "endOffset": 2809
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1039,
-                        "endColumn": 117,
-                        "endOffset": 1156
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 2814,
-                    "endColumn": 166,
-                    "endOffset": 2976
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 289,
-                        "endColumn": 166,
-                        "endOffset": 455
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 2981,
-                    "endColumn": 168,
-                    "endOffset": 3145
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1157,
-                        "endColumn": 168,
-                        "endOffset": 1325
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3150,
-                    "endColumn": 102,
-                    "endOffset": 3248
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1326,
-                        "endColumn": 98,
-                        "endOffset": 1424
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3253,
-                    "endColumn": 159,
-                    "endOffset": 3408
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1425,
-                        "endColumn": 159,
-                        "endOffset": 1584
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3413,
-                    "endColumn": 116,
-                    "endOffset": 3525
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1585,
-                        "endColumn": 112,
-                        "endOffset": 1697
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3530,
-                    "endColumn": 165,
-                    "endOffset": 3691
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1698,
-                        "endColumn": 165,
-                        "endOffset": 1863
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 3696,
-                    "endColumn": 137,
-                    "endOffset": 3829
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 1864,
-                        "endColumn": 133,
-                        "endOffset": 1997
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 3834,
-                    "endColumn": 84,
-                    "endOffset": 3914
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 1998,
-                        "endColumn": 80,
-                        "endOffset": 2078
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 3919,
-                    "endColumn": 86,
-                    "endOffset": 4001
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2079,
-                        "endColumn": 82,
-                        "endOffset": 2161
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4006,
-                    "endColumn": 100,
-                    "endOffset": 4102
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2162,
-                        "endColumn": 96,
-                        "endOffset": 2258
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4107,
-                    "endColumn": 77,
-                    "endOffset": 4180
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1874,
-                        "endColumn": 77,
-                        "endOffset": 1947
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4185,
-                    "endColumn": 101,
-                    "endOffset": 4282
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 1952,
-                        "endColumn": 101,
-                        "endOffset": 2049
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-zh-rTW.json b/android/.build/intermediates/blame/res/debug/multi/values-zh-rTW.json
deleted file mode 100644
index a4cdbf1a628bab146666426c90cf42a072a3a355..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-zh-rTW.json
+++ /dev/null
@@ -1,786 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 94,
-                    "endOffset": 195
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 94,
-                        "endOffset": 145
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 200,
-                    "endColumn": 106,
-                    "endOffset": 302
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 150,
-                        "endColumn": 106,
-                        "endOffset": 252
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 307,
-                    "endColumn": 122,
-                    "endOffset": 425
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 257,
-                        "endColumn": 122,
-                        "endOffset": 375
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 430,
-                    "endColumn": 92,
-                    "endOffset": 518
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 380,
-                        "endColumn": 92,
-                        "endOffset": 468
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 523,
-                    "endColumn": 99,
-                    "endOffset": 618
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 473,
-                        "endColumn": 99,
-                        "endOffset": 568
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 623,
-                    "endColumn": 81,
-                    "endOffset": 700
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 573,
-                        "endColumn": 81,
-                        "endOffset": 650
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 705,
-                    "endColumn": 96,
-                    "endOffset": 797
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 655,
-                        "endColumn": 96,
-                        "endOffset": 747
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 802,
-                    "endColumn": 107,
-                    "endOffset": 905
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 752,
-                        "endColumn": 107,
-                        "endOffset": 855
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 910,
-                    "endColumn": 75,
-                    "endOffset": 981
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 860,
-                        "endColumn": 75,
-                        "endOffset": 931
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 986,
-                    "endColumn": 75,
-                    "endOffset": 1057
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 936,
-                        "endColumn": 75,
-                        "endOffset": 1007
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1062,
-                    "endColumn": 77,
-                    "endOffset": 1135
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1012,
-                        "endColumn": 77,
-                        "endOffset": 1085
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1140,
-                    "endColumn": 95,
-                    "endOffset": 1231
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1090,
-                        "endColumn": 95,
-                        "endOffset": 1181
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1236,
-                    "endColumn": 95,
-                    "endOffset": 1327
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1186,
-                        "endColumn": 95,
-                        "endOffset": 1277
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1332,
-                    "endColumn": 94,
-                    "endOffset": 1422
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1282,
-                        "endColumn": 94,
-                        "endOffset": 1372
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1427,
-                    "endColumn": 96,
-                    "endOffset": 1519
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1377,
-                        "endColumn": 96,
-                        "endOffset": 1469
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1524,
-                    "endColumn": 94,
-                    "endOffset": 1614
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1474,
-                        "endColumn": 94,
-                        "endOffset": 1564
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1619,
-                    "endColumn": 99,
-                    "endOffset": 1714
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1569,
-                        "endColumn": 99,
-                        "endOffset": 1664
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1719,
-                    "endColumn": 112,
-                    "endOffset": 1827
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1669,
-                        "endColumn": 112,
-                        "endOffset": 1777
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1832,
-                    "endColumn": 93,
-                    "endOffset": 1921
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1782,
-                        "endColumn": 93,
-                        "endOffset": 1871
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 1926,
-                    "endColumn": 102,
-                    "endOffset": 2024
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 287,
-                        "endColumn": 98,
-                        "endOffset": 385
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2029,
-                    "endColumn": 159,
-                    "endOffset": 2184
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 386,
-                        "endColumn": 159,
-                        "endOffset": 545
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2189,
-                    "endColumn": 116,
-                    "endOffset": 2301
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 546,
-                        "endColumn": 112,
-                        "endOffset": 658
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2306,
-                    "endColumn": 103,
-                    "endOffset": 2405
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 659,
-                        "endColumn": 99,
-                        "endOffset": 758
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2410,
-                    "endColumn": 165,
-                    "endOffset": 2571
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 759,
-                        "endColumn": 165,
-                        "endOffset": 924
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2576,
-                    "endColumn": 117,
-                    "endOffset": 2689
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 925,
-                        "endColumn": 113,
-                        "endOffset": 1038
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2694,
-                    "endColumn": 123,
-                    "endOffset": 2813
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1039,
-                        "endColumn": 119,
-                        "endOffset": 1158
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 2818,
-                    "endColumn": 161,
-                    "endOffset": 2975
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 289,
-                        "endColumn": 161,
-                        "endOffset": 450
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 2980,
-                    "endColumn": 168,
-                    "endOffset": 3144
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1159,
-                        "endColumn": 168,
-                        "endOffset": 1327
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3149,
-                    "endColumn": 102,
-                    "endOffset": 3247
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1328,
-                        "endColumn": 98,
-                        "endOffset": 1426
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3252,
-                    "endColumn": 159,
-                    "endOffset": 3407
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1427,
-                        "endColumn": 159,
-                        "endOffset": 1586
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3412,
-                    "endColumn": 116,
-                    "endOffset": 3524
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1587,
-                        "endColumn": 112,
-                        "endOffset": 1699
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3529,
-                    "endColumn": 160,
-                    "endOffset": 3685
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1700,
-                        "endColumn": 160,
-                        "endOffset": 1860
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 3690,
-                    "endColumn": 137,
-                    "endOffset": 3823
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 1861,
-                        "endColumn": 133,
-                        "endOffset": 1994
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 3828,
-                    "endColumn": 85,
-                    "endOffset": 3909
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 1995,
-                        "endColumn": 81,
-                        "endOffset": 2076
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 3914,
-                    "endColumn": 86,
-                    "endOffset": 3996
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2077,
-                        "endColumn": 82,
-                        "endOffset": 2159
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4001,
-                    "endColumn": 102,
-                    "endOffset": 4099
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2160,
-                        "endColumn": 98,
-                        "endOffset": 2258
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4104,
-                    "endColumn": 66,
-                    "endOffset": 4166
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-zh-rTW/strings.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 207,
-                        "endColumn": 66,
-                        "endOffset": 269
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4171,
-                    "endColumn": 73,
-                    "endOffset": 4240
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-zh-rTW/strings.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 133,
-                        "endColumn": 73,
-                        "endOffset": 202
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 4245,
-                    "endColumn": 77,
-                    "endOffset": 4318
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-zh-rTW/strings.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 77,
-                        "endOffset": 128
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 41,
-                    "startColumn": 4,
-                    "startOffset": 4323,
-                    "endColumn": 77,
-                    "endOffset": 4396
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 1876,
-                        "endColumn": 77,
-                        "endOffset": 1949
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 4401,
-                    "endColumn": 100,
-                    "endOffset": 4497
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 1954,
-                        "endColumn": 100,
-                        "endOffset": 2050
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values-zu.json b/android/.build/intermediates/blame/res/debug/multi/values-zu.json
deleted file mode 100644
index f18d18f15deba8ee0b2df194d73ba328e8eed863..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values-zu.json
+++ /dev/null
@@ -1,729 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 105,
-                    "endColumn": 107,
-                    "endOffset": 208
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 2,
-                        "startColumn": 4,
-                        "startOffset": 55,
-                        "endColumn": 107,
-                        "endOffset": 158
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 3,
-                    "startColumn": 4,
-                    "startOffset": 213,
-                    "endColumn": 107,
-                    "endOffset": 316
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 3,
-                        "startColumn": 4,
-                        "startOffset": 163,
-                        "endColumn": 107,
-                        "endOffset": 266
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 4,
-                    "startColumn": 4,
-                    "startOffset": 321,
-                    "endColumn": 122,
-                    "endOffset": 439
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 4,
-                        "startOffset": 271,
-                        "endColumn": 122,
-                        "endOffset": 389
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 444,
-                    "endColumn": 106,
-                    "endOffset": 546
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 4,
-                        "startOffset": 394,
-                        "endColumn": 106,
-                        "endOffset": 496
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 6,
-                    "startColumn": 4,
-                    "startOffset": 551,
-                    "endColumn": 113,
-                    "endOffset": 660
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 4,
-                        "startOffset": 501,
-                        "endColumn": 113,
-                        "endOffset": 610
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 7,
-                    "startColumn": 4,
-                    "startOffset": 665,
-                    "endColumn": 87,
-                    "endOffset": 748
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 4,
-                        "startOffset": 615,
-                        "endColumn": 87,
-                        "endOffset": 698
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 753,
-                    "endColumn": 102,
-                    "endOffset": 851
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 4,
-                        "startOffset": 703,
-                        "endColumn": 102,
-                        "endOffset": 801
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 9,
-                    "startColumn": 4,
-                    "startOffset": 856,
-                    "endColumn": 126,
-                    "endOffset": 978
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 4,
-                        "startOffset": 806,
-                        "endColumn": 126,
-                        "endOffset": 928
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 10,
-                    "startColumn": 4,
-                    "startOffset": 983,
-                    "endColumn": 79,
-                    "endOffset": 1058
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 4,
-                        "startOffset": 933,
-                        "endColumn": 79,
-                        "endOffset": 1008
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 1063,
-                    "endColumn": 79,
-                    "endOffset": 1138
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 4,
-                        "startOffset": 1013,
-                        "endColumn": 79,
-                        "endOffset": 1088
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 12,
-                    "startColumn": 4,
-                    "startOffset": 1143,
-                    "endColumn": 85,
-                    "endOffset": 1224
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 4,
-                        "startOffset": 1093,
-                        "endColumn": 85,
-                        "endOffset": 1174
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 13,
-                    "startColumn": 4,
-                    "startOffset": 1229,
-                    "endColumn": 103,
-                    "endOffset": 1328
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 4,
-                        "startOffset": 1179,
-                        "endColumn": 103,
-                        "endOffset": 1278
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 1333,
-                    "endColumn": 105,
-                    "endOffset": 1434
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 4,
-                        "startOffset": 1283,
-                        "endColumn": 105,
-                        "endOffset": 1384
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 15,
-                    "startColumn": 4,
-                    "startOffset": 1439,
-                    "endColumn": 97,
-                    "endOffset": 1532
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 4,
-                        "startOffset": 1389,
-                        "endColumn": 97,
-                        "endOffset": 1482
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 16,
-                    "startColumn": 4,
-                    "startOffset": 1537,
-                    "endColumn": 106,
-                    "endOffset": 1639
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 4,
-                        "startOffset": 1487,
-                        "endColumn": 106,
-                        "endOffset": 1589
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 1644,
-                    "endColumn": 105,
-                    "endOffset": 1745
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 4,
-                        "startOffset": 1594,
-                        "endColumn": 105,
-                        "endOffset": 1695
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 1750,
-                    "endColumn": 105,
-                    "endOffset": 1851
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 4,
-                        "startOffset": 1700,
-                        "endColumn": 105,
-                        "endOffset": 1801
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 1856,
-                    "endColumn": 119,
-                    "endOffset": 1971
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 4,
-                        "startOffset": 1806,
-                        "endColumn": 119,
-                        "endOffset": 1921
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 1976,
-                    "endColumn": 95,
-                    "endOffset": 2067
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 20,
-                        "startColumn": 4,
-                        "startOffset": 1926,
-                        "endColumn": 95,
-                        "endOffset": 2017
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 2072,
-                    "endColumn": 112,
-                    "endOffset": 2180
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 283,
-                        "endColumn": 108,
-                        "endOffset": 391
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 2185,
-                    "endColumn": 207,
-                    "endOffset": 2388
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 5,
-                        "startColumn": 0,
-                        "startOffset": 392,
-                        "endColumn": 207,
-                        "endOffset": 599
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 2393,
-                    "endColumn": 136,
-                    "endOffset": 2525
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 6,
-                        "startColumn": 0,
-                        "startOffset": 600,
-                        "endColumn": 132,
-                        "endOffset": 732
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 2530,
-                    "endColumn": 105,
-                    "endOffset": 2631
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 7,
-                        "startColumn": 0,
-                        "startOffset": 733,
-                        "endColumn": 101,
-                        "endOffset": 834
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 2636,
-                    "endColumn": 226,
-                    "endOffset": 2858
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 835,
-                        "endColumn": 226,
-                        "endOffset": 1061
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 2863,
-                    "endColumn": 130,
-                    "endOffset": 2989
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 9,
-                        "startColumn": 0,
-                        "startOffset": 1062,
-                        "endColumn": 126,
-                        "endOffset": 1188
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 2994,
-                    "endColumn": 138,
-                    "endOffset": 3128
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 10,
-                        "startColumn": 0,
-                        "startOffset": 1189,
-                        "endColumn": 134,
-                        "endOffset": 1323
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 3133,
-                    "endColumn": 190,
-                    "endOffset": 3319
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 4,
-                        "startColumn": 0,
-                        "startOffset": 285,
-                        "endColumn": 190,
-                        "endOffset": 475
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 3324,
-                    "endColumn": 218,
-                    "endOffset": 3538
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 11,
-                        "startColumn": 0,
-                        "startOffset": 1324,
-                        "endColumn": 218,
-                        "endOffset": 1542
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 3543,
-                    "endColumn": 111,
-                    "endOffset": 3650
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 12,
-                        "startColumn": 0,
-                        "startOffset": 1543,
-                        "endColumn": 107,
-                        "endOffset": 1650
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 3655,
-                    "endColumn": 195,
-                    "endOffset": 3846
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 13,
-                        "startColumn": 0,
-                        "startOffset": 1651,
-                        "endColumn": 195,
-                        "endOffset": 1846
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 3851,
-                    "endColumn": 132,
-                    "endOffset": 3979
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 14,
-                        "startColumn": 0,
-                        "startOffset": 1847,
-                        "endColumn": 128,
-                        "endOffset": 1975
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 3984,
-                    "endColumn": 216,
-                    "endOffset": 4196
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 15,
-                        "startColumn": 0,
-                        "startOffset": 1976,
-                        "endColumn": 216,
-                        "endOffset": 2192
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 4201,
-                    "endColumn": 186,
-                    "endOffset": 4383
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 16,
-                        "startColumn": 0,
-                        "startOffset": 2193,
-                        "endColumn": 182,
-                        "endOffset": 2375
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 4388,
-                    "endColumn": 90,
-                    "endOffset": 4474
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 17,
-                        "startColumn": 0,
-                        "startOffset": 2376,
-                        "endColumn": 86,
-                        "endOffset": 2462
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 4479,
-                    "endColumn": 98,
-                    "endOffset": 4573
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 18,
-                        "startColumn": 0,
-                        "startOffset": 2463,
-                        "endColumn": 94,
-                        "endOffset": 2557
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 4578,
-                    "endColumn": 113,
-                    "endOffset": 4687
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml",
-                    "position": {
-                        "startLine": 19,
-                        "startColumn": 0,
-                        "startOffset": 2558,
-                        "endColumn": 109,
-                        "endOffset": 2667
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 4692,
-                    "endColumn": 80,
-                    "endOffset": 4768
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 21,
-                        "startColumn": 4,
-                        "startOffset": 2022,
-                        "endColumn": 80,
-                        "endOffset": 2098
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 4773,
-                    "endColumn": 100,
-                    "endOffset": 4869
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml",
-                    "position": {
-                        "startLine": 22,
-                        "startColumn": 4,
-                        "startOffset": 2103,
-                        "endColumn": 100,
-                        "endOffset": 2199
-                    }
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/multi/values.json b/android/.build/intermediates/blame/res/debug/multi/values.json
deleted file mode 100644
index c270f052533ef6bd05c264c92b6bb525b73e8e27..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/multi/values.json
+++ /dev/null
@@ -1,7240 +0,0 @@
-[
-    {
-        "outputFile": "/home/beij/code/RocketChatMobile/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml",
-        "map": [
-            {
-                "to": {
-                    "startLine": 2,
-                    "startColumn": 4,
-                    "startOffset": 150,
-                    "endLine": 4,
-                    "endColumn": 12,
-                    "endOffset": 204
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/res/values/libs.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 5,
-                    "startColumn": 4,
-                    "startOffset": 209,
-                    "endLine": 7,
-                    "endColumn": 12,
-                    "endOffset": 260
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/res/values/libs.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 8,
-                    "startColumn": 4,
-                    "startOffset": 265,
-                    "endLine": 10,
-                    "endColumn": 12,
-                    "endOffset": 314
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/res/values/libs.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 11,
-                    "startColumn": 4,
-                    "startOffset": 319,
-                    "endLine": 13,
-                    "endColumn": 13,
-                    "endOffset": 365
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/res/values/libs.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 14,
-                    "startColumn": 4,
-                    "startOffset": 370,
-                    "endLine": 16,
-                    "endColumn": 12,
-                    "endOffset": 480
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/res/values/libs.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 17,
-                    "startColumn": 4,
-                    "startOffset": 485,
-                    "endColumn": 54,
-                    "endOffset": 535
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 18,
-                    "startColumn": 4,
-                    "startOffset": 540,
-                    "endColumn": 44,
-                    "endOffset": 580
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 19,
-                    "startColumn": 4,
-                    "startOffset": 585,
-                    "endColumn": 48,
-                    "endOffset": 629
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 20,
-                    "startColumn": 4,
-                    "startOffset": 634,
-                    "endColumn": 40,
-                    "endOffset": 670
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 21,
-                    "startColumn": 4,
-                    "startOffset": 675,
-                    "endColumn": 54,
-                    "endOffset": 725
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 22,
-                    "startColumn": 4,
-                    "startOffset": 730,
-                    "endColumn": 57,
-                    "endOffset": 783
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 23,
-                    "startColumn": 4,
-                    "startOffset": 788,
-                    "endColumn": 61,
-                    "endOffset": 845
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 24,
-                    "startColumn": 4,
-                    "startOffset": 850,
-                    "endColumn": 67,
-                    "endOffset": 913
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 25,
-                    "startColumn": 4,
-                    "startOffset": 918,
-                    "endColumn": 77,
-                    "endOffset": 991
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 26,
-                    "startColumn": 4,
-                    "startOffset": 996,
-                    "endColumn": 80,
-                    "endOffset": 1072
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 27,
-                    "startColumn": 4,
-                    "startOffset": 1077,
-                    "endColumn": 60,
-                    "endOffset": 1133
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 28,
-                    "startColumn": 4,
-                    "startOffset": 1138,
-                    "endColumn": 74,
-                    "endOffset": 1208
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 29,
-                    "startColumn": 4,
-                    "startOffset": 1213,
-                    "endColumn": 75,
-                    "endOffset": 1284
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 30,
-                    "startColumn": 4,
-                    "startOffset": 1289,
-                    "endColumn": 76,
-                    "endOffset": 1361
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 31,
-                    "startColumn": 4,
-                    "startOffset": 1366,
-                    "endColumn": 77,
-                    "endOffset": 1439
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 32,
-                    "startColumn": 4,
-                    "startOffset": 1444,
-                    "endColumn": 84,
-                    "endOffset": 1524
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 33,
-                    "startColumn": 4,
-                    "startOffset": 1529,
-                    "endColumn": 81,
-                    "endOffset": 1606
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 34,
-                    "startColumn": 4,
-                    "startOffset": 1611,
-                    "endColumn": 75,
-                    "endOffset": 1682
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 35,
-                    "startColumn": 4,
-                    "startOffset": 1687,
-                    "endColumn": 75,
-                    "endOffset": 1758
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 36,
-                    "startColumn": 4,
-                    "startOffset": 1763,
-                    "endColumn": 76,
-                    "endOffset": 1835
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 37,
-                    "startColumn": 4,
-                    "startOffset": 1840,
-                    "endColumn": 77,
-                    "endOffset": 1913
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 38,
-                    "startColumn": 4,
-                    "startOffset": 1918,
-                    "endColumn": 105,
-                    "endOffset": 2019
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 39,
-                    "startColumn": 4,
-                    "startOffset": 2024,
-                    "endColumn": 105,
-                    "endOffset": 2125
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 40,
-                    "startColumn": 4,
-                    "startOffset": 2130,
-                    "endColumn": 78,
-                    "endOffset": 2204
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 41,
-                    "startColumn": 4,
-                    "startOffset": 2209,
-                    "endColumn": 79,
-                    "endOffset": 2284
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 42,
-                    "startColumn": 4,
-                    "startOffset": 2289,
-                    "endColumn": 56,
-                    "endOffset": 2341
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 43,
-                    "startColumn": 4,
-                    "startOffset": 2346,
-                    "endColumn": 57,
-                    "endOffset": 2399
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 44,
-                    "startColumn": 4,
-                    "startOffset": 2404,
-                    "endColumn": 89,
-                    "endOffset": 2489
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 45,
-                    "startColumn": 4,
-                    "startOffset": 2494,
-                    "endColumn": 79,
-                    "endOffset": 2569
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 46,
-                    "startColumn": 4,
-                    "startOffset": 2574,
-                    "endColumn": 89,
-                    "endOffset": 2659
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 47,
-                    "startColumn": 4,
-                    "startOffset": 2664,
-                    "endColumn": 89,
-                    "endOffset": 2749
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 48,
-                    "startColumn": 4,
-                    "startOffset": 2754,
-                    "endColumn": 79,
-                    "endOffset": 2829
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 49,
-                    "startColumn": 4,
-                    "startOffset": 2834,
-                    "endColumn": 80,
-                    "endOffset": 2910
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 50,
-                    "startColumn": 4,
-                    "startOffset": 2915,
-                    "endColumn": 79,
-                    "endOffset": 2990
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 51,
-                    "startColumn": 4,
-                    "startOffset": 2995,
-                    "endColumn": 79,
-                    "endOffset": 3070
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 52,
-                    "startColumn": 4,
-                    "startOffset": 3075,
-                    "endColumn": 73,
-                    "endOffset": 3144
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 53,
-                    "startColumn": 4,
-                    "startOffset": 3149,
-                    "endColumn": 74,
-                    "endOffset": 3219
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 54,
-                    "startColumn": 4,
-                    "startOffset": 3224,
-                    "endColumn": 64,
-                    "endOffset": 3284
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 55,
-                    "startColumn": 4,
-                    "startOffset": 3289,
-                    "endColumn": 65,
-                    "endOffset": 3350
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 56,
-                    "startColumn": 4,
-                    "startOffset": 3355,
-                    "endColumn": 71,
-                    "endOffset": 3422
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 57,
-                    "startColumn": 4,
-                    "startOffset": 3427,
-                    "endColumn": 72,
-                    "endOffset": 3495
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 58,
-                    "startColumn": 4,
-                    "startOffset": 3500,
-                    "endColumn": 66,
-                    "endOffset": 3562
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 59,
-                    "startColumn": 4,
-                    "startOffset": 3567,
-                    "endColumn": 67,
-                    "endOffset": 3630
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 60,
-                    "startColumn": 4,
-                    "startOffset": 3635,
-                    "endColumn": 58,
-                    "endOffset": 3689
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 61,
-                    "startColumn": 4,
-                    "startOffset": 3694,
-                    "endColumn": 58,
-                    "endOffset": 3748
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 62,
-                    "startColumn": 4,
-                    "startOffset": 3753,
-                    "endColumn": 58,
-                    "endOffset": 3807
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 63,
-                    "startColumn": 4,
-                    "startOffset": 3812,
-                    "endColumn": 58,
-                    "endOffset": 3866
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 64,
-                    "startColumn": 4,
-                    "startOffset": 3871,
-                    "endColumn": 58,
-                    "endOffset": 3925
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 65,
-                    "startColumn": 4,
-                    "startOffset": 3930,
-                    "endColumn": 53,
-                    "endOffset": 3979
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 66,
-                    "startColumn": 4,
-                    "startOffset": 3984,
-                    "endColumn": 53,
-                    "endOffset": 4033
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 67,
-                    "startColumn": 4,
-                    "startOffset": 4038,
-                    "endColumn": 52,
-                    "endOffset": 4086
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 68,
-                    "startColumn": 4,
-                    "startOffset": 4091,
-                    "endColumn": 53,
-                    "endOffset": 4140
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 69,
-                    "startColumn": 4,
-                    "startOffset": 4145,
-                    "endColumn": 53,
-                    "endOffset": 4194
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 70,
-                    "startColumn": 4,
-                    "startOffset": 4199,
-                    "endColumn": 53,
-                    "endOffset": 4248
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 71,
-                    "startColumn": 4,
-                    "startOffset": 4253,
-                    "endColumn": 53,
-                    "endOffset": 4302
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 72,
-                    "startColumn": 4,
-                    "startOffset": 4307,
-                    "endColumn": 68,
-                    "endOffset": 4371
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 73,
-                    "startColumn": 4,
-                    "startOffset": 4376,
-                    "endColumn": 62,
-                    "endOffset": 4434
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 74,
-                    "startColumn": 4,
-                    "startOffset": 4439,
-                    "endColumn": 88,
-                    "endOffset": 4523
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 75,
-                    "startColumn": 4,
-                    "startOffset": 4528,
-                    "endColumn": 73,
-                    "endOffset": 4597
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 76,
-                    "startColumn": 4,
-                    "startOffset": 4602,
-                    "endColumn": 78,
-                    "endOffset": 4676
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 77,
-                    "startColumn": 4,
-                    "startOffset": 4681,
-                    "endColumn": 72,
-                    "endOffset": 4749
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 78,
-                    "startColumn": 4,
-                    "startOffset": 4754,
-                    "endColumn": 73,
-                    "endOffset": 4823
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 79,
-                    "startColumn": 4,
-                    "startOffset": 4828,
-                    "endColumn": 70,
-                    "endOffset": 4894
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 80,
-                    "startColumn": 4,
-                    "startOffset": 4899,
-                    "endColumn": 71,
-                    "endOffset": 4966
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 81,
-                    "startColumn": 4,
-                    "startOffset": 4971,
-                    "endColumn": 71,
-                    "endOffset": 5038
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 82,
-                    "startColumn": 4,
-                    "startOffset": 5043,
-                    "endColumn": 72,
-                    "endOffset": 5111
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 83,
-                    "startColumn": 4,
-                    "startOffset": 5116,
-                    "endColumn": 56,
-                    "endOffset": 5168
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 84,
-                    "startColumn": 4,
-                    "startOffset": 5173,
-                    "endColumn": 57,
-                    "endOffset": 5226
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 85,
-                    "startColumn": 4,
-                    "startOffset": 5231,
-                    "endColumn": 72,
-                    "endOffset": 5299
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 86,
-                    "startColumn": 4,
-                    "startOffset": 5304,
-                    "endColumn": 73,
-                    "endOffset": 5373
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 87,
-                    "startColumn": 4,
-                    "startOffset": 5378,
-                    "endColumn": 73,
-                    "endOffset": 5447
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 88,
-                    "startColumn": 4,
-                    "startOffset": 5452,
-                    "endColumn": 74,
-                    "endOffset": 5522
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 89,
-                    "startColumn": 4,
-                    "startOffset": 5527,
-                    "endColumn": 71,
-                    "endOffset": 5594
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 90,
-                    "startColumn": 4,
-                    "startOffset": 5599,
-                    "endColumn": 72,
-                    "endOffset": 5667
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 91,
-                    "startColumn": 4,
-                    "startOffset": 5672,
-                    "endColumn": 69,
-                    "endOffset": 5737
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 92,
-                    "startColumn": 4,
-                    "startOffset": 5742,
-                    "endColumn": 70,
-                    "endOffset": 5808
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 248,
-                    "startColumn": 4,
-                    "startOffset": 26396,
-                    "endColumn": 68,
-                    "endOffset": 26460
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 249,
-                    "startColumn": 4,
-                    "startOffset": 26465,
-                    "endColumn": 68,
-                    "endOffset": 26529
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 250,
-                    "startColumn": 4,
-                    "startOffset": 26534,
-                    "endColumn": 69,
-                    "endOffset": 26599
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 251,
-                    "startColumn": 4,
-                    "startOffset": 26604,
-                    "endColumn": 73,
-                    "endOffset": 26673
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 252,
-                    "startColumn": 4,
-                    "startOffset": 26678,
-                    "endColumn": 75,
-                    "endOffset": 26749
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 253,
-                    "startColumn": 4,
-                    "startOffset": 26754,
-                    "endColumn": 63,
-                    "endOffset": 26813
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 254,
-                    "startColumn": 4,
-                    "startOffset": 26818,
-                    "endColumn": 76,
-                    "endOffset": 26890
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 255,
-                    "startColumn": 4,
-                    "startOffset": 26895,
-                    "endColumn": 75,
-                    "endOffset": 26966
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 256,
-                    "startColumn": 4,
-                    "startOffset": 26971,
-                    "endColumn": 76,
-                    "endOffset": 27043
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 257,
-                    "startColumn": 4,
-                    "startOffset": 27048,
-                    "endColumn": 63,
-                    "endOffset": 27107
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 258,
-                    "startColumn": 4,
-                    "startOffset": 27112,
-                    "endColumn": 64,
-                    "endOffset": 27172
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 259,
-                    "startColumn": 4,
-                    "startOffset": 27177,
-                    "endColumn": 68,
-                    "endOffset": 27241
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 260,
-                    "startColumn": 4,
-                    "startOffset": 27246,
-                    "endColumn": 76,
-                    "endOffset": 27318
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 261,
-                    "startColumn": 4,
-                    "startOffset": 27323,
-                    "endColumn": 74,
-                    "endOffset": 27393
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 262,
-                    "startColumn": 4,
-                    "startOffset": 27398,
-                    "endColumn": 68,
-                    "endOffset": 27462
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 263,
-                    "startColumn": 4,
-                    "startOffset": 27467,
-                    "endColumn": 67,
-                    "endOffset": 27530
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 264,
-                    "startColumn": 4,
-                    "startOffset": 27535,
-                    "endColumn": 76,
-                    "endOffset": 27607
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 265,
-                    "startColumn": 4,
-                    "startOffset": 27612,
-                    "endColumn": 65,
-                    "endOffset": 27673
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 266,
-                    "startColumn": 4,
-                    "startOffset": 27678,
-                    "endColumn": 96,
-                    "endOffset": 27770
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 267,
-                    "startColumn": 4,
-                    "startOffset": 27775,
-                    "endColumn": 64,
-                    "endOffset": 27835
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 268,
-                    "startColumn": 4,
-                    "startOffset": 27840,
-                    "endColumn": 68,
-                    "endOffset": 27904
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 269,
-                    "startColumn": 4,
-                    "startOffset": 27909,
-                    "endColumn": 98,
-                    "endOffset": 28003
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 270,
-                    "startColumn": 4,
-                    "startOffset": 28008,
-                    "endColumn": 70,
-                    "endOffset": 28074
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 271,
-                    "startColumn": 4,
-                    "startOffset": 28079,
-                    "endColumn": 58,
-                    "endOffset": 28133
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 272,
-                    "startColumn": 4,
-                    "startOffset": 28138,
-                    "endColumn": 57,
-                    "endOffset": 28191
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 273,
-                    "startColumn": 4,
-                    "startOffset": 28196,
-                    "endColumn": 56,
-                    "endOffset": 28248
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 274,
-                    "startColumn": 4,
-                    "startOffset": 28253,
-                    "endColumn": 58,
-                    "endOffset": 28307
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 275,
-                    "startColumn": 4,
-                    "startOffset": 28312,
-                    "endColumn": 70,
-                    "endOffset": 28378
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 276,
-                    "startColumn": 4,
-                    "startOffset": 28383,
-                    "endColumn": 71,
-                    "endOffset": 28450
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 277,
-                    "startColumn": 4,
-                    "startOffset": 28455,
-                    "endColumn": 71,
-                    "endOffset": 28522
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 278,
-                    "startColumn": 4,
-                    "startOffset": 28527,
-                    "endColumn": 71,
-                    "endOffset": 28594
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 279,
-                    "startColumn": 4,
-                    "startOffset": 28599,
-                    "endColumn": 71,
-                    "endOffset": 28666
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 280,
-                    "startColumn": 4,
-                    "startOffset": 28671,
-                    "endColumn": 66,
-                    "endOffset": 28733
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 281,
-                    "startColumn": 4,
-                    "startOffset": 28738,
-                    "endColumn": 67,
-                    "endOffset": 28801
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 282,
-                    "startColumn": 4,
-                    "startOffset": 28806,
-                    "endColumn": 67,
-                    "endOffset": 28869
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 283,
-                    "startColumn": 4,
-                    "startOffset": 28874,
-                    "endColumn": 58,
-                    "endOffset": 28928
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 284,
-                    "startColumn": 4,
-                    "startOffset": 28933,
-                    "endColumn": 62,
-                    "endOffset": 28991
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 285,
-                    "startColumn": 4,
-                    "startOffset": 28996,
-                    "endColumn": 63,
-                    "endOffset": 29055
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 286,
-                    "startColumn": 4,
-                    "startOffset": 29060,
-                    "endColumn": 89,
-                    "endOffset": 29145
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 287,
-                    "startColumn": 4,
-                    "startOffset": 29150,
-                    "endColumn": 90,
-                    "endOffset": 29236
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 288,
-                    "startColumn": 4,
-                    "startOffset": 29241,
-                    "endColumn": 59,
-                    "endOffset": 29296
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 289,
-                    "startColumn": 4,
-                    "startOffset": 29301,
-                    "endColumn": 65,
-                    "endOffset": 29362
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 290,
-                    "startColumn": 4,
-                    "startOffset": 29367,
-                    "endColumn": 66,
-                    "endOffset": 29429
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 291,
-                    "startColumn": 4,
-                    "startOffset": 29434,
-                    "endColumn": 65,
-                    "endOffset": 29495
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 292,
-                    "startColumn": 4,
-                    "startOffset": 29500,
-                    "endColumn": 69,
-                    "endOffset": 29565
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 293,
-                    "startColumn": 4,
-                    "startOffset": 29570,
-                    "endColumn": 63,
-                    "endOffset": 29629
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 294,
-                    "startColumn": 4,
-                    "startOffset": 29634,
-                    "endColumn": 52,
-                    "endOffset": 29682
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 295,
-                    "startColumn": 4,
-                    "startOffset": 29687,
-                    "endColumn": 112,
-                    "endOffset": 29795
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 296,
-                    "startColumn": 4,
-                    "startOffset": 29800,
-                    "endColumn": 57,
-                    "endOffset": 29853
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 297,
-                    "startColumn": 4,
-                    "startOffset": 29858,
-                    "endColumn": 62,
-                    "endOffset": 29916
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 298,
-                    "startColumn": 4,
-                    "startOffset": 29921,
-                    "endColumn": 64,
-                    "endOffset": 29981
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 299,
-                    "startColumn": 4,
-                    "startOffset": 29986,
-                    "endColumn": 64,
-                    "endOffset": 30046
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 300,
-                    "startColumn": 4,
-                    "startOffset": 30051,
-                    "endColumn": 74,
-                    "endOffset": 30121
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 301,
-                    "startColumn": 4,
-                    "startOffset": 30126,
-                    "endColumn": 72,
-                    "endOffset": 30194
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 302,
-                    "startColumn": 4,
-                    "startOffset": 30199,
-                    "endColumn": 71,
-                    "endOffset": 30266
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 303,
-                    "startColumn": 4,
-                    "startOffset": 30271,
-                    "endColumn": 48,
-                    "endOffset": 30315
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 304,
-                    "startColumn": 4,
-                    "startOffset": 30320,
-                    "endColumn": 60,
-                    "endOffset": 30376
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 305,
-                    "startColumn": 4,
-                    "startOffset": 30381,
-                    "endColumn": 60,
-                    "endOffset": 30437
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 306,
-                    "startColumn": 4,
-                    "startOffset": 30442,
-                    "endColumn": 60,
-                    "endOffset": 30498
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 307,
-                    "startColumn": 4,
-                    "startOffset": 30503,
-                    "endColumn": 61,
-                    "endOffset": 30560
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 308,
-                    "startColumn": 4,
-                    "startOffset": 30565,
-                    "endColumn": 63,
-                    "endOffset": 30624
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 309,
-                    "startColumn": 4,
-                    "startOffset": 30629,
-                    "endColumn": 63,
-                    "endOffset": 30688
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 310,
-                    "startColumn": 4,
-                    "startOffset": 30693,
-                    "endColumn": 63,
-                    "endOffset": 30752
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 311,
-                    "startColumn": 4,
-                    "startOffset": 30757,
-                    "endColumn": 64,
-                    "endOffset": 30817
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 312,
-                    "startColumn": 4,
-                    "startOffset": 30822,
-                    "endColumn": 62,
-                    "endOffset": 30880
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 313,
-                    "startColumn": 4,
-                    "startOffset": 30885,
-                    "endColumn": 59,
-                    "endOffset": 30940
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 314,
-                    "startColumn": 4,
-                    "startOffset": 30945,
-                    "endColumn": 60,
-                    "endOffset": 31001
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 315,
-                    "startColumn": 4,
-                    "startOffset": 31006,
-                    "endColumn": 65,
-                    "endOffset": 31067
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 316,
-                    "startColumn": 4,
-                    "startOffset": 31072,
-                    "endColumn": 58,
-                    "endOffset": 31126
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 317,
-                    "startColumn": 4,
-                    "startOffset": 31131,
-                    "endColumn": 59,
-                    "endOffset": 31186
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 318,
-                    "startColumn": 4,
-                    "startOffset": 31191,
-                    "endColumn": 61,
-                    "endOffset": 31248
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 319,
-                    "startColumn": 4,
-                    "startOffset": 31253,
-                    "endColumn": 70,
-                    "endOffset": 31319
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 320,
-                    "startColumn": 4,
-                    "startOffset": 31324,
-                    "endColumn": 59,
-                    "endOffset": 31379
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 321,
-                    "startColumn": 4,
-                    "startOffset": 31384,
-                    "endColumn": 67,
-                    "endOffset": 31447
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 322,
-                    "startColumn": 4,
-                    "startOffset": 31452,
-                    "endColumn": 57,
-                    "endOffset": 31505
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values/dimens.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 323,
-                    "startColumn": 4,
-                    "startOffset": 31510,
-                    "endColumn": 55,
-                    "endOffset": 31561
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values/dimens.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 324,
-                    "startColumn": 4,
-                    "startOffset": 31566,
-                    "endColumn": 85,
-                    "endOffset": 31647
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 325,
-                    "startColumn": 4,
-                    "startOffset": 31652,
-                    "endColumn": 86,
-                    "endOffset": 31734
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 326,
-                    "startColumn": 4,
-                    "startOffset": 31739,
-                    "endColumn": 89,
-                    "endOffset": 31824
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 327,
-                    "startColumn": 4,
-                    "startOffset": 31829,
-                    "endColumn": 86,
-                    "endOffset": 31911
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 328,
-                    "startColumn": 4,
-                    "startOffset": 31916,
-                    "endColumn": 87,
-                    "endOffset": 31999
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 329,
-                    "startColumn": 4,
-                    "startOffset": 32004,
-                    "endColumn": 81,
-                    "endOffset": 32081
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 330,
-                    "startColumn": 4,
-                    "startOffset": 32086,
-                    "endColumn": 82,
-                    "endOffset": 32164
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 331,
-                    "startColumn": 4,
-                    "startOffset": 32169,
-                    "endColumn": 89,
-                    "endOffset": 32254
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 332,
-                    "startColumn": 4,
-                    "startOffset": 32259,
-                    "endColumn": 90,
-                    "endOffset": 32345
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 333,
-                    "startColumn": 4,
-                    "startOffset": 32350,
-                    "endColumn": 60,
-                    "endOffset": 32406
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 334,
-                    "startColumn": 4,
-                    "startOffset": 32411,
-                    "endColumn": 60,
-                    "endOffset": 32467
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 335,
-                    "startColumn": 4,
-                    "startOffset": 32472,
-                    "endColumn": 61,
-                    "endOffset": 32529
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 336,
-                    "startColumn": 4,
-                    "startOffset": 32534,
-                    "endColumn": 63,
-                    "endOffset": 32593
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 337,
-                    "startColumn": 4,
-                    "startOffset": 32598,
-                    "endColumn": 61,
-                    "endOffset": 32655
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 338,
-                    "startColumn": 4,
-                    "startOffset": 32660,
-                    "endColumn": 60,
-                    "endOffset": 32716
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 339,
-                    "startColumn": 4,
-                    "startOffset": 32721,
-                    "endColumn": 67,
-                    "endOffset": 32784
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 340,
-                    "startColumn": 4,
-                    "startOffset": 32789,
-                    "endColumn": 99,
-                    "endOffset": 32884
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 341,
-                    "startColumn": 4,
-                    "startOffset": 32889,
-                    "endColumn": 59,
-                    "endOffset": 32944
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 342,
-                    "startColumn": 4,
-                    "startOffset": 32949,
-                    "endColumn": 65,
-                    "endOffset": 33010
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 343,
-                    "startColumn": 4,
-                    "startOffset": 33015,
-                    "endColumn": 72,
-                    "endOffset": 33083
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 344,
-                    "startColumn": 4,
-                    "startOffset": 33088,
-                    "endColumn": 68,
-                    "endOffset": 33152
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 345,
-                    "startColumn": 4,
-                    "startOffset": 33157,
-                    "endColumn": 56,
-                    "endOffset": 33209
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 346,
-                    "startColumn": 4,
-                    "startOffset": 33214,
-                    "endColumn": 51,
-                    "endOffset": 33261
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 347,
-                    "startColumn": 4,
-                    "startOffset": 33266,
-                    "endColumn": 61,
-                    "endOffset": 33323
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 348,
-                    "startColumn": 4,
-                    "startOffset": 33328,
-                    "endColumn": 71,
-                    "endOffset": 33395
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 349,
-                    "startColumn": 4,
-                    "startOffset": 33400,
-                    "endColumn": 75,
-                    "endOffset": 33471
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 350,
-                    "startColumn": 4,
-                    "startOffset": 33476,
-                    "endColumn": 56,
-                    "endOffset": 33528
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 351,
-                    "startColumn": 4,
-                    "startOffset": 33533,
-                    "endColumn": 47,
-                    "endOffset": 33576
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 352,
-                    "startColumn": 4,
-                    "startOffset": 33581,
-                    "endColumn": 48,
-                    "endOffset": 33625
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 353,
-                    "startColumn": 4,
-                    "startOffset": 33630,
-                    "endColumn": 50,
-                    "endOffset": 33676
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 354,
-                    "startColumn": 4,
-                    "startOffset": 33681,
-                    "endColumn": 52,
-                    "endOffset": 33729
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 355,
-                    "startColumn": 4,
-                    "startOffset": 33734,
-                    "endColumn": 33,
-                    "endOffset": 33763
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 356,
-                    "startColumn": 4,
-                    "startOffset": 33768,
-                    "endColumn": 46,
-                    "endOffset": 33810
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 357,
-                    "startColumn": 4,
-                    "startOffset": 33815,
-                    "endColumn": 48,
-                    "endOffset": 33859
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 358,
-                    "startColumn": 4,
-                    "startOffset": 33864,
-                    "endColumn": 45,
-                    "endOffset": 33905
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 359,
-                    "startColumn": 4,
-                    "startOffset": 33910,
-                    "endColumn": 31,
-                    "endOffset": 33937
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 360,
-                    "startColumn": 4,
-                    "startOffset": 33942,
-                    "endColumn": 63,
-                    "endOffset": 34001
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 361,
-                    "startColumn": 4,
-                    "startOffset": 34006,
-                    "endColumn": 61,
-                    "endOffset": 34063
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 362,
-                    "startColumn": 4,
-                    "startOffset": 34068,
-                    "endColumn": 59,
-                    "endOffset": 34123
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 363,
-                    "startColumn": 4,
-                    "startOffset": 34128,
-                    "endColumn": 67,
-                    "endOffset": 34191
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 364,
-                    "startColumn": 4,
-                    "startOffset": 34196,
-                    "endColumn": 69,
-                    "endOffset": 34261
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 365,
-                    "startColumn": 4,
-                    "startOffset": 34266,
-                    "endColumn": 73,
-                    "endOffset": 34335
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 366,
-                    "startColumn": 4,
-                    "startOffset": 34340,
-                    "endColumn": 77,
-                    "endOffset": 34413
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 367,
-                    "startColumn": 4,
-                    "startOffset": 34418,
-                    "endColumn": 92,
-                    "endOffset": 34506
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 368,
-                    "startColumn": 4,
-                    "startOffset": 34511,
-                    "endColumn": 69,
-                    "endOffset": 34576
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 369,
-                    "startColumn": 4,
-                    "startOffset": 34581,
-                    "endColumn": 77,
-                    "endOffset": 34654
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 370,
-                    "startColumn": 4,
-                    "startOffset": 34659,
-                    "endColumn": 53,
-                    "endOffset": 34708
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 371,
-                    "startColumn": 4,
-                    "startOffset": 34713,
-                    "endColumn": 69,
-                    "endOffset": 34778
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 372,
-                    "startColumn": 4,
-                    "startOffset": 34783,
-                    "endColumn": 84,
-                    "endOffset": 34863
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 373,
-                    "startColumn": 4,
-                    "startOffset": 34868,
-                    "endColumn": 47,
-                    "endOffset": 34911
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 374,
-                    "startColumn": 4,
-                    "startOffset": 34916,
-                    "endColumn": 45,
-                    "endOffset": 34957
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 375,
-                    "startColumn": 4,
-                    "startOffset": 34962,
-                    "endColumn": 70,
-                    "endOffset": 35028
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 376,
-                    "startColumn": 4,
-                    "startOffset": 35033,
-                    "endColumn": 77,
-                    "endOffset": 35106
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 377,
-                    "startColumn": 4,
-                    "startOffset": 35111,
-                    "endColumn": 77,
-                    "endOffset": 35184
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 378,
-                    "startColumn": 4,
-                    "startOffset": 35189,
-                    "endColumn": 71,
-                    "endOffset": 35256
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 379,
-                    "startColumn": 4,
-                    "startOffset": 35261,
-                    "endColumn": 73,
-                    "endOffset": 35330
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 380,
-                    "startColumn": 4,
-                    "startOffset": 35335,
-                    "endColumn": 73,
-                    "endOffset": 35404
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 381,
-                    "startColumn": 4,
-                    "startOffset": 35409,
-                    "endColumn": 73,
-                    "endOffset": 35478
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 382,
-                    "startColumn": 4,
-                    "startOffset": 35483,
-                    "endColumn": 79,
-                    "endOffset": 35558
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 383,
-                    "startColumn": 4,
-                    "startOffset": 35563,
-                    "endColumn": 72,
-                    "endOffset": 35631
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 384,
-                    "startColumn": 4,
-                    "startOffset": 35636,
-                    "endColumn": 68,
-                    "endOffset": 35700
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 385,
-                    "startColumn": 4,
-                    "startOffset": 35705,
-                    "endColumn": 71,
-                    "endOffset": 35772
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 386,
-                    "startColumn": 4,
-                    "startOffset": 35777,
-                    "endColumn": 76,
-                    "endOffset": 35849
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 387,
-                    "startColumn": 4,
-                    "startOffset": 35854,
-                    "endColumn": 51,
-                    "endOffset": 35901
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 388,
-                    "startColumn": 4,
-                    "startOffset": 35906,
-                    "endColumn": 72,
-                    "endOffset": 35974
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 389,
-                    "startColumn": 4,
-                    "startOffset": 35979,
-                    "endColumn": 73,
-                    "endOffset": 36048
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 390,
-                    "startColumn": 4,
-                    "startOffset": 36053,
-                    "endColumn": 68,
-                    "endOffset": 36117
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 391,
-                    "startColumn": 4,
-                    "startOffset": 36122,
-                    "endColumn": 74,
-                    "endOffset": 36192
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 392,
-                    "startColumn": 4,
-                    "startOffset": 36197,
-                    "endColumn": 73,
-                    "endOffset": 36266
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 393,
-                    "startColumn": 4,
-                    "startOffset": 36271,
-                    "endColumn": 73,
-                    "endOffset": 36340
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 394,
-                    "startColumn": 4,
-                    "startOffset": 36345,
-                    "endColumn": 88,
-                    "endOffset": 36429
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 395,
-                    "startColumn": 4,
-                    "startOffset": 36434,
-                    "endColumn": 69,
-                    "endOffset": 36499
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 396,
-                    "startColumn": 4,
-                    "startOffset": 36504,
-                    "endColumn": 164,
-                    "endOffset": 36664
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/generated/fabric/res/debug/values/com_crashlytics_build_id.xml",
-                    "position": {
-                        "startLine": 8,
-                        "startColumn": 0,
-                        "startOffset": 303,
-                        "endColumn": 162,
-                        "endOffset": 465
-                    }
-                }
-            },
-            {
-                "to": {
-                    "startLine": 397,
-                    "startColumn": 4,
-                    "startOffset": 36669,
-                    "endColumn": 104,
-                    "endOffset": 36769
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 398,
-                    "startColumn": 4,
-                    "startOffset": 36774,
-                    "endColumn": 180,
-                    "endOffset": 36950
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 399,
-                    "startColumn": 4,
-                    "startOffset": 36955,
-                    "endColumn": 124,
-                    "endOffset": 37075
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 400,
-                    "startColumn": 4,
-                    "startOffset": 37080,
-                    "endColumn": 106,
-                    "endOffset": 37182
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 401,
-                    "startColumn": 4,
-                    "startOffset": 37187,
-                    "endColumn": 179,
-                    "endOffset": 37362
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 402,
-                    "startColumn": 4,
-                    "startOffset": 37367,
-                    "endColumn": 122,
-                    "endOffset": 37485
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 403,
-                    "startColumn": 4,
-                    "startOffset": 37490,
-                    "endColumn": 102,
-                    "endOffset": 37588
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 404,
-                    "startColumn": 4,
-                    "startOffset": 37593,
-                    "endColumn": 166,
-                    "endOffset": 37755
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 405,
-                    "startColumn": 4,
-                    "startOffset": 37760,
-                    "endColumn": 187,
-                    "endOffset": 37943
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 406,
-                    "startColumn": 4,
-                    "startOffset": 37948,
-                    "endColumn": 104,
-                    "endOffset": 38048
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 407,
-                    "startColumn": 4,
-                    "startOffset": 38053,
-                    "endColumn": 180,
-                    "endOffset": 38229
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 408,
-                    "startColumn": 4,
-                    "startOffset": 38234,
-                    "endColumn": 124,
-                    "endOffset": 38354
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 409,
-                    "startColumn": 4,
-                    "startOffset": 38359,
-                    "endColumn": 174,
-                    "endOffset": 38529
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 410,
-                    "startColumn": 4,
-                    "startOffset": 38534,
-                    "endColumn": 147,
-                    "endOffset": 38677
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 411,
-                    "startColumn": 4,
-                    "startOffset": 38682,
-                    "endColumn": 62,
-                    "endOffset": 38740
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 412,
-                    "startColumn": 4,
-                    "startOffset": 38745,
-                    "endColumn": 61,
-                    "endOffset": 38802
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 413,
-                    "startColumn": 4,
-                    "startOffset": 38807,
-                    "endColumn": 78,
-                    "endOffset": 38881
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 414,
-                    "startColumn": 4,
-                    "startOffset": 38886,
-                    "endColumn": 143,
-                    "endOffset": 39025
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/generated/res/google-services/debug/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 415,
-                    "startColumn": 4,
-                    "startOffset": 39030,
-                    "endColumn": 107,
-                    "endOffset": 39133
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values/strings.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 416,
-                    "startColumn": 4,
-                    "startOffset": 39138,
-                    "endColumn": 103,
-                    "endOffset": 39237
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/generated/res/google-services/debug/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 417,
-                    "startColumn": 4,
-                    "startOffset": 39242,
-                    "endColumn": 81,
-                    "endOffset": 39319
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/generated/res/google-services/debug/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 418,
-                    "startColumn": 4,
-                    "startOffset": 39324,
-                    "endColumn": 103,
-                    "endOffset": 39423
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/generated/res/google-services/debug/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 419,
-                    "startColumn": 4,
-                    "startOffset": 39428,
-                    "endColumn": 102,
-                    "endOffset": 39526
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/generated/res/google-services/debug/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 420,
-                    "startColumn": 4,
-                    "startOffset": 39531,
-                    "endColumn": 119,
-                    "endOffset": 39646
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/generated/res/google-services/debug/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 421,
-                    "startColumn": 4,
-                    "startOffset": 39651,
-                    "endColumn": 92,
-                    "endOffset": 39739
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/generated/res/google-services/debug/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 422,
-                    "startColumn": 4,
-                    "startOffset": 39744,
-                    "endColumn": 121,
-                    "endOffset": 39861
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values/strings.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 423,
-                    "startColumn": 4,
-                    "startOffset": 39866,
-                    "endColumn": 111,
-                    "endOffset": 39973
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values/strings.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 424,
-                    "startColumn": 4,
-                    "startOffset": 39978,
-                    "endColumn": 52,
-                    "endOffset": 40026
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 425,
-                    "startColumn": 4,
-                    "startOffset": 40031,
-                    "endColumn": 70,
-                    "endOffset": 40097
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 426,
-                    "startColumn": 4,
-                    "startOffset": 40102,
-                    "endColumn": 84,
-                    "endOffset": 40182
-                },
-                "from": {
-                    "file": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values/strings.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 427,
-                    "startColumn": 4,
-                    "startOffset": 40187,
-                    "endColumn": 77,
-                    "endOffset": 40260
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 428,
-                    "startColumn": 4,
-                    "startOffset": 40265,
-                    "endColumn": 89,
-                    "endOffset": 40350
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 429,
-                    "startColumn": 4,
-                    "startOffset": 40355,
-                    "endColumn": 87,
-                    "endOffset": 40438
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 430,
-                    "startColumn": 4,
-                    "startOffset": 40443,
-                    "endColumn": 95,
-                    "endOffset": 40534
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 431,
-                    "startColumn": 4,
-                    "startOffset": 40539,
-                    "endLine": 437,
-                    "endColumn": 12,
-                    "endOffset": 41035
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 438,
-                    "startColumn": 4,
-                    "startOffset": 41040,
-                    "endColumn": 88,
-                    "endOffset": 41124
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 439,
-                    "startColumn": 4,
-                    "startOffset": 41129,
-                    "endLine": 442,
-                    "endColumn": 12,
-                    "endOffset": 41371
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 443,
-                    "startColumn": 4,
-                    "startOffset": 41376,
-                    "endLine": 446,
-                    "endColumn": 12,
-                    "endOffset": 41652
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 447,
-                    "startColumn": 4,
-                    "startOffset": 41657,
-                    "endLine": 451,
-                    "endColumn": 12,
-                    "endOffset": 41937
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 452,
-                    "startColumn": 4,
-                    "startOffset": 41942,
-                    "endLine": 457,
-                    "endColumn": 12,
-                    "endOffset": 42330
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 458,
-                    "startColumn": 4,
-                    "startOffset": 42335,
-                    "endLine": 464,
-                    "endColumn": 12,
-                    "endOffset": 42807
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 465,
-                    "startColumn": 4,
-                    "startOffset": 42812,
-                    "endLine": 468,
-                    "endColumn": 12,
-                    "endOffset": 43029
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 469,
-                    "startColumn": 4,
-                    "startOffset": 43034,
-                    "endLine": 472,
-                    "endColumn": 12,
-                    "endOffset": 43251
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 473,
-                    "startColumn": 4,
-                    "startOffset": 43256,
-                    "endLine": 477,
-                    "endColumn": 12,
-                    "endOffset": 43519
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 478,
-                    "startColumn": 4,
-                    "startOffset": 43524,
-                    "endLine": 481,
-                    "endColumn": 12,
-                    "endOffset": 43746
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 482,
-                    "startColumn": 4,
-                    "startOffset": 43751,
-                    "endLine": 485,
-                    "endColumn": 12,
-                    "endOffset": 43976
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 486,
-                    "startColumn": 4,
-                    "startOffset": 43981,
-                    "endLine": 489,
-                    "endColumn": 12,
-                    "endOffset": 44206
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 490,
-                    "startColumn": 4,
-                    "startOffset": 44211,
-                    "endLine": 493,
-                    "endColumn": 12,
-                    "endOffset": 44436
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 494,
-                    "startColumn": 4,
-                    "startOffset": 44441,
-                    "endLine": 497,
-                    "endColumn": 12,
-                    "endOffset": 44666
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 498,
-                    "startColumn": 4,
-                    "startOffset": 44671,
-                    "endLine": 501,
-                    "endColumn": 12,
-                    "endOffset": 44893
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 502,
-                    "startColumn": 4,
-                    "startOffset": 44898,
-                    "endLine": 505,
-                    "endColumn": 12,
-                    "endOffset": 45132
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 506,
-                    "startColumn": 4,
-                    "startOffset": 45137,
-                    "endLine": 509,
-                    "endColumn": 12,
-                    "endOffset": 45358
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 510,
-                    "startColumn": 4,
-                    "startOffset": 45363,
-                    "endLine": 513,
-                    "endColumn": 12,
-                    "endOffset": 45603
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 514,
-                    "startColumn": 4,
-                    "startOffset": 45608,
-                    "endLine": 517,
-                    "endColumn": 12,
-                    "endOffset": 45833
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 518,
-                    "startColumn": 4,
-                    "startOffset": 45838,
-                    "endLine": 521,
-                    "endColumn": 12,
-                    "endOffset": 46081
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 522,
-                    "startColumn": 4,
-                    "startOffset": 46086,
-                    "endLine": 525,
-                    "endColumn": 12,
-                    "endOffset": 46300
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 526,
-                    "startColumn": 4,
-                    "startOffset": 46305,
-                    "endLine": 530,
-                    "endColumn": 12,
-                    "endOffset": 46583
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 531,
-                    "startColumn": 4,
-                    "startOffset": 46588,
-                    "endLine": 534,
-                    "endColumn": 12,
-                    "endOffset": 46791
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 535,
-                    "startColumn": 4,
-                    "startOffset": 46796,
-                    "endLine": 537,
-                    "endColumn": 12,
-                    "endOffset": 46922
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 538,
-                    "startColumn": 4,
-                    "startOffset": 46927,
-                    "endLine": 541,
-                    "endColumn": 12,
-                    "endOffset": 47149
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 542,
-                    "startColumn": 4,
-                    "startOffset": 47154,
-                    "endLine": 545,
-                    "endColumn": 12,
-                    "endOffset": 47395
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 546,
-                    "startColumn": 4,
-                    "startOffset": 47400,
-                    "endLine": 549,
-                    "endColumn": 12,
-                    "endOffset": 47620
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 550,
-                    "startColumn": 4,
-                    "startOffset": 47625,
-                    "endLine": 553,
-                    "endColumn": 12,
-                    "endOffset": 47867
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 554,
-                    "startColumn": 4,
-                    "startOffset": 47872,
-                    "endLine": 557,
-                    "endColumn": 12,
-                    "endOffset": 48088
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 558,
-                    "startColumn": 4,
-                    "startOffset": 48093,
-                    "endLine": 561,
-                    "endColumn": 12,
-                    "endOffset": 48333
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 562,
-                    "startColumn": 4,
-                    "startOffset": 48338,
-                    "endLine": 565,
-                    "endColumn": 12,
-                    "endOffset": 48609
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 566,
-                    "startColumn": 4,
-                    "startOffset": 48614,
-                    "endLine": 569,
-                    "endColumn": 12,
-                    "endOffset": 48910
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 570,
-                    "startColumn": 4,
-                    "startOffset": 48915,
-                    "endLine": 573,
-                    "endColumn": 12,
-                    "endOffset": 49234
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 574,
-                    "startColumn": 4,
-                    "startOffset": 49239,
-                    "endLine": 577,
-                    "endColumn": 12,
-                    "endOffset": 49525
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 578,
-                    "startColumn": 4,
-                    "startOffset": 49530,
-                    "endLine": 581,
-                    "endColumn": 12,
-                    "endOffset": 49839
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 582,
-                    "startColumn": 4,
-                    "startOffset": 49844,
-                    "endColumn": 136,
-                    "endOffset": 49976
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 583,
-                    "startColumn": 4,
-                    "startOffset": 49981,
-                    "endColumn": 130,
-                    "endOffset": 50107
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 584,
-                    "startColumn": 4,
-                    "startOffset": 50112,
-                    "endColumn": 104,
-                    "endOffset": 50212
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 585,
-                    "startColumn": 4,
-                    "startOffset": 50217,
-                    "endLine": 587,
-                    "endColumn": 12,
-                    "endOffset": 50454
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 588,
-                    "startColumn": 4,
-                    "startOffset": 50459,
-                    "endLine": 590,
-                    "endColumn": 12,
-                    "endOffset": 50621
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 591,
-                    "startColumn": 4,
-                    "startOffset": 50626,
-                    "endLine": 593,
-                    "endColumn": 12,
-                    "endOffset": 50825
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 594,
-                    "startColumn": 4,
-                    "startOffset": 50830,
-                    "endLine": 596,
-                    "endColumn": 12,
-                    "endOffset": 51033
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 597,
-                    "startColumn": 4,
-                    "startOffset": 51038,
-                    "endLine": 600,
-                    "endColumn": 12,
-                    "endOffset": 51304
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 601,
-                    "startColumn": 4,
-                    "startOffset": 51309,
-                    "endColumn": 111,
-                    "endOffset": 51416
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 602,
-                    "startColumn": 4,
-                    "startOffset": 51421,
-                    "endColumn": 111,
-                    "endOffset": 51528
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 603,
-                    "startColumn": 4,
-                    "startOffset": 51533,
-                    "endColumn": 104,
-                    "endOffset": 51633
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 604,
-                    "startColumn": 4,
-                    "startOffset": 51638,
-                    "endColumn": 116,
-                    "endOffset": 51750
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 605,
-                    "startColumn": 4,
-                    "startOffset": 51755,
-                    "endLine": 607,
-                    "endColumn": 12,
-                    "endOffset": 51964
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 608,
-                    "startColumn": 4,
-                    "startOffset": 51969,
-                    "endLine": 609,
-                    "endColumn": 12,
-                    "endOffset": 52110
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 610,
-                    "startColumn": 4,
-                    "startOffset": 52115,
-                    "endLine": 611,
-                    "endColumn": 12,
-                    "endOffset": 52250
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 612,
-                    "startColumn": 4,
-                    "startOffset": 52255,
-                    "endLine": 613,
-                    "endColumn": 12,
-                    "endOffset": 52336
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 614,
-                    "startColumn": 4,
-                    "startOffset": 52341,
-                    "endLine": 618,
-                    "endColumn": 12,
-                    "endOffset": 52684
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 619,
-                    "startColumn": 4,
-                    "startOffset": 52689,
-                    "endColumn": 87,
-                    "endOffset": 52772
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 620,
-                    "startColumn": 4,
-                    "startOffset": 52777,
-                    "endLine": 623,
-                    "endColumn": 12,
-                    "endOffset": 53002
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 624,
-                    "startColumn": 4,
-                    "startOffset": 53007,
-                    "endLine": 629,
-                    "endColumn": 12,
-                    "endOffset": 53420
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 630,
-                    "startColumn": 4,
-                    "startOffset": 53425,
-                    "endLine": 633,
-                    "endColumn": 12,
-                    "endOffset": 53653
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 634,
-                    "startColumn": 4,
-                    "startOffset": 53658,
-                    "endColumn": 81,
-                    "endOffset": 53735
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 635,
-                    "startColumn": 4,
-                    "startOffset": 53740,
-                    "endLine": 636,
-                    "endColumn": 12,
-                    "endOffset": 53833
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 637,
-                    "startColumn": 4,
-                    "startOffset": 53838,
-                    "endLine": 647,
-                    "endColumn": 12,
-                    "endOffset": 54425
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 648,
-                    "startColumn": 4,
-                    "startOffset": 54430,
-                    "endColumn": 99,
-                    "endOffset": 54525
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 649,
-                    "startColumn": 4,
-                    "startOffset": 54530,
-                    "endLine": 652,
-                    "endColumn": 12,
-                    "endOffset": 54761
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 653,
-                    "startColumn": 4,
-                    "startOffset": 54766,
-                    "endLine": 658,
-                    "endColumn": 12,
-                    "endOffset": 55185
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 659,
-                    "startColumn": 4,
-                    "startOffset": 55190,
-                    "endLine": 662,
-                    "endColumn": 12,
-                    "endOffset": 55424
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 663,
-                    "startColumn": 4,
-                    "startOffset": 55429,
-                    "endColumn": 93,
-                    "endOffset": 55518
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 664,
-                    "startColumn": 4,
-                    "startOffset": 55523,
-                    "endColumn": 88,
-                    "endOffset": 55607
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 665,
-                    "startColumn": 4,
-                    "startOffset": 55612,
-                    "endLine": 668,
-                    "endColumn": 12,
-                    "endOffset": 55844
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 669,
-                    "startColumn": 4,
-                    "startOffset": 55849,
-                    "endLine": 695,
-                    "endColumn": 12,
-                    "endOffset": 57868
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 696,
-                    "startColumn": 4,
-                    "startOffset": 57873,
-                    "endLine": 699,
-                    "endColumn": 12,
-                    "endOffset": 58110
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 700,
-                    "startColumn": 4,
-                    "startOffset": 58115,
-                    "endColumn": 101,
-                    "endOffset": 58212
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 701,
-                    "startColumn": 4,
-                    "startOffset": 58217,
-                    "endLine": 704,
-                    "endColumn": 12,
-                    "endOffset": 58449
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 705,
-                    "startColumn": 4,
-                    "startOffset": 58454,
-                    "endLine": 732,
-                    "endColumn": 12,
-                    "endOffset": 60605
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 733,
-                    "startColumn": 4,
-                    "startOffset": 60610,
-                    "endLine": 890,
-                    "endColumn": 12,
-                    "endOffset": 70209
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 891,
-                    "startColumn": 4,
-                    "startOffset": 70214,
-                    "endLine": 912,
-                    "endColumn": 12,
-                    "endOffset": 71460
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 913,
-                    "startColumn": 4,
-                    "startOffset": 71465,
-                    "endLine": 1070,
-                    "endColumn": 12,
-                    "endOffset": 81163
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1071,
-                    "startColumn": 4,
-                    "startOffset": 81168,
-                    "endLine": 1092,
-                    "endColumn": 12,
-                    "endOffset": 82426
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1093,
-                    "startColumn": 4,
-                    "startOffset": 82431,
-                    "endLine": 1119,
-                    "endColumn": 12,
-                    "endOffset": 83918
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1120,
-                    "startColumn": 4,
-                    "startOffset": 83923,
-                    "endLine": 1126,
-                    "endColumn": 12,
-                    "endOffset": 84454
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1127,
-                    "startColumn": 4,
-                    "startOffset": 84459,
-                    "endLine": 1131,
-                    "endColumn": 12,
-                    "endOffset": 84784
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1132,
-                    "startColumn": 4,
-                    "startOffset": 84789,
-                    "endLine": 1153,
-                    "endColumn": 12,
-                    "endOffset": 86049
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1154,
-                    "startColumn": 4,
-                    "startOffset": 86054,
-                    "endLine": 1158,
-                    "endColumn": 12,
-                    "endOffset": 86305
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1159,
-                    "startColumn": 4,
-                    "startOffset": 86310,
-                    "endLine": 1163,
-                    "endColumn": 12,
-                    "endOffset": 86541
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1164,
-                    "startColumn": 4,
-                    "startOffset": 86546,
-                    "endLine": 1173,
-                    "endColumn": 12,
-                    "endOffset": 87088
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1174,
-                    "startColumn": 4,
-                    "startOffset": 87093,
-                    "endLine": 1182,
-                    "endColumn": 12,
-                    "endOffset": 87582
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1183,
-                    "startColumn": 4,
-                    "startOffset": 87587,
-                    "endLine": 1191,
-                    "endColumn": 12,
-                    "endOffset": 88187
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1192,
-                    "startColumn": 4,
-                    "startOffset": 88192,
-                    "endLine": 1195,
-                    "endColumn": 12,
-                    "endOffset": 88385
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1196,
-                    "startColumn": 4,
-                    "startOffset": 88390,
-                    "endLine": 1202,
-                    "endColumn": 12,
-                    "endOffset": 88965
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1203,
-                    "startColumn": 4,
-                    "startOffset": 88970,
-                    "endLine": 1210,
-                    "endColumn": 12,
-                    "endOffset": 89529
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1211,
-                    "startColumn": 4,
-                    "startOffset": 89534,
-                    "endLine": 1217,
-                    "endColumn": 12,
-                    "endOffset": 89904
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1218,
-                    "startColumn": 4,
-                    "startOffset": 89909,
-                    "endColumn": 117,
-                    "endOffset": 90022
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1219,
-                    "startColumn": 4,
-                    "startOffset": 90027,
-                    "endLine": 1227,
-                    "endColumn": 12,
-                    "endOffset": 90560
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1228,
-                    "startColumn": 4,
-                    "startOffset": 90565,
-                    "endLine": 1230,
-                    "endColumn": 12,
-                    "endOffset": 90717
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1231,
-                    "startColumn": 4,
-                    "startOffset": 90722,
-                    "endLine": 1233,
-                    "endColumn": 12,
-                    "endOffset": 90913
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1234,
-                    "startColumn": 4,
-                    "startOffset": 90918,
-                    "endLine": 1237,
-                    "endColumn": 12,
-                    "endOffset": 91186
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1238,
-                    "startColumn": 4,
-                    "startOffset": 91191,
-                    "endLine": 1241,
-                    "endColumn": 12,
-                    "endOffset": 91442
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1242,
-                    "startColumn": 4,
-                    "startOffset": 91447,
-                    "endLine": 1245,
-                    "endColumn": 12,
-                    "endOffset": 91612
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1246,
-                    "startColumn": 4,
-                    "startOffset": 91617,
-                    "endLine": 1248,
-                    "endColumn": 12,
-                    "endOffset": 91753
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1249,
-                    "startColumn": 4,
-                    "startOffset": 91758,
-                    "endColumn": 63,
-                    "endOffset": 91817
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1250,
-                    "startColumn": 4,
-                    "startOffset": 91822,
-                    "endLine": 1253,
-                    "endColumn": 12,
-                    "endOffset": 92099
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1254,
-                    "startColumn": 4,
-                    "startOffset": 92104,
-                    "endLine": 1257,
-                    "endColumn": 12,
-                    "endOffset": 92385
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1258,
-                    "startColumn": 4,
-                    "startOffset": 92390,
-                    "endLine": 1267,
-                    "endColumn": 12,
-                    "endOffset": 93061
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1268,
-                    "startColumn": 4,
-                    "startOffset": 93066,
-                    "endLine": 1272,
-                    "endColumn": 12,
-                    "endOffset": 93325
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1273,
-                    "startColumn": 4,
-                    "startOffset": 93330,
-                    "endLine": 1279,
-                    "endColumn": 12,
-                    "endOffset": 93663
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1280,
-                    "startColumn": 4,
-                    "startOffset": 93668,
-                    "endLine": 1285,
-                    "endColumn": 12,
-                    "endOffset": 94016
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1286,
-                    "startColumn": 4,
-                    "startOffset": 94021,
-                    "endColumn": 93,
-                    "endOffset": 94110
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1287,
-                    "startColumn": 4,
-                    "startOffset": 94115,
-                    "endLine": 1289,
-                    "endColumn": 12,
-                    "endOffset": 94296
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1290,
-                    "startColumn": 4,
-                    "startOffset": 94301,
-                    "endLine": 1293,
-                    "endColumn": 12,
-                    "endOffset": 94602
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1294,
-                    "startColumn": 4,
-                    "startOffset": 94607,
-                    "endLine": 1298,
-                    "endColumn": 12,
-                    "endOffset": 94864
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1299,
-                    "startColumn": 4,
-                    "startOffset": 94869,
-                    "endLine": 1300,
-                    "endColumn": 12,
-                    "endOffset": 94989
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1301,
-                    "startColumn": 4,
-                    "startOffset": 94994,
-                    "endLine": 1302,
-                    "endColumn": 12,
-                    "endOffset": 95116
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1303,
-                    "startColumn": 4,
-                    "startOffset": 95121,
-                    "endLine": 1305,
-                    "endColumn": 12,
-                    "endOffset": 95355
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1306,
-                    "startColumn": 4,
-                    "startOffset": 95360,
-                    "endLine": 1308,
-                    "endColumn": 12,
-                    "endOffset": 95566
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1309,
-                    "startColumn": 4,
-                    "startOffset": 95571,
-                    "endLine": 1310,
-                    "endColumn": 12,
-                    "endOffset": 95685
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1311,
-                    "startColumn": 4,
-                    "startOffset": 95690,
-                    "endLine": 1314,
-                    "endColumn": 12,
-                    "endOffset": 95878
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1315,
-                    "startColumn": 4,
-                    "startOffset": 95883,
-                    "endLine": 1317,
-                    "endColumn": 12,
-                    "endOffset": 96055
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1318,
-                    "startColumn": 4,
-                    "startOffset": 96060,
-                    "endLine": 1324,
-                    "endColumn": 12,
-                    "endOffset": 96510
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1325,
-                    "startColumn": 4,
-                    "startOffset": 96515,
-                    "endLine": 1327,
-                    "endColumn": 12,
-                    "endOffset": 96691
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1328,
-                    "startColumn": 4,
-                    "startOffset": 96696,
-                    "endLine": 1330,
-                    "endColumn": 12,
-                    "endOffset": 96813
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1331,
-                    "startColumn": 4,
-                    "startOffset": 96818,
-                    "endLine": 1334,
-                    "endColumn": 12,
-                    "endOffset": 97072
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1335,
-                    "startColumn": 4,
-                    "startOffset": 97077,
-                    "endLine": 1336,
-                    "endColumn": 12,
-                    "endOffset": 97185
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1337,
-                    "startColumn": 4,
-                    "startOffset": 97190,
-                    "endLine": 1340,
-                    "endColumn": 12,
-                    "endOffset": 97372
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1341,
-                    "startColumn": 4,
-                    "startOffset": 97377,
-                    "endLine": 1342,
-                    "endColumn": 12,
-                    "endOffset": 97474
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1343,
-                    "startColumn": 4,
-                    "startOffset": 97479,
-                    "endLine": 1348,
-                    "endColumn": 12,
-                    "endOffset": 97918
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1349,
-                    "startColumn": 4,
-                    "startOffset": 97923,
-                    "endLine": 1350,
-                    "endColumn": 12,
-                    "endOffset": 98042
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1351,
-                    "startColumn": 4,
-                    "startOffset": 98047,
-                    "endLine": 1354,
-                    "endColumn": 12,
-                    "endOffset": 98317
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1355,
-                    "startColumn": 4,
-                    "startOffset": 98322,
-                    "endLine": 1362,
-                    "endColumn": 12,
-                    "endOffset": 98825
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1363,
-                    "startColumn": 4,
-                    "startOffset": 98830,
-                    "endLine": 1370,
-                    "endColumn": 12,
-                    "endOffset": 99321
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1371,
-                    "startColumn": 4,
-                    "startOffset": 99326,
-                    "endLine": 1382,
-                    "endColumn": 12,
-                    "endOffset": 100198
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1383,
-                    "startColumn": 4,
-                    "startOffset": 100203,
-                    "endLine": 1388,
-                    "endColumn": 12,
-                    "endOffset": 100492
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1389,
-                    "startColumn": 4,
-                    "startOffset": 100497,
-                    "endLine": 1397,
-                    "endColumn": 12,
-                    "endOffset": 101062
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1398,
-                    "startColumn": 4,
-                    "startOffset": 101067,
-                    "endLine": 1400,
-                    "endColumn": 12,
-                    "endOffset": 101211
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1401,
-                    "startColumn": 4,
-                    "startOffset": 101216,
-                    "endLine": 1411,
-                    "endColumn": 12,
-                    "endOffset": 101943
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1412,
-                    "startColumn": 4,
-                    "startOffset": 101948,
-                    "endLine": 1414,
-                    "endColumn": 12,
-                    "endOffset": 102115
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1415,
-                    "startColumn": 4,
-                    "startOffset": 102120,
-                    "endLine": 1419,
-                    "endColumn": 12,
-                    "endOffset": 102451
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1420,
-                    "startColumn": 4,
-                    "startOffset": 102456,
-                    "endLine": 1433,
-                    "endColumn": 12,
-                    "endOffset": 103509
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1434,
-                    "startColumn": 4,
-                    "startOffset": 103514,
-                    "endLine": 1438,
-                    "endColumn": 12,
-                    "endOffset": 103787
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1439,
-                    "startColumn": 4,
-                    "startOffset": 103792,
-                    "endLine": 1480,
-                    "endColumn": 12,
-                    "endOffset": 106911
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1481,
-                    "startColumn": 4,
-                    "startOffset": 106916,
-                    "endLine": 1523,
-                    "endColumn": 12,
-                    "endOffset": 110178
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1524,
-                    "startColumn": 4,
-                    "startOffset": 110183,
-                    "endColumn": 61,
-                    "endOffset": 110240
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1525,
-                    "startColumn": 4,
-                    "startOffset": 110245,
-                    "endLine": 1534,
-                    "endColumn": 12,
-                    "endOffset": 110818
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1535,
-                    "startColumn": 4,
-                    "startOffset": 110823,
-                    "endLine": 1543,
-                    "endColumn": 12,
-                    "endOffset": 111402
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1544,
-                    "startColumn": 4,
-                    "startOffset": 111407,
-                    "endColumn": 85,
-                    "endOffset": 111488
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1545,
-                    "startColumn": 4,
-                    "startOffset": 111493,
-                    "endLine": 1546,
-                    "endColumn": 12,
-                    "endOffset": 111601
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1547,
-                    "startColumn": 4,
-                    "startOffset": 111606,
-                    "endLine": 1550,
-                    "endColumn": 12,
-                    "endOffset": 111830
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1551,
-                    "startColumn": 4,
-                    "startOffset": 111835,
-                    "endLine": 1553,
-                    "endColumn": 12,
-                    "endOffset": 111990
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1554,
-                    "startColumn": 4,
-                    "startOffset": 111995,
-                    "endLine": 1556,
-                    "endColumn": 12,
-                    "endOffset": 112142
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1557,
-                    "startColumn": 4,
-                    "startOffset": 112147,
-                    "endLine": 1559,
-                    "endColumn": 12,
-                    "endOffset": 112313
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1560,
-                    "startColumn": 4,
-                    "startOffset": 112318,
-                    "endLine": 1562,
-                    "endColumn": 12,
-                    "endOffset": 112480
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1563,
-                    "startColumn": 4,
-                    "startOffset": 112485,
-                    "endLine": 1566,
-                    "endColumn": 12,
-                    "endOffset": 112723
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1567,
-                    "startColumn": 4,
-                    "startOffset": 112728,
-                    "endLine": 1569,
-                    "endColumn": 12,
-                    "endOffset": 112893
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1570,
-                    "startColumn": 4,
-                    "startOffset": 112898,
-                    "endLine": 1572,
-                    "endColumn": 12,
-                    "endOffset": 113066
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1573,
-                    "startColumn": 4,
-                    "startOffset": 113071,
-                    "endLine": 1575,
-                    "endColumn": 12,
-                    "endOffset": 113237
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1576,
-                    "startColumn": 4,
-                    "startOffset": 113242,
-                    "endLine": 1579,
-                    "endColumn": 12,
-                    "endOffset": 113511
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1580,
-                    "startColumn": 4,
-                    "startOffset": 113516,
-                    "endLine": 1582,
-                    "endColumn": 12,
-                    "endOffset": 113710
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1583,
-                    "startColumn": 4,
-                    "startOffset": 113715,
-                    "endLine": 1586,
-                    "endColumn": 12,
-                    "endOffset": 113915
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1587,
-                    "startColumn": 4,
-                    "startOffset": 113920,
-                    "endLine": 1590,
-                    "endColumn": 12,
-                    "endOffset": 114245
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1591,
-                    "startColumn": 4,
-                    "startOffset": 114250,
-                    "endColumn": 83,
-                    "endOffset": 114329
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1592,
-                    "startColumn": 4,
-                    "startOffset": 114334,
-                    "endColumn": 95,
-                    "endOffset": 114425
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1593,
-                    "startColumn": 4,
-                    "startOffset": 114430,
-                    "endColumn": 95,
-                    "endOffset": 114521
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1594,
-                    "startColumn": 4,
-                    "startOffset": 114526,
-                    "endColumn": 97,
-                    "endOffset": 114619
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1595,
-                    "startColumn": 4,
-                    "startOffset": 114624,
-                    "endColumn": 99,
-                    "endOffset": 114719
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1596,
-                    "startColumn": 4,
-                    "startOffset": 114724,
-                    "endColumn": 101,
-                    "endOffset": 114821
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1597,
-                    "startColumn": 4,
-                    "startOffset": 114826,
-                    "endColumn": 101,
-                    "endOffset": 114923
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1598,
-                    "startColumn": 4,
-                    "startOffset": 114928,
-                    "endColumn": 101,
-                    "endOffset": 115025
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1599,
-                    "startColumn": 4,
-                    "startOffset": 115030,
-                    "endColumn": 101,
-                    "endOffset": 115127
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1600,
-                    "startColumn": 4,
-                    "startOffset": 115132,
-                    "endColumn": 101,
-                    "endOffset": 115229
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1601,
-                    "startColumn": 4,
-                    "startOffset": 115234,
-                    "endColumn": 99,
-                    "endOffset": 115329
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1602,
-                    "startColumn": 4,
-                    "startOffset": 115334,
-                    "endColumn": 95,
-                    "endOffset": 115425
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1603,
-                    "startColumn": 4,
-                    "startOffset": 115430,
-                    "endColumn": 111,
-                    "endOffset": 115537
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1604,
-                    "startColumn": 4,
-                    "startOffset": 115542,
-                    "endColumn": 128,
-                    "endOffset": 115666
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1605,
-                    "startColumn": 4,
-                    "startOffset": 115671,
-                    "endColumn": 122,
-                    "endOffset": 115789
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1606,
-                    "startColumn": 4,
-                    "startOffset": 115794,
-                    "endColumn": 130,
-                    "endOffset": 115920
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1607,
-                    "startColumn": 4,
-                    "startOffset": 115925,
-                    "endColumn": 130,
-                    "endOffset": 116051
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1608,
-                    "startColumn": 4,
-                    "startOffset": 116056,
-                    "endColumn": 97,
-                    "endOffset": 116149
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1609,
-                    "startColumn": 4,
-                    "startOffset": 116154,
-                    "endColumn": 113,
-                    "endOffset": 116263
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1610,
-                    "startColumn": 4,
-                    "startOffset": 116268,
-                    "endColumn": 93,
-                    "endOffset": 116357
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1611,
-                    "startColumn": 4,
-                    "startOffset": 116362,
-                    "endLine": 1614,
-                    "endColumn": 12,
-                    "endOffset": 116556
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1615,
-                    "startColumn": 4,
-                    "startOffset": 116561,
-                    "endLine": 1618,
-                    "endColumn": 12,
-                    "endOffset": 116760
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1619,
-                    "startColumn": 4,
-                    "startOffset": 116765,
-                    "endColumn": 68,
-                    "endOffset": 116829
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1620,
-                    "startColumn": 4,
-                    "startOffset": 116834,
-                    "endColumn": 115,
-                    "endOffset": 116945
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1621,
-                    "startColumn": 4,
-                    "startOffset": 116950,
-                    "endColumn": 127,
-                    "endOffset": 117073
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1622,
-                    "startColumn": 4,
-                    "startOffset": 117078,
-                    "endColumn": 63,
-                    "endOffset": 117137
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1623,
-                    "startColumn": 4,
-                    "startOffset": 117142,
-                    "endLine": 1626,
-                    "endColumn": 12,
-                    "endOffset": 117341
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1627,
-                    "startColumn": 4,
-                    "startOffset": 117346,
-                    "endColumn": 68,
-                    "endOffset": 117410
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1628,
-                    "startColumn": 4,
-                    "startOffset": 117415,
-                    "endLine": 1631,
-                    "endColumn": 12,
-                    "endOffset": 117613
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1632,
-                    "startColumn": 4,
-                    "startOffset": 117618,
-                    "endColumn": 69,
-                    "endOffset": 117683
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1633,
-                    "startColumn": 4,
-                    "startOffset": 117688,
-                    "endLine": 1634,
-                    "endColumn": 12,
-                    "endOffset": 117823
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1635,
-                    "startColumn": 4,
-                    "startOffset": 117828,
-                    "endLine": 1636,
-                    "endColumn": 12,
-                    "endOffset": 117957
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1637,
-                    "startColumn": 4,
-                    "startOffset": 117962,
-                    "endColumn": 95,
-                    "endOffset": 118053
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1638,
-                    "startColumn": 4,
-                    "startOffset": 118058,
-                    "endColumn": 111,
-                    "endOffset": 118165
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1639,
-                    "startColumn": 4,
-                    "startOffset": 118170,
-                    "endColumn": 99,
-                    "endOffset": 118265
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1640,
-                    "startColumn": 4,
-                    "startOffset": 118270,
-                    "endColumn": 115,
-                    "endOffset": 118381
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1641,
-                    "startColumn": 4,
-                    "startOffset": 118386,
-                    "endColumn": 95,
-                    "endOffset": 118477
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1642,
-                    "startColumn": 4,
-                    "startOffset": 118482,
-                    "endColumn": 111,
-                    "endOffset": 118589
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1643,
-                    "startColumn": 4,
-                    "startOffset": 118594,
-                    "endLine": 1644,
-                    "endColumn": 12,
-                    "endOffset": 118729
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1645,
-                    "startColumn": 4,
-                    "startOffset": 118734,
-                    "endColumn": 135,
-                    "endOffset": 118865
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1646,
-                    "startColumn": 4,
-                    "startOffset": 118870,
-                    "endLine": 1647,
-                    "endColumn": 12,
-                    "endOffset": 119029
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1648,
-                    "startColumn": 4,
-                    "startOffset": 119034,
-                    "endColumn": 129,
-                    "endOffset": 119159
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1649,
-                    "startColumn": 4,
-                    "startOffset": 119164,
-                    "endLine": 1650,
-                    "endColumn": 12,
-                    "endOffset": 119317
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1651,
-                    "startColumn": 4,
-                    "startOffset": 119322,
-                    "endLine": 1652,
-                    "endColumn": 12,
-                    "endOffset": 119467
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1653,
-                    "startColumn": 4,
-                    "startOffset": 119472,
-                    "endColumn": 140,
-                    "endOffset": 119608
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1654,
-                    "startColumn": 4,
-                    "startOffset": 119613,
-                    "endLine": 1655,
-                    "endColumn": 12,
-                    "endOffset": 119752
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1656,
-                    "startColumn": 4,
-                    "startOffset": 119757,
-                    "endColumn": 134,
-                    "endOffset": 119887
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1657,
-                    "startColumn": 4,
-                    "startOffset": 119892,
-                    "endColumn": 111,
-                    "endOffset": 119999
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1658,
-                    "startColumn": 4,
-                    "startOffset": 120004,
-                    "endColumn": 149,
-                    "endOffset": 120149
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1659,
-                    "startColumn": 4,
-                    "startOffset": 120154,
-                    "endColumn": 127,
-                    "endOffset": 120277
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1660,
-                    "startColumn": 4,
-                    "startOffset": 120282,
-                    "endColumn": 127,
-                    "endOffset": 120405
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1661,
-                    "startColumn": 4,
-                    "startOffset": 120410,
-                    "endLine": 1662,
-                    "endColumn": 12,
-                    "endOffset": 120541
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1663,
-                    "startColumn": 4,
-                    "startOffset": 120546,
-                    "endColumn": 131,
-                    "endOffset": 120673
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1664,
-                    "startColumn": 4,
-                    "startOffset": 120678,
-                    "endColumn": 129,
-                    "endOffset": 120803
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1665,
-                    "startColumn": 4,
-                    "startOffset": 120808,
-                    "endColumn": 129,
-                    "endOffset": 120933
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1666,
-                    "startColumn": 4,
-                    "startOffset": 120938,
-                    "endColumn": 111,
-                    "endOffset": 121045
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1667,
-                    "startColumn": 4,
-                    "startOffset": 121050,
-                    "endColumn": 139,
-                    "endOffset": 121185
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1668,
-                    "startColumn": 4,
-                    "startOffset": 121190,
-                    "endColumn": 67,
-                    "endOffset": 121253
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1669,
-                    "startColumn": 4,
-                    "startOffset": 121258,
-                    "endColumn": 72,
-                    "endOffset": 121326
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1670,
-                    "startColumn": 4,
-                    "startOffset": 121331,
-                    "endColumn": 73,
-                    "endOffset": 121400
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1671,
-                    "startColumn": 4,
-                    "startOffset": 121405,
-                    "endColumn": 72,
-                    "endOffset": 121473
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1672,
-                    "startColumn": 4,
-                    "startOffset": 121478,
-                    "endColumn": 73,
-                    "endOffset": 121547
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1673,
-                    "startColumn": 4,
-                    "startOffset": 121552,
-                    "endLine": 1674,
-                    "endColumn": 12,
-                    "endOffset": 121693
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1675,
-                    "startColumn": 4,
-                    "startOffset": 121698,
-                    "endLine": 1676,
-                    "endColumn": 12,
-                    "endOffset": 121837
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1677,
-                    "startColumn": 4,
-                    "startOffset": 121842,
-                    "endLine": 1678,
-                    "endColumn": 12,
-                    "endOffset": 121975
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1679,
-                    "startColumn": 4,
-                    "startOffset": 121980,
-                    "endColumn": 65,
-                    "endOffset": 122041
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1680,
-                    "startColumn": 4,
-                    "startOffset": 122046,
-                    "endColumn": 89,
-                    "endOffset": 122131
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1681,
-                    "startColumn": 4,
-                    "startOffset": 122136,
-                    "endColumn": 75,
-                    "endOffset": 122207
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1682,
-                    "startColumn": 4,
-                    "startOffset": 122212,
-                    "endColumn": 103,
-                    "endOffset": 122311
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1683,
-                    "startColumn": 4,
-                    "startOffset": 122316,
-                    "endColumn": 89,
-                    "endOffset": 122401
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1684,
-                    "startColumn": 4,
-                    "startOffset": 122406,
-                    "endColumn": 101,
-                    "endOffset": 122503
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1685,
-                    "startColumn": 4,
-                    "startOffset": 122508,
-                    "endColumn": 107,
-                    "endOffset": 122611
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1686,
-                    "startColumn": 4,
-                    "startOffset": 122616,
-                    "endColumn": 107,
-                    "endOffset": 122719
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1687,
-                    "startColumn": 4,
-                    "startOffset": 122724,
-                    "endColumn": 99,
-                    "endOffset": 122819
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1688,
-                    "startColumn": 4,
-                    "startOffset": 122824,
-                    "endColumn": 79,
-                    "endOffset": 122899
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1689,
-                    "startColumn": 4,
-                    "startOffset": 122904,
-                    "endColumn": 91,
-                    "endOffset": 122991
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1690,
-                    "startColumn": 4,
-                    "startOffset": 122996,
-                    "endColumn": 97,
-                    "endOffset": 123089
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1691,
-                    "startColumn": 4,
-                    "startOffset": 123094,
-                    "endLine": 1692,
-                    "endColumn": 12,
-                    "endOffset": 123199
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1693,
-                    "startColumn": 4,
-                    "startOffset": 123204,
-                    "endColumn": 77,
-                    "endOffset": 123277
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1694,
-                    "startColumn": 4,
-                    "startOffset": 123282,
-                    "endColumn": 105,
-                    "endOffset": 123383
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1695,
-                    "startColumn": 4,
-                    "startOffset": 123388,
-                    "endColumn": 91,
-                    "endOffset": 123475
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1696,
-                    "startColumn": 4,
-                    "startOffset": 123480,
-                    "endColumn": 103,
-                    "endOffset": 123579
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1697,
-                    "startColumn": 4,
-                    "startOffset": 123584,
-                    "endColumn": 109,
-                    "endOffset": 123689
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1698,
-                    "startColumn": 4,
-                    "startOffset": 123694,
-                    "endLine": 1699,
-                    "endColumn": 12,
-                    "endOffset": 123811
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1700,
-                    "startColumn": 4,
-                    "startOffset": 123816,
-                    "endLine": 1703,
-                    "endColumn": 12,
-                    "endOffset": 123974
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1704,
-                    "startColumn": 4,
-                    "startOffset": 123979,
-                    "endLine": 1707,
-                    "endColumn": 12,
-                    "endOffset": 124131
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1708,
-                    "startColumn": 4,
-                    "startOffset": 124136,
-                    "endColumn": 79,
-                    "endOffset": 124211
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1709,
-                    "startColumn": 4,
-                    "startOffset": 124216,
-                    "endColumn": 99,
-                    "endOffset": 124311
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1710,
-                    "startColumn": 4,
-                    "startOffset": 124316,
-                    "endColumn": 89,
-                    "endOffset": 124401
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1711,
-                    "startColumn": 4,
-                    "startOffset": 124406,
-                    "endColumn": 109,
-                    "endOffset": 124511
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1712,
-                    "startColumn": 4,
-                    "startOffset": 124516,
-                    "endColumn": 93,
-                    "endOffset": 124605
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1713,
-                    "startColumn": 4,
-                    "startOffset": 124610,
-                    "endColumn": 105,
-                    "endOffset": 124711
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1714,
-                    "startColumn": 4,
-                    "startOffset": 124716,
-                    "endColumn": 91,
-                    "endOffset": 124803
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1715,
-                    "startColumn": 4,
-                    "startOffset": 124808,
-                    "endLine": 1716,
-                    "endColumn": 12,
-                    "endOffset": 124903
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1717,
-                    "startColumn": 4,
-                    "startOffset": 124908,
-                    "endLine": 1718,
-                    "endColumn": 12,
-                    "endOffset": 125015
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1719,
-                    "startColumn": 4,
-                    "startOffset": 125020,
-                    "endLine": 1720,
-                    "endColumn": 12,
-                    "endOffset": 125129
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1721,
-                    "startColumn": 4,
-                    "startOffset": 125134,
-                    "endLine": 1722,
-                    "endColumn": 12,
-                    "endOffset": 125245
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1723,
-                    "startColumn": 4,
-                    "startOffset": 125250,
-                    "endLine": 1724,
-                    "endColumn": 12,
-                    "endOffset": 125361
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1725,
-                    "startColumn": 4,
-                    "startOffset": 125366,
-                    "endColumn": 93,
-                    "endOffset": 125455
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1726,
-                    "startColumn": 4,
-                    "startOffset": 125460,
-                    "endColumn": 113,
-                    "endOffset": 125569
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1727,
-                    "startColumn": 4,
-                    "startOffset": 125574,
-                    "endColumn": 111,
-                    "endOffset": 125681
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1728,
-                    "startColumn": 4,
-                    "startOffset": 125686,
-                    "endLine": 1729,
-                    "endColumn": 12,
-                    "endOffset": 125783
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1730,
-                    "startColumn": 4,
-                    "startOffset": 125788,
-                    "endLine": 1731,
-                    "endColumn": 12,
-                    "endOffset": 125903
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1732,
-                    "startColumn": 4,
-                    "startOffset": 125908,
-                    "endLine": 1733,
-                    "endColumn": 12,
-                    "endOffset": 126025
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1734,
-                    "startColumn": 4,
-                    "startOffset": 126030,
-                    "endColumn": 81,
-                    "endOffset": 126107
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1735,
-                    "startColumn": 4,
-                    "startOffset": 126112,
-                    "endColumn": 103,
-                    "endOffset": 126211
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1736,
-                    "startColumn": 4,
-                    "startOffset": 126216,
-                    "endColumn": 119,
-                    "endOffset": 126331
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1737,
-                    "startColumn": 4,
-                    "startOffset": 126336,
-                    "endColumn": 125,
-                    "endOffset": 126457
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1738,
-                    "startColumn": 4,
-                    "startOffset": 126462,
-                    "endColumn": 97,
-                    "endOffset": 126555
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1739,
-                    "startColumn": 4,
-                    "startOffset": 126560,
-                    "endColumn": 93,
-                    "endOffset": 126649
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1740,
-                    "startColumn": 4,
-                    "startOffset": 126654,
-                    "endColumn": 87,
-                    "endOffset": 126737
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1741,
-                    "startColumn": 4,
-                    "startOffset": 126742,
-                    "endColumn": 111,
-                    "endOffset": 126849
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1742,
-                    "startColumn": 4,
-                    "startOffset": 126854,
-                    "endColumn": 115,
-                    "endOffset": 126965
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1743,
-                    "startColumn": 4,
-                    "startOffset": 126970,
-                    "endColumn": 121,
-                    "endOffset": 127087
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1744,
-                    "startColumn": 4,
-                    "startOffset": 127092,
-                    "endColumn": 111,
-                    "endOffset": 127199
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1745,
-                    "startColumn": 4,
-                    "startOffset": 127204,
-                    "endLine": 1747,
-                    "endColumn": 12,
-                    "endOffset": 127374
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1748,
-                    "startColumn": 4,
-                    "startOffset": 127379,
-                    "endColumn": 115,
-                    "endOffset": 127490
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1749,
-                    "startColumn": 4,
-                    "startOffset": 127495,
-                    "endColumn": 85,
-                    "endOffset": 127576
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1750,
-                    "startColumn": 4,
-                    "startOffset": 127581,
-                    "endColumn": 91,
-                    "endOffset": 127668
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1751,
-                    "startColumn": 4,
-                    "startOffset": 127673,
-                    "endLine": 1752,
-                    "endColumn": 12,
-                    "endOffset": 127780
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1753,
-                    "startColumn": 4,
-                    "startOffset": 127785,
-                    "endLine": 1754,
-                    "endColumn": 12,
-                    "endOffset": 127904
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1755,
-                    "startColumn": 4,
-                    "startOffset": 127909,
-                    "endColumn": 66,
-                    "endOffset": 127971
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1756,
-                    "startColumn": 4,
-                    "startOffset": 127976,
-                    "endLine": 1757,
-                    "endColumn": 12,
-                    "endOffset": 128097
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1758,
-                    "startColumn": 4,
-                    "startOffset": 128102,
-                    "endColumn": 67,
-                    "endOffset": 128165
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1759,
-                    "startColumn": 4,
-                    "startOffset": 128170,
-                    "endLine": 1760,
-                    "endColumn": 12,
-                    "endOffset": 128293
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1761,
-                    "startColumn": 4,
-                    "startOffset": 128298,
-                    "endLine": 1762,
-                    "endColumn": 12,
-                    "endOffset": 128437
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1763,
-                    "startColumn": 4,
-                    "startOffset": 128442,
-                    "endLine": 1764,
-                    "endColumn": 12,
-                    "endOffset": 128565
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1765,
-                    "startColumn": 4,
-                    "startOffset": 128570,
-                    "endColumn": 68,
-                    "endOffset": 128634
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1766,
-                    "startColumn": 4,
-                    "startOffset": 128639,
-                    "endColumn": 94,
-                    "endOffset": 128729
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1767,
-                    "startColumn": 4,
-                    "startOffset": 128734,
-                    "endColumn": 114,
-                    "endOffset": 128844
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1768,
-                    "startColumn": 4,
-                    "startOffset": 128849,
-                    "endColumn": 112,
-                    "endOffset": 128957
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1769,
-                    "startColumn": 4,
-                    "startOffset": 128962,
-                    "endColumn": 98,
-                    "endOffset": 129056
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1770,
-                    "startColumn": 4,
-                    "startOffset": 129061,
-                    "endColumn": 108,
-                    "endOffset": 129165
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1771,
-                    "startColumn": 4,
-                    "startOffset": 129170,
-                    "endColumn": 110,
-                    "endOffset": 129276
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1772,
-                    "startColumn": 4,
-                    "startOffset": 129281,
-                    "endColumn": 110,
-                    "endOffset": 129387
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1773,
-                    "startColumn": 4,
-                    "startOffset": 129392,
-                    "endColumn": 100,
-                    "endOffset": 129488
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1774,
-                    "startColumn": 4,
-                    "startOffset": 129493,
-                    "endColumn": 104,
-                    "endOffset": 129593
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1775,
-                    "startColumn": 4,
-                    "startOffset": 129598,
-                    "endColumn": 99,
-                    "endOffset": 129693
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1776,
-                    "startColumn": 4,
-                    "startOffset": 129698,
-                    "endLine": 1777,
-                    "endColumn": 12,
-                    "endOffset": 129823
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1778,
-                    "startColumn": 4,
-                    "startOffset": 129828,
-                    "endColumn": 90,
-                    "endOffset": 129914
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1779,
-                    "startColumn": 4,
-                    "startOffset": 129919,
-                    "endColumn": 122,
-                    "endOffset": 130037
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1780,
-                    "startColumn": 4,
-                    "startOffset": 130042,
-                    "endColumn": 93,
-                    "endOffset": 130131
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1781,
-                    "startColumn": 4,
-                    "startOffset": 130136,
-                    "endLine": 1782,
-                    "endColumn": 12,
-                    "endOffset": 130243
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1783,
-                    "startColumn": 4,
-                    "startOffset": 130248,
-                    "endColumn": 85,
-                    "endOffset": 130329
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1784,
-                    "startColumn": 4,
-                    "startOffset": 130334,
-                    "endColumn": 103,
-                    "endOffset": 130433
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1785,
-                    "startColumn": 4,
-                    "startOffset": 130438,
-                    "endColumn": 95,
-                    "endOffset": 130529
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1786,
-                    "startColumn": 4,
-                    "startOffset": 130534,
-                    "endColumn": 74,
-                    "endOffset": 130604
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1787,
-                    "startColumn": 4,
-                    "startOffset": 130609,
-                    "endColumn": 69,
-                    "endOffset": 130674
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1788,
-                    "startColumn": 4,
-                    "startOffset": 130679,
-                    "endColumn": 87,
-                    "endOffset": 130762
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1789,
-                    "startColumn": 4,
-                    "startOffset": 130767,
-                    "endLine": 1790,
-                    "endColumn": 12,
-                    "endOffset": 130880
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1791,
-                    "startColumn": 4,
-                    "startOffset": 130885,
-                    "endLine": 1792,
-                    "endColumn": 12,
-                    "endOffset": 130984
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1793,
-                    "startColumn": 4,
-                    "startOffset": 130989,
-                    "endLine": 1794,
-                    "endColumn": 12,
-                    "endOffset": 131088
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1795,
-                    "startColumn": 4,
-                    "startOffset": 131093,
-                    "endLine": 1796,
-                    "endColumn": 12,
-                    "endOffset": 131214
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1797,
-                    "startColumn": 4,
-                    "startOffset": 131219,
-                    "endColumn": 87,
-                    "endOffset": 131302
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1798,
-                    "startColumn": 4,
-                    "startOffset": 131307,
-                    "endColumn": 107,
-                    "endOffset": 131410
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1799,
-                    "startColumn": 4,
-                    "startOffset": 131415,
-                    "endColumn": 99,
-                    "endOffset": 131510
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1800,
-                    "startColumn": 4,
-                    "startOffset": 131515,
-                    "endColumn": 89,
-                    "endOffset": 131600
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1801,
-                    "startColumn": 4,
-                    "startOffset": 131605,
-                    "endColumn": 109,
-                    "endOffset": 131710
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1802,
-                    "startColumn": 4,
-                    "startOffset": 131715,
-                    "endColumn": 83,
-                    "endOffset": 131794
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1803,
-                    "startColumn": 4,
-                    "startOffset": 131799,
-                    "endColumn": 101,
-                    "endOffset": 131896
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1804,
-                    "startColumn": 4,
-                    "startOffset": 131901,
-                    "endColumn": 83,
-                    "endOffset": 131980
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1805,
-                    "startColumn": 4,
-                    "startOffset": 131985,
-                    "endColumn": 53,
-                    "endOffset": 132034
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1806,
-                    "startColumn": 4,
-                    "startOffset": 132039,
-                    "endColumn": 63,
-                    "endOffset": 132098
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1807,
-                    "startColumn": 4,
-                    "startOffset": 132103,
-                    "endColumn": 105,
-                    "endOffset": 132204
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1808,
-                    "startColumn": 4,
-                    "startOffset": 132209,
-                    "endColumn": 109,
-                    "endOffset": 132314
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1809,
-                    "startColumn": 4,
-                    "startOffset": 132319,
-                    "endColumn": 83,
-                    "endOffset": 132398
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            },
-            {
-                "to": {
-                    "startLine": 1810,
-                    "startColumn": 4,
-                    "startOffset": 132403,
-                    "endColumn": 119,
-                    "endOffset": 132518
-                },
-                "from": {
-                    "file": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml"
-                }
-            }
-        ]
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/anim.json b/android/.build/intermediates/blame/res/debug/single/anim.json
deleted file mode 100644
index 2975a7fcf1ae0e7d4eae79050f7e4577c95f9c85..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/anim.json
+++ /dev/null
@@ -1,42 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_shrink_fade_out_from_bottom.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_out_bottom.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_grow_fade_in_from_bottom.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_in_bottom.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_out_top.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_popup_exit.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_popup_exit.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_fade_out.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_fade_out.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_fade_in.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_fade_in.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_popup_enter.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_popup_enter.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_in_top.xml"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/color-v11.json b/android/.build/intermediates/blame/res/debug/single/color-v11.json
deleted file mode 100644
index 38cf6256f7b69df18a0cab9a59f8b801d537c53f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/color-v11.json
+++ /dev/null
@@ -1,10 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/color-v23.json b/android/.build/intermediates/blame/res/debug/single/color-v23.json
deleted file mode 100644
index 13e56c8a13281694417e70904506541ac3111afb..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/color-v23.json
+++ /dev/null
@@ -1,42 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_switch_thumb.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_switch_thumb.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_seek_thumb.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_seek_thumb.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_spinner.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_spinner.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_switch_track.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_switch_track.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_default.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_default.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_color_highlight_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_edittext.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_edittext.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_btn_checkable.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_btn_checkable.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_btn_colored_borderless_text_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_btn_colored_borderless_text_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_btn_colored_text_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_btn_colored_text_material.xml"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/color.json b/android/.build/intermediates/blame/res/debug/single/color.json
deleted file mode 100644
index 2c0c3c74476f2a21cbb6fb5a9e9b42f15ec8d871..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/color.json
+++ /dev/null
@@ -1,94 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_tint_btn_checkable.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_btn_checkable.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_material_dark.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/switch_thumb_material_light.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_secondary_text_material_light.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_disable_only_material_dark.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_btn_colored_borderless_text_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_btn_colored_borderless_text_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/common_google_signin_btn_text_light.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_text_light.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_tint_switch_thumb.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_switch_thumb.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_tint_spinner.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_spinner.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_tint_switch_track.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_switch_track.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_tint_default.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_default.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_hint_foreground_material_light.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_hint_foreground_material_light.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_btn_colored_text_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_btn_colored_text_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/common_google_signin_btn_tint.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_tint.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_disable_only_material_light.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_search_url_text.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_search_url_text.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_secondary_text_material_dark.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_tint_seek_thumb.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_seek_thumb.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_material_light.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_hint_foreground_material_dark.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_hint_foreground_material_dark.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/common_google_signin_btn_text_dark.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_text_dark.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_tint_edittext.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_edittext.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/switch_thumb_material_dark.xml"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json b/android/.build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json
deleted file mode 100644
index 7f15ea6615e0521c9a5683aa7f81d42c9e06f952..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json
+++ /dev/null
@@ -1,238 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_focused_holo.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_low_normal.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_low_normal.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_normal_pressed.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_48dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/googleg_standard_color_18.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/googleg_standard_color_18.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/googleg_disabled_color_18.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/googleg_disabled_color_18.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_low_pressed.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_normal.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_normal.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_36dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_16dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notify_panel_notification_icon_bg.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_full_open_on_phone.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_full_open_on_phone.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_text_light_normal_background.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_text_light_normal_background.9.png"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-hdpi.json b/android/.build/intermediates/blame/res/debug/single/drawable-hdpi.json
deleted file mode 100644
index f3c8162d6e28670083920f7c8d610b733a5c307f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-hdpi.json
+++ /dev/null
@@ -1,18 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi/ic_stat_name.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-hdpi/ic_stat_name.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi/splash.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-hdpi/splash.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi/notification_icon.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-hdpi/notification_icon.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi/icon.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-hdpi/icon.png"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-ldpi.json b/android/.build/intermediates/blame/res/debug/single/drawable-ldpi.json
deleted file mode 100644
index 8f9efa01998d8f45793a06e43c63a5a45f18b931..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-ldpi.json
+++ /dev/null
@@ -1,10 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldpi/splash.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-ldpi/splash.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldpi/icon.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-ldpi/icon.png"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi-v17.json b/android/.build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi-v17.json
deleted file mode 100644
index 7af5badfde4fa1fad46ffc724641cb5f18a93d27..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi-v17.json
+++ /dev/null
@@ -1,14 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi-v17.json b/android/.build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi-v17.json
deleted file mode 100644
index 02bb7fc0745d81aec35ec9c87479293dd1f53a2e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi-v17.json
+++ /dev/null
@@ -1,14 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-ldrtl-xhdpi-v17.json b/android/.build/intermediates/blame/res/debug/single/drawable-ldrtl-xhdpi-v17.json
deleted file mode 100644
index cf01b79c4f2147bb7592689fd4f458e718b8d41c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-ldrtl-xhdpi-v17.json
+++ /dev/null
@@ -1,14 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-ldrtl-xxhdpi-v17.json b/android/.build/intermediates/blame/res/debug/single/drawable-ldrtl-xxhdpi-v17.json
deleted file mode 100644
index a86cde7a731c3dd8cfc54fd81df77223d12ee364..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-ldrtl-xxhdpi-v17.json
+++ /dev/null
@@ -1,14 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-ldrtl-xxxhdpi-v17.json b/android/.build/intermediates/blame/res/debug/single/drawable-ldrtl-xxxhdpi-v17.json
deleted file mode 100644
index 7576e16fd17bd613d6aa1274d8113eff92a85dc0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-ldrtl-xxxhdpi-v17.json
+++ /dev/null
@@ -1,14 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json b/android/.build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json
deleted file mode 100644
index 2d2d4e409b9b3cfff647aa75f41317c416929cae..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json
+++ /dev/null
@@ -1,234 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_16dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_36dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/googleg_standard_color_18.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/googleg_standard_color_18.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_low_pressed.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/googleg_disabled_color_18.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/googleg_disabled_color_18.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_low_normal.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_low_normal.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_text_light_normal_background.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_text_light_normal_background.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_48dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_normal.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_normal.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_normal_pressed.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notify_panel_notification_icon_bg.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_focused_holo.9.png"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-mdpi.json b/android/.build/intermediates/blame/res/debug/single/drawable-mdpi.json
deleted file mode 100644
index 6b1ffa1fb038466ac70feca3436443b4fe7af49c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-mdpi.json
+++ /dev/null
@@ -1,18 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi/ic_stat_name.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-mdpi/ic_stat_name.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi/notification_icon.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-mdpi/notification_icon.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi/splash.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-mdpi/splash.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi/icon.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-mdpi/icon.png"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-v21.json b/android/.build/intermediates/blame/res/debug/single/drawable-v21.json
deleted file mode 100644
index b010da0a2148eb527e801cbf0591992b1708f1ca..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-v21.json
+++ /dev/null
@@ -1,18 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_btn_colored_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-v21/notification_action_background.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/notification_action_background.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_action_bar_item_background_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-v21/abc_edit_text_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_edit_text_material.xml"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-v23.json b/android/.build/intermediates/blame/res/debug/single/drawable-v23.json
deleted file mode 100644
index 77c1836d33f9588695bc62b4c9c8d7b73d6b6712..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-v23.json
+++ /dev/null
@@ -1,6 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v23/abc_control_background_material.xml"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json b/android/.build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json
deleted file mode 100644
index 74fadd39da7e8d25e8b80ec6661502330de95e68..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json
+++ /dev/null
@@ -1,238 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/googleg_standard_color_18.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/googleg_standard_color_18.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_full_open_on_phone.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_full_open_on_phone.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/googleg_disabled_color_18.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/googleg_disabled_color_18.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_low_pressed.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_normal.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_normal.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_36dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_16dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_low_normal.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_48dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-xhdpi.json b/android/.build/intermediates/blame/res/debug/single/drawable-xhdpi.json
deleted file mode 100644
index c77bb8d84b5efcbba28701159fc80f8f6fc06fff..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-xhdpi.json
+++ /dev/null
@@ -1,18 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi/notification_icon.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-xhdpi/notification_icon.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi/icon.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-xhdpi/icon.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi/ic_stat_name.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-xhdpi/ic_stat_name.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi/splash.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-xhdpi/splash.png"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json b/android/.build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json
deleted file mode 100644
index de913349ccd6fd728d34651955b19195bd64dc9a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json
+++ /dev/null
@@ -1,214 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/googleg_disabled_color_18.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/googleg_disabled_color_18.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/googleg_standard_color_18.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/googleg_standard_color_18.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-xxhdpi.json b/android/.build/intermediates/blame/res/debug/single/drawable-xxhdpi.json
deleted file mode 100644
index 8dbf9e7098c7d73faa8712b80014f72a2915d1ae..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-xxhdpi.json
+++ /dev/null
@@ -1,18 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/splash.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-xxhdpi/splash.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/ic_stat_name.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-xxhdpi/ic_stat_name.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/notification_icon.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-xxhdpi/notification_icon.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/icon.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-xxhdpi/icon.png"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-xxxhdpi-v4.json b/android/.build/intermediates/blame/res/debug/single/drawable-xxxhdpi-v4.json
deleted file mode 100644
index 63ccf4e683e87fc8ec341f8af5f651ae27831b5d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-xxxhdpi-v4.json
+++ /dev/null
@@ -1,106 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable-xxxhdpi.json b/android/.build/intermediates/blame/res/debug/single/drawable-xxxhdpi.json
deleted file mode 100644
index 2e0a9a2c495de95e32c4f70fd7fa85b04c32c355..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable-xxxhdpi.json
+++ /dev/null
@@ -1,6 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi/icon.png",
-        "source": "/home/beij/code/RocketChatMobile/android/res/drawable-xxxhdpi/icon.png"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/drawable.json b/android/.build/intermediates/blame/res/debug/single/drawable.json
deleted file mode 100644
index 8739216451c7eb6a2a8f3333458789d6023ddb71..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/drawable.json
+++ /dev/null
@@ -1,210 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_background_transition_holo_light.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_edit_text_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_borderless_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_text_cursor_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_spinner_textfield_background_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_light.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_seekbar_track_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_track_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_disabled.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_disabled.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_light.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_item_background_holo_light.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_light_focused.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light_focused.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/notification_bg.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_bg.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ic_menu_overflow_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_menu_overflow_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ratingbar_indicator_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_indicator_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/notification_icon_background.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_icon_background.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_seekbar_thumb_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_thumb_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_dark_normal.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark_normal.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/notification_tile_bg.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_tile_bg.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_dark_focused.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark_focused.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ic_arrow_drop_right_black_24dp.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_light_normal.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light_normal.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_cab_background_top_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_dark.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_disabled.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_disabled.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ic_search_api_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_search_api_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_colored_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_check_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_cab_background_internal_bg.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_dark_focused.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark_focused.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_dialog_material_background.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_dialog_material_background.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_vector_test.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_vector_test.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_light_normal.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light_normal.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_switch_thumb_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_seekbar_tick_mark_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_tick_mark_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ratingbar_small_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_small_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ic_clear_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_clear_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_tab_indicator_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_textfield_search_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_dark.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_item_background_holo_dark.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_dark_normal.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark_normal.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_radio_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ic_go_search_api_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_go_search_api_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ic_ab_back_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_ab_back_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ratingbar_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_holo_light.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/notification_bg_low.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_bg_low.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_holo_dark.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ic_voice_search_api_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_voice_search_api_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_default_mtrl_shape.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_light_focused.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light_focused.xml"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/layout-v11.json b/android/.build/intermediates/blame/res/debug/single/layout-v11.json
deleted file mode 100644
index 75a636bbed23f064fba791467cf2f5d4db743cc2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/layout-v11.json
+++ /dev/null
@@ -1,26 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v11/notification_media_action.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_media_action.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v11/notification_media_cancel_action.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_media_cancel_action.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media_narrow.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_narrow.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media_custom.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_custom.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media_narrow_custom.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_narrow_custom.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media.xml"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/layout-v16.json b/android/.build/intermediates/blame/res/debug/single/layout-v16.json
deleted file mode 100644
index b6a024daa7107fdb4e6a89a66f2c7f201c660a12..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/layout-v16.json
+++ /dev/null
@@ -1,6 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v16/notification_template_custom_big.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v16/notification_template_custom_big.xml"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/layout-v21.json b/android/.build/intermediates/blame/res/debug/single/layout-v21.json
deleted file mode 100644
index a14b4a7fe068bcd29279a1df79470b6f7226442e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/layout-v21.json
+++ /dev/null
@@ -1,18 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v21/notification_template_icon_group.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_template_icon_group.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v21/notification_template_custom_big.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_template_custom_big.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v21/notification_action.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_action.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v21/notification_action_tombstone.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_action_tombstone.xml"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/blame/res/debug/single/layout.json b/android/.build/intermediates/blame/res/debug/single/layout.json
deleted file mode 100644
index d2fa4fc535f0822f1268d615222dd73f9cec3354..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/blame/res/debug/single/layout.json
+++ /dev/null
@@ -1,166 +0,0 @@
-[
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/notification_action.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_action.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_search_dropdown_item_icons_2line.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_radio.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_activity_chooser_view.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_item_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_alert_dialog_button_bar_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_button_bar_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_mode_close_item_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/splash.xml",
-        "source": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/layout/splash.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/notification_action_tombstone.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_action_tombstone.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_layout.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_search_view.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_search_view.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_singlechoice_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_menu_layout.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_checkbox.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_popup_menu_header_item_layout.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_popup_menu_header_item_layout.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/notification_template_icon_group.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_icon_group.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/notification_template_lines_media.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_lines_media.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/notification_template_media.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_media.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_popup_menu_item_layout.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_part_chronometer.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/activity_jits_call.xml",
-        "source": "/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/layout/activity_jits_call.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/notification_template_part_time.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_part_time.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_screen_simple.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_simple.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_mode_bar.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_menu_item_layout.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_content_include.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_dialog_title_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/notification_template_media_custom.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_media_custom.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_view_list_nav_layout.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_icon.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_up_container.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_expanded_menu_layout.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_activity_chooser_view_list_item.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_title_item.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_alert_dialog_title_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_title_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_multichoice_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_simple_overlay_action_mode.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_select_dialog_material.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/support_simple_spinner_dropdown_item.xml"
-    },
-    {
-        "merged": "/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml",
-        "source": "/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_toolbar.xml"
-    }
-]
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/AndroidManifest.xml
deleted file mode 100644
index c3972c5c0f57fca93f3c807a4ff370d1f20acdf5..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-   Copyright (C) 2015 The Android Open Source Project
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
-
-        http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="android.support.graphics.drawable.animated" >
-
-    <uses-sdk android:minSdkVersion="11" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/jars/classes.jar
deleted file mode 100644
index 16f1f178f2774a4f612f70b8533857d4d938c833..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/proguard.txt b/android/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/proguard.txt
deleted file mode 100644
index 4695a39f11cad83a40a524f1ae6cd9cfa542611b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/proguard.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright (C) 2016 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-# keep setters in VectorDrawables so that animations can still work.
--keepclassmembers class android.support.graphics.drawable.VectorDrawableCompat$* {
-   void set*(***);
-   *** get*();
-}
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/AndroidManifest.xml
deleted file mode 100644
index ad562bdaff2c91df53e790c311578f35f194ae99..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- Copyright (C) 2012 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:tools="http://schemas.android.com/tools"
-    package="android.support.v7.appcompat" >
-
-    <uses-sdk
-        android:minSdkVersion="9"
-        tools:overrideLibrary="android.support.graphics.drawable.animated" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/R.txt b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/R.txt
deleted file mode 100644
index 74b2cad1c2c8b7973c48b7962ff1869bbebeb404..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/R.txt
+++ /dev/null
@@ -1,1424 +0,0 @@
-int anim abc_fade_in 0x7f040000
-int anim abc_fade_out 0x7f040001
-int anim abc_grow_fade_in_from_bottom 0x7f040002
-int anim abc_popup_enter 0x7f040003
-int anim abc_popup_exit 0x7f040004
-int anim abc_shrink_fade_out_from_bottom 0x7f040005
-int anim abc_slide_in_bottom 0x7f040006
-int anim abc_slide_in_top 0x7f040007
-int anim abc_slide_out_bottom 0x7f040008
-int anim abc_slide_out_top 0x7f040009
-int attr actionBarDivider 0x7f010041
-int attr actionBarItemBackground 0x7f010042
-int attr actionBarPopupTheme 0x7f01003b
-int attr actionBarSize 0x7f010040
-int attr actionBarSplitStyle 0x7f01003d
-int attr actionBarStyle 0x7f01003c
-int attr actionBarTabBarStyle 0x7f010037
-int attr actionBarTabStyle 0x7f010036
-int attr actionBarTabTextStyle 0x7f010038
-int attr actionBarTheme 0x7f01003e
-int attr actionBarWidgetTheme 0x7f01003f
-int attr actionButtonStyle 0x7f01005c
-int attr actionDropDownStyle 0x7f010058
-int attr actionLayout 0x7f0100ad
-int attr actionMenuTextAppearance 0x7f010043
-int attr actionMenuTextColor 0x7f010044
-int attr actionModeBackground 0x7f010047
-int attr actionModeCloseButtonStyle 0x7f010046
-int attr actionModeCloseDrawable 0x7f010049
-int attr actionModeCopyDrawable 0x7f01004b
-int attr actionModeCutDrawable 0x7f01004a
-int attr actionModeFindDrawable 0x7f01004f
-int attr actionModePasteDrawable 0x7f01004c
-int attr actionModePopupWindowStyle 0x7f010051
-int attr actionModeSelectAllDrawable 0x7f01004d
-int attr actionModeShareDrawable 0x7f01004e
-int attr actionModeSplitBackground 0x7f010048
-int attr actionModeStyle 0x7f010045
-int attr actionModeWebSearchDrawable 0x7f010050
-int attr actionOverflowButtonStyle 0x7f010039
-int attr actionOverflowMenuStyle 0x7f01003a
-int attr actionProviderClass 0x7f0100af
-int attr actionViewClass 0x7f0100ae
-int attr activityChooserViewStyle 0x7f010064
-int attr alertDialogButtonGroupStyle 0x7f010088
-int attr alertDialogCenterButtons 0x7f010089
-int attr alertDialogStyle 0x7f010087
-int attr alertDialogTheme 0x7f01008a
-int attr allowStacking 0x7f01009d
-int attr alpha 0x7f01009e
-int attr arrowHeadLength 0x7f0100a5
-int attr arrowShaftLength 0x7f0100a6
-int attr autoCompleteTextViewStyle 0x7f01008f
-int attr background 0x7f01000c
-int attr backgroundSplit 0x7f01000e
-int attr backgroundStacked 0x7f01000d
-int attr backgroundTint 0x7f0100e2
-int attr backgroundTintMode 0x7f0100e3
-int attr barLength 0x7f0100a7
-int attr borderlessButtonStyle 0x7f010061
-int attr buttonBarButtonStyle 0x7f01005e
-int attr buttonBarNegativeButtonStyle 0x7f01008d
-int attr buttonBarNeutralButtonStyle 0x7f01008e
-int attr buttonBarPositiveButtonStyle 0x7f01008c
-int attr buttonBarStyle 0x7f01005d
-int attr buttonGravity 0x7f0100d7
-int attr buttonPanelSideLayout 0x7f010021
-int attr buttonStyle 0x7f010090
-int attr buttonStyleSmall 0x7f010091
-int attr buttonTint 0x7f01009f
-int attr buttonTintMode 0x7f0100a0
-int attr checkboxStyle 0x7f010092
-int attr checkedTextViewStyle 0x7f010093
-int attr closeIcon 0x7f0100ba
-int attr closeItemLayout 0x7f01001e
-int attr collapseContentDescription 0x7f0100d9
-int attr collapseIcon 0x7f0100d8
-int attr color 0x7f0100a1
-int attr colorAccent 0x7f01007f
-int attr colorBackgroundFloating 0x7f010086
-int attr colorButtonNormal 0x7f010083
-int attr colorControlActivated 0x7f010081
-int attr colorControlHighlight 0x7f010082
-int attr colorControlNormal 0x7f010080
-int attr colorPrimary 0x7f01007d
-int attr colorPrimaryDark 0x7f01007e
-int attr colorSwitchThumbNormal 0x7f010084
-int attr commitIcon 0x7f0100bf
-int attr contentInsetEnd 0x7f010017
-int attr contentInsetEndWithActions 0x7f01001b
-int attr contentInsetLeft 0x7f010018
-int attr contentInsetRight 0x7f010019
-int attr contentInsetStart 0x7f010016
-int attr contentInsetStartWithNavigation 0x7f01001a
-int attr controlBackground 0x7f010085
-int attr customNavigationLayout 0x7f01000f
-int attr defaultQueryHint 0x7f0100b9
-int attr dialogPreferredPadding 0x7f010056
-int attr dialogTheme 0x7f010055
-int attr displayOptions 0x7f010005
-int attr divider 0x7f01000b
-int attr dividerHorizontal 0x7f010063
-int attr dividerPadding 0x7f0100ab
-int attr dividerVertical 0x7f010062
-int attr drawableSize 0x7f0100a3
-int attr drawerArrowStyle 0x7f010000
-int attr dropDownListViewStyle 0x7f010075
-int attr dropdownListPreferredItemHeight 0x7f010059
-int attr editTextBackground 0x7f01006a
-int attr editTextColor 0x7f010069
-int attr editTextStyle 0x7f010094
-int attr elevation 0x7f01001c
-int attr expandActivityOverflowButtonDrawable 0x7f010020
-int attr gapBetweenBars 0x7f0100a4
-int attr goIcon 0x7f0100bb
-int attr height 0x7f010001
-int attr hideOnContentScroll 0x7f010015
-int attr homeAsUpIndicator 0x7f01005b
-int attr homeLayout 0x7f010010
-int attr icon 0x7f010009
-int attr iconifiedByDefault 0x7f0100b7
-int attr imageButtonStyle 0x7f01006b
-int attr indeterminateProgressStyle 0x7f010012
-int attr initialActivityCount 0x7f01001f
-int attr isLightTheme 0x7f010002
-int attr itemPadding 0x7f010014
-int attr layout 0x7f0100b6
-int attr listChoiceBackgroundIndicator 0x7f01007c
-int attr listDividerAlertDialog 0x7f010057
-int attr listItemLayout 0x7f010025
-int attr listLayout 0x7f010022
-int attr listMenuViewStyle 0x7f01009c
-int attr listPopupWindowStyle 0x7f010076
-int attr listPreferredItemHeight 0x7f010070
-int attr listPreferredItemHeightLarge 0x7f010072
-int attr listPreferredItemHeightSmall 0x7f010071
-int attr listPreferredItemPaddingLeft 0x7f010073
-int attr listPreferredItemPaddingRight 0x7f010074
-int attr logo 0x7f01000a
-int attr logoDescription 0x7f0100dc
-int attr maxButtonHeight 0x7f0100d6
-int attr measureWithLargestChild 0x7f0100a9
-int attr multiChoiceItemLayout 0x7f010023
-int attr navigationContentDescription 0x7f0100db
-int attr navigationIcon 0x7f0100da
-int attr navigationMode 0x7f010004
-int attr overlapAnchor 0x7f0100b2
-int attr paddingBottomNoButtons 0x7f0100b4
-int attr paddingEnd 0x7f0100e0
-int attr paddingStart 0x7f0100df
-int attr paddingTopNoTitle 0x7f0100b5
-int attr panelBackground 0x7f010079
-int attr panelMenuListTheme 0x7f01007b
-int attr panelMenuListWidth 0x7f01007a
-int attr popupMenuStyle 0x7f010067
-int attr popupTheme 0x7f01001d
-int attr popupWindowStyle 0x7f010068
-int attr preserveIconSpacing 0x7f0100b0
-int attr progressBarPadding 0x7f010013
-int attr progressBarStyle 0x7f010011
-int attr queryBackground 0x7f0100c1
-int attr queryHint 0x7f0100b8
-int attr radioButtonStyle 0x7f010095
-int attr ratingBarStyle 0x7f010096
-int attr ratingBarStyleIndicator 0x7f010097
-int attr ratingBarStyleSmall 0x7f010098
-int attr searchHintIcon 0x7f0100bd
-int attr searchIcon 0x7f0100bc
-int attr searchViewStyle 0x7f01006f
-int attr seekBarStyle 0x7f010099
-int attr selectableItemBackground 0x7f01005f
-int attr selectableItemBackgroundBorderless 0x7f010060
-int attr showAsAction 0x7f0100ac
-int attr showDividers 0x7f0100aa
-int attr showText 0x7f0100cd
-int attr showTitle 0x7f010026
-int attr singleChoiceItemLayout 0x7f010024
-int attr spinBars 0x7f0100a2
-int attr spinnerDropDownItemStyle 0x7f01005a
-int attr spinnerStyle 0x7f01009a
-int attr splitTrack 0x7f0100cc
-int attr srcCompat 0x7f010027
-int attr state_above_anchor 0x7f0100b3
-int attr subMenuArrow 0x7f0100b1
-int attr submitBackground 0x7f0100c2
-int attr subtitle 0x7f010006
-int attr subtitleTextAppearance 0x7f0100cf
-int attr subtitleTextColor 0x7f0100de
-int attr subtitleTextStyle 0x7f010008
-int attr suggestionRowLayout 0x7f0100c0
-int attr switchMinWidth 0x7f0100ca
-int attr switchPadding 0x7f0100cb
-int attr switchStyle 0x7f01009b
-int attr switchTextAppearance 0x7f0100c9
-int attr textAllCaps 0x7f01002b
-int attr textAppearanceLargePopupMenu 0x7f010052
-int attr textAppearanceListItem 0x7f010077
-int attr textAppearanceListItemSmall 0x7f010078
-int attr textAppearancePopupMenuHeader 0x7f010054
-int attr textAppearanceSearchResultSubtitle 0x7f01006d
-int attr textAppearanceSearchResultTitle 0x7f01006c
-int attr textAppearanceSmallPopupMenu 0x7f010053
-int attr textColorAlertDialogListItem 0x7f01008b
-int attr textColorSearchUrl 0x7f01006e
-int attr theme 0x7f0100e1
-int attr thickness 0x7f0100a8
-int attr thumbTextPadding 0x7f0100c8
-int attr thumbTint 0x7f0100c3
-int attr thumbTintMode 0x7f0100c4
-int attr tickMark 0x7f010028
-int attr tickMarkTint 0x7f010029
-int attr tickMarkTintMode 0x7f01002a
-int attr title 0x7f010003
-int attr titleMargin 0x7f0100d0
-int attr titleMarginBottom 0x7f0100d4
-int attr titleMarginEnd 0x7f0100d2
-int attr titleMarginStart 0x7f0100d1
-int attr titleMarginTop 0x7f0100d3
-int attr titleMargins 0x7f0100d5
-int attr titleTextAppearance 0x7f0100ce
-int attr titleTextColor 0x7f0100dd
-int attr titleTextStyle 0x7f010007
-int attr toolbarNavigationButtonStyle 0x7f010066
-int attr toolbarStyle 0x7f010065
-int attr track 0x7f0100c5
-int attr trackTint 0x7f0100c6
-int attr trackTintMode 0x7f0100c7
-int attr voiceIcon 0x7f0100be
-int attr windowActionBar 0x7f01002c
-int attr windowActionBarOverlay 0x7f01002e
-int attr windowActionModeOverlay 0x7f01002f
-int attr windowFixedHeightMajor 0x7f010033
-int attr windowFixedHeightMinor 0x7f010031
-int attr windowFixedWidthMajor 0x7f010030
-int attr windowFixedWidthMinor 0x7f010032
-int attr windowMinWidthMajor 0x7f010034
-int attr windowMinWidthMinor 0x7f010035
-int attr windowNoTitle 0x7f01002d
-int bool abc_action_bar_embed_tabs 0x7f080000
-int bool abc_allow_stacked_button_bar 0x7f080001
-int bool abc_config_actionMenuItemAllCaps 0x7f080002
-int bool abc_config_closeDialogWhenTouchOutside 0x7f080003
-int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f080004
-int color abc_background_cache_hint_selector_material_dark 0x7f09003b
-int color abc_background_cache_hint_selector_material_light 0x7f09003c
-int color abc_btn_colored_borderless_text_material 0x7f09003d
-int color abc_btn_colored_text_material 0x7f09003e
-int color abc_color_highlight_material 0x7f09003f
-int color abc_hint_foreground_material_dark 0x7f090040
-int color abc_hint_foreground_material_light 0x7f090041
-int color abc_input_method_navigation_guard 0x7f090001
-int color abc_primary_text_disable_only_material_dark 0x7f090042
-int color abc_primary_text_disable_only_material_light 0x7f090043
-int color abc_primary_text_material_dark 0x7f090044
-int color abc_primary_text_material_light 0x7f090045
-int color abc_search_url_text 0x7f090046
-int color abc_search_url_text_normal 0x7f090002
-int color abc_search_url_text_pressed 0x7f090003
-int color abc_search_url_text_selected 0x7f090004
-int color abc_secondary_text_material_dark 0x7f090047
-int color abc_secondary_text_material_light 0x7f090048
-int color abc_tint_btn_checkable 0x7f090049
-int color abc_tint_default 0x7f09004a
-int color abc_tint_edittext 0x7f09004b
-int color abc_tint_seek_thumb 0x7f09004c
-int color abc_tint_spinner 0x7f09004d
-int color abc_tint_switch_thumb 0x7f09004e
-int color abc_tint_switch_track 0x7f09004f
-int color accent_material_dark 0x7f090005
-int color accent_material_light 0x7f090006
-int color background_floating_material_dark 0x7f090007
-int color background_floating_material_light 0x7f090008
-int color background_material_dark 0x7f090009
-int color background_material_light 0x7f09000a
-int color bright_foreground_disabled_material_dark 0x7f09000b
-int color bright_foreground_disabled_material_light 0x7f09000c
-int color bright_foreground_inverse_material_dark 0x7f09000d
-int color bright_foreground_inverse_material_light 0x7f09000e
-int color bright_foreground_material_dark 0x7f09000f
-int color bright_foreground_material_light 0x7f090010
-int color button_material_dark 0x7f090011
-int color button_material_light 0x7f090012
-int color dim_foreground_disabled_material_dark 0x7f090013
-int color dim_foreground_disabled_material_light 0x7f090014
-int color dim_foreground_material_dark 0x7f090015
-int color dim_foreground_material_light 0x7f090016
-int color foreground_material_dark 0x7f090017
-int color foreground_material_light 0x7f090018
-int color highlighted_text_material_dark 0x7f090019
-int color highlighted_text_material_light 0x7f09001a
-int color material_blue_grey_800 0x7f09001b
-int color material_blue_grey_900 0x7f09001c
-int color material_blue_grey_950 0x7f09001d
-int color material_deep_teal_200 0x7f09001e
-int color material_deep_teal_500 0x7f09001f
-int color material_grey_100 0x7f090020
-int color material_grey_300 0x7f090021
-int color material_grey_50 0x7f090022
-int color material_grey_600 0x7f090023
-int color material_grey_800 0x7f090024
-int color material_grey_850 0x7f090025
-int color material_grey_900 0x7f090026
-int color notification_action_color_filter 0x7f090000
-int color notification_icon_bg_color 0x7f090027
-int color notification_material_background_media_default_color 0x7f090028
-int color primary_dark_material_dark 0x7f090029
-int color primary_dark_material_light 0x7f09002a
-int color primary_material_dark 0x7f09002b
-int color primary_material_light 0x7f09002c
-int color primary_text_default_material_dark 0x7f09002d
-int color primary_text_default_material_light 0x7f09002e
-int color primary_text_disabled_material_dark 0x7f09002f
-int color primary_text_disabled_material_light 0x7f090030
-int color ripple_material_dark 0x7f090031
-int color ripple_material_light 0x7f090032
-int color secondary_text_default_material_dark 0x7f090033
-int color secondary_text_default_material_light 0x7f090034
-int color secondary_text_disabled_material_dark 0x7f090035
-int color secondary_text_disabled_material_light 0x7f090036
-int color switch_thumb_disabled_material_dark 0x7f090037
-int color switch_thumb_disabled_material_light 0x7f090038
-int color switch_thumb_material_dark 0x7f090050
-int color switch_thumb_material_light 0x7f090051
-int color switch_thumb_normal_material_dark 0x7f090039
-int color switch_thumb_normal_material_light 0x7f09003a
-int dimen abc_action_bar_content_inset_material 0x7f06000c
-int dimen abc_action_bar_content_inset_with_nav 0x7f06000d
-int dimen abc_action_bar_default_height_material 0x7f060001
-int dimen abc_action_bar_default_padding_end_material 0x7f06000e
-int dimen abc_action_bar_default_padding_start_material 0x7f06000f
-int dimen abc_action_bar_elevation_material 0x7f060015
-int dimen abc_action_bar_icon_vertical_padding_material 0x7f060016
-int dimen abc_action_bar_overflow_padding_end_material 0x7f060017
-int dimen abc_action_bar_overflow_padding_start_material 0x7f060018
-int dimen abc_action_bar_progress_bar_size 0x7f060002
-int dimen abc_action_bar_stacked_max_height 0x7f060019
-int dimen abc_action_bar_stacked_tab_max_width 0x7f06001a
-int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f06001b
-int dimen abc_action_bar_subtitle_top_margin_material 0x7f06001c
-int dimen abc_action_button_min_height_material 0x7f06001d
-int dimen abc_action_button_min_width_material 0x7f06001e
-int dimen abc_action_button_min_width_overflow_material 0x7f06001f
-int dimen abc_alert_dialog_button_bar_height 0x7f060000
-int dimen abc_button_inset_horizontal_material 0x7f060020
-int dimen abc_button_inset_vertical_material 0x7f060021
-int dimen abc_button_padding_horizontal_material 0x7f060022
-int dimen abc_button_padding_vertical_material 0x7f060023
-int dimen abc_cascading_menus_min_smallest_width 0x7f060024
-int dimen abc_config_prefDialogWidth 0x7f060005
-int dimen abc_control_corner_material 0x7f060025
-int dimen abc_control_inset_material 0x7f060026
-int dimen abc_control_padding_material 0x7f060027
-int dimen abc_dialog_fixed_height_major 0x7f060006
-int dimen abc_dialog_fixed_height_minor 0x7f060007
-int dimen abc_dialog_fixed_width_major 0x7f060008
-int dimen abc_dialog_fixed_width_minor 0x7f060009
-int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f060028
-int dimen abc_dialog_list_padding_top_no_title 0x7f060029
-int dimen abc_dialog_min_width_major 0x7f06000a
-int dimen abc_dialog_min_width_minor 0x7f06000b
-int dimen abc_dialog_padding_material 0x7f06002a
-int dimen abc_dialog_padding_top_material 0x7f06002b
-int dimen abc_dialog_title_divider_material 0x7f06002c
-int dimen abc_disabled_alpha_material_dark 0x7f06002d
-int dimen abc_disabled_alpha_material_light 0x7f06002e
-int dimen abc_dropdownitem_icon_width 0x7f06002f
-int dimen abc_dropdownitem_text_padding_left 0x7f060030
-int dimen abc_dropdownitem_text_padding_right 0x7f060031
-int dimen abc_edit_text_inset_bottom_material 0x7f060032
-int dimen abc_edit_text_inset_horizontal_material 0x7f060033
-int dimen abc_edit_text_inset_top_material 0x7f060034
-int dimen abc_floating_window_z 0x7f060035
-int dimen abc_list_item_padding_horizontal_material 0x7f060036
-int dimen abc_panel_menu_list_width 0x7f060037
-int dimen abc_progress_bar_height_material 0x7f060038
-int dimen abc_search_view_preferred_height 0x7f060039
-int dimen abc_search_view_preferred_width 0x7f06003a
-int dimen abc_seekbar_track_background_height_material 0x7f06003b
-int dimen abc_seekbar_track_progress_height_material 0x7f06003c
-int dimen abc_select_dialog_padding_start_material 0x7f06003d
-int dimen abc_switch_padding 0x7f060011
-int dimen abc_text_size_body_1_material 0x7f06003e
-int dimen abc_text_size_body_2_material 0x7f06003f
-int dimen abc_text_size_button_material 0x7f060040
-int dimen abc_text_size_caption_material 0x7f060041
-int dimen abc_text_size_display_1_material 0x7f060042
-int dimen abc_text_size_display_2_material 0x7f060043
-int dimen abc_text_size_display_3_material 0x7f060044
-int dimen abc_text_size_display_4_material 0x7f060045
-int dimen abc_text_size_headline_material 0x7f060046
-int dimen abc_text_size_large_material 0x7f060047
-int dimen abc_text_size_medium_material 0x7f060048
-int dimen abc_text_size_menu_header_material 0x7f060049
-int dimen abc_text_size_menu_material 0x7f06004a
-int dimen abc_text_size_small_material 0x7f06004b
-int dimen abc_text_size_subhead_material 0x7f06004c
-int dimen abc_text_size_subtitle_material_toolbar 0x7f060003
-int dimen abc_text_size_title_material 0x7f06004d
-int dimen abc_text_size_title_material_toolbar 0x7f060004
-int dimen disabled_alpha_material_dark 0x7f06004e
-int dimen disabled_alpha_material_light 0x7f06004f
-int dimen highlight_alpha_material_colored 0x7f060050
-int dimen highlight_alpha_material_dark 0x7f060051
-int dimen highlight_alpha_material_light 0x7f060052
-int dimen hint_alpha_material_dark 0x7f060053
-int dimen hint_alpha_material_light 0x7f060054
-int dimen hint_pressed_alpha_material_dark 0x7f060055
-int dimen hint_pressed_alpha_material_light 0x7f060056
-int dimen notification_action_icon_size 0x7f060057
-int dimen notification_action_text_size 0x7f060058
-int dimen notification_big_circle_margin 0x7f060059
-int dimen notification_content_margin_start 0x7f060012
-int dimen notification_large_icon_height 0x7f06005a
-int dimen notification_large_icon_width 0x7f06005b
-int dimen notification_main_column_padding_top 0x7f060013
-int dimen notification_media_narrow_margin 0x7f060014
-int dimen notification_right_icon_size 0x7f06005c
-int dimen notification_right_side_padding_top 0x7f060010
-int dimen notification_small_icon_background_padding 0x7f06005d
-int dimen notification_small_icon_size_as_large 0x7f06005e
-int dimen notification_subtext_size 0x7f06005f
-int dimen notification_top_pad 0x7f060060
-int dimen notification_top_pad_large_text 0x7f060061
-int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
-int drawable abc_action_bar_item_background_material 0x7f020001
-int drawable abc_btn_borderless_material 0x7f020002
-int drawable abc_btn_check_material 0x7f020003
-int drawable abc_btn_check_to_on_mtrl_000 0x7f020004
-int drawable abc_btn_check_to_on_mtrl_015 0x7f020005
-int drawable abc_btn_colored_material 0x7f020006
-int drawable abc_btn_default_mtrl_shape 0x7f020007
-int drawable abc_btn_radio_material 0x7f020008
-int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009
-int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a
-int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000b
-int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000c
-int drawable abc_cab_background_internal_bg 0x7f02000d
-int drawable abc_cab_background_top_material 0x7f02000e
-int drawable abc_cab_background_top_mtrl_alpha 0x7f02000f
-int drawable abc_control_background_material 0x7f020010
-int drawable abc_dialog_material_background 0x7f020011
-int drawable abc_edit_text_material 0x7f020012
-int drawable abc_ic_ab_back_material 0x7f020013
-int drawable abc_ic_arrow_drop_right_black_24dp 0x7f020014
-int drawable abc_ic_clear_material 0x7f020015
-int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020016
-int drawable abc_ic_go_search_api_material 0x7f020017
-int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f020018
-int drawable abc_ic_menu_cut_mtrl_alpha 0x7f020019
-int drawable abc_ic_menu_overflow_material 0x7f02001a
-int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001b
-int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001c
-int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001d
-int drawable abc_ic_search_api_material 0x7f02001e
-int drawable abc_ic_star_black_16dp 0x7f02001f
-int drawable abc_ic_star_black_36dp 0x7f020020
-int drawable abc_ic_star_black_48dp 0x7f020021
-int drawable abc_ic_star_half_black_16dp 0x7f020022
-int drawable abc_ic_star_half_black_36dp 0x7f020023
-int drawable abc_ic_star_half_black_48dp 0x7f020024
-int drawable abc_ic_voice_search_api_material 0x7f020025
-int drawable abc_item_background_holo_dark 0x7f020026
-int drawable abc_item_background_holo_light 0x7f020027
-int drawable abc_list_divider_mtrl_alpha 0x7f020028
-int drawable abc_list_focused_holo 0x7f020029
-int drawable abc_list_longpressed_holo 0x7f02002a
-int drawable abc_list_pressed_holo_dark 0x7f02002b
-int drawable abc_list_pressed_holo_light 0x7f02002c
-int drawable abc_list_selector_background_transition_holo_dark 0x7f02002d
-int drawable abc_list_selector_background_transition_holo_light 0x7f02002e
-int drawable abc_list_selector_disabled_holo_dark 0x7f02002f
-int drawable abc_list_selector_disabled_holo_light 0x7f020030
-int drawable abc_list_selector_holo_dark 0x7f020031
-int drawable abc_list_selector_holo_light 0x7f020032
-int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f020033
-int drawable abc_popup_background_mtrl_mult 0x7f020034
-int drawable abc_ratingbar_indicator_material 0x7f020035
-int drawable abc_ratingbar_material 0x7f020036
-int drawable abc_ratingbar_small_material 0x7f020037
-int drawable abc_scrubber_control_off_mtrl_alpha 0x7f020038
-int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f020039
-int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f02003a
-int drawable abc_scrubber_primary_mtrl_alpha 0x7f02003b
-int drawable abc_scrubber_track_mtrl_alpha 0x7f02003c
-int drawable abc_seekbar_thumb_material 0x7f02003d
-int drawable abc_seekbar_tick_mark_material 0x7f02003e
-int drawable abc_seekbar_track_material 0x7f02003f
-int drawable abc_spinner_mtrl_am_alpha 0x7f020040
-int drawable abc_spinner_textfield_background_material 0x7f020041
-int drawable abc_switch_thumb_material 0x7f020042
-int drawable abc_switch_track_mtrl_alpha 0x7f020043
-int drawable abc_tab_indicator_material 0x7f020044
-int drawable abc_tab_indicator_mtrl_alpha 0x7f020045
-int drawable abc_text_cursor_material 0x7f020046
-int drawable abc_text_select_handle_left_mtrl_dark 0x7f020047
-int drawable abc_text_select_handle_left_mtrl_light 0x7f020048
-int drawable abc_text_select_handle_middle_mtrl_dark 0x7f020049
-int drawable abc_text_select_handle_middle_mtrl_light 0x7f02004a
-int drawable abc_text_select_handle_right_mtrl_dark 0x7f02004b
-int drawable abc_text_select_handle_right_mtrl_light 0x7f02004c
-int drawable abc_textfield_activated_mtrl_alpha 0x7f02004d
-int drawable abc_textfield_default_mtrl_alpha 0x7f02004e
-int drawable abc_textfield_search_activated_mtrl_alpha 0x7f02004f
-int drawable abc_textfield_search_default_mtrl_alpha 0x7f020050
-int drawable abc_textfield_search_material 0x7f020051
-int drawable abc_vector_test 0x7f020052
-int drawable notification_action_background 0x7f020053
-int drawable notification_bg 0x7f020054
-int drawable notification_bg_low 0x7f020055
-int drawable notification_bg_low_normal 0x7f020056
-int drawable notification_bg_low_pressed 0x7f020057
-int drawable notification_bg_normal 0x7f020058
-int drawable notification_bg_normal_pressed 0x7f020059
-int drawable notification_icon_background 0x7f02005a
-int drawable notification_template_icon_bg 0x7f02005d
-int drawable notification_template_icon_low_bg 0x7f02005e
-int drawable notification_tile_bg 0x7f02005b
-int drawable notify_panel_notification_icon_bg 0x7f02005c
-int id action0 0x7f0a0059
-int id action_bar 0x7f0a0047
-int id action_bar_activity_content 0x7f0a0000
-int id action_bar_container 0x7f0a0046
-int id action_bar_root 0x7f0a0042
-int id action_bar_spinner 0x7f0a0001
-int id action_bar_subtitle 0x7f0a0025
-int id action_bar_title 0x7f0a0024
-int id action_container 0x7f0a0056
-int id action_context_bar 0x7f0a0048
-int id action_divider 0x7f0a005d
-int id action_image 0x7f0a0057
-int id action_menu_divider 0x7f0a0002
-int id action_menu_presenter 0x7f0a0003
-int id action_mode_bar 0x7f0a0044
-int id action_mode_bar_stub 0x7f0a0043
-int id action_mode_close_button 0x7f0a0026
-int id action_text 0x7f0a0058
-int id actions 0x7f0a0066
-int id activity_chooser_view_content 0x7f0a0027
-int id add 0x7f0a0013
-int id alertTitle 0x7f0a003b
-int id always 0x7f0a001d
-int id beginning 0x7f0a001a
-int id bottom 0x7f0a0022
-int id buttonPanel 0x7f0a002e
-int id cancel_action 0x7f0a005a
-int id checkbox 0x7f0a003e
-int id chronometer 0x7f0a0062
-int id collapseActionView 0x7f0a001e
-int id contentPanel 0x7f0a0031
-int id custom 0x7f0a0038
-int id customPanel 0x7f0a0037
-int id decor_content_parent 0x7f0a0045
-int id default_activity_button 0x7f0a002a
-int id disableHome 0x7f0a000c
-int id edit_query 0x7f0a0049
-int id end 0x7f0a001b
-int id end_padder 0x7f0a006c
-int id expand_activities_button 0x7f0a0028
-int id expanded_menu 0x7f0a003d
-int id home 0x7f0a0004
-int id homeAsUp 0x7f0a000d
-int id icon 0x7f0a002c
-int id icon_group 0x7f0a0067
-int id ifRoom 0x7f0a001f
-int id image 0x7f0a0029
-int id info 0x7f0a0063
-int id line1 0x7f0a0068
-int id line3 0x7f0a006a
-int id listMode 0x7f0a0009
-int id list_item 0x7f0a002b
-int id media_actions 0x7f0a005c
-int id middle 0x7f0a001c
-int id multiply 0x7f0a0014
-int id never 0x7f0a0020
-int id none 0x7f0a000e
-int id normal 0x7f0a000a
-int id notification_background 0x7f0a0065
-int id notification_main_column 0x7f0a005f
-int id notification_main_column_container 0x7f0a005e
-int id parentPanel 0x7f0a0030
-int id progress_circular 0x7f0a0005
-int id progress_horizontal 0x7f0a0006
-int id radio 0x7f0a0040
-int id right_icon 0x7f0a0064
-int id right_side 0x7f0a0060
-int id screen 0x7f0a0015
-int id scrollIndicatorDown 0x7f0a0036
-int id scrollIndicatorUp 0x7f0a0032
-int id scrollView 0x7f0a0033
-int id search_badge 0x7f0a004b
-int id search_bar 0x7f0a004a
-int id search_button 0x7f0a004c
-int id search_close_btn 0x7f0a0051
-int id search_edit_frame 0x7f0a004d
-int id search_go_btn 0x7f0a0053
-int id search_mag_icon 0x7f0a004e
-int id search_plate 0x7f0a004f
-int id search_src_text 0x7f0a0050
-int id search_voice_btn 0x7f0a0054
-int id select_dialog_listview 0x7f0a0055
-int id shortcut 0x7f0a003f
-int id showCustom 0x7f0a000f
-int id showHome 0x7f0a0010
-int id showTitle 0x7f0a0011
-int id spacer 0x7f0a002f
-int id split_action_bar 0x7f0a0007
-int id src_atop 0x7f0a0016
-int id src_in 0x7f0a0017
-int id src_over 0x7f0a0018
-int id status_bar_latest_event_content 0x7f0a005b
-int id submenuarrow 0x7f0a0041
-int id submit_area 0x7f0a0052
-int id tabMode 0x7f0a000b
-int id text 0x7f0a006b
-int id text2 0x7f0a0069
-int id textSpacerNoButtons 0x7f0a0035
-int id textSpacerNoTitle 0x7f0a0034
-int id time 0x7f0a0061
-int id title 0x7f0a002d
-int id titleDividerNoCustom 0x7f0a003c
-int id title_template 0x7f0a003a
-int id top 0x7f0a0023
-int id topPanel 0x7f0a0039
-int id up 0x7f0a0008
-int id useLogo 0x7f0a0012
-int id withText 0x7f0a0021
-int id wrap_content 0x7f0a0019
-int integer abc_config_activityDefaultDur 0x7f0b0000
-int integer abc_config_activityShortDur 0x7f0b0001
-int integer cancel_button_image_alpha 0x7f0b0002
-int integer status_bar_notification_info_maxnum 0x7f0b0003
-int layout abc_action_bar_title_item 0x7f030000
-int layout abc_action_bar_up_container 0x7f030001
-int layout abc_action_bar_view_list_nav_layout 0x7f030002
-int layout abc_action_menu_item_layout 0x7f030003
-int layout abc_action_menu_layout 0x7f030004
-int layout abc_action_mode_bar 0x7f030005
-int layout abc_action_mode_close_item_material 0x7f030006
-int layout abc_activity_chooser_view 0x7f030007
-int layout abc_activity_chooser_view_list_item 0x7f030008
-int layout abc_alert_dialog_button_bar_material 0x7f030009
-int layout abc_alert_dialog_material 0x7f03000a
-int layout abc_alert_dialog_title_material 0x7f03000b
-int layout abc_dialog_title_material 0x7f03000c
-int layout abc_expanded_menu_layout 0x7f03000d
-int layout abc_list_menu_item_checkbox 0x7f03000e
-int layout abc_list_menu_item_icon 0x7f03000f
-int layout abc_list_menu_item_layout 0x7f030010
-int layout abc_list_menu_item_radio 0x7f030011
-int layout abc_popup_menu_header_item_layout 0x7f030012
-int layout abc_popup_menu_item_layout 0x7f030013
-int layout abc_screen_content_include 0x7f030014
-int layout abc_screen_simple 0x7f030015
-int layout abc_screen_simple_overlay_action_mode 0x7f030016
-int layout abc_screen_toolbar 0x7f030017
-int layout abc_search_dropdown_item_icons_2line 0x7f030018
-int layout abc_search_view 0x7f030019
-int layout abc_select_dialog_material 0x7f03001a
-int layout notification_action 0x7f03001b
-int layout notification_action_tombstone 0x7f03001c
-int layout notification_media_action 0x7f03001d
-int layout notification_media_cancel_action 0x7f03001e
-int layout notification_template_big_media 0x7f03001f
-int layout notification_template_big_media_custom 0x7f030020
-int layout notification_template_big_media_narrow 0x7f030021
-int layout notification_template_big_media_narrow_custom 0x7f030022
-int layout notification_template_custom_big 0x7f030023
-int layout notification_template_icon_group 0x7f030024
-int layout notification_template_lines_media 0x7f030025
-int layout notification_template_media 0x7f030026
-int layout notification_template_media_custom 0x7f030027
-int layout notification_template_part_chronometer 0x7f030028
-int layout notification_template_part_time 0x7f030029
-int layout select_dialog_item_material 0x7f03002a
-int layout select_dialog_multichoice_material 0x7f03002b
-int layout select_dialog_singlechoice_material 0x7f03002c
-int layout support_simple_spinner_dropdown_item 0x7f03002d
-int string abc_action_bar_home_description 0x7f050000
-int string abc_action_bar_home_description_format 0x7f050001
-int string abc_action_bar_home_subtitle_description_format 0x7f050002
-int string abc_action_bar_up_description 0x7f050003
-int string abc_action_menu_overflow_description 0x7f050004
-int string abc_action_mode_done 0x7f050005
-int string abc_activity_chooser_view_see_all 0x7f050006
-int string abc_activitychooserview_choose_application 0x7f050007
-int string abc_capital_off 0x7f050008
-int string abc_capital_on 0x7f050009
-int string abc_font_family_body_1_material 0x7f050015
-int string abc_font_family_body_2_material 0x7f050016
-int string abc_font_family_button_material 0x7f050017
-int string abc_font_family_caption_material 0x7f050018
-int string abc_font_family_display_1_material 0x7f050019
-int string abc_font_family_display_2_material 0x7f05001a
-int string abc_font_family_display_3_material 0x7f05001b
-int string abc_font_family_display_4_material 0x7f05001c
-int string abc_font_family_headline_material 0x7f05001d
-int string abc_font_family_menu_material 0x7f05001e
-int string abc_font_family_subhead_material 0x7f05001f
-int string abc_font_family_title_material 0x7f050020
-int string abc_search_hint 0x7f05000a
-int string abc_searchview_description_clear 0x7f05000b
-int string abc_searchview_description_query 0x7f05000c
-int string abc_searchview_description_search 0x7f05000d
-int string abc_searchview_description_submit 0x7f05000e
-int string abc_searchview_description_voice 0x7f05000f
-int string abc_shareactionprovider_share_with 0x7f050010
-int string abc_shareactionprovider_share_with_application 0x7f050011
-int string abc_toolbar_collapse_description 0x7f050012
-int string search_menu_title 0x7f050013
-int string status_bar_notification_info_overflow 0x7f050014
-int style AlertDialog_AppCompat 0x7f07009f
-int style AlertDialog_AppCompat_Light 0x7f0700a0
-int style Animation_AppCompat_Dialog 0x7f0700a1
-int style Animation_AppCompat_DropDownUp 0x7f0700a2
-int style Base_AlertDialog_AppCompat 0x7f0700a3
-int style Base_AlertDialog_AppCompat_Light 0x7f0700a4
-int style Base_Animation_AppCompat_Dialog 0x7f0700a5
-int style Base_Animation_AppCompat_DropDownUp 0x7f0700a6
-int style Base_DialogWindowTitle_AppCompat 0x7f0700a7
-int style Base_DialogWindowTitleBackground_AppCompat 0x7f0700a8
-int style Base_TextAppearance_AppCompat 0x7f07003f
-int style Base_TextAppearance_AppCompat_Body1 0x7f070040
-int style Base_TextAppearance_AppCompat_Body2 0x7f070041
-int style Base_TextAppearance_AppCompat_Button 0x7f070027
-int style Base_TextAppearance_AppCompat_Caption 0x7f070042
-int style Base_TextAppearance_AppCompat_Display1 0x7f070043
-int style Base_TextAppearance_AppCompat_Display2 0x7f070044
-int style Base_TextAppearance_AppCompat_Display3 0x7f070045
-int style Base_TextAppearance_AppCompat_Display4 0x7f070046
-int style Base_TextAppearance_AppCompat_Headline 0x7f070047
-int style Base_TextAppearance_AppCompat_Inverse 0x7f07000b
-int style Base_TextAppearance_AppCompat_Large 0x7f070048
-int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f07000c
-int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f070049
-int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f07004a
-int style Base_TextAppearance_AppCompat_Medium 0x7f07004b
-int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f07000d
-int style Base_TextAppearance_AppCompat_Menu 0x7f07004c
-int style Base_TextAppearance_AppCompat_SearchResult 0x7f0700a9
-int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f07004d
-int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f07004e
-int style Base_TextAppearance_AppCompat_Small 0x7f07004f
-int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f07000e
-int style Base_TextAppearance_AppCompat_Subhead 0x7f070050
-int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f07000f
-int style Base_TextAppearance_AppCompat_Title 0x7f070051
-int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f070010
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f070094
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f070052
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f070053
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f070054
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f070055
-int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f070056
-int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f070057
-int style Base_TextAppearance_AppCompat_Widget_Button 0x7f070058
-int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f07009b
-int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f07009c
-int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f070095
-int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0700aa
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f070059
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f07005a
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f07005b
-int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f07005c
-int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f07005d
-int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0700ab
-int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f07005e
-int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f07005f
-int style Base_Theme_AppCompat 0x7f070060
-int style Base_Theme_AppCompat_CompactMenu 0x7f0700ac
-int style Base_Theme_AppCompat_Dialog 0x7f070011
-int style Base_Theme_AppCompat_Dialog_Alert 0x7f070012
-int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0700ad
-int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f070013
-int style Base_Theme_AppCompat_DialogWhenLarge 0x7f070001
-int style Base_Theme_AppCompat_Light 0x7f070061
-int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0700ae
-int style Base_Theme_AppCompat_Light_Dialog 0x7f070014
-int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f070015
-int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0700af
-int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f070016
-int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f070002
-int style Base_ThemeOverlay_AppCompat 0x7f0700b0
-int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0700b1
-int style Base_ThemeOverlay_AppCompat_Dark 0x7f0700b2
-int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0700b3
-int style Base_ThemeOverlay_AppCompat_Dialog 0x7f070017
-int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f070018
-int style Base_ThemeOverlay_AppCompat_Light 0x7f0700b4
-int style Base_V11_Theme_AppCompat_Dialog 0x7f070019
-int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f07001a
-int style Base_V11_ThemeOverlay_AppCompat_Dialog 0x7f07001b
-int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f070023
-int style Base_V12_Widget_AppCompat_EditText 0x7f070024
-int style Base_V21_Theme_AppCompat 0x7f070062
-int style Base_V21_Theme_AppCompat_Dialog 0x7f070063
-int style Base_V21_Theme_AppCompat_Light 0x7f070064
-int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f070065
-int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f070066
-int style Base_V22_Theme_AppCompat 0x7f070092
-int style Base_V22_Theme_AppCompat_Light 0x7f070093
-int style Base_V23_Theme_AppCompat 0x7f070096
-int style Base_V23_Theme_AppCompat_Light 0x7f070097
-int style Base_V7_Theme_AppCompat 0x7f0700b5
-int style Base_V7_Theme_AppCompat_Dialog 0x7f0700b6
-int style Base_V7_Theme_AppCompat_Light 0x7f0700b7
-int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0700b8
-int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0700b9
-int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0700ba
-int style Base_V7_Widget_AppCompat_EditText 0x7f0700bb
-int style Base_Widget_AppCompat_ActionBar 0x7f0700bc
-int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0700bd
-int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0700be
-int style Base_Widget_AppCompat_ActionBar_TabText 0x7f070067
-int style Base_Widget_AppCompat_ActionBar_TabView 0x7f070068
-int style Base_Widget_AppCompat_ActionButton 0x7f070069
-int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f07006a
-int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f07006b
-int style Base_Widget_AppCompat_ActionMode 0x7f0700bf
-int style Base_Widget_AppCompat_ActivityChooserView 0x7f0700c0
-int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f070025
-int style Base_Widget_AppCompat_Button 0x7f07006c
-int style Base_Widget_AppCompat_Button_Borderless 0x7f07006d
-int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f07006e
-int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0700c1
-int style Base_Widget_AppCompat_Button_Colored 0x7f070098
-int style Base_Widget_AppCompat_Button_Small 0x7f07006f
-int style Base_Widget_AppCompat_ButtonBar 0x7f070070
-int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0700c2
-int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f070071
-int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f070072
-int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0700c3
-int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f070000
-int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0700c4
-int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f070073
-int style Base_Widget_AppCompat_EditText 0x7f070026
-int style Base_Widget_AppCompat_ImageButton 0x7f070074
-int style Base_Widget_AppCompat_Light_ActionBar 0x7f0700c5
-int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0700c6
-int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0700c7
-int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f070075
-int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f070076
-int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f070077
-int style Base_Widget_AppCompat_Light_PopupMenu 0x7f070078
-int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f070079
-int style Base_Widget_AppCompat_ListMenuView 0x7f0700c8
-int style Base_Widget_AppCompat_ListPopupWindow 0x7f07007a
-int style Base_Widget_AppCompat_ListView 0x7f07007b
-int style Base_Widget_AppCompat_ListView_DropDown 0x7f07007c
-int style Base_Widget_AppCompat_ListView_Menu 0x7f07007d
-int style Base_Widget_AppCompat_PopupMenu 0x7f07007e
-int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f07007f
-int style Base_Widget_AppCompat_PopupWindow 0x7f0700c9
-int style Base_Widget_AppCompat_ProgressBar 0x7f07001c
-int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f07001d
-int style Base_Widget_AppCompat_RatingBar 0x7f070080
-int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f070099
-int style Base_Widget_AppCompat_RatingBar_Small 0x7f07009a
-int style Base_Widget_AppCompat_SearchView 0x7f0700ca
-int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0700cb
-int style Base_Widget_AppCompat_SeekBar 0x7f070081
-int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0700cc
-int style Base_Widget_AppCompat_Spinner 0x7f070082
-int style Base_Widget_AppCompat_Spinner_Underlined 0x7f070003
-int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f070083
-int style Base_Widget_AppCompat_Toolbar 0x7f0700cd
-int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f070084
-int style Platform_AppCompat 0x7f07001e
-int style Platform_AppCompat_Light 0x7f07001f
-int style Platform_ThemeOverlay_AppCompat 0x7f070085
-int style Platform_ThemeOverlay_AppCompat_Dark 0x7f070086
-int style Platform_ThemeOverlay_AppCompat_Light 0x7f070087
-int style Platform_V11_AppCompat 0x7f070020
-int style Platform_V11_AppCompat_Light 0x7f070021
-int style Platform_V14_AppCompat 0x7f070028
-int style Platform_V14_AppCompat_Light 0x7f070029
-int style Platform_V21_AppCompat 0x7f070088
-int style Platform_V21_AppCompat_Light 0x7f070089
-int style Platform_V25_AppCompat 0x7f07009d
-int style Platform_V25_AppCompat_Light 0x7f07009e
-int style Platform_Widget_AppCompat_Spinner 0x7f070022
-int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f070031
-int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f070032
-int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f070033
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f070034
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f070035
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f070036
-int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f070037
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f070038
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f070039
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f07003a
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f07003b
-int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f07003c
-int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f07003d
-int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f07003e
-int style TextAppearance_AppCompat 0x7f0700ce
-int style TextAppearance_AppCompat_Body1 0x7f0700cf
-int style TextAppearance_AppCompat_Body2 0x7f0700d0
-int style TextAppearance_AppCompat_Button 0x7f0700d1
-int style TextAppearance_AppCompat_Caption 0x7f0700d2
-int style TextAppearance_AppCompat_Display1 0x7f0700d3
-int style TextAppearance_AppCompat_Display2 0x7f0700d4
-int style TextAppearance_AppCompat_Display3 0x7f0700d5
-int style TextAppearance_AppCompat_Display4 0x7f0700d6
-int style TextAppearance_AppCompat_Headline 0x7f0700d7
-int style TextAppearance_AppCompat_Inverse 0x7f0700d8
-int style TextAppearance_AppCompat_Large 0x7f0700d9
-int style TextAppearance_AppCompat_Large_Inverse 0x7f0700da
-int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0700db
-int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0700dc
-int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0700dd
-int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0700de
-int style TextAppearance_AppCompat_Medium 0x7f0700df
-int style TextAppearance_AppCompat_Medium_Inverse 0x7f0700e0
-int style TextAppearance_AppCompat_Menu 0x7f0700e1
-int style TextAppearance_AppCompat_Notification 0x7f07002a
-int style TextAppearance_AppCompat_Notification_Info 0x7f07008a
-int style TextAppearance_AppCompat_Notification_Info_Media 0x7f07008b
-int style TextAppearance_AppCompat_Notification_Line2 0x7f0700e2
-int style TextAppearance_AppCompat_Notification_Line2_Media 0x7f0700e3
-int style TextAppearance_AppCompat_Notification_Media 0x7f07008c
-int style TextAppearance_AppCompat_Notification_Time 0x7f07008d
-int style TextAppearance_AppCompat_Notification_Time_Media 0x7f07008e
-int style TextAppearance_AppCompat_Notification_Title 0x7f07002b
-int style TextAppearance_AppCompat_Notification_Title_Media 0x7f07008f
-int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0700e4
-int style TextAppearance_AppCompat_SearchResult_Title 0x7f0700e5
-int style TextAppearance_AppCompat_Small 0x7f0700e6
-int style TextAppearance_AppCompat_Small_Inverse 0x7f0700e7
-int style TextAppearance_AppCompat_Subhead 0x7f0700e8
-int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0700e9
-int style TextAppearance_AppCompat_Title 0x7f0700ea
-int style TextAppearance_AppCompat_Title_Inverse 0x7f0700eb
-int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0700ec
-int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0700ed
-int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0700ee
-int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0700ef
-int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0700f0
-int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0700f1
-int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0700f2
-int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0700f3
-int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0700f4
-int style TextAppearance_AppCompat_Widget_Button 0x7f0700f5
-int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0700f6
-int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0700f7
-int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0700f8
-int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0700f9
-int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0700fa
-int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0700fb
-int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0700fc
-int style TextAppearance_AppCompat_Widget_Switch 0x7f0700fd
-int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0700fe
-int style TextAppearance_StatusBar_EventContent 0x7f07002c
-int style TextAppearance_StatusBar_EventContent_Info 0x7f07002d
-int style TextAppearance_StatusBar_EventContent_Line2 0x7f07002e
-int style TextAppearance_StatusBar_EventContent_Time 0x7f07002f
-int style TextAppearance_StatusBar_EventContent_Title 0x7f070030
-int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0700ff
-int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f070100
-int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f070101
-int style Theme_AppCompat 0x7f070102
-int style Theme_AppCompat_CompactMenu 0x7f070103
-int style Theme_AppCompat_DayNight 0x7f070004
-int style Theme_AppCompat_DayNight_DarkActionBar 0x7f070005
-int style Theme_AppCompat_DayNight_Dialog 0x7f070006
-int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f070007
-int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f070008
-int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f070009
-int style Theme_AppCompat_DayNight_NoActionBar 0x7f07000a
-int style Theme_AppCompat_Dialog 0x7f070104
-int style Theme_AppCompat_Dialog_Alert 0x7f070105
-int style Theme_AppCompat_Dialog_MinWidth 0x7f070106
-int style Theme_AppCompat_DialogWhenLarge 0x7f070107
-int style Theme_AppCompat_Light 0x7f070108
-int style Theme_AppCompat_Light_DarkActionBar 0x7f070109
-int style Theme_AppCompat_Light_Dialog 0x7f07010a
-int style Theme_AppCompat_Light_Dialog_Alert 0x7f07010b
-int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f07010c
-int style Theme_AppCompat_Light_DialogWhenLarge 0x7f07010d
-int style Theme_AppCompat_Light_NoActionBar 0x7f07010e
-int style Theme_AppCompat_NoActionBar 0x7f07010f
-int style ThemeOverlay_AppCompat 0x7f070110
-int style ThemeOverlay_AppCompat_ActionBar 0x7f070111
-int style ThemeOverlay_AppCompat_Dark 0x7f070112
-int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f070113
-int style ThemeOverlay_AppCompat_Dialog 0x7f070114
-int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f070115
-int style ThemeOverlay_AppCompat_Light 0x7f070116
-int style Widget_AppCompat_ActionBar 0x7f070117
-int style Widget_AppCompat_ActionBar_Solid 0x7f070118
-int style Widget_AppCompat_ActionBar_TabBar 0x7f070119
-int style Widget_AppCompat_ActionBar_TabText 0x7f07011a
-int style Widget_AppCompat_ActionBar_TabView 0x7f07011b
-int style Widget_AppCompat_ActionButton 0x7f07011c
-int style Widget_AppCompat_ActionButton_CloseMode 0x7f07011d
-int style Widget_AppCompat_ActionButton_Overflow 0x7f07011e
-int style Widget_AppCompat_ActionMode 0x7f07011f
-int style Widget_AppCompat_ActivityChooserView 0x7f070120
-int style Widget_AppCompat_AutoCompleteTextView 0x7f070121
-int style Widget_AppCompat_Button 0x7f070122
-int style Widget_AppCompat_Button_Borderless 0x7f070123
-int style Widget_AppCompat_Button_Borderless_Colored 0x7f070124
-int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f070125
-int style Widget_AppCompat_Button_Colored 0x7f070126
-int style Widget_AppCompat_Button_Small 0x7f070127
-int style Widget_AppCompat_ButtonBar 0x7f070128
-int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f070129
-int style Widget_AppCompat_CompoundButton_CheckBox 0x7f07012a
-int style Widget_AppCompat_CompoundButton_RadioButton 0x7f07012b
-int style Widget_AppCompat_CompoundButton_Switch 0x7f07012c
-int style Widget_AppCompat_DrawerArrowToggle 0x7f07012d
-int style Widget_AppCompat_DropDownItem_Spinner 0x7f07012e
-int style Widget_AppCompat_EditText 0x7f07012f
-int style Widget_AppCompat_ImageButton 0x7f070130
-int style Widget_AppCompat_Light_ActionBar 0x7f070131
-int style Widget_AppCompat_Light_ActionBar_Solid 0x7f070132
-int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f070133
-int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f070134
-int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f070135
-int style Widget_AppCompat_Light_ActionBar_TabText 0x7f070136
-int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f070137
-int style Widget_AppCompat_Light_ActionBar_TabView 0x7f070138
-int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f070139
-int style Widget_AppCompat_Light_ActionButton 0x7f07013a
-int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f07013b
-int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f07013c
-int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f07013d
-int style Widget_AppCompat_Light_ActivityChooserView 0x7f07013e
-int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f07013f
-int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f070140
-int style Widget_AppCompat_Light_ListPopupWindow 0x7f070141
-int style Widget_AppCompat_Light_ListView_DropDown 0x7f070142
-int style Widget_AppCompat_Light_PopupMenu 0x7f070143
-int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f070144
-int style Widget_AppCompat_Light_SearchView 0x7f070145
-int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f070146
-int style Widget_AppCompat_ListMenuView 0x7f070147
-int style Widget_AppCompat_ListPopupWindow 0x7f070148
-int style Widget_AppCompat_ListView 0x7f070149
-int style Widget_AppCompat_ListView_DropDown 0x7f07014a
-int style Widget_AppCompat_ListView_Menu 0x7f07014b
-int style Widget_AppCompat_NotificationActionContainer 0x7f070090
-int style Widget_AppCompat_NotificationActionText 0x7f070091
-int style Widget_AppCompat_PopupMenu 0x7f07014c
-int style Widget_AppCompat_PopupMenu_Overflow 0x7f07014d
-int style Widget_AppCompat_PopupWindow 0x7f07014e
-int style Widget_AppCompat_ProgressBar 0x7f07014f
-int style Widget_AppCompat_ProgressBar_Horizontal 0x7f070150
-int style Widget_AppCompat_RatingBar 0x7f070151
-int style Widget_AppCompat_RatingBar_Indicator 0x7f070152
-int style Widget_AppCompat_RatingBar_Small 0x7f070153
-int style Widget_AppCompat_SearchView 0x7f070154
-int style Widget_AppCompat_SearchView_ActionBar 0x7f070155
-int style Widget_AppCompat_SeekBar 0x7f070156
-int style Widget_AppCompat_SeekBar_Discrete 0x7f070157
-int style Widget_AppCompat_Spinner 0x7f070158
-int style Widget_AppCompat_Spinner_DropDown 0x7f070159
-int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f07015a
-int style Widget_AppCompat_Spinner_Underlined 0x7f07015b
-int style Widget_AppCompat_TextView_SpinnerItem 0x7f07015c
-int style Widget_AppCompat_Toolbar 0x7f07015d
-int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f07015e
-int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01005b }
-int styleable ActionBar_background 10
-int styleable ActionBar_backgroundSplit 12
-int styleable ActionBar_backgroundStacked 11
-int styleable ActionBar_contentInsetEnd 21
-int styleable ActionBar_contentInsetEndWithActions 25
-int styleable ActionBar_contentInsetLeft 22
-int styleable ActionBar_contentInsetRight 23
-int styleable ActionBar_contentInsetStart 20
-int styleable ActionBar_contentInsetStartWithNavigation 24
-int styleable ActionBar_customNavigationLayout 13
-int styleable ActionBar_displayOptions 3
-int styleable ActionBar_divider 9
-int styleable ActionBar_elevation 26
-int styleable ActionBar_height 0
-int styleable ActionBar_hideOnContentScroll 19
-int styleable ActionBar_homeAsUpIndicator 28
-int styleable ActionBar_homeLayout 14
-int styleable ActionBar_icon 7
-int styleable ActionBar_indeterminateProgressStyle 16
-int styleable ActionBar_itemPadding 18
-int styleable ActionBar_logo 8
-int styleable ActionBar_navigationMode 2
-int styleable ActionBar_popupTheme 27
-int styleable ActionBar_progressBarPadding 17
-int styleable ActionBar_progressBarStyle 15
-int styleable ActionBar_subtitle 4
-int styleable ActionBar_subtitleTextStyle 6
-int styleable ActionBar_title 1
-int styleable ActionBar_titleTextStyle 5
-int[] styleable ActionBarLayout { 0x010100b3 }
-int styleable ActionBarLayout_android_layout_gravity 0
-int[] styleable ActionMenuItemView { 0x0101013f }
-int styleable ActionMenuItemView_android_minWidth 0
-int[] styleable ActionMenuView { }
-int[] styleable ActionMode { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001e }
-int styleable ActionMode_background 3
-int styleable ActionMode_backgroundSplit 4
-int styleable ActionMode_closeItemLayout 5
-int styleable ActionMode_height 0
-int styleable ActionMode_subtitleTextStyle 2
-int styleable ActionMode_titleTextStyle 1
-int[] styleable ActivityChooserView { 0x7f01001f, 0x7f010020 }
-int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
-int styleable ActivityChooserView_initialActivityCount 0
-int[] styleable AlertDialog { 0x010100f2, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026 }
-int styleable AlertDialog_android_layout 0
-int styleable AlertDialog_buttonPanelSideLayout 1
-int styleable AlertDialog_listItemLayout 5
-int styleable AlertDialog_listLayout 2
-int styleable AlertDialog_multiChoiceItemLayout 3
-int styleable AlertDialog_showTitle 6
-int styleable AlertDialog_singleChoiceItemLayout 4
-int[] styleable AppCompatImageView { 0x01010119, 0x7f010027 }
-int styleable AppCompatImageView_android_src 0
-int styleable AppCompatImageView_srcCompat 1
-int[] styleable AppCompatSeekBar { 0x01010142, 0x7f010028, 0x7f010029, 0x7f01002a }
-int styleable AppCompatSeekBar_android_thumb 0
-int styleable AppCompatSeekBar_tickMark 1
-int styleable AppCompatSeekBar_tickMarkTint 2
-int styleable AppCompatSeekBar_tickMarkTintMode 3
-int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }
-int styleable AppCompatTextHelper_android_drawableBottom 2
-int styleable AppCompatTextHelper_android_drawableEnd 6
-int styleable AppCompatTextHelper_android_drawableLeft 3
-int styleable AppCompatTextHelper_android_drawableRight 4
-int styleable AppCompatTextHelper_android_drawableStart 5
-int styleable AppCompatTextHelper_android_drawableTop 1
-int styleable AppCompatTextHelper_android_textAppearance 0
-int[] styleable AppCompatTextView { 0x01010034, 0x7f01002b }
-int styleable AppCompatTextView_android_textAppearance 0
-int styleable AppCompatTextView_textAllCaps 1
-int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c }
-int styleable AppCompatTheme_actionBarDivider 23
-int styleable AppCompatTheme_actionBarItemBackground 24
-int styleable AppCompatTheme_actionBarPopupTheme 17
-int styleable AppCompatTheme_actionBarSize 22
-int styleable AppCompatTheme_actionBarSplitStyle 19
-int styleable AppCompatTheme_actionBarStyle 18
-int styleable AppCompatTheme_actionBarTabBarStyle 13
-int styleable AppCompatTheme_actionBarTabStyle 12
-int styleable AppCompatTheme_actionBarTabTextStyle 14
-int styleable AppCompatTheme_actionBarTheme 20
-int styleable AppCompatTheme_actionBarWidgetTheme 21
-int styleable AppCompatTheme_actionButtonStyle 50
-int styleable AppCompatTheme_actionDropDownStyle 46
-int styleable AppCompatTheme_actionMenuTextAppearance 25
-int styleable AppCompatTheme_actionMenuTextColor 26
-int styleable AppCompatTheme_actionModeBackground 29
-int styleable AppCompatTheme_actionModeCloseButtonStyle 28
-int styleable AppCompatTheme_actionModeCloseDrawable 31
-int styleable AppCompatTheme_actionModeCopyDrawable 33
-int styleable AppCompatTheme_actionModeCutDrawable 32
-int styleable AppCompatTheme_actionModeFindDrawable 37
-int styleable AppCompatTheme_actionModePasteDrawable 34
-int styleable AppCompatTheme_actionModePopupWindowStyle 39
-int styleable AppCompatTheme_actionModeSelectAllDrawable 35
-int styleable AppCompatTheme_actionModeShareDrawable 36
-int styleable AppCompatTheme_actionModeSplitBackground 30
-int styleable AppCompatTheme_actionModeStyle 27
-int styleable AppCompatTheme_actionModeWebSearchDrawable 38
-int styleable AppCompatTheme_actionOverflowButtonStyle 15
-int styleable AppCompatTheme_actionOverflowMenuStyle 16
-int styleable AppCompatTheme_activityChooserViewStyle 58
-int styleable AppCompatTheme_alertDialogButtonGroupStyle 94
-int styleable AppCompatTheme_alertDialogCenterButtons 95
-int styleable AppCompatTheme_alertDialogStyle 93
-int styleable AppCompatTheme_alertDialogTheme 96
-int styleable AppCompatTheme_android_windowAnimationStyle 1
-int styleable AppCompatTheme_android_windowIsFloating 0
-int styleable AppCompatTheme_autoCompleteTextViewStyle 101
-int styleable AppCompatTheme_borderlessButtonStyle 55
-int styleable AppCompatTheme_buttonBarButtonStyle 52
-int styleable AppCompatTheme_buttonBarNegativeButtonStyle 99
-int styleable AppCompatTheme_buttonBarNeutralButtonStyle 100
-int styleable AppCompatTheme_buttonBarPositiveButtonStyle 98
-int styleable AppCompatTheme_buttonBarStyle 51
-int styleable AppCompatTheme_buttonStyle 102
-int styleable AppCompatTheme_buttonStyleSmall 103
-int styleable AppCompatTheme_checkboxStyle 104
-int styleable AppCompatTheme_checkedTextViewStyle 105
-int styleable AppCompatTheme_colorAccent 85
-int styleable AppCompatTheme_colorBackgroundFloating 92
-int styleable AppCompatTheme_colorButtonNormal 89
-int styleable AppCompatTheme_colorControlActivated 87
-int styleable AppCompatTheme_colorControlHighlight 88
-int styleable AppCompatTheme_colorControlNormal 86
-int styleable AppCompatTheme_colorPrimary 83
-int styleable AppCompatTheme_colorPrimaryDark 84
-int styleable AppCompatTheme_colorSwitchThumbNormal 90
-int styleable AppCompatTheme_controlBackground 91
-int styleable AppCompatTheme_dialogPreferredPadding 44
-int styleable AppCompatTheme_dialogTheme 43
-int styleable AppCompatTheme_dividerHorizontal 57
-int styleable AppCompatTheme_dividerVertical 56
-int styleable AppCompatTheme_dropDownListViewStyle 75
-int styleable AppCompatTheme_dropdownListPreferredItemHeight 47
-int styleable AppCompatTheme_editTextBackground 64
-int styleable AppCompatTheme_editTextColor 63
-int styleable AppCompatTheme_editTextStyle 106
-int styleable AppCompatTheme_homeAsUpIndicator 49
-int styleable AppCompatTheme_imageButtonStyle 65
-int styleable AppCompatTheme_listChoiceBackgroundIndicator 82
-int styleable AppCompatTheme_listDividerAlertDialog 45
-int styleable AppCompatTheme_listMenuViewStyle 114
-int styleable AppCompatTheme_listPopupWindowStyle 76
-int styleable AppCompatTheme_listPreferredItemHeight 70
-int styleable AppCompatTheme_listPreferredItemHeightLarge 72
-int styleable AppCompatTheme_listPreferredItemHeightSmall 71
-int styleable AppCompatTheme_listPreferredItemPaddingLeft 73
-int styleable AppCompatTheme_listPreferredItemPaddingRight 74
-int styleable AppCompatTheme_panelBackground 79
-int styleable AppCompatTheme_panelMenuListTheme 81
-int styleable AppCompatTheme_panelMenuListWidth 80
-int styleable AppCompatTheme_popupMenuStyle 61
-int styleable AppCompatTheme_popupWindowStyle 62
-int styleable AppCompatTheme_radioButtonStyle 107
-int styleable AppCompatTheme_ratingBarStyle 108
-int styleable AppCompatTheme_ratingBarStyleIndicator 109
-int styleable AppCompatTheme_ratingBarStyleSmall 110
-int styleable AppCompatTheme_searchViewStyle 69
-int styleable AppCompatTheme_seekBarStyle 111
-int styleable AppCompatTheme_selectableItemBackground 53
-int styleable AppCompatTheme_selectableItemBackgroundBorderless 54
-int styleable AppCompatTheme_spinnerDropDownItemStyle 48
-int styleable AppCompatTheme_spinnerStyle 112
-int styleable AppCompatTheme_switchStyle 113
-int styleable AppCompatTheme_textAppearanceLargePopupMenu 40
-int styleable AppCompatTheme_textAppearanceListItem 77
-int styleable AppCompatTheme_textAppearanceListItemSmall 78
-int styleable AppCompatTheme_textAppearancePopupMenuHeader 42
-int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 67
-int styleable AppCompatTheme_textAppearanceSearchResultTitle 66
-int styleable AppCompatTheme_textAppearanceSmallPopupMenu 41
-int styleable AppCompatTheme_textColorAlertDialogListItem 97
-int styleable AppCompatTheme_textColorSearchUrl 68
-int styleable AppCompatTheme_toolbarNavigationButtonStyle 60
-int styleable AppCompatTheme_toolbarStyle 59
-int styleable AppCompatTheme_windowActionBar 2
-int styleable AppCompatTheme_windowActionBarOverlay 4
-int styleable AppCompatTheme_windowActionModeOverlay 5
-int styleable AppCompatTheme_windowFixedHeightMajor 9
-int styleable AppCompatTheme_windowFixedHeightMinor 7
-int styleable AppCompatTheme_windowFixedWidthMajor 6
-int styleable AppCompatTheme_windowFixedWidthMinor 8
-int styleable AppCompatTheme_windowMinWidthMajor 10
-int styleable AppCompatTheme_windowMinWidthMinor 11
-int styleable AppCompatTheme_windowNoTitle 3
-int[] styleable ButtonBarLayout { 0x7f01009d }
-int styleable ButtonBarLayout_allowStacking 0
-int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f01009e }
-int styleable ColorStateListItem_alpha 2
-int styleable ColorStateListItem_android_alpha 1
-int styleable ColorStateListItem_android_color 0
-int[] styleable CompoundButton { 0x01010107, 0x7f01009f, 0x7f0100a0 }
-int styleable CompoundButton_android_button 0
-int styleable CompoundButton_buttonTint 1
-int styleable CompoundButton_buttonTintMode 2
-int[] styleable DrawerArrowToggle { 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8 }
-int styleable DrawerArrowToggle_arrowHeadLength 4
-int styleable DrawerArrowToggle_arrowShaftLength 5
-int styleable DrawerArrowToggle_barLength 6
-int styleable DrawerArrowToggle_color 0
-int styleable DrawerArrowToggle_drawableSize 2
-int styleable DrawerArrowToggle_gapBetweenBars 3
-int styleable DrawerArrowToggle_spinBars 1
-int styleable DrawerArrowToggle_thickness 7
-int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab }
-int styleable LinearLayoutCompat_android_baselineAligned 2
-int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
-int styleable LinearLayoutCompat_android_gravity 0
-int styleable LinearLayoutCompat_android_orientation 1
-int styleable LinearLayoutCompat_android_weightSum 4
-int styleable LinearLayoutCompat_divider 5
-int styleable LinearLayoutCompat_dividerPadding 8
-int styleable LinearLayoutCompat_measureWithLargestChild 6
-int styleable LinearLayoutCompat_showDividers 7
-int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
-int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
-int styleable LinearLayoutCompat_Layout_android_layout_height 2
-int styleable LinearLayoutCompat_Layout_android_layout_weight 3
-int styleable LinearLayoutCompat_Layout_android_layout_width 1
-int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
-int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
-int styleable ListPopupWindow_android_dropDownVerticalOffset 1
-int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
-int styleable MenuGroup_android_checkableBehavior 5
-int styleable MenuGroup_android_enabled 0
-int styleable MenuGroup_android_id 1
-int styleable MenuGroup_android_menuCategory 3
-int styleable MenuGroup_android_orderInCategory 4
-int styleable MenuGroup_android_visible 2
-int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af }
-int styleable MenuItem_actionLayout 14
-int styleable MenuItem_actionProviderClass 16
-int styleable MenuItem_actionViewClass 15
-int styleable MenuItem_android_alphabeticShortcut 9
-int styleable MenuItem_android_checkable 11
-int styleable MenuItem_android_checked 3
-int styleable MenuItem_android_enabled 1
-int styleable MenuItem_android_icon 0
-int styleable MenuItem_android_id 2
-int styleable MenuItem_android_menuCategory 5
-int styleable MenuItem_android_numericShortcut 10
-int styleable MenuItem_android_onClick 12
-int styleable MenuItem_android_orderInCategory 6
-int styleable MenuItem_android_title 7
-int styleable MenuItem_android_titleCondensed 8
-int styleable MenuItem_android_visible 4
-int styleable MenuItem_showAsAction 13
-int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100b0, 0x7f0100b1 }
-int styleable MenuView_android_headerBackground 4
-int styleable MenuView_android_horizontalDivider 2
-int styleable MenuView_android_itemBackground 5
-int styleable MenuView_android_itemIconDisabledAlpha 6
-int styleable MenuView_android_itemTextAppearance 1
-int styleable MenuView_android_verticalDivider 3
-int styleable MenuView_android_windowAnimationStyle 0
-int styleable MenuView_preserveIconSpacing 7
-int styleable MenuView_subMenuArrow 8
-int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f0100b2 }
-int styleable PopupWindow_android_popupAnimationStyle 1
-int styleable PopupWindow_android_popupBackground 0
-int styleable PopupWindow_overlapAnchor 2
-int[] styleable PopupWindowBackgroundState { 0x7f0100b3 }
-int styleable PopupWindowBackgroundState_state_above_anchor 0
-int[] styleable RecycleListView { 0x7f0100b4, 0x7f0100b5 }
-int styleable RecycleListView_paddingBottomNoButtons 0
-int styleable RecycleListView_paddingTopNoTitle 1
-int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2 }
-int styleable SearchView_android_focusable 0
-int styleable SearchView_android_imeOptions 3
-int styleable SearchView_android_inputType 2
-int styleable SearchView_android_maxWidth 1
-int styleable SearchView_closeIcon 8
-int styleable SearchView_commitIcon 13
-int styleable SearchView_defaultQueryHint 7
-int styleable SearchView_goIcon 9
-int styleable SearchView_iconifiedByDefault 5
-int styleable SearchView_layout 4
-int styleable SearchView_queryBackground 15
-int styleable SearchView_queryHint 6
-int styleable SearchView_searchHintIcon 11
-int styleable SearchView_searchIcon 10
-int styleable SearchView_submitBackground 16
-int styleable SearchView_suggestionRowLayout 14
-int styleable SearchView_voiceIcon 12
-int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001d }
-int styleable Spinner_android_dropDownWidth 3
-int styleable Spinner_android_entries 0
-int styleable Spinner_android_popupBackground 1
-int styleable Spinner_android_prompt 2
-int styleable Spinner_popupTheme 4
-int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd }
-int styleable SwitchCompat_android_textOff 1
-int styleable SwitchCompat_android_textOn 0
-int styleable SwitchCompat_android_thumb 2
-int styleable SwitchCompat_showText 13
-int styleable SwitchCompat_splitTrack 12
-int styleable SwitchCompat_switchMinWidth 10
-int styleable SwitchCompat_switchPadding 11
-int styleable SwitchCompat_switchTextAppearance 9
-int styleable SwitchCompat_thumbTextPadding 8
-int styleable SwitchCompat_thumbTint 3
-int styleable SwitchCompat_thumbTintMode 4
-int styleable SwitchCompat_track 5
-int styleable SwitchCompat_trackTint 6
-int styleable SwitchCompat_trackTintMode 7
-int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f01002b }
-int styleable TextAppearance_android_shadowColor 5
-int styleable TextAppearance_android_shadowDx 6
-int styleable TextAppearance_android_shadowDy 7
-int styleable TextAppearance_android_shadowRadius 8
-int styleable TextAppearance_android_textColor 3
-int styleable TextAppearance_android_textColorHint 4
-int styleable TextAppearance_android_textSize 0
-int styleable TextAppearance_android_textStyle 2
-int styleable TextAppearance_android_typeface 1
-int styleable TextAppearance_textAllCaps 9
-int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001d, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de }
-int styleable Toolbar_android_gravity 0
-int styleable Toolbar_android_minHeight 1
-int styleable Toolbar_buttonGravity 21
-int styleable Toolbar_collapseContentDescription 23
-int styleable Toolbar_collapseIcon 22
-int styleable Toolbar_contentInsetEnd 6
-int styleable Toolbar_contentInsetEndWithActions 10
-int styleable Toolbar_contentInsetLeft 7
-int styleable Toolbar_contentInsetRight 8
-int styleable Toolbar_contentInsetStart 5
-int styleable Toolbar_contentInsetStartWithNavigation 9
-int styleable Toolbar_logo 4
-int styleable Toolbar_logoDescription 26
-int styleable Toolbar_maxButtonHeight 20
-int styleable Toolbar_navigationContentDescription 25
-int styleable Toolbar_navigationIcon 24
-int styleable Toolbar_popupTheme 11
-int styleable Toolbar_subtitle 3
-int styleable Toolbar_subtitleTextAppearance 13
-int styleable Toolbar_subtitleTextColor 28
-int styleable Toolbar_title 2
-int styleable Toolbar_titleMargin 14
-int styleable Toolbar_titleMarginBottom 18
-int styleable Toolbar_titleMarginEnd 16
-int styleable Toolbar_titleMarginStart 15
-int styleable Toolbar_titleMarginTop 17
-int styleable Toolbar_titleMargins 19
-int styleable Toolbar_titleTextAppearance 12
-int styleable Toolbar_titleTextColor 27
-int[] styleable View { 0x01010000, 0x010100da, 0x7f0100df, 0x7f0100e0, 0x7f0100e1 }
-int styleable View_android_focusable 1
-int styleable View_android_theme 0
-int styleable View_paddingEnd 3
-int styleable View_paddingStart 2
-int styleable View_theme 4
-int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f0100e2, 0x7f0100e3 }
-int styleable ViewBackgroundHelper_android_background 0
-int styleable ViewBackgroundHelper_backgroundTint 1
-int styleable ViewBackgroundHelper_backgroundTintMode 2
-int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
-int styleable ViewStubCompat_android_id 0
-int styleable ViewStubCompat_android_inflatedId 2
-int styleable ViewStubCompat_android_layout 1
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/annotations.zip b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/annotations.zip
deleted file mode 100644
index 6d7680d090f98396aa5ac1b8ba4a25b3fb0c5cff..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/annotations.zip and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/jars/classes.jar
deleted file mode 100644
index b76e36439edf43790be5000551604aed9d0c2931..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/public.txt b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/public.txt
deleted file mode 100644
index ca7cfaabfeef0fa4da0b3fc3b9eb602a55047290..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/public.txt
+++ /dev/null
@@ -1,348 +0,0 @@
-style TextAppearance.AppCompat
-style TextAppearance.AppCompat.Body1
-style TextAppearance.AppCompat.Body2
-style TextAppearance.AppCompat.Button
-style TextAppearance.AppCompat.Caption
-style TextAppearance.AppCompat.Display1
-style TextAppearance.AppCompat.Display2
-style TextAppearance.AppCompat.Display3
-style TextAppearance.AppCompat.Display4
-style TextAppearance.AppCompat.Headline
-style TextAppearance.AppCompat.Inverse
-style TextAppearance.AppCompat.Large
-style TextAppearance.AppCompat.Large.Inverse
-style TextAppearance.AppCompat.Light.SearchResult.Subtitle
-style TextAppearance.AppCompat.Light.SearchResult.Title
-style TextAppearance.AppCompat.Light.Widget.PopupMenu.Large
-style TextAppearance.AppCompat.Light.Widget.PopupMenu.Small
-style TextAppearance.AppCompat.Medium
-style TextAppearance.AppCompat.Medium.Inverse
-style TextAppearance.AppCompat.Menu
-style TextAppearance.AppCompat.Notification
-style TextAppearance.AppCompat.Notification.Info
-style TextAppearance.AppCompat.Notification.Line2
-style TextAppearance.AppCompat.Notification.Media
-style TextAppearance.AppCompat.Notification.Time
-style TextAppearance.AppCompat.Notification.Title
-style TextAppearance.AppCompat.SearchResult.Subtitle
-style TextAppearance.AppCompat.SearchResult.Title
-style TextAppearance.AppCompat.Small
-style TextAppearance.AppCompat.Small.Inverse
-style TextAppearance.AppCompat.Subhead
-style TextAppearance.AppCompat.Subhead.Inverse
-style TextAppearance.AppCompat.Title
-style TextAppearance.AppCompat.Title.Inverse
-style TextAppearance.AppCompat.Widget.ActionBar.Menu
-style TextAppearance.AppCompat.Widget.ActionBar.Subtitle
-style TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse
-style TextAppearance.AppCompat.Widget.ActionBar.Title
-style TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse
-style TextAppearance.AppCompat.Widget.ActionMode.Subtitle
-style TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse
-style TextAppearance.AppCompat.Widget.ActionMode.Title
-style TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse
-style TextAppearance.AppCompat.Widget.Button
-style TextAppearance.AppCompat.Widget.Button.Borderless.Colored
-style TextAppearance.AppCompat.Widget.Button.Colored
-style TextAppearance.AppCompat.Widget.Button.Inverse
-style TextAppearance.AppCompat.Widget.DropDownItem
-style TextAppearance.AppCompat.Widget.PopupMenu.Header
-style TextAppearance.AppCompat.Widget.PopupMenu.Large
-style TextAppearance.AppCompat.Widget.PopupMenu.Small
-style TextAppearance.AppCompat.Widget.Switch
-style TextAppearance.AppCompat.Widget.TextView.SpinnerItem
-style Theme.AppCompat
-style Theme.AppCompat.DayNight
-style Theme.AppCompat.DayNight.DarkActionBar
-style Theme.AppCompat.DayNight.Dialog
-style Theme.AppCompat.DayNight.Dialog.Alert
-style Theme.AppCompat.DayNight.Dialog.MinWidth
-style Theme.AppCompat.DayNight.DialogWhenLarge
-style Theme.AppCompat.DayNight.NoActionBar
-style Theme.AppCompat.Dialog
-style Theme.AppCompat.Dialog.Alert
-style Theme.AppCompat.Dialog.MinWidth
-style Theme.AppCompat.DialogWhenLarge
-style Theme.AppCompat.Light
-style Theme.AppCompat.Light.DarkActionBar
-style Theme.AppCompat.Light.Dialog
-style Theme.AppCompat.Light.Dialog.Alert
-style Theme.AppCompat.Light.Dialog.MinWidth
-style Theme.AppCompat.Light.DialogWhenLarge
-style Theme.AppCompat.Light.NoActionBar
-style Theme.AppCompat.NoActionBar
-style ThemeOverlay.AppCompat
-style ThemeOverlay.AppCompat.ActionBar
-style ThemeOverlay.AppCompat.Dark
-style ThemeOverlay.AppCompat.Dark.ActionBar
-style ThemeOverlay.AppCompat.Dialog
-style ThemeOverlay.AppCompat.Dialog.Alert
-style ThemeOverlay.AppCompat.Light
-style Widget.AppCompat.ActionBar
-style Widget.AppCompat.ActionBar.Solid
-style Widget.AppCompat.ActionBar.TabBar
-style Widget.AppCompat.ActionBar.TabText
-style Widget.AppCompat.ActionBar.TabView
-style Widget.AppCompat.ActionButton
-style Widget.AppCompat.ActionButton.CloseMode
-style Widget.AppCompat.ActionButton.Overflow
-style Widget.AppCompat.ActionMode
-style Widget.AppCompat.AutoCompleteTextView
-style Widget.AppCompat.Button
-style Widget.AppCompat.Button.Borderless
-style Widget.AppCompat.Button.Borderless.Colored
-style Widget.AppCompat.Button.ButtonBar.AlertDialog
-style Widget.AppCompat.Button.Colored
-style Widget.AppCompat.Button.Small
-style Widget.AppCompat.ButtonBar
-style Widget.AppCompat.ButtonBar.AlertDialog
-style Widget.AppCompat.CompoundButton.CheckBox
-style Widget.AppCompat.CompoundButton.RadioButton
-style Widget.AppCompat.CompoundButton.Switch
-style Widget.AppCompat.DrawerArrowToggle
-style Widget.AppCompat.DropDownItem.Spinner
-style Widget.AppCompat.EditText
-style Widget.AppCompat.ImageButton
-style Widget.AppCompat.Light.ActionBar
-style Widget.AppCompat.Light.ActionBar.Solid
-style Widget.AppCompat.Light.ActionBar.Solid.Inverse
-style Widget.AppCompat.Light.ActionBar.TabBar
-style Widget.AppCompat.Light.ActionBar.TabBar.Inverse
-style Widget.AppCompat.Light.ActionBar.TabText
-style Widget.AppCompat.Light.ActionBar.TabText.Inverse
-style Widget.AppCompat.Light.ActionBar.TabView
-style Widget.AppCompat.Light.ActionBar.TabView.Inverse
-style Widget.AppCompat.Light.ActionButton
-style Widget.AppCompat.Light.ActionButton.CloseMode
-style Widget.AppCompat.Light.ActionButton.Overflow
-style Widget.AppCompat.Light.ActionMode.Inverse
-style Widget.AppCompat.Light.AutoCompleteTextView
-style Widget.AppCompat.Light.DropDownItem.Spinner
-style Widget.AppCompat.Light.ListPopupWindow
-style Widget.AppCompat.Light.ListView.DropDown
-style Widget.AppCompat.Light.PopupMenu
-style Widget.AppCompat.Light.PopupMenu.Overflow
-style Widget.AppCompat.Light.SearchView
-style Widget.AppCompat.Light.Spinner.DropDown.ActionBar
-style Widget.AppCompat.ListPopupWindow
-style Widget.AppCompat.ListView
-style Widget.AppCompat.ListView.DropDown
-style Widget.AppCompat.ListView.Menu
-style Widget.AppCompat.PopupMenu
-style Widget.AppCompat.PopupMenu.Overflow
-style Widget.AppCompat.PopupWindow
-style Widget.AppCompat.ProgressBar
-style Widget.AppCompat.ProgressBar.Horizontal
-style Widget.AppCompat.RatingBar
-style Widget.AppCompat.RatingBar.Indicator
-style Widget.AppCompat.RatingBar.Small
-style Widget.AppCompat.SearchView
-style Widget.AppCompat.SearchView.ActionBar
-style Widget.AppCompat.SeekBar
-style Widget.AppCompat.SeekBar.Discrete
-style Widget.AppCompat.Spinner
-style Widget.AppCompat.Spinner.DropDown
-style Widget.AppCompat.Spinner.DropDown.ActionBar
-style Widget.AppCompat.Spinner.Underlined
-style Widget.AppCompat.TextView.SpinnerItem
-style Widget.AppCompat.Toolbar
-style Widget.AppCompat.Toolbar.Button.Navigation
-attr actionBarDivider
-attr actionBarItemBackground
-attr actionBarPopupTheme
-attr actionBarSize
-attr actionBarSplitStyle
-attr actionBarStyle
-attr actionBarTabBarStyle
-attr actionBarTabStyle
-attr actionBarTabTextStyle
-attr actionBarTheme
-attr actionBarWidgetTheme
-attr actionButtonStyle
-attr actionDropDownStyle
-attr actionLayout
-attr actionMenuTextAppearance
-attr actionMenuTextColor
-attr actionModeBackground
-attr actionModeCloseButtonStyle
-attr actionModeCloseDrawable
-attr actionModeCopyDrawable
-attr actionModeCutDrawable
-attr actionModeFindDrawable
-attr actionModePasteDrawable
-attr actionModeSelectAllDrawable
-attr actionModeShareDrawable
-attr actionModeSplitBackground
-attr actionModeStyle
-attr actionModeWebSearchDrawable
-attr actionOverflowButtonStyle
-attr actionOverflowMenuStyle
-attr actionProviderClass
-attr actionViewClass
-attr alertDialogStyle
-attr alertDialogTheme
-attr alpha
-attr arrowHeadLength
-attr arrowShaftLength
-attr autoCompleteTextViewStyle
-attr background
-attr backgroundSplit
-attr backgroundStacked
-attr backgroundTint
-attr backgroundTintMode
-attr barLength
-attr borderlessButtonStyle
-attr buttonBarButtonStyle
-attr buttonBarNegativeButtonStyle
-attr buttonBarNeutralButtonStyle
-attr buttonBarPositiveButtonStyle
-attr buttonBarStyle
-attr buttonGravity
-attr buttonStyle
-attr buttonStyleSmall
-attr buttonTint
-attr buttonTintMode
-attr checkboxStyle
-attr checkedTextViewStyle
-attr closeIcon
-attr closeItemLayout
-attr collapseContentDescription
-attr collapseIcon
-attr color
-attr colorAccent
-attr colorBackgroundFloating
-attr colorButtonNormal
-attr colorControlActivated
-attr colorControlHighlight
-attr colorControlNormal
-attr colorPrimary
-attr colorPrimaryDark
-attr commitIcon
-attr contentInsetEnd
-attr contentInsetEndWithActions
-attr contentInsetLeft
-attr contentInsetRight
-attr contentInsetStart
-attr contentInsetStartWithNavigation
-attr customNavigationLayout
-attr dialogPreferredPadding
-attr dialogTheme
-attr displayOptions
-attr divider
-attr dividerHorizontal
-attr dividerPadding
-attr dividerVertical
-attr drawableSize
-attr drawerArrowStyle
-attr dropDownListViewStyle
-attr editTextBackground
-attr editTextColor
-attr editTextStyle
-attr elevation
-attr gapBetweenBars
-attr goIcon
-attr height
-attr hideOnContentScroll
-attr homeAsUpIndicator
-attr homeLayout
-attr icon
-attr iconifiedByDefault
-attr imageButtonStyle
-attr indeterminateProgressStyle
-attr isLightTheme
-attr itemPadding
-attr layout
-attr listChoiceBackgroundIndicator
-attr listDividerAlertDialog
-attr listPopupWindowStyle
-attr listPreferredItemHeight
-attr listPreferredItemHeightLarge
-attr listPreferredItemHeightSmall
-attr listPreferredItemPaddingLeft
-attr listPreferredItemPaddingRight
-attr logo
-attr logoDescription
-attr maxButtonHeight
-attr measureWithLargestChild
-attr navigationContentDescription
-attr navigationIcon
-attr navigationMode
-attr overlapAnchor
-attr paddingEnd
-attr paddingStart
-attr panelBackground
-attr popupMenuStyle
-attr popupTheme
-attr popupWindowStyle
-attr preserveIconSpacing
-attr progressBarPadding
-attr progressBarStyle
-attr queryBackground
-attr queryHint
-attr radioButtonStyle
-attr ratingBarStyle
-attr ratingBarStyleIndicator
-attr ratingBarStyleSmall
-attr searchHintIcon
-attr searchIcon
-attr searchViewStyle
-attr seekBarStyle
-attr selectableItemBackground
-attr selectableItemBackgroundBorderless
-attr showAsAction
-attr showDividers
-attr showText
-attr spinBars
-attr spinnerDropDownItemStyle
-attr spinnerStyle
-attr splitTrack
-attr srcCompat
-attr state_above_anchor
-attr submitBackground
-attr subtitle
-attr subtitleTextAppearance
-attr subtitleTextColor
-attr subtitleTextStyle
-attr suggestionRowLayout
-layout support_simple_spinner_dropdown_item
-attr switchMinWidth
-attr switchPadding
-attr switchStyle
-attr switchTextAppearance
-attr textAllCaps
-attr textAppearanceLargePopupMenu
-attr textAppearanceListItem
-attr textAppearanceListItemSmall
-attr textAppearancePopupMenuHeader
-attr textAppearanceSearchResultSubtitle
-attr textAppearanceSearchResultTitle
-attr textAppearanceSmallPopupMenu
-attr textColorAlertDialogListItem
-attr theme
-attr thickness
-attr thumbTextPadding
-attr thumbTint
-attr thumbTintMode
-attr tickMark
-attr tickMarkTint
-attr tickMarkTintMode
-attr title
-attr titleMargin
-attr titleMarginBottom
-attr titleMarginEnd
-attr titleMarginStart
-attr titleMarginTop
-attr titleMargins
-attr titleTextAppearance
-attr titleTextColor
-attr titleTextStyle
-attr toolbarNavigationButtonStyle
-attr toolbarStyle
-attr track
-attr trackTint
-attr trackTintMode
-attr voiceIcon
-attr windowActionBar
-attr windowActionBarOverlay
-attr windowActionModeOverlay
-attr windowNoTitle
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_fade_in.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_fade_in.xml
deleted file mode 100644
index da7ee295c993b43e8fb6b625c1fa20d53a149ca2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_fade_in.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<alpha xmlns:android="http://schemas.android.com/apk/res/android"
-       android:interpolator="@android:anim/decelerate_interpolator"
-       android:fromAlpha="0.0" android:toAlpha="1.0"
-       android:duration="@android:integer/config_mediumAnimTime" />
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_fade_out.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_fade_out.xml
deleted file mode 100644
index c81b39a9b130b6735dc6aa88e204c671d68ec804..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_fade_out.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<alpha xmlns:android="http://schemas.android.com/apk/res/android"
-       android:interpolator="@android:anim/decelerate_interpolator"
-       android:fromAlpha="1.0" android:toAlpha="0.0"
-       android:duration="@android:integer/config_mediumAnimTime" />
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_grow_fade_in_from_bottom.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_grow_fade_in_from_bottom.xml
deleted file mode 100644
index 79d02d44ca62c547fe61a481e8746125cb00471b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_grow_fade_in_from_bottom.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/* //device/apps/common/res/anim/fade_in.xml
-**
-** Copyright 2014, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License"); 
-** you may not use this file except in compliance with the License. 
-** You may obtain a copy of the License at 
-**
-**     http://www.apache.org/licenses/LICENSE-2.0 
-**
-** Unless required by applicable law or agreed to in writing, software 
-** distributed under the License is distributed on an "AS IS" BASIS, 
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
-** See the License for the specific language governing permissions and 
-** limitations under the License.
-*/
--->
-
-<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false">
-    <scale 	android:interpolator="@android:anim/decelerate_interpolator"
-              android:fromXScale="0.9" android:toXScale="1.0"
-              android:fromYScale="0.9" android:toYScale="1.0"
-              android:pivotX="50%" android:pivotY="100%"
-              android:duration="@integer/abc_config_activityDefaultDur" />
-    <alpha 	android:interpolator="@android:anim/decelerate_interpolator"
-              android:fromAlpha="0.0" android:toAlpha="1.0"
-              android:duration="@integer/abc_config_activityShortDur" />
-</set>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_popup_enter.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_popup_enter.xml
deleted file mode 100644
index 91664da17ee4089835a4f5492a4321d64cc05b9e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_popup_enter.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<set xmlns:android="http://schemas.android.com/apk/res/android"
-     android:shareInterpolator="false" >
-    <alpha android:fromAlpha="0.0" android:toAlpha="1.0"
-           android:interpolator="@android:anim/decelerate_interpolator"
-           android:duration="@integer/abc_config_activityShortDur" />
-</set>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_popup_exit.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_popup_exit.xml
deleted file mode 100644
index db7e8073a84ac1b4b872c3b7466da0a3a6bb1ee2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_popup_exit.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<set xmlns:android="http://schemas.android.com/apk/res/android"
-     android:shareInterpolator="false" >
-    <alpha android:fromAlpha="1.0" android:toAlpha="0.0"
-           android:interpolator="@android:anim/decelerate_interpolator"
-           android:duration="@integer/abc_config_activityShortDur" />
-</set>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_shrink_fade_out_from_bottom.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_shrink_fade_out_from_bottom.xml
deleted file mode 100644
index 9a23cd2025a2033b75e4ed307f3a7aa34cd02f1e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_shrink_fade_out_from_bottom.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2014 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
-  -->
-
-<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false">
-    <scale 	android:interpolator="@android:anim/decelerate_interpolator"
-              android:fromXScale="1.0" android:toXScale="0.9"
-              android:fromYScale="1.0" android:toYScale="0.9"
-              android:pivotX="50%" android:pivotY="100%"
-              android:duration="@integer/abc_config_activityDefaultDur" />
-    <alpha 	android:interpolator="@android:anim/decelerate_interpolator"
-              android:fromAlpha="1.0" android:toAlpha="0.0"
-              android:duration="@integer/abc_config_activityShortDur" />
-</set>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_in_bottom.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_in_bottom.xml
deleted file mode 100644
index 1afa8febc526960f8125ff4204c6bc069a187b54..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_in_bottom.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<translate xmlns:android="http://schemas.android.com/apk/res/android"
-           android:interpolator="@android:anim/decelerate_interpolator"
-           android:fromYDelta="50%p" android:toYDelta="0"
-           android:duration="@android:integer/config_mediumAnimTime"/>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_in_top.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_in_top.xml
deleted file mode 100644
index ab824f2e4acb8fb32931ea8b9c27df0e8fbe533b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_in_top.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<translate xmlns:android="http://schemas.android.com/apk/res/android"
-           android:interpolator="@android:anim/decelerate_interpolator"
-           android:fromYDelta="-50%p" android:toYDelta="0"
-           android:duration="@android:integer/config_mediumAnimTime"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_out_bottom.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_out_bottom.xml
deleted file mode 100644
index b309fe89c64157258e11f7c5672ffce1c6977042..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_out_bottom.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<translate xmlns:android="http://schemas.android.com/apk/res/android"
-           android:interpolator="@android:anim/accelerate_interpolator"
-           android:fromYDelta="0" android:toYDelta="50%p"
-           android:duration="@android:integer/config_mediumAnimTime"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_out_top.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_out_top.xml
deleted file mode 100644
index e84d1c7fb6eb6de28fde7ad0c474fb12ce3ac7b3..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_out_top.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<translate xmlns:android="http://schemas.android.com/apk/res/android"
-           android:interpolator="@android:anim/accelerate_interpolator"
-           android:fromYDelta="0" android:toYDelta="-50%p"
-           android:duration="@android:integer/config_mediumAnimTime"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml
deleted file mode 100644
index e0160766e08cf3988b3b8804ac2fd9879c3d706c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_accelerated="false" android:color="@color/background_material_dark" />
-    <item android:color="@android:color/transparent" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml
deleted file mode 100644
index 290faf1a0e0ab88ba0c2a5c6172600feb0a5e794..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_accelerated="false" android:color="@color/background_material_light" />
-    <item android:color="@android:color/transparent" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_btn_colored_borderless_text_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_btn_colored_borderless_text_material.xml
deleted file mode 100644
index 468b155d3fab8c45e1627172a5a77a9d6333f6ec..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_btn_colored_borderless_text_material.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!-- Used for the text of a borderless colored button. -->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="?android:attr/textColorSecondary" android:alpha="?android:attr/disabledAlpha"/>
-    <item android:color="?attr/colorAccent"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_btn_colored_text_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_btn_colored_text_material.xml
deleted file mode 100644
index 74170d61d0733a42c21ee1a610a99dc7ce46e646..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_btn_colored_text_material.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!-- Used for the text of a bordered colored button. -->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false"
-          android:alpha="?android:attr/disabledAlpha"
-          android:color="?android:attr/textColorPrimary" />
-    <item android:color="?android:attr/textColorPrimaryInverse" />
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_color_highlight_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_color_highlight_material.xml
deleted file mode 100644
index 8d536118908b33639afd1b8894392fbe2ced30b1..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_color_highlight_material.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_checked="true"
-          android:state_enabled="true"
-          android:alpha="@dimen/highlight_alpha_material_colored"
-          android:color="?android:attr/colorControlActivated" />
-    <item android:color="?android:attr/colorControlHighlight" />
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_btn_checkable.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_btn_checkable.xml
deleted file mode 100644
index e82eff48305242c8d64d6c4edb4fb76aad05e6da..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_btn_checkable.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2016§ The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="?attr/colorControlNormal" android:alpha="?android:disabledAlpha"/>
-    <item android:state_checked="true" android:color="?attr/colorControlActivated"/>
-    <item android:color="?attr/colorControlNormal"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_default.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_default.xml
deleted file mode 100644
index abe38804b6f9858f7b52a472f5bb8a5c68376f4f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_default.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="?attr/colorControlNormal" android:alpha="?android:disabledAlpha"/>
-    <item android:state_focused="true" android:color="?attr/colorControlActivated"/>
-    <item android:state_pressed="true" android:color="?attr/colorControlActivated"/>
-    <item android:state_activated="true" android:color="?attr/colorControlActivated"/>
-    <item android:state_selected="true" android:color="?attr/colorControlActivated"/>
-    <item android:state_checked="true" android:color="?attr/colorControlActivated"/>
-    <item android:color="?attr/colorControlNormal"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_edittext.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_edittext.xml
deleted file mode 100644
index 0e05e07d5faf8c095e438e64568a6baa5499366d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_edittext.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="?attr/colorControlNormal" android:alpha="?android:disabledAlpha"/>
-    <item android:state_pressed="false" android:state_focused="false" android:color="?attr/colorControlNormal"/>
-    <item android:color="?attr/colorControlActivated"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_seek_thumb.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_seek_thumb.xml
deleted file mode 100644
index 4fc9626f1cf941927d7ecc96faf8275eab79dd00..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_seek_thumb.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="?attr/colorControlActivated" android:alpha="?android:attr/disabledAlpha"/>
-    <item android:color="?attr/colorControlActivated"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_spinner.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_spinner.xml
deleted file mode 100644
index 0e05e07d5faf8c095e438e64568a6baa5499366d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_spinner.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="?attr/colorControlNormal" android:alpha="?android:disabledAlpha"/>
-    <item android:state_pressed="false" android:state_focused="false" android:color="?attr/colorControlNormal"/>
-    <item android:color="?attr/colorControlActivated"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_switch_thumb.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_switch_thumb.xml
deleted file mode 100644
index f589fdf4c4e2134a21eaedf0616c763ca600109a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_switch_thumb.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="?attr/colorSwitchThumbNormal" android:alpha="?android:attr/disabledAlpha"/>
-    <item android:state_checked="true" android:color="?attr/colorControlActivated"/>
-    <item android:color="?attr/colorSwitchThumbNormal"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_switch_track.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_switch_track.xml
deleted file mode 100644
index e663772e7887b1814cd9b31624fbf9a0a764c403..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_switch_track.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="?android:attr/colorForeground" android:alpha="0.1"/>
-    <item android:state_checked="true" android:color="?attr/colorControlActivated" android:alpha="0.3"/>
-    <item android:color="?android:attr/colorForeground" android:alpha="0.3"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_background_cache_hint_selector_material_dark.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_background_cache_hint_selector_material_dark.xml
deleted file mode 100644
index 9a7af53d4ecf12f923b2d06f4dbbbb9b877b92a8..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_background_cache_hint_selector_material_dark.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:color="@color/background_material_dark" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_background_cache_hint_selector_material_light.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_background_cache_hint_selector_material_light.xml
deleted file mode 100644
index aa53f3577e8e1c5f638f22fce4eaaf096a9637ab..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_background_cache_hint_selector_material_light.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:color="@color/background_material_light" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_btn_colored_borderless_text_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_btn_colored_borderless_text_material.xml
deleted file mode 100644
index 1480046683779e2d23d31e546b471bbdbc20e485..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_btn_colored_borderless_text_material.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!-- Used for the text of a borderless colored button. -->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false"
-          app:alpha="?android:attr/disabledAlpha"
-          android:color="?android:attr/textColorSecondary"/>
-    <item android:color="?attr/colorAccent"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_btn_colored_text_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_btn_colored_text_material.xml
deleted file mode 100644
index 897a3f75fda1313c1891399eb77adb28e74daa11..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_btn_colored_text_material.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!-- Used for the text of a bordered colored button. -->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false"
-          app:alpha="?android:attr/disabledAlpha"
-          android:color="?android:attr/textColorPrimary" />
-    <item android:color="?android:attr/textColorPrimaryInverse" />
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_hint_foreground_material_dark.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_hint_foreground_material_dark.xml
deleted file mode 100644
index fe868721640b880c3d606920166e1bb6b45d6c24..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_hint_foreground_material_dark.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="true"
-          android:state_pressed="true"
-          android:alpha="@dimen/hint_pressed_alpha_material_dark"
-          android:color="@color/foreground_material_dark" />
-    <item android:alpha="@dimen/hint_alpha_material_dark"
-          android:color="@color/foreground_material_dark" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_hint_foreground_material_light.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_hint_foreground_material_light.xml
deleted file mode 100644
index 1bef5afebf50ea4ebd71c1c367f537536a820c29..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_hint_foreground_material_light.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="true"
-          android:state_pressed="true"
-          android:alpha="@dimen/hint_pressed_alpha_material_light"
-          android:color="@color/foreground_material_light" />
-    <item android:alpha="@dimen/hint_alpha_material_light"
-          android:color="@color/foreground_material_light" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_disable_only_material_dark.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_disable_only_material_dark.xml
deleted file mode 100644
index 724c2557dad350bc20ebf9e4c8b994db4321fb6b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_disable_only_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/bright_foreground_disabled_material_dark"/>
-    <item android:color="@color/bright_foreground_material_dark"/>
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_disable_only_material_light.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_disable_only_material_light.xml
deleted file mode 100644
index 7395e680c6563b4b0361e9456ac9c2f654aadd7b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_disable_only_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/bright_foreground_disabled_material_light"/>
-    <item android:color="@color/bright_foreground_material_light"/>
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_material_dark.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_material_dark.xml
deleted file mode 100644
index 7d66d02d637c4cf1757966198d40ce92c5591a2f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2008 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/primary_text_disabled_material_dark"/>
-    <item android:color="@color/primary_text_default_material_dark"/>
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_material_light.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_material_light.xml
deleted file mode 100644
index 105b643ddb423f0a4c337bca48696d4779c7b8ea..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/primary_text_disabled_material_light"/>
-    <item android:color="@color/primary_text_default_material_light"/>
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_search_url_text.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_search_url_text.xml
deleted file mode 100644
index 0631d5d4ca1445752afa1a79d9b39fc648f18714..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_search_url_text.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_pressed="true" android:color="@color/abc_search_url_text_pressed"/>
-    <item android:state_selected="true" android:color="@color/abc_search_url_text_selected"/>
-    <item android:color="@color/abc_search_url_text_normal"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_secondary_text_material_dark.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_secondary_text_material_dark.xml
deleted file mode 100644
index 6399b1d028fbd9d0d0fb862ce00bba26bbac7666..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_secondary_text_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/secondary_text_disabled_material_dark"/>
-    <item android:color="@color/secondary_text_default_material_dark"/>
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_secondary_text_material_light.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_secondary_text_material_light.xml
deleted file mode 100644
index 87c015a4cd68035eb8f5a8e1382b151cccff4ae7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_secondary_text_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/secondary_text_disabled_material_light"/>
-    <item android:color="@color/secondary_text_default_material_light"/>
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_btn_checkable.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_btn_checkable.xml
deleted file mode 100644
index 0c663f6b92b0f482cbfebf3e865219fdc98714c6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_btn_checkable.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false" android:color="?attr/colorControlNormal" app:alpha="?android:disabledAlpha"/>
-    <item android:state_checked="true" android:color="?attr/colorControlActivated"/>
-    <item android:color="?attr/colorControlNormal"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_default.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_default.xml
deleted file mode 100644
index 8d7c391e39d4cc21429977e6ef37da61222d2caa..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_default.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false" android:color="?attr/colorControlNormal" app:alpha="?android:disabledAlpha"/>
-    <item android:state_focused="true" android:color="?attr/colorControlActivated"/>
-    <item android:state_pressed="true" android:color="?attr/colorControlActivated"/>
-    <item android:state_activated="true" android:color="?attr/colorControlActivated"/>
-    <item android:state_selected="true" android:color="?attr/colorControlActivated"/>
-    <item android:state_checked="true" android:color="?attr/colorControlActivated"/>
-    <item android:color="?attr/colorControlNormal"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_edittext.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_edittext.xml
deleted file mode 100644
index 536d77f09f644430af79067b1b61e7c9062678bd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_edittext.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false" android:color="?attr/colorControlNormal"
-          app:alpha="?android:disabledAlpha"/>
-    <item android:state_pressed="false" android:state_focused="false"
-          android:color="?attr/colorControlNormal"/>
-    <item android:color="?attr/colorControlActivated"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_seek_thumb.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_seek_thumb.xml
deleted file mode 100644
index cb537882f0c7d44fbbb78caa5b1ab6073c76843c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_seek_thumb.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false" android:color="?attr/colorControlActivated" app:alpha="?android:attr/disabledAlpha"/>
-    <item android:color="?attr/colorControlActivated"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_spinner.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_spinner.xml
deleted file mode 100644
index 44333dd1e3297b94f2503859e68804d709d92465..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_spinner.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false" android:color="?attr/colorControlNormal" app:alpha="?android:disabledAlpha"/>
-    <item android:state_pressed="false" android:state_focused="false" android:color="?attr/colorControlNormal"/>
-    <item android:color="?attr/colorControlActivated"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_switch_thumb.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_switch_thumb.xml
deleted file mode 100644
index fc8bd247fb4ce7a7803f9061d40ad33aa33f2797..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_switch_thumb.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false" android:color="?attr/colorSwitchThumbNormal" app:alpha="?android:attr/disabledAlpha"/>
-    <item android:state_checked="true" android:color="?attr/colorControlActivated"/>
-    <item android:color="?attr/colorSwitchThumbNormal"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_switch_track.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_switch_track.xml
deleted file mode 100644
index 22322f8d8631bebb5c39b3e5a4dc317e871d5367..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_switch_track.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false" android:color="?android:attr/colorForeground" app:alpha="0.1"/>
-    <item android:state_checked="true" android:color="?attr/colorControlActivated" app:alpha="0.3"/>
-    <item android:color="?android:attr/colorForeground" app:alpha="0.3"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/switch_thumb_material_dark.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/switch_thumb_material_dark.xml
deleted file mode 100644
index 6153382c7c503e35d5ef4e3e7d51699ff0f3aed4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/switch_thumb_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/switch_thumb_disabled_material_dark"/>
-    <item android:color="@color/switch_thumb_normal_material_dark"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/switch_thumb_material_light.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/switch_thumb_material_light.xml
deleted file mode 100644
index 94d711482138c30504e0ffe005144eef8543f44c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/switch_thumb_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/switch_thumb_disabled_material_light"/>
-    <item android:color="@color/switch_thumb_normal_material_light"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index 4d9f861f88895c73c89ed02f8aba3241f5d646fa..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index 99110085fe9826bf67329ebee4921a120b351f6a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 69ff9dde3a8ac9de1581162da65d33468dfeb500..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 9218981b4f2ebfa185eea884cb7fb29620aed83f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index a58857635f2e57d1c86cde7b4e4676caae1e3ca7..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index 4657a25ff54a84d863e56920e74eb9d215be288a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index 3fd617bf9280439d1a086b864933f8d2b75a43d0..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index 2264398234bfa55246c3d2fdaf9ea02b3cad9820..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index 65ccd8f410769dbe216afdc9c483e088ebb85c98..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 706fc1fa38191b3401aa6b6fe688c3384a60abe1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index e78bcaf57a7ebf7fe1cb821a4115f7aabd80a161..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 8610c50150208b4f57a951d0ac279dc5e219c820..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index 63d0e5d552b3980a37cbb9ac2339f5dc7c7243aa..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index cd1f57c5bc85c49d5793e2d65558bac6578024fc..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index a728afe60047efd900e7d4213faa7b5c22e9c875..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index 64b2aa7f28c1f5b25451c26ce5e3a3dbc5d8052b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png
deleted file mode 100644
index 54d306599a5b5a269a3bd46a7636d5277ee37845..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index cf270fe1b3008283321b84da3ac92da1f213e2b5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index 49ad6cd74860fdb2f6f9c1a5c71f7ab374d00d0f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png
deleted file mode 100644
index 1aa9965363fb87b006691ee1b177c07e6ab4800b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index c2264a89ac3e59ab13e079b888b62ac7c396658f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_focused_holo.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index c09ec90e0f3508e510730a50aa1284eb49a9a485..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_focused_holo.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index 62fbd2cb505e4c3fc04166b55e19d61efe5dd7d1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index 2f6ef9160a8eb6e764e814794e8479f6eb4959c5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index 863ce95f61c5025bc85294fd44a6cade4ab4ed42..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index b6d467774e7e257759718a341f7e751a3f64dbef..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index 60081db881457e65ecfead8a6155594c0d9e34da..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index abb52c975668dc8e79590aaedabcc9b8f9b67b4f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index 9d8451aab1b5d5520372df0729b39e09358a86ae..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index d8d6d7f602f306068c187c1b3ecbf60427d4b995..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 30c1c1e5f1ba3bbb538e02c0423b6e2bd3f10ab3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 1f1cdadbffab67ca8b84c80c341471a7dc885757..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index ffb0096fdc6fbb5dc6678a84fa67e0817ffac0cf..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index e54950e9d8db5e30dd301ae9a5d3fcfeecbd08fc..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 0da5b1d1e76f2894a114fd95e6816fd38b740eaa..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index f8063b23b4622bb49aaecc37650479eedf0ad283..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index 4b0b10a7a3ecdc06906390be124911d3339dc4d1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png
deleted file mode 100644
index ebf3f6cbaf9d711c4103b273bc7124395ca1b20a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png
deleted file mode 100644
index d3556a814fdff36a4f88adb203533aa3fe06e8d1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
deleted file mode 100644
index 428bfab622ac101e7baeb4de0bf6d71911722e83..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png
deleted file mode 100644
index 183c9aced47e192d3abf8aab92e490acc31cc851..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png
deleted file mode 100644
index 829d5b2498e2326490c0d2197f96b29b669191d7..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png
deleted file mode 100644
index 9b67079ad6dcc48464c82b27a6853d4560458404..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index 5b13bc17add7ed96d45156417cdaedc2e75b41b1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index 5440b1a4d3c99aaec705cd5d0c500746a9664af8..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index 05d6920b8455b2cbddfa0124a652b6a539305d45..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index 6282df4e69ecd67d5079977f97357219817deb2d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_low_normal.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_low_normal.9.png
deleted file mode 100644
index af91f5e6435b5cdd85b2461f976f119c860f9d52..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_low_normal.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png
deleted file mode 100644
index 1602ab872b37d56993fbe714d68aa79d1bb8736e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_normal.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_normal.9.png
deleted file mode 100644
index 6ebed8bfd524c12aab5df367aa24ed6f989e9c1b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_normal.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png
deleted file mode 100644
index 6193822d57c1ecc810bc6080fa75bd3221a0564f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png
deleted file mode 100644
index 6f37a22d55ced9cc2f0ce6bc5643ca2d8d5a3794..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index a262b0c872cf6973381c8fcd17381a180e149397..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index d8eaf0761ecbce05bad5c8e899b9b55426c612e2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index ddbec8b1867095bfa9928730af65228b73caf3e3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 254f8061576d9ee2e322f2ea9ab279192bbe2cc1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index f9cba8f2d2c1662f7ef93a6374f15c5ace253700..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index c888ee0578f28f8f58c01d7b7980b4ef9c807ecf..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 198a842af35fe8d1e896b44b3669817dd9854540..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 87bf8d36b15d318cccd00b0fdc670e3286ac349f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 588161e6a035f565ceffa0f15bde51ede51d61c2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 284c3c23ee118b54c897c8051c5db1cd3152c1b1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 3cdb6cf5c9fb7780f02c6efb8fa8af9991836ed5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 7cf976d2bc74347258bf601aa9a5e9237a9ec554..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 7d4c69091b7d8f5be4bbe9e1546402de751c960a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 90fe333ac3531c602ee15ceca3a3f22551e97e6c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 4c0f0b38f4675558f5eff0369f7850a06b46cee2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index fa0ed8fe9527428ef714497d01abdf43291440da..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index 7a9fcbcbfe5edb62e193dc338a2555129872aabd..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 8e6c2717ce6bbef162e0068d4b4af5ab17815143..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 9f0d2c82321f31bba14434d1d2348e2f66ddda19..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index 6e18d40d7905d5b1711303edf1b3c5879ad5616a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index d0a41a51efc727f082aacd3826137e30a68bc216..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index bebb1e2119de3515a111755c2c5b7ae7976fb116..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index 038e000864ac899e314d228c280b2bc546c194bf..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index 6086f9c3829a5fc31fc6825779b5e55b20c125a0..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 559b83539b85ada6ee06007fbeabf63cf96630ca..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index a282219cdfa559d21bb0e3733cda75cd2a2d1105..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 1492ab62a4aad3a2c40c25f3dce2111076bfb854..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index 7c011af4c0af9f7fb4b3bda1ccb41b03c4635691..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index 36f664ccac9f803bdf4d5c7ba6a499f188e7a414..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index 3f5d25e019fcff8db5059c3704f295729b7f81df..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index 2ddcdd985de9a1e823cf520744846bdccd3976d1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png
deleted file mode 100644
index c636ce8e81bedced667a12e42fae8037f7f932ae..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index 077f9b05ddc49c00f8515acf360bc6decd3b60a2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index ac6ad111b4f777483263439d0e2bfd4c305c539e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png
deleted file mode 100644
index 00651110dce0e00e0c8e4123804e6ef1e92cc79b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index c2264a89ac3e59ab13e079b888b62ac7c396658f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_focused_holo.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index addb54a22666ca813e2c82829dda42405841e616..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_focused_holo.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index 5fcd5b207a0fe14656d54c78a01b42b1490f3c56..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index 251b98913d09ee4613e8926d4592a7da1b98173a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index 01efec045b9e3ba3aafdf54e3ecf9f952a2268a6..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index f1d1b61708b53fb5aa09cc79a5f9bb156608f8bf..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index 10851f6c87c0db0f2fc83e71e2fa99be1b49e704..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index 15c1ebb561cc907e4e13e014a7c21d41b716aab5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index 5f55cd5539ce16dad8251dab2be5dceeb43a73a5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index 1bff7fa3ba27fecd100b887b2791ac71c6783efd..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 9280f82960aa85e103397360795d8252678d3c2d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 21bffc645a054f6331a6484e861f945f135b73e5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index 88781298a2748fd7bf2a4a1e657c2d6172203823..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index 869c8b0885e5b279be0788771163aa6473d63b71..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index ed75cb8128cbdab3d357bffdc26ad276e927dcd4..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index ab8460f580994ffbb8b8457d2b359ac82d5a6108..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index 12b0a79c588fdb90b3a4a2a55b654700bf726453..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png
deleted file mode 100644
index 87e48ec85b0b51c9680006424e2212ad5709769c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png
deleted file mode 100644
index e243fd8f8e096ff57784ceafcf41302a57bf63b6..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
deleted file mode 100644
index d001ceac71f22e441a13773c86ab78cff38997a3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png
deleted file mode 100644
index 55b8b363f10826015e97c2bd590000775fecd3fc..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png
deleted file mode 100644
index f415390d5de72c453e871484551ccb68014c59a5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png
deleted file mode 100644
index e6eff09ec917dffba539aa5cb30b7567440cb093..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index 3ffa25193cbd56b3b6e44097efe5e9d881be0c16..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index 5d7ad2f13f8a97cabed50db58cc708913bea571f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index 0c766f30dba513e013795c56d1a28134cef9f92b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index 4f66d7adce19a0ae2471aebead88d74abacb0ac9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_low_normal.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_low_normal.9.png
deleted file mode 100644
index 62de9d76bad2244e407ea78106185b7d2513a3ec..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_low_normal.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png
deleted file mode 100644
index eaabd93170346b06e4a67a260cce72c2875f641a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_normal.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_normal.9.png
deleted file mode 100644
index aa239b35c7ef0f14097ba6a60422ae56d21af9c9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_normal.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png
deleted file mode 100644
index 62d8622b27bc7cb190a113a2cb72ae82cb38bfd5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png
deleted file mode 100644
index c286875aa70b7dc76460345141cd374e00f929f3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_action_bar_item_background_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_action_bar_item_background_material.xml
deleted file mode 100644
index 595c56c6a91555c1fdae2ed6b0d689de4c01f4d6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_action_bar_item_background_material.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<ripple xmlns:android="http://schemas.android.com/apk/res/android"
-        android:color="?android:attr/colorControlHighlight"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_btn_colored_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_btn_colored_material.xml
deleted file mode 100644
index 10251aadc7cf433ffd71a292fb8cc3615fbdae14..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_btn_colored_material.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<inset xmlns:android="http://schemas.android.com/apk/res/android"
-       android:insetLeft="@dimen/abc_button_inset_horizontal_material"
-       android:insetTop="@dimen/abc_button_inset_vertical_material"
-       android:insetRight="@dimen/abc_button_inset_horizontal_material"
-       android:insetBottom="@dimen/abc_button_inset_vertical_material">
-    <ripple android:color="?android:attr/colorControlHighlight">
-        <item>
-            <!-- As we can't use themed ColorStateLists in L, we'll use a Drawable selector which
-                 changes the shape's fill color. -->
-            <selector>
-                <item android:state_enabled="false">
-                    <shape android:shape="rectangle">
-                        <corners android:radius="@dimen/abc_control_corner_material"/>
-                        <solid android:color="?android:attr/colorButtonNormal"/>
-                        <padding android:left="@dimen/abc_button_padding_horizontal_material"
-                                 android:top="@dimen/abc_button_padding_vertical_material"
-                                 android:right="@dimen/abc_button_padding_horizontal_material"
-                                 android:bottom="@dimen/abc_button_padding_vertical_material"/>
-                    </shape>
-                </item>
-                <item>
-                    <shape android:shape="rectangle">
-                        <corners android:radius="@dimen/abc_control_corner_material"/>
-                        <solid android:color="?android:attr/colorAccent"/>
-                        <padding android:left="@dimen/abc_button_padding_horizontal_material"
-                                 android:top="@dimen/abc_button_padding_vertical_material"
-                                 android:right="@dimen/abc_button_padding_horizontal_material"
-                                 android:bottom="@dimen/abc_button_padding_vertical_material"/>
-                    </shape>
-                </item>
-            </selector>
-        </item>
-    </ripple>
-</inset>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_edit_text_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_edit_text_material.xml
deleted file mode 100644
index d98b0085bdf8f327f60ca57ea753191ff1ec5f0a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_edit_text_material.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<inset xmlns:android="http://schemas.android.com/apk/res/android"
-       android:insetLeft="@dimen/abc_edit_text_inset_horizontal_material"
-       android:insetRight="@dimen/abc_edit_text_inset_horizontal_material"
-       android:insetTop="@dimen/abc_edit_text_inset_top_material"
-       android:insetBottom="@dimen/abc_edit_text_inset_bottom_material">
-    <selector>
-        <item android:state_enabled="false">
-            <nine-patch android:src="@drawable/abc_textfield_default_mtrl_alpha"
-                        android:tint="?attr/colorControlNormal"
-                        android:alpha="?android:attr/disabledAlpha"/>
-        </item>
-        <item android:state_pressed="false" android:state_focused="false">
-            <nine-patch android:src="@drawable/abc_textfield_default_mtrl_alpha"
-                        android:tint="?attr/colorControlNormal"/>
-        </item>
-        <item>
-            <nine-patch android:src="@drawable/abc_textfield_activated_mtrl_alpha"
-                        android:tint="?attr/colorControlActivated"/>
-        </item>
-    </selector>
-</inset>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/notification_action_background.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/notification_action_background.xml
deleted file mode 100644
index 852c3f0819bf4ff6225a261e0adb7ca2d625c8f6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/notification_action_background.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<ripple xmlns:android="http://schemas.android.com/apk/res/android"
-    android:color="@color/ripple_material_light">
-    <item android:id="@android:id/mask"
-        android:drawable="@drawable/abc_btn_default_mtrl_shape" />
-</ripple>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v23/abc_control_background_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v23/abc_control_background_material.xml
deleted file mode 100644
index 0b540390a2f56a9c41dbc54a80234b8bb6cf9a63..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v23/abc_control_background_material.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<ripple xmlns:android="http://schemas.android.com/apk/res/android"
-        android:color="@color/abc_color_highlight_material"
-        android:radius="20dp" />
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index 6284eaaa17d3a168ee64a94ef5e7aefec7a4d98b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index 49025208b6057654c3a15f0b2a5d46a016553260..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 59a683ab60d66781b7d5135885ec5565c2e9b6af..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 03bf49cc5ea2b816a7041067e148dd6ff28fbe55..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index 342323b4b505f28eed4191286a3070f3a99de049..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index 1d29f9a6c73c3a3706fa08e06391deb234e35f04..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index 92b43ba0029c34ff73ff0e93fd5e1e3f1594cd48..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index 600178a98a9887e7f1977b541b9195cbb02d666f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index ca303fd6ecf6c06df8c32617c8a4974a5eb1da2f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 8e664eb153ce6937b5926015cd99a9112f0c6f7e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index cd38901c4f396abf0f23c84b84d64e5fc565e56c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 9aabc43ce6e7182c477d9ea58a1b85561bdccc14..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index c8bae19bcf8cf442b656bc7b88f3971461a8cf9a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index 6be7e097ceedbb7a49b141b5ef13c84f9a499779..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index 35fe96563ed298cd4bd74a2eaafd9958bb879821..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index 45887c13ddbbc64b5a65ff8d003fb85bdef10e0b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png
deleted file mode 100644
index 7be22806f0e1a339cea85fc7bc45ab72d99859fd..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index ea6033adb9024894e77854c02881cae5f3d3f482..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index 2f4818b296fc91d7825fc06dd0611b0e2a6dffe4..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png
deleted file mode 100644
index 2456a74a5c82e3fd4b8a3dfdb937701463b88c3d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index c2264a89ac3e59ab13e079b888b62ac7c396658f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index 67c25aefff272ed6716a00fe80012ded61b4d1f2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index 17c34a1a93cf6e29559cd5fdb0db69b8c9adfbec..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index 988548a10365b25a52a3faa9f906569a80d52dd1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index 15fcf6a3220557b772cf6c3c05ef8d521a97f124..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index 65275b38c73437c10cf4378a8313f2aafbd3e04e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index ee95ed4e2f2b7d3fda2309a552a102351e0ad7b9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index 99cf6de8b7dc12e6b8c30417891130bb4a98fae9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index d8cc7d3c5166a6d0bc8b5364c331988d0227aaa1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index c08ec90ff37523f1507de20291f2a01bef9e8667..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 0486af199208cee7f364a19c11695142c39bf879..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 20079d8ca008ad6bae43458def8a1c4047ac452e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index fb4e42aaa58e030151eed32bbf7d98b2215bc0b9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index 44b9a147b2cfb1e4b0901d5394cce05df7cfa727..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index bcf6b7f059ff374cf2bcae65ad8670f5a76f5346..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index 7c56175a17eb328ae6caf14012a8802cea768ec4..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index 2242d2f94b9210ee15659529b987e57aedb94f87..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png
deleted file mode 100644
index 76ed4f3226356997ab15f243fd6a770a3ccc4645..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png
deleted file mode 100644
index 529d5504d36ebf3726204630a2ea3a8078dda413..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
deleted file mode 100644
index 3dcebcf8342dce2ce0ce0ea3a3aad04098803864..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png
deleted file mode 100644
index 1f8cc88c5202103092d3296142d19494aa20da13..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png
deleted file mode 100644
index 8df37185e1570367c2aa132aeaa7c5249c791179..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png
deleted file mode 100644
index 6c8f6a433fce96873e4cd6c1ad09e7da4cc23970..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index 8ff3a8304c19cfe6be8f848ed5483c661a069658..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index e7e693a7b81589e21048a5e7a8b28055cf48118a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index 819171ad6505fc94b6234fd8de11803097cac12f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index 4def8c8fabd1f5f52083445c51eee12b238cb606..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png
deleted file mode 100644
index 8c884decb37d6ea89195e0d2f512ea02325f047d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png
deleted file mode 100644
index 32e00befeb6a9f9a52aa750a290e164592b528b8..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_normal.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_normal.9.png
deleted file mode 100644
index bdf477bad779870c0ce67fcd22ac87dbeb442dc2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_normal.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png
deleted file mode 100644
index 5c4da7445195554c408f6240906b7523daaa20a9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png
deleted file mode 100644
index 9128e62bbcf153291e88879f1bc379b2607e578d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index 4eae28fde7ed2f69348492f8b76f0fccad273212..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index d934b60dc4e14e15b5efa834a06b612f538282ea..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 8c82ec3d7a19e756ed5ad582c133b1f45964ce57..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 8fc0a9b8793ffdccc2b4e4c6eeb534bd4e5b7355..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index 3038d70fcb5529492d89338320c9200ae246299a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index c079867b379d6e7f3599e454e3516d564f131fc3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index 3b9dc7c11c12eaeca801144971ab6a538148815d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index f6d2f3294f543553eb8bed804b56edae6a47eaf7..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index fe826b7cac181387de16789d5a0f5b4b69efd25f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 90d6ba3c62fa8adfaa4d3f73133db40b9f9c75a5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 63e541f4b2b34594f0ccc22366f55b0a96e01282..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index f71485c2d05f9d82cfb6a2f91699e2fa2514f0bc..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index 162ab9847acbb9fcdf7cc3e428412c80176d797c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index d95a3774a2709ca055940196bde411c2d652f5f2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index e5509b034cbdf7cc0218b37e288797b45706794e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index 72685abe793c47992b07c8b13539521e997b3b3b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png
deleted file mode 100644
index 918a395655c952ab5f7ba1de26e72f192e837460..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index 8e985b46d46bb342895e0c48a8bc8288348e92ba..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index 19bbc1202a1f508e4ca8a34566d8f525df020039..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png
deleted file mode 100644
index 601bf0c2ff0c2c2927178e55f3c3aabdd67fa94b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 987b2bc25a23e661c3fad45b659cbf95e267d1dc..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index 8b050e8551482e4bfba482e20d18449f0d71c380..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index 00e370a1a98a123fd943cd6f318bfd731b06aaad..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index 719c7b5ebf87db3bde3e5c12ab3b433cbc0e0da8..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index 75bd5803fd0ba79a5573238d5d7ed6b25a0828f7..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index 4f3b147a6cc30e76b77cc298df539270762350c2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index 224a08157f83679a73e8f3f466f18b40db936a5e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index b5ceeac06db97d6050743a7b368e3047ff2266c1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index 4727a7d6c89cc777054da63d8e0eb6c37851406a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index 4657815e4fa1561b97ea73ec1ba990a4da58e125..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 4aa0a3441e98499b18a5f2ac4d57632ceaf51629..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 6178c45ca80743070281ed72c75bc64c7b31c758..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index 3d9b96107d0051273ed97180086ce4a5c89a7012..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index 56a69df154e0b6e407bb99e0fb9ab6c25b10a96b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 79240008160bf53d317d5075096022617d65b4d3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index ba5abaad1a9af2dca7f34d2821e93d24d6eb241e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index eeb74c8693ec012e9fef19a68979c97e57d7185e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png
deleted file mode 100644
index 278cb23878bb7054f2ba193d0685312c7bd2edd3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png
deleted file mode 100644
index d6a87904d387debb3790a58d40956f2ac96bf840..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
deleted file mode 100644
index d71dbd197bb10b695ba2a8d1fcb1bcdf7fb384a3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png
deleted file mode 100644
index de001850e2c4d5bc474ecac2657c633aa843470f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png
deleted file mode 100644
index 56d677d8e786c6021fcaf2ccb01cb8a36481bfe2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png
deleted file mode 100644
index d186a5bb42235ea9f9880425105faac6f8bed746..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index 4d3d3a4d05bf3af555900fe405607edd22ab9765..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index c5acb84f0447806c5c4bb3c0b1461a01c008aed1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index 30328ae1d2e01163f15a2f10fa817c46bf88417b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index bc21142c1be2901a8ad02edceb072fbbde38ba6e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index e40fa4e101029ba3fcd6c8eeb54bb37f91b6b7df..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 4e18de21a61fb762467d1fa2552baf5b8081d3b9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 5fa326654ef90ee5b1db23fdf4b1f21dcd6fc9f5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index c11cb2ec658905996d5a1ecb86e8d4c6caf106b0..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index 639e6cb41b448bc860076ee04d03183dfe7014c1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index 355d5b7758d3d16d00f528fb6ce9d5cccf3b2303..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 6758084a560301f481106348ccd222efdbc8765f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 397fd91c650b72967f093ef8a414a07adbc9f385..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 6c8428a00c294ce449f4bc9c9b9702c659c7fcbd..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index 9084c385eda87ad3412794043f1309349d171d6f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index ba16aac56ea31d8a7ff20b9819a8528a4c295776..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index cc8109732635bb4336f390accc0c3bf1352cd662..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index dc312c14acc843edaa81e502aa325423af03a029..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png
deleted file mode 100644
index 67e25d5597872cf7fc4c5dae55e66673f90d0e9d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index 1c7f66eaa249f6477b1e46869cd67dfefa4e5245..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index 82e7293871f575a8eb148181e003ff5ae50f7f96..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png
deleted file mode 100644
index b028a36ad47ca654e9a8574c701d259a5861a0aa..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 7dfaf7cf355f778591d6c076cef0ce1df2bef054..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index fe8f2e40e362549396ce0df05e6058af0b620b9b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 752cb5798d793c38eb228db469312221076a4fcd..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index 40255c3e1bc280f85699ccfd80e74efcd2837285..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index 0210ad178627d657d9517147b92fd6d696c9fb00..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png
deleted file mode 100644
index 2c6d0daf76cf3cb66bbf1addcab5d4700cd03460..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png
deleted file mode 100644
index 565f0b29436bd8563bfca54f33dddefa49c74294..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png
deleted file mode 100644
index 714b641874a671d51d7db451200b700b118712dd..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png
deleted file mode 100644
index 894c734214f7d58c2dbd70d6bf4fd736e38f71ee..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_borderless_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_borderless_material.xml
deleted file mode 100644
index f3894600ba0f74374133924f2fa79c30f5d4ef83..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_borderless_material.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_focused="true" android:drawable="@drawable/abc_btn_default_mtrl_shape"/>
-    <item android:state_pressed="true" android:drawable="@drawable/abc_btn_default_mtrl_shape"/>
-    <item android:drawable="@android:color/transparent"/>
-</selector>
-
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_check_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_check_material.xml
deleted file mode 100644
index f6e938fe4770b7e0f70bcb81336948870a05c122..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_check_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_checked="true" android:drawable="@drawable/abc_btn_check_to_on_mtrl_015" />
-    <item android:drawable="@drawable/abc_btn_check_to_on_mtrl_000" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_colored_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_colored_material.xml
deleted file mode 100644
index ec93b8b6bc445ef60736881f496a6475f6781414..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_colored_material.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!-- Used as the canonical button shape. -->
-
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:drawable="@drawable/abc_btn_default_mtrl_shape" />
-</layer-list>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_default_mtrl_shape.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_default_mtrl_shape.xml
deleted file mode 100644
index c50d4b10f007b10e06bb3e44a775f52a1b0e01e5..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_default_mtrl_shape.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!-- Used as the canonical button shape. -->
-
-<inset xmlns:android="http://schemas.android.com/apk/res/android"
-       android:insetLeft="@dimen/abc_button_inset_horizontal_material"
-       android:insetTop="@dimen/abc_button_inset_vertical_material"
-       android:insetRight="@dimen/abc_button_inset_horizontal_material"
-       android:insetBottom="@dimen/abc_button_inset_vertical_material">
-    <shape android:shape="rectangle">
-        <corners android:radius="@dimen/abc_control_corner_material" />
-        <solid android:color="@android:color/white" />
-        <padding android:left="@dimen/abc_button_padding_horizontal_material"
-                 android:top="@dimen/abc_button_padding_vertical_material"
-                 android:right="@dimen/abc_button_padding_horizontal_material"
-                 android:bottom="@dimen/abc_button_padding_vertical_material" />
-    </shape>
-</inset>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_radio_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_radio_material.xml
deleted file mode 100644
index 6e9f9cf3741b47a02621ff22e414cbfe506dc5c6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_radio_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_checked="true" android:drawable="@drawable/abc_btn_radio_to_on_mtrl_015" />
-    <item android:drawable="@drawable/abc_btn_radio_to_on_mtrl_000" />
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_cab_background_internal_bg.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_cab_background_internal_bg.xml
deleted file mode 100644
index 9faf60ac61614e7c6d86d6977bf523c698a03d11..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_cab_background_internal_bg.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!--
-    A solid rectangle so that we can use a PorterDuff multiply color filter to tint this
--->
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
-       android:shape="rectangle">
-    <solid android:color="@android:color/white" />
-</shape>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_cab_background_top_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_cab_background_top_material.xml
deleted file mode 100644
index f20add7e4b8854fdd841ea231ab1f9b5c2dfbff9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_cab_background_top_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!-- This is a dummy drawable so that we can refer to the drawable ID -->
-<shape xmlns:android="http://schemas.android.com/apk/res/android">
-    <solid android:color="@android:color/white"/>
-</shape>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_dialog_material_background.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_dialog_material_background.xml
deleted file mode 100644
index 18560fcbefcb5f08cc8aee1349919a8f9405614f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_dialog_material_background.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<inset xmlns:android="http://schemas.android.com/apk/res/android"
-       android:insetLeft="16dp"
-       android:insetTop="16dp"
-       android:insetRight="16dp"
-       android:insetBottom="16dp">
-    <shape android:shape="rectangle">
-        <corners android:radius="2dp" />
-        <solid android:color="@android:color/white" />
-    </shape>
-</inset>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_edit_text_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_edit_text_material.xml
deleted file mode 100644
index 46c4e912003761b1380f57617660814e03474861..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_edit_text_material.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<inset xmlns:android="http://schemas.android.com/apk/res/android"
-       android:insetLeft="@dimen/abc_edit_text_inset_horizontal_material"
-       android:insetRight="@dimen/abc_edit_text_inset_horizontal_material"
-       android:insetTop="@dimen/abc_edit_text_inset_top_material"
-       android:insetBottom="@dimen/abc_edit_text_inset_bottom_material">
-
-    <selector>
-        <item android:state_enabled="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/>
-        <item android:state_pressed="false" android:state_focused="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/>
-        <item android:drawable="@drawable/abc_textfield_activated_mtrl_alpha"/>
-    </selector>
-
-</inset>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_ab_back_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_ab_back_material.xml
deleted file mode 100644
index 5a895239c97db7cfc55d0f8d4539b91012848147..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_ab_back_material.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-   Copyright (C) 2015 The Android Open Source Project
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file except in compliance with the License.
-    You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportWidth="24.0"
-        android:viewportHeight="24.0"
-        android:autoMirrored="true"
-        android:tint="?attr/colorControlNormal">
-    <path
-            android:pathData="M20,11L7.8,11l5.6,-5.6L12,4l-8,8l8,8l1.4,-1.4L7.8,13L20,13L20,11z"
-            android:fillColor="@android:color/white"/>
-</vector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml
deleted file mode 100644
index 68547eb7dc7dbf1e57319b1da0410b839a9337ae..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:height="24dp"
-        android:viewportHeight="24.0"
-        android:viewportWidth="24.0"
-        android:width="24dp"
-        android:tint="?attr/colorControlNormal"
-        android:autoMirrored="true">
-
-    <group
-            android:name="arrow"
-            android:rotation="90.0"
-            android:pivotX="12.0"
-            android:pivotY="12.0">
-        <path android:fillColor="@android:color/black" android:pathData="M7,14 L12,9 L17,14 L7,14 Z" />
-        <path android:pathData="M0,0 L24,0 L24,24 L0,24 L0,0 Z" />
-    </group>
-</vector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_clear_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_clear_material.xml
deleted file mode 100644
index e6d106b76e8375896555acd65498ca0e71d7eab7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_clear_material.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-    Copyright (C) 2015 The Android Open Source Project
-
-    Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file except in compliance with the License.
-    You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportWidth="24.0"
-        android:viewportHeight="24.0"
-        android:tint="?attr/colorControlNormal">
-    <path
-            android:pathData="M19,6.41L17.59,5,12,10.59,6.41,5,5,6.41,10.59,12,5,17.59,6.41,19,12,13.41,17.59,19,19,17.59,13.41,12z"
-            android:fillColor="@android:color/white"/>
-</vector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_go_search_api_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_go_search_api_material.xml
deleted file mode 100644
index 0c8811913cd3094f3c572e72d8cb62289adfe01b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_go_search_api_material.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file except in compliance with the License.
-    You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportWidth="24.0"
-        android:viewportHeight="24.0"
-        android:tint="?attr/colorControlNormal">
-    <path
-        android:pathData="M10,6l-1.4,1.4 4.599999,4.6 -4.599999,4.6 1.4,1.4 6,-6z"
-        android:fillColor="@android:color/white"/>
-</vector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_menu_overflow_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_menu_overflow_material.xml
deleted file mode 100644
index 1420edd7f1d1fd062d026ce0cc7540d2338d7d75..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_menu_overflow_material.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-    Copyright (C) 2015 The Android Open Source Project
-
-    Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file except in compliance with the License.
-    You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportWidth="24.0"
-        android:viewportHeight="24.0"
-        android:tint="?attr/colorControlNormal">
-    <path
-            android:pathData="M12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2c-1.1,0 -2,0.9 -2,2S10.9,8 12,8zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2c1.1,0 2,-0.9 2,-2S13.1,10 12,10zM12,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2c1.1,0 2,-0.9 2,-2S13.1,16 12,16z"
-            android:fillColor="@android:color/white"/>
-</vector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_search_api_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_search_api_material.xml
deleted file mode 100644
index b4cba3476f75f2df33388e1141c7b4496e0334f0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_search_api_material.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-    Copyright (C) 2016 The Android Open Source Project
-
-    Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file except in compliance with the License.
-    You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportWidth="24.0"
-        android:viewportHeight="24.0"
-        android:tint="?attr/colorControlNormal">
-    <path
-        android:pathData="M15.5,14l-0.8,0l-0.3,-0.3c1,-1.1 1.6,-2.6 1.6,-4.2C16,5.9 13.1,3 9.5,3C5.9,3 3,5.9 3,9.5S5.9,16 9.5,16c1.6,0 3.1,-0.6 4.2,-1.6l0.3,0.3l0,0.8l5,5l1.5,-1.5L15.5,14zM9.5,14C7,14 5,12 5,9.5S7,5 9.5,5C12,5 14,7 14,9.5S12,14 9.5,14z"
-        android:fillColor="@android:color/white"/>
-</vector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_voice_search_api_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_voice_search_api_material.xml
deleted file mode 100644
index 143db558fb992b17cb451a87dd293f75f56dfdb6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_voice_search_api_material.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-    Copyright (C) 2015 The Android Open Source Project
-
-    Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file except in compliance with the License.
-    You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportWidth="24.0"
-        android:viewportHeight="24.0"
-        android:tint="?attr/colorControlNormal">
-    <path
-        android:pathData="M12,14c1.7,0 3,-1.3 3,-3l0,-6c0,-1.7 -1.3,-3 -3,-3c-1.7,0 -3,1.3 -3,3l0,6C9,12.7 10.3,14 12,14zM17.299999,11c0,3 -2.5,5.1 -5.3,5.1c-2.8,0 -5.3,-2.1 -5.3,-5.1L5,11c0,3.4 2.7,6.2 6,6.7L11,21l2,0l0,-3.3c3.3,-0.5 6,-3.3 6,-6.7L17.299999,11.000001z"
-        android:fillColor="@android:color/white"/>
-</vector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_item_background_holo_dark.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_item_background_holo_dark.xml
deleted file mode 100644
index 72162c222eea5218e4effb8f24b9b5ebc7f7ec7e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_item_background_holo_dark.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-
-    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
-    <item android:state_focused="true"  android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_disabled_holo_dark" />
-    <item android:state_focused="true"  android:state_enabled="false"                              android:drawable="@drawable/abc_list_selector_disabled_holo_dark" />
-    <item android:state_focused="true"                                android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_dark" />
-    <item android:state_focused="false"                               android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_dark" />
-    <item android:state_focused="true"                                                             android:drawable="@drawable/abc_list_focused_holo" />
-    <item                                                                                          android:drawable="@android:color/transparent" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_item_background_holo_light.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_item_background_holo_light.xml
deleted file mode 100644
index 1c180b2ee4819fd4c810b03c6715b7c4ab7bc5aa..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_item_background_holo_light.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-
-    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
-    <item android:state_focused="true"  android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_disabled_holo_light" />
-    <item android:state_focused="true"  android:state_enabled="false"                              android:drawable="@drawable/abc_list_selector_disabled_holo_light" />
-    <item android:state_focused="true"                                android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_light" />
-    <item android:state_focused="false"                               android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_light" />
-    <item android:state_focused="true"                                                             android:drawable="@drawable/abc_list_focused_holo" />
-    <item                                                                                          android:drawable="@android:color/transparent" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml
deleted file mode 100644
index 0add58c86ac23a8f09b02e85e0e4986fd0684000..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<transition xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:drawable="@drawable/abc_list_pressed_holo_dark"  />
-    <item android:drawable="@drawable/abc_list_longpressed_holo"  />
-</transition>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_background_transition_holo_light.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_background_transition_holo_light.xml
deleted file mode 100644
index 0c1d3e67821244ccd21e853d2d82ca316b632b63..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_background_transition_holo_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<transition xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:drawable="@drawable/abc_list_pressed_holo_light"  />
-    <item android:drawable="@drawable/abc_list_longpressed_holo"  />
-</transition>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_holo_dark.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_holo_dark.xml
deleted file mode 100644
index 1fb5fc4516db6f0b0becff00fd36f2a0ce203de7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_holo_dark.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-
-    <item android:state_window_focused="false" android:drawable="@android:color/transparent" />
-
-    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
-    <item android:state_focused="true"  android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_disabled_holo_dark" />
-    <item android:state_focused="true"  android:state_enabled="false"                              android:drawable="@drawable/abc_list_selector_disabled_holo_dark" />
-    <item android:state_focused="true"                                android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_dark" />
-    <item android:state_focused="false"                               android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_dark" />
-    <item android:state_focused="true"                                                             android:drawable="@drawable/abc_list_focused_holo" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_holo_light.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_holo_light.xml
deleted file mode 100644
index 8d24047229b0c3b3cb388a852c5837afc925d004..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_holo_light.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-
-    <item android:state_window_focused="false" android:drawable="@android:color/transparent" />
-
-    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
-    <item android:state_focused="true"  android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_disabled_holo_light" />
-    <item android:state_focused="true"  android:state_enabled="false"                              android:drawable="@drawable/abc_list_selector_disabled_holo_light" />
-    <item android:state_focused="true"                                android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_light" />
-    <item android:state_focused="false"                               android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_light" />
-    <item android:state_focused="true"                                                             android:drawable="@drawable/abc_list_focused_holo" />
-
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_indicator_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_indicator_material.xml
deleted file mode 100644
index bc339a349073ad89000b931f2e99bffed557b5c2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_indicator_material.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item
-        android:id="@android:id/background"
-        android:drawable="@drawable/abc_ic_star_black_36dp"/>
-    <item
-        android:id="@android:id/secondaryProgress"
-        android:drawable="@drawable/abc_ic_star_half_black_36dp"/>
-    <item android:id="@android:id/progress">
-        <bitmap
-            android:src="@drawable/abc_ic_star_black_36dp"
-            android:tileModeX="repeat"/>
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_material.xml
deleted file mode 100644
index dde914e0dcaf218eeaf3469d9cc00919dc487497..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_material.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item
-        android:id="@android:id/background"
-        android:drawable="@drawable/abc_ic_star_black_48dp"/>
-    <item
-        android:id="@android:id/secondaryProgress"
-        android:drawable="@drawable/abc_ic_star_half_black_48dp"/>
-    <item android:id="@android:id/progress">
-        <bitmap
-            android:src="@drawable/abc_ic_star_black_48dp"
-            android:tileModeX="repeat"/>
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_small_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_small_material.xml
deleted file mode 100644
index 6daff8bccfe4dd9c0d6caa81b739dfa39c1a4f70..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_small_material.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:id="@android:id/background"
-          android:drawable="@drawable/abc_ic_star_black_16dp" />
-    <item android:id="@android:id/secondaryProgress"
-          android:drawable="@drawable/abc_ic_star_half_black_16dp" />
-    <item android:id="@android:id/progress">
-        <bitmap
-                android:src="@drawable/abc_ic_star_black_16dp"
-                android:tileModeX="repeat"/>
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_thumb_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_thumb_material.xml
deleted file mode 100644
index 7fea83bc86983de6d28c9d745ed187d9a09aa96d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_thumb_material.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          android:constantSize="true">
-    <item android:state_enabled="false" android:state_pressed="true">
-        <bitmap android:src="@drawable/abc_scrubber_control_off_mtrl_alpha"
-                android:gravity="center"/>
-    </item>
-    <item android:state_enabled="false">
-        <bitmap android:src="@drawable/abc_scrubber_control_off_mtrl_alpha"
-                android:gravity="center"/>
-    </item>
-    <item android:state_pressed="true">
-        <bitmap android:src="@drawable/abc_scrubber_control_to_pressed_mtrl_005"
-                android:gravity="center"/>
-    </item>
-    <item>
-        <bitmap android:src="@drawable/abc_scrubber_control_to_pressed_mtrl_000"
-                android:gravity="center"/>
-    </item>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_tick_mark_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_tick_mark_material.xml
deleted file mode 100644
index e2d86c97e3bcf4b78c087a790d546bff9c19ea5a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_tick_mark_material.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
-       android:shape="oval">
-    <size android:width="@dimen/abc_progress_bar_height_material"
-          android:height="@dimen/abc_progress_bar_height_material"/>
-    <solid android:color="@android:color/white"/>
-</shape>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_track_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_track_material.xml
deleted file mode 100644
index e68ac03e90bd262a819d10a9faa1fd3097abfbb6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_track_material.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:id="@android:id/background"
-          android:drawable="@drawable/abc_scrubber_track_mtrl_alpha"/>
-    <item android:id="@android:id/secondaryProgress">
-        <scale android:scaleWidth="100%">
-            <selector>
-                <item android:state_enabled="false">
-                    <color android:color="@android:color/transparent"/>
-                </item>
-                <item android:drawable="@drawable/abc_scrubber_primary_mtrl_alpha"/>
-            </selector>
-        </scale>
-    </item>
-    <item android:id="@android:id/progress">
-        <scale android:scaleWidth="100%">
-            <selector>
-                <item android:state_enabled="false">
-                    <color android:color="@android:color/transparent"/>
-                </item>
-                <item android:drawable="@drawable/abc_scrubber_primary_mtrl_alpha"/>
-            </selector>
-        </scale>
-    </item>
-</layer-list>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_spinner_textfield_background_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_spinner_textfield_background_material.xml
deleted file mode 100644
index d0f46a8097425ef3d9eac3a0a09921b2b2c2de60..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_spinner_textfield_background_material.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<inset xmlns:android="http://schemas.android.com/apk/res/android"
-       android:insetLeft="@dimen/abc_control_inset_material"
-       android:insetTop="@dimen/abc_control_inset_material"
-       android:insetBottom="@dimen/abc_control_inset_material"
-       android:insetRight="@dimen/abc_control_inset_material">
-    <selector>
-        <item android:state_checked="false" android:state_pressed="false">
-            <layer-list>
-                <item android:drawable="@drawable/abc_textfield_default_mtrl_alpha" />
-                <item android:drawable="@drawable/abc_spinner_mtrl_am_alpha" />
-            </layer-list>
-        </item>
-        <item>
-            <layer-list>
-                <item android:drawable="@drawable/abc_textfield_activated_mtrl_alpha" />
-                <item android:drawable="@drawable/abc_spinner_mtrl_am_alpha" />
-            </layer-list>
-        </item>
-    </selector>
-</inset>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_switch_thumb_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_switch_thumb_material.xml
deleted file mode 100644
index ee96ec2e7ab099b45fb792e1dbd722b615bb869e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_switch_thumb_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_checked="true" android:drawable="@drawable/abc_btn_switch_to_on_mtrl_00012" />
-    <item android:drawable="@drawable/abc_btn_switch_to_on_mtrl_00001" />
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_tab_indicator_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_tab_indicator_material.xml
deleted file mode 100644
index 1a8de1b69b5aedfe5126c8b67548fa04e36daa3e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_tab_indicator_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_selected="true" android:drawable="@drawable/abc_tab_indicator_mtrl_alpha" />
-    <item android:drawable="@android:color/transparent" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_text_cursor_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_text_cursor_material.xml
deleted file mode 100644
index 885670c999c3e33378285014c73b4cec7a14fa90..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_text_cursor_material.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
--->
-
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
-       android:shape="rectangle">
-    <size android:height="2dp"
-          android:width="2dp"/>
-    <solid android:color="@android:color/white"/>
-</shape>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_textfield_search_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_textfield_search_material.xml
deleted file mode 100644
index 08873966e4393b201dd16f64a083853fc3dcdec9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_textfield_search_material.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="true" android:state_focused="true" android:drawable="@drawable/abc_textfield_search_activated_mtrl_alpha"/>
-    <item android:state_enabled="true" android:state_activated="true" android:drawable="@drawable/abc_textfield_search_activated_mtrl_alpha"/>
-    <item android:state_enabled="true" android:drawable="@drawable/abc_textfield_search_default_mtrl_alpha"/>
-    <item android:drawable="@drawable/abc_textfield_search_default_mtrl_alpha"/>
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_vector_test.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_vector_test.xml
deleted file mode 100644
index d5da2cbdca77e5df5b93066112f661a5f53169fd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_vector_test.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-   Copyright (C) 2016 The Android Open Source Project
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file except in compliance with the License.
-    You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportHeight="24.0"
-        android:viewportWidth="24.0">
-    <path
-        android:fillColor="@android:color/white"
-        android:pathData="M20,11L7.8,11l5.6,-5.6L12,4l-8,8l8,8l1.4,-1.4L7.8,13L20,13L20,11z"/>
-</vector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_bg.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_bg.xml
deleted file mode 100644
index 1232b4cb550ba143547a463610a73bd7a16a303a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_bg.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:exitFadeDuration="@android:integer/config_mediumAnimTime">
-
-    <item android:state_pressed="true"
-        android:drawable="@drawable/notification_bg_normal_pressed" />
-    <item android:state_pressed="false" android:drawable="@drawable/notification_bg_normal" />
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_bg_low.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_bg_low.xml
deleted file mode 100644
index 72e58ae716c5df911713087b13431b78c25f2919..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_bg_low.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:exitFadeDuration="@android:integer/config_mediumAnimTime">
-
-    <item android:state_pressed="true"  android:drawable="@drawable/notification_bg_low_pressed" />
-    <item android:state_pressed="false" android:drawable="@drawable/notification_bg_low_normal" />
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_icon_background.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_icon_background.xml
deleted file mode 100644
index 490a797eaa4388374d3279744baa3e58452e3280..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_icon_background.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
-    android:shape="oval">
-    <solid
-        android:color="@color/notification_icon_bg_color"/>
-</shape>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_tile_bg.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_tile_bg.xml
deleted file mode 100644
index 8eee7ef0115603e6ee198d9439c2b3aef62b34ad..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_tile_bg.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<bitmap
-    xmlns:android="http://schemas.android.com/apk/res/android"
-    android:tileMode="repeat"
-    android:src="@drawable/notify_panel_notification_icon_bg"
-/>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_media_action.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_media_action.xml
deleted file mode 100644
index d54679292aded18348b09a01dc9fda6f607adfbd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_media_action.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2012 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<ImageButton xmlns:android="http://schemas.android.com/apk/res/android"
-    style="?android:attr/borderlessButtonStyle"
-    android:id="@+id/action0"
-    android:layout_width="48dp"
-    android:layout_height="match_parent"
-    android:layout_marginLeft="2dp"
-    android:layout_marginRight="2dp"
-    android:layout_weight="1"
-    android:gravity="center"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_media_cancel_action.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_media_cancel_action.xml
deleted file mode 100644
index c2bd8c2928a6d86de80c98956123476fec13d0e8..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_media_cancel_action.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<ImageButton xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:app="http://schemas.android.com/apk/res-auto"
-    style="?android:attr/borderlessButtonStyle"
-    android:id="@+id/cancel_action"
-    android:layout_width="48dp"
-    android:layout_height="match_parent"
-    android:layout_marginLeft="2dp"
-    android:layout_marginRight="2dp"
-    android:layout_weight="1"
-    android:src="@android:drawable/ic_menu_close_clear_cancel"
-    android:gravity="center"
-    android:visibility="gone"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media.xml
deleted file mode 100644
index b72fd97de9baf9c305e297b3996f5a542cb16436..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/status_bar_latest_event_content"
-    android:layout_width="match_parent"
-    android:layout_height="128dp"
-    >
-    <include layout="@layout/notification_template_icon_group"
-        android:layout_width="@dimen/notification_large_icon_width"
-        android:layout_height="@dimen/notification_large_icon_height"
-    />
-    <include layout="@layout/notification_media_cancel_action"
-        android:layout_width="48dp"
-        android:layout_height="48dp"
-        android:layout_marginLeft="2dp"
-        android:layout_marginRight="2dp"
-        android:layout_alignParentRight="true"
-        android:layout_alignParentEnd="true" />
-    <include layout="@layout/notification_template_lines_media"
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content"
-        android:layout_gravity="fill_vertical"
-        android:layout_marginLeft="@dimen/notification_large_icon_width"
-        android:layout_marginStart="@dimen/notification_large_icon_width"
-        android:layout_toLeftOf="@id/cancel_action"
-        android:layout_toStartOf="@id/cancel_action"/>
-    <LinearLayout
-        android:id="@+id/media_actions"
-        android:layout_width="match_parent"
-        android:layout_height="48dp"
-        android:layout_alignParentBottom="true"
-        android:layout_marginLeft="12dp"
-        android:layout_marginRight="12dp"
-        android:orientation="horizontal"
-        android:layoutDirection="ltr"
-        >
-        <!-- media buttons will be added here -->
-    </LinearLayout>
-    <ImageView
-        android:layout_width="match_parent"
-        android:layout_height="1dp"
-        android:layout_above="@id/media_actions"
-        android:id="@+id/action_divider"
-        android:background="?android:attr/dividerHorizontal" />
-</RelativeLayout>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_custom.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_custom.xml
deleted file mode 100644
index c88d799ac7219a814c8edaec9aeab7cd1834de3a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_custom.xml
+++ /dev/null
@@ -1,107 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/status_bar_latest_event_content"
-    android:layout_width="match_parent"
-    android:layout_height="128dp"
-    >
-    <include layout="@layout/notification_template_icon_group"
-        android:layout_width="@dimen/notification_large_icon_width"
-        android:layout_height="@dimen/notification_large_icon_height"
-    />
-    <include layout="@layout/notification_media_cancel_action"
-        android:layout_width="48dp"
-        android:layout_height="48dp"
-        android:layout_marginLeft="2dp"
-        android:layout_marginRight="2dp"
-        android:layout_alignParentRight="true"
-        android:layout_alignParentEnd="true"/>
-    <LinearLayout
-        android:id="@+id/notification_main_column_container"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:layout_marginLeft="@dimen/notification_large_icon_height"
-        android:layout_marginStart="@dimen/notification_large_icon_height"
-        android:minHeight="@dimen/notification_large_icon_height"
-        android:paddingTop="@dimen/notification_main_column_padding_top"
-        android:orientation="horizontal"
-        android:layout_toLeftOf="@id/cancel_action"
-        android:layout_toStartOf="@id/cancel_action">
-        <FrameLayout
-            android:id="@+id/notification_main_column"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_weight="1"
-            android:layout_marginLeft="@dimen/notification_content_margin_start"
-            android:layout_marginStart="@dimen/notification_content_margin_start"
-            android:layout_marginRight="8dp"
-            android:layout_marginEnd="8dp"
-            android:layout_marginBottom="8dp"
-        />
-        <FrameLayout
-            android:id="@+id/right_side"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:layout_marginRight="8dp"
-            android:layout_marginEnd="8dp"
-            android:paddingTop="@dimen/notification_right_side_padding_top">
-            <DateTimeView android:id="@+id/time"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:singleLine="true"
-                android:layout_gravity="end|top"
-                android:visibility="gone"
-            />
-            <Chronometer android:id="@+id/chronometer"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:singleLine="true"
-                android:layout_gravity="end|top"
-                android:visibility="gone"
-            />
-            <TextView android:id="@+id/info"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Info.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_marginTop="20dp"
-                android:layout_gravity="end|bottom"
-                android:singleLine="true"
-            />
-        </FrameLayout>
-    </LinearLayout>
-    <LinearLayout
-        android:id="@+id/media_actions"
-        android:layout_width="match_parent"
-        android:layout_height="48dp"
-        android:layout_alignParentBottom="true"
-        android:layout_marginLeft="12dp"
-        android:layout_marginRight="12dp"
-        android:orientation="horizontal"
-        android:layoutDirection="ltr"
-        >
-        <!-- media buttons will be added here -->
-    </LinearLayout>
-    <ImageView
-        android:layout_width="match_parent"
-        android:layout_height="1dp"
-        android:layout_above="@id/media_actions"
-        android:id="@+id/action_divider"
-        android:background="?android:attr/dividerHorizontal" />
-</RelativeLayout>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_narrow.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_narrow.xml
deleted file mode 100644
index 979c8f4b2e7676229508155e92ceec8a3ba6c124..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_narrow.xml
+++ /dev/null
@@ -1,68 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<!-- Layout to be used with only max 3 actions. It has a much larger picture at the left side-->
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/status_bar_latest_event_content"
-    android:layout_width="match_parent"
-    android:layout_height="128dp"
-    >
-    <ImageView android:id="@+id/icon"
-        android:layout_width="128dp"
-        android:layout_height="128dp"
-        android:scaleType="centerCrop"
-        />
-
-    <include layout="@layout/notification_media_cancel_action"
-        android:layout_width="48dp"
-        android:layout_height="48dp"
-        android:layout_marginLeft="2dp"
-        android:layout_marginRight="2dp"
-        android:layout_alignParentRight="true"
-        android:layout_alignParentEnd="true"/>
-
-    <include layout="@layout/notification_template_lines_media"
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content"
-        android:layout_marginLeft="128dp"
-        android:layout_marginStart="128dp"
-        android:layout_toLeftOf="@id/cancel_action"
-        android:layout_toStartOf="@id/cancel_action"/>
-
-    <LinearLayout
-        android:id="@+id/media_actions"
-        android:layout_width="match_parent"
-        android:layout_height="48dp"
-        android:layout_toRightOf="@id/icon"
-        android:layout_toEndOf="@id/icon"
-        android:layout_alignParentBottom="true"
-        android:layout_marginLeft="12dp"
-        android:layout_marginRight="12dp"
-        android:orientation="horizontal"
-        android:layoutDirection="ltr"
-        >
-        <!-- media buttons will be added here -->
-    </LinearLayout>
-    <ImageView
-        android:layout_width="match_parent"
-        android:layout_height="1dp"
-        android:layout_toRightOf="@id/icon"
-        android:layout_toEndOf="@id/icon"
-        android:layout_above="@id/media_actions"
-        android:id="@+id/action_divider"
-        android:background="?android:attr/dividerHorizontal" />
-</RelativeLayout>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_narrow_custom.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_narrow_custom.xml
deleted file mode 100644
index b7fbff7949838c9f78bfa565991ffa8fb096e4ae..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_narrow_custom.xml
+++ /dev/null
@@ -1,115 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<!-- Layout to be used with only max 3 actions. It has a much larger picture at the left side-->
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/status_bar_latest_event_content"
-    android:layout_width="match_parent"
-    android:layout_height="128dp"
-    >
-    <ImageView android:id="@+id/icon"
-        android:layout_width="128dp"
-        android:layout_height="128dp"
-        android:scaleType="centerCrop"
-        />
-
-    <include layout="@layout/notification_media_cancel_action"
-        android:layout_width="48dp"
-        android:layout_height="48dp"
-        android:layout_marginLeft="2dp"
-        android:layout_marginRight="2dp"
-        android:layout_alignParentRight="true"
-        android:layout_alignParentEnd="true"/>
-
-    <LinearLayout
-        android:id="@+id/notification_main_column_container"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:layout_marginLeft="128dp"
-        android:layout_marginStart="128dp"
-        android:minHeight="@dimen/notification_large_icon_height"
-        android:paddingTop="@dimen/notification_main_column_padding_top"
-        android:orientation="horizontal"
-        android:layout_toLeftOf="@id/cancel_action"
-        android:layout_toStartOf="@id/cancel_action">
-        <FrameLayout
-            android:id="@+id/notification_main_column"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_weight="1"
-            android:layout_marginLeft="@dimen/notification_media_narrow_margin"
-            android:layout_marginStart="@dimen/notification_media_narrow_margin"
-            android:layout_marginRight="8dp"
-            android:layout_marginEnd="8dp"
-            android:layout_marginBottom="8dp"/>
-        <FrameLayout
-            android:id="@+id/right_side"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:layout_marginRight="8dp"
-            android:layout_marginEnd="8dp"
-            android:paddingTop="@dimen/notification_right_side_padding_top">
-            <DateTimeView android:id="@+id/time"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:singleLine="true"
-                android:layout_gravity="end|top"
-                android:visibility="gone"
-            />
-            <Chronometer android:id="@+id/chronometer"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:singleLine="true"
-                android:layout_gravity="end|top"
-                android:visibility="gone"
-            />
-            <TextView android:id="@+id/info"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Info.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_marginTop="20dp"
-                android:layout_gravity="end|bottom"
-                android:singleLine="true"
-            />
-        </FrameLayout>
-    </LinearLayout>
-
-    <LinearLayout
-        android:id="@+id/media_actions"
-        android:layout_width="match_parent"
-        android:layout_height="48dp"
-        android:layout_toRightOf="@id/icon"
-        android:layout_toEndOf="@id/icon"
-        android:layout_alignParentBottom="true"
-        android:layout_marginLeft="12dp"
-        android:layout_marginRight="12dp"
-        android:orientation="horizontal"
-        android:layoutDirection="ltr"
-        >
-        <!-- media buttons will be added here -->
-    </LinearLayout>
-    <ImageView
-        android:layout_width="match_parent"
-        android:layout_height="1dp"
-        android:layout_toRightOf="@id/icon"
-        android:layout_toEndOf="@id/icon"
-        android:layout_above="@id/media_actions"
-        android:id="@+id/action_divider"
-        android:background="?android:attr/dividerHorizontal" />
-</RelativeLayout>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v16/notification_template_custom_big.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v16/notification_template_custom_big.xml
deleted file mode 100644
index 24c33232a5ec06a88058c9903dd7e4654dbeed1a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v16/notification_template_custom_big.xml
+++ /dev/null
@@ -1,117 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/notification_background"
-    android:layout_width="match_parent"
-    android:layout_height="wrap_content" >
-    <ImageView android:id="@+id/icon"
-        android:layout_width="@dimen/notification_large_icon_width"
-        android:layout_height="@dimen/notification_large_icon_height"
-        android:scaleType="center"
-    />
-    <LinearLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:layout_gravity="top"
-        android:orientation="vertical" >
-        <LinearLayout
-            android:id="@+id/notification_main_column_container"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_marginLeft="@dimen/notification_large_icon_width"
-            android:layout_marginStart="@dimen/notification_large_icon_width"
-            android:paddingTop="@dimen/notification_main_column_padding_top"
-            android:minHeight="@dimen/notification_large_icon_height"
-            android:orientation="horizontal">
-            <FrameLayout
-                android:id="@+id/notification_main_column"
-                android:layout_width="match_parent"
-                android:layout_height="wrap_content"
-                android:layout_weight="1"
-                android:layout_marginLeft="@dimen/notification_content_margin_start"
-                android:layout_marginStart="@dimen/notification_content_margin_start"
-                android:layout_marginBottom="8dp"
-                android:layout_marginRight="8dp"
-                android:layout_marginEnd="8dp" />
-            <FrameLayout
-                android:id="@+id/right_side"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_marginRight="8dp"
-                android:layout_marginEnd="8dp"
-                android:paddingTop="@dimen/notification_right_side_padding_top">
-                <ViewStub android:id="@+id/time"
-                    android:layout_width="wrap_content"
-                    android:layout_height="wrap_content"
-                    android:layout_gravity="end|top"
-                    android:visibility="gone"
-                    android:layout="@layout/notification_template_part_time" />
-                <ViewStub android:id="@+id/chronometer"
-                    android:layout_width="wrap_content"
-                    android:layout_height="wrap_content"
-                    android:layout_gravity="end|top"
-                    android:visibility="gone"
-                    android:layout="@layout/notification_template_part_chronometer" />
-                <LinearLayout
-                    android:layout_width="match_parent"
-                    android:layout_height="wrap_content"
-                    android:orientation="horizontal"
-                    android:layout_gravity="end|bottom"
-                    android:layout_marginTop="20dp">
-                    <TextView android:id="@+id/info"
-                        android:textAppearance="@style/TextAppearance.AppCompat.Notification.Info"
-                        android:layout_width="wrap_content"
-                        android:layout_height="wrap_content"
-                        android:singleLine="true"
-                    />
-                    <ImageView android:id="@+id/right_icon"
-                        android:layout_width="16dp"
-                        android:layout_height="16dp"
-                        android:layout_gravity="center"
-                        android:layout_marginLeft="8dp"
-                        android:layout_marginStart="8dp"
-                        android:scaleType="centerInside"
-                        android:visibility="gone"
-                        android:alpha="0.6"
-                    />
-                </LinearLayout>
-            </FrameLayout>
-        </LinearLayout>
-        <ImageView
-            android:layout_width="match_parent"
-            android:layout_height="1px"
-            android:id="@+id/action_divider"
-            android:visibility="gone"
-            android:layout_marginLeft="@dimen/notification_large_icon_width"
-            android:layout_marginStart="@dimen/notification_large_icon_width"
-            android:background="?android:attr/dividerHorizontal" />
-        <LinearLayout
-            android:id="@+id/actions"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:orientation="horizontal"
-            android:visibility="gone"
-            android:showDividers="middle"
-            android:divider="?android:attr/listDivider"
-            android:dividerPadding="12dp"
-            android:layout_marginLeft="@dimen/notification_large_icon_width"
-            android:layout_marginStart="@dimen/notification_large_icon_width" >
-            <!-- actions will be added here -->
-        </LinearLayout>
-    </LinearLayout>
-</FrameLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_action.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_action.xml
deleted file mode 100644
index c60bf7d4aeaccdf1490249e4cb147a1e29ea5dbc..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_action.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    style="@style/Widget.AppCompat.NotificationActionContainer"
-    android:id="@+id/action_container"
-    android:layout_width="0dp"
-    android:layout_weight="1"
-    android:layout_height="48dp"
-    android:paddingStart="4dp"
-    android:orientation="horizontal">
-    <ImageView
-        android:id="@+id/action_image"
-        android:layout_width="@dimen/notification_action_icon_size"
-        android:layout_height="@dimen/notification_action_icon_size"
-        android:layout_gravity="center|start"
-        android:scaleType="centerInside"/>
-    <TextView
-        style="@style/Widget.AppCompat.NotificationActionText"
-        android:id="@+id/action_text"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center|start"
-        android:paddingStart="4dp"
-        android:singleLine="true"
-        android:ellipsize="end"
-        android:clickable="false"/>
-</LinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_action_tombstone.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_action_tombstone.xml
deleted file mode 100644
index 1637c6fdd70117c919be6a67164a5ea9780107a6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_action_tombstone.xml
+++ /dev/null
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    style="@style/Widget.AppCompat.NotificationActionContainer"
-    android:id="@+id/action_container"
-    android:layout_width="0dp"
-    android:layout_weight="1"
-    android:layout_height="48dp"
-    android:paddingStart="4dp"
-    android:orientation="horizontal"
-    android:enabled="false"
-    android:background="@null">
-    <ImageView
-        android:id="@+id/action_image"
-        android:layout_width="@dimen/notification_action_icon_size"
-        android:layout_height="@dimen/notification_action_icon_size"
-        android:layout_gravity="center|start"
-        android:scaleType="centerInside"
-        android:enabled="false"
-        android:alpha="0.5"/>
-    <TextView
-        style="@style/Widget.AppCompat.NotificationActionText"
-        android:id="@+id/action_text"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center|start"
-        android:paddingStart="4dp"
-        android:singleLine="true"
-        android:ellipsize="end"
-        android:clickable="false"
-        android:enabled="false"
-        android:alpha="0.5"/>
-</LinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_template_custom_big.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_template_custom_big.xml
deleted file mode 100644
index 38332bd9ee34d7f4d57dd51dcf393564a57045d7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_template_custom_big.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/notification_background"
-    android:layout_width="match_parent"
-    android:layout_height="wrap_content" >
-    <include layout="@layout/notification_template_icon_group"
-        android:layout_width="@dimen/notification_large_icon_width"
-        android:layout_height="@dimen/notification_large_icon_height"
-    />
-    <LinearLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:layout_gravity="top"
-        android:layout_marginStart="@dimen/notification_large_icon_width"
-        android:orientation="vertical" >
-        <LinearLayout
-            android:id="@+id/notification_main_column_container"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:minHeight="@dimen/notification_large_icon_height"
-            android:orientation="horizontal">
-            <FrameLayout
-                android:id="@+id/notification_main_column"
-                android:layout_width="match_parent"
-                android:layout_height="wrap_content"
-                android:layout_weight="1"
-                android:layout_marginEnd="8dp"
-                android:layout_marginBottom="8dp"/>
-            <FrameLayout
-                android:id="@+id/right_side"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_marginEnd="8dp"
-                android:paddingTop="@dimen/notification_right_side_padding_top">
-                <ViewStub android:id="@+id/time"
-                    android:layout_width="wrap_content"
-                    android:layout_height="wrap_content"
-                    android:layout_gravity="end|top"
-                    android:visibility="gone"
-                    android:layout="@layout/notification_template_part_time" />
-                <ViewStub android:id="@+id/chronometer"
-                    android:layout_width="wrap_content"
-                    android:layout_height="wrap_content"
-                    android:layout_gravity="end|top"
-                    android:visibility="gone"
-                    android:layout="@layout/notification_template_part_chronometer" />
-                <TextView android:id="@+id/info"
-                    android:textAppearance="@style/TextAppearance.AppCompat.Notification.Info"
-                    android:layout_width="wrap_content"
-                    android:layout_height="wrap_content"
-                    android:layout_marginTop="20dp"
-                    android:layout_gravity="end|bottom"
-                    android:singleLine="true"
-                />
-            </FrameLayout>
-        </LinearLayout>
-        <ImageView
-            android:layout_width="match_parent"
-            android:layout_height="1dp"
-            android:id="@+id/action_divider"
-            android:visibility="gone"
-            android:background="#29000000" />
-        <LinearLayout
-            android:id="@+id/actions"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_marginStart="-8dp"
-            android:orientation="horizontal"
-            android:visibility="gone"
-        >
-            <!-- actions will be added here -->
-        </LinearLayout>
-    </LinearLayout>
-</FrameLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_template_icon_group.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_template_icon_group.xml
deleted file mode 100644
index 6c1902242680b20d40736b98e1997281cbd44c10..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_template_icon_group.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<FrameLayout
-    xmlns:android="http://schemas.android.com/apk/res/android"
-    android:layout_width="@dimen/notification_large_icon_width"
-    android:layout_height="@dimen/notification_large_icon_height"
-    android:id="@+id/icon_group"
->
-    <ImageView android:id="@+id/icon"
-        android:layout_width="match_parent"
-        android:layout_height="match_parent"
-        android:layout_marginTop="@dimen/notification_big_circle_margin"
-        android:layout_marginBottom="@dimen/notification_big_circle_margin"
-        android:layout_marginStart="@dimen/notification_big_circle_margin"
-        android:layout_marginEnd="@dimen/notification_big_circle_margin"
-        android:scaleType="centerInside"
-    />
-    <ImageView android:id="@+id/right_icon"
-        android:layout_width="@dimen/notification_right_icon_size"
-        android:layout_height="@dimen/notification_right_icon_size"
-        android:layout_gravity="end|bottom"
-        android:scaleType="centerInside"
-        android:visibility="gone"
-        android:layout_marginEnd="8dp"
-        android:layout_marginBottom="8dp"
-    />
-</FrameLayout>
-
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_title_item.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_title_item.xml
deleted file mode 100644
index 194afb74cb818246b55e3daba47f9c44d13c9c30..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_title_item.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-              android:layout_width="wrap_content"
-              android:layout_height="wrap_content"
-              android:orientation="vertical"
-              style="@style/RtlOverlay.Widget.AppCompat.ActionBar.TitleItem">
-    <TextView android:id="@+id/action_bar_title"
-              android:layout_width="wrap_content"
-              android:layout_height="wrap_content"
-              android:singleLine="true"
-              android:ellipsize="end" />
-    <TextView android:id="@+id/action_bar_subtitle"
-              android:layout_width="wrap_content"
-              android:layout_height="wrap_content"
-              android:layout_marginTop="@dimen/abc_action_bar_subtitle_top_margin_material"
-              android:singleLine="true"
-              android:ellipsize="end"
-              android:visibility="gone" />
-</LinearLayout>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_up_container.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_up_container.xml
deleted file mode 100644
index f46550a553ee3687d51da9613559e0bd07409d4d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_up_container.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-              android:layout_width="wrap_content"
-              android:layout_height="match_parent"
-              android:background="?attr/actionBarItemBackground"
-              android:gravity="center_vertical"
-              android:enabled="false">
-</LinearLayout>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_view_list_nav_layout.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_view_list_nav_layout.xml
deleted file mode 100644
index 5c105ab551c5cadaaeb5651706e23a706805fea2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_view_list_nav_layout.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2012 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-                                                          dd
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!-- Styled linear layout, compensating for the lack of a defStyle parameter
-     in pre-Honeycomb LinearLayout's constructor. -->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-              android:layout_width="fill_parent"
-              android:layout_height="fill_parent"
-              style="?attr/actionBarTabBarStyle">
-</LinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_menu_item_layout.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_menu_item_layout.xml
deleted file mode 100644
index 283358a5dc9c158b08aed3764af33418296903a6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_menu_item_layout.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-                                                          dd
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<android.support.v7.view.menu.ActionMenuItemView
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center"
-        android:gravity="center"
-        android:focusable="true"
-        android:paddingTop="4dip"
-        android:paddingBottom="4dip"
-        android:paddingLeft="8dip"
-        android:paddingRight="8dip"
-        android:textAppearance="?attr/actionMenuTextAppearance"
-        android:textColor="?attr/actionMenuTextColor"
-        style="?attr/actionButtonStyle"/>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_menu_layout.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_menu_layout.xml
deleted file mode 100644
index 4918d2fba96bbed0065fab560e9d88403b87a667..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_menu_layout.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<android.support.v7.widget.ActionMenuView
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        xmlns:app="http://schemas.android.com/apk/res-auto"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        app:divider="?attr/actionBarDivider"
-        app:dividerPadding="12dip"
-        android:gravity="center_vertical"/>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_mode_bar.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_mode_bar.xml
deleted file mode 100644
index dc1f1ba23285e43af56c6216d51fc5ac0aaa495a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_mode_bar.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*
-** Copyright 2012, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-**     http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
--->
-<android.support.v7.widget.ActionBarContextView
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:visibility="gone"
-        android:theme="?attr/actionBarTheme"
-        style="?attr/actionModeStyle"/>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_mode_close_item_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_mode_close_item_material.xml
deleted file mode 100644
index b3babb25724e5241fbbdb1bb8c49261e30e59057..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_mode_close_item_material.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<ImageView
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        xmlns:app="http://schemas.android.com/apk/res-auto"
-        android:id="@+id/action_mode_close_button"
-        android:contentDescription="@string/abc_action_mode_done"
-        android:focusable="true"
-        android:clickable="true"
-        app:srcCompat="?attr/actionModeCloseDrawable"
-        style="?attr/actionModeCloseButtonStyle"
-        android:layout_width="wrap_content"
-        android:layout_height="match_parent"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_activity_chooser_view.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_activity_chooser_view.xml
deleted file mode 100644
index 0100c235a9a4c8b93041a12f8d0ad5b1dab36cf2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_activity_chooser_view.xml
+++ /dev/null
@@ -1,71 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-**
-** Copyright 2013, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-**     http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
--->
-<view xmlns:android="http://schemas.android.com/apk/res/android"
-    class="android.support.v7.widget.ActivityChooserView$InnerLayout"
-    android:id="@+id/activity_chooser_view_content"
-    android:layout_width="wrap_content"
-    android:layout_height="match_parent"
-    android:layout_gravity="center"
-    style="?attr/activityChooserViewStyle">
-
-    <FrameLayout
-        android:id="@+id/expand_activities_button"
-        android:layout_width="wrap_content"
-        android:layout_height="match_parent"
-        android:layout_gravity="center"
-        android:focusable="true"
-        android:addStatesFromChildren="true"
-        android:background="?attr/actionBarItemBackground"
-        android:paddingTop="2dip"
-        android:paddingBottom="2dip"
-        android:paddingLeft="12dip"
-        android:paddingRight="12dip">
-
-        <ImageView android:id="@+id/image"
-            android:layout_width="32dip"
-            android:layout_height="32dip"
-            android:layout_gravity="center"
-            android:scaleType="fitCenter"
-            android:adjustViewBounds="true" />
-
-    </FrameLayout>
-
-    <FrameLayout
-        android:id="@+id/default_activity_button"
-        android:layout_width="wrap_content"
-        android:layout_height="match_parent"
-        android:layout_gravity="center"
-        android:focusable="true"
-        android:addStatesFromChildren="true"
-        android:background="?attr/actionBarItemBackground"
-        android:paddingTop="2dip"
-        android:paddingBottom="2dip"
-        android:paddingLeft="12dip"
-        android:paddingRight="12dip">
-
-        <ImageView android:id="@+id/image"
-            android:layout_width="32dip"
-            android:layout_height="32dip"
-            android:layout_gravity="center"
-            android:scaleType="fitCenter"
-            android:adjustViewBounds="true" />
-
-    </FrameLayout>
-
-</view>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_activity_chooser_view_list_item.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_activity_chooser_view_list_item.xml
deleted file mode 100644
index 887427d809350019491487df3b9ef61255c48988..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_activity_chooser_view_list_item.xml
+++ /dev/null
@@ -1,52 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-              android:id="@+id/list_item"
-              android:layout_width="match_parent"
-              android:layout_height="?attr/dropdownListPreferredItemHeight"
-              android:paddingLeft="16dip"
-              android:paddingRight="16dip"
-              android:minWidth="196dip"
-              android:orientation="vertical">
-
-    <LinearLayout
-            android:layout_width="wrap_content"
-            android:layout_height="match_parent"
-            android:duplicateParentState="true" >
-
-        <ImageView
-                android:id="@+id/icon"
-                android:layout_width="32dip"
-                android:layout_height="32dip"
-                android:layout_gravity="center_vertical"
-                android:layout_marginRight="8dip"
-                android:duplicateParentState="true"/>
-
-        <TextView
-                android:id="@+id/title"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_gravity="center_vertical"
-                android:textAppearance="?attr/textAppearanceLargePopupMenu"
-                android:duplicateParentState="true"
-                android:singleLine="true"
-                android:ellipsize="marquee"
-                android:fadingEdge="horizontal"/>
-
-    </LinearLayout>
-
-</LinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_button_bar_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_button_bar_material.xml
deleted file mode 100644
index f747278c2bb1b458dc83face46e7040fa6d08567..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_button_bar_material.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
-            android:id="@+id/buttonPanel"
-            style="?attr/buttonBarStyle"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:fillViewport="true"
-            android:scrollIndicators="top|bottom">
-
-    <android.support.v7.widget.ButtonBarLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:gravity="bottom"
-        android:layoutDirection="locale"
-        android:orientation="horizontal"
-        android:paddingBottom="4dp"
-        android:paddingLeft="12dp"
-        android:paddingRight="12dp"
-        android:paddingTop="4dp">
-
-        <Button
-            android:id="@android:id/button3"
-            style="?attr/buttonBarNeutralButtonStyle"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"/>
-
-        <android.support.v4.widget.Space
-            android:id="@+id/spacer"
-            android:layout_width="0dp"
-            android:layout_height="0dp"
-            android:layout_weight="1"
-            android:visibility="invisible"/>
-
-        <Button
-            android:id="@android:id/button2"
-            style="?attr/buttonBarNegativeButtonStyle"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"/>
-
-        <Button
-            android:id="@android:id/button1"
-            style="?attr/buttonBarPositiveButtonStyle"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"/>
-
-    </android.support.v7.widget.ButtonBarLayout>
-
-</ScrollView>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_material.xml
deleted file mode 100644
index 40aee7f061d461b93961e690965d0456d68c64b1..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_material.xml
+++ /dev/null
@@ -1,99 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<android.support.v7.widget.AlertDialogLayout
-    xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/parentPanel"
-    android:layout_width="match_parent"
-    android:layout_height="wrap_content"
-    android:gravity="start|left|top"
-    android:orientation="vertical">
-
-    <include layout="@layout/abc_alert_dialog_title_material"/>
-
-    <FrameLayout
-        android:id="@+id/contentPanel"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:minHeight="48dp">
-
-        <View android:id="@+id/scrollIndicatorUp"
-              android:layout_width="match_parent"
-              android:layout_height="1dp"
-              android:layout_gravity="top"
-              android:background="?attr/colorControlHighlight"
-              android:visibility="gone"/>
-
-        <android.support.v4.widget.NestedScrollView
-            android:id="@+id/scrollView"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:clipToPadding="false">
-
-            <LinearLayout
-                android:layout_width="match_parent"
-                android:layout_height="wrap_content"
-                android:orientation="vertical">
-
-                <android.support.v4.widget.Space
-                    android:id="@+id/textSpacerNoTitle"
-                    android:layout_width="match_parent"
-                    android:layout_height="@dimen/abc_dialog_padding_top_material"
-                    android:visibility="gone"/>
-
-                <TextView
-                    android:id="@android:id/message"
-                    style="@style/TextAppearance.AppCompat.Subhead"
-                    android:layout_width="match_parent"
-                    android:layout_height="wrap_content"
-                    android:paddingLeft="?attr/dialogPreferredPadding"
-                    android:paddingRight="?attr/dialogPreferredPadding"/>
-
-                <android.support.v4.widget.Space
-                    android:id="@+id/textSpacerNoButtons"
-                    android:layout_width="match_parent"
-                    android:layout_height="@dimen/abc_dialog_padding_top_material"
-                    android:visibility="gone"/>
-            </LinearLayout>
-        </android.support.v4.widget.NestedScrollView>
-
-        <View android:id="@+id/scrollIndicatorDown"
-              android:layout_width="match_parent"
-              android:layout_height="1dp"
-              android:layout_gravity="bottom"
-              android:background="?attr/colorControlHighlight"
-              android:visibility="gone"/>
-
-    </FrameLayout>
-
-    <FrameLayout
-        android:id="@+id/customPanel"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:minHeight="48dp">
-
-        <FrameLayout
-            android:id="@+id/custom"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"/>
-    </FrameLayout>
-
-    <include layout="@layout/abc_alert_dialog_button_bar_material"
-             android:layout_width="match_parent"
-             android:layout_height="wrap_content"/>
-
-</android.support.v7.widget.AlertDialogLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_title_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_title_material.xml
deleted file mode 100644
index 0b8b14ee2e4b312ecafb7581b9a6d9b9c94448c4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_title_material.xml
+++ /dev/null
@@ -1,61 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-              android:id="@+id/topPanel"
-              android:layout_width="match_parent"
-              android:layout_height="wrap_content"
-              android:orientation="vertical">
-
-    <!-- If the client uses a customTitle, it will be added here. -->
-
-    <LinearLayout
-        android:id="@+id/title_template"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:gravity="center_vertical|start|left"
-        android:orientation="horizontal"
-        android:paddingLeft="?attr/dialogPreferredPadding"
-        android:paddingRight="?attr/dialogPreferredPadding"
-        android:paddingTop="@dimen/abc_dialog_padding_top_material">
-
-        <ImageView
-            android:id="@android:id/icon"
-            android:layout_width="32dip"
-            android:layout_height="32dip"
-            android:layout_marginEnd="8dip"
-            android:layout_marginRight="8dip"
-            android:scaleType="fitCenter"
-            android:src="@null"/>
-
-        <android.support.v7.widget.DialogTitle
-            android:id="@+id/alertTitle"
-            style="?android:attr/windowTitleStyle"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:ellipsize="end"
-            android:singleLine="true"
-            android:textAlignment="viewStart"/>
-
-    </LinearLayout>
-
-    <android.support.v4.widget.Space
-        android:id="@+id/titleDividerNoCustom"
-        android:layout_width="match_parent"
-        android:layout_height="@dimen/abc_dialog_title_divider_material"
-        android:visibility="gone"/>
-</LinearLayout>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_dialog_title_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_dialog_title_material.xml
deleted file mode 100644
index 1ea20c5e10d64430f80f95cc75999a436b5ce021..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_dialog_title_material.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!--
-This is an optimized layout for a screen, with the minimum set of features
-enabled.
--->
-
-<android.support.v7.widget.FitWindowsLinearLayout
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_height="match_parent"
-        android:layout_width="match_parent"
-        android:orientation="vertical"
-        android:fitsSystemWindows="true">
-
-    <TextView
-            android:id="@+id/title"
-            style="?android:attr/windowTitleStyle"
-            android:singleLine="true"
-            android:ellipsize="end"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:textAlignment="viewStart"
-            android:paddingLeft="?attr/dialogPreferredPadding"
-            android:paddingRight="?attr/dialogPreferredPadding"
-            android:paddingTop="@dimen/abc_dialog_padding_top_material"/>
-
-    <include
-            layout="@layout/abc_screen_content_include"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_weight="1"/>
-
-</android.support.v7.widget.FitWindowsLinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_expanded_menu_layout.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_expanded_menu_layout.xml
deleted file mode 100644
index 560ada6fb4f269fddb2a3c5408602b91d901777c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_expanded_menu_layout.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<android.support.v7.view.menu.ExpandedMenuView
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        android:id="@+id/expanded_menu"
-        android:layout_width="?attr/panelMenuListWidth"
-        android:layout_height="wrap_content" />
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_checkbox.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_checkbox.xml
deleted file mode 100644
index d9c3f0681149f912ec92619c061bff5e7cb1442c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_checkbox.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2007 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
-          android:id="@+id/checkbox"
-          android:layout_width="wrap_content"
-          android:layout_height="wrap_content"
-          android:layout_gravity="center_vertical"
-          android:focusable="false"
-          android:clickable="false"
-          android:duplicateParentState="true"/>
-
-
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_icon.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_icon.xml
deleted file mode 100644
index acd005a13b9b2ba628ef0b5899d6af2f6fe63a6f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_icon.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2007 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
-           android:id="@+id/icon"
-           android:layout_width="wrap_content"
-           android:layout_height="wrap_content"
-           android:layout_gravity="center_vertical"
-           android:layout_marginLeft="8dip"
-           android:layout_marginRight="-8dip"
-           android:layout_marginTop="8dip"
-           android:layout_marginBottom="8dip"
-           android:scaleType="centerInside"
-           android:duplicateParentState="true"/>
-
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_layout.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_layout.xml
deleted file mode 100644
index c85469dd6fd994cb1bb18f0dfa34f7e1c49ee731..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_layout.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<android.support.v7.view.menu.ListMenuItemView
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="match_parent"
-        android:layout_height="?attr/listPreferredItemHeightSmall">
-
-    <!-- Icon will be inserted here. -->
-
-    <!-- The title and summary have some gap between them, and this 'group' should be centered vertically. -->
-    <RelativeLayout
-            android:layout_width="0dip"
-            android:layout_weight="1"
-            android:layout_height="wrap_content"
-            android:layout_gravity="center_vertical"
-            android:layout_marginLeft="?attr/listPreferredItemPaddingLeft"
-            android:layout_marginRight="?attr/listPreferredItemPaddingRight"
-            android:duplicateParentState="true">
-
-        <TextView
-            android:id="@+id/title"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_alignParentTop="true"
-            android:layout_alignParentLeft="true"
-            android:textAppearance="?attr/textAppearanceListItemSmall"
-            android:singleLine="true"
-            android:duplicateParentState="true"
-            android:ellipsize="marquee"
-            android:fadingEdge="horizontal" />
-
-        <TextView
-            android:id="@+id/shortcut"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:layout_below="@id/title"
-            android:layout_alignParentLeft="true"
-            android:textAppearance="?android:attr/textAppearanceSmall"
-            android:singleLine="true"
-            android:duplicateParentState="true" />
-
-    </RelativeLayout>
-
-    <!-- Checkbox, and/or radio button will be inserted here. -->
-
-</android.support.v7.view.menu.ListMenuItemView>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_radio.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_radio.xml
deleted file mode 100644
index 0ca8d7a2a5db7425649ff07dde4f0198c79a7a5a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_radio.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2007 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<RadioButton xmlns:android="http://schemas.android.com/apk/res/android"
-             android:id="@+id/radio"
-             android:layout_width="wrap_content"
-             android:layout_height="wrap_content"
-             android:layout_gravity="center_vertical"
-             android:focusable="false"
-             android:clickable="false"
-             android:duplicateParentState="true"/>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_popup_menu_header_item_layout.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_popup_menu_header_item_layout.xml
deleted file mode 100644
index a40b6dd745a081962296ceeedd45e8a13a91d6dd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_popup_menu_header_item_layout.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
-             android:layout_width="match_parent"
-             android:layout_height="?attr/dropdownListPreferredItemHeight"
-             android:minWidth="196dip"
-             android:paddingLeft="16dip"
-             android:paddingRight="16dip">
-
-    <TextView
-            android:id="@android:id/title"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:textAppearance="?attr/textAppearancePopupMenuHeader"
-            android:layout_gravity="center_vertical"
-            android:singleLine="true"
-            android:ellipsize="marquee"
-            android:fadingEdge="horizontal"
-            android:textAlignment="viewStart" />
-
-</FrameLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_popup_menu_item_layout.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_popup_menu_item_layout.xml
deleted file mode 100644
index bf630ffe79d074c96b6e6ae1921a66562c11e3c7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_popup_menu_item_layout.xml
+++ /dev/null
@@ -1,71 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<android.support.v7.view.menu.ListMenuItemView
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="match_parent"
-        android:layout_height="?attr/dropdownListPreferredItemHeight"
-        android:minWidth="196dip"
-        style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem">
-
-    <!-- Icon will be inserted here. -->
-
-    <!-- The title and summary have some gap between them, and this 'group' should be centered vertically. -->
-    <RelativeLayout
-            android:layout_width="0dip"
-            android:layout_weight="1"
-            android:layout_height="wrap_content"
-            android:layout_gravity="center_vertical"
-            android:duplicateParentState="true"
-            style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup">
-
-        <TextView
-                android:id="@+id/title"
-                android:layout_width="match_parent"
-                android:layout_height="wrap_content"
-                android:layout_alignParentTop="true"
-                android:textAppearance="?attr/textAppearanceLargePopupMenu"
-                android:singleLine="true"
-                android:duplicateParentState="true"
-                android:ellipsize="marquee"
-                android:fadingEdge="horizontal"
-                style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" />
-
-        <TextView
-                android:id="@+id/shortcut"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_below="@id/title"
-                android:textAppearance="?attr/textAppearanceSmallPopupMenu"
-                android:singleLine="true"
-                android:duplicateParentState="true"
-                style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" />
-
-    </RelativeLayout>
-
-    <ImageView
-            android:id="@+id/submenuarrow"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:layout_gravity="center"
-            android:layout_marginStart="8dp"
-            android:layout_marginLeft="8dp"
-            android:scaleType="center"
-            android:visibility="gone" />
-
-    <!-- Checkbox, and/or radio button will be inserted here. -->
-
-</android.support.v7.view.menu.ListMenuItemView>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_content_include.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_content_include.xml
deleted file mode 100644
index 1c30338f9d0306fac5844080d77526c854baa880..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_content_include.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<merge xmlns:android="http://schemas.android.com/apk/res/android">
-
-    <android.support.v7.widget.ContentFrameLayout
-            android:id="@id/action_bar_activity_content"
-            android:layout_width="match_parent"
-            android:layout_height="match_parent"
-            android:foregroundGravity="fill_horizontal|top"
-            android:foreground="?android:attr/windowContentOverlay" />
-
-</merge>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_simple.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_simple.xml
deleted file mode 100644
index 2783187d0c6f9042277363e497cea0d8f3265473..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_simple.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<android.support.v7.widget.FitWindowsLinearLayout
-    xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/action_bar_root"
-    android:layout_width="match_parent"
-    android:layout_height="match_parent"
-    android:orientation="vertical"
-    android:fitsSystemWindows="true">
-
-    <android.support.v7.widget.ViewStubCompat
-        android:id="@+id/action_mode_bar_stub"
-        android:inflatedId="@+id/action_mode_bar"
-        android:layout="@layout/abc_action_mode_bar"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content" />
-
-    <include layout="@layout/abc_screen_content_include" />
-
-</android.support.v7.widget.FitWindowsLinearLayout>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_simple_overlay_action_mode.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_simple_overlay_action_mode.xml
deleted file mode 100644
index c02c2aa9cb2f0d1aeceb0e780053a3f25c587be3..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_simple_overlay_action_mode.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*
-** Copyright 2014, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-**     http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
-
-This is an optimized layout for a screen, with the minimum set of features
-enabled.
--->
-
-<android.support.v7.widget.FitWindowsFrameLayout
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        android:id="@+id/action_bar_root"
-        android:layout_width="match_parent"
-        android:layout_height="match_parent"
-        android:fitsSystemWindows="true">
-
-    <include layout="@layout/abc_screen_content_include" />
-
-    <android.support.v7.widget.ViewStubCompat
-            android:id="@+id/action_mode_bar_stub"
-            android:inflatedId="@+id/action_mode_bar"
-            android:layout="@layout/abc_action_mode_bar"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content" />
-
-</android.support.v7.widget.FitWindowsFrameLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_toolbar.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_toolbar.xml
deleted file mode 100644
index 96412c15b5302ef46d04640feeb0135ef54cd9d3..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_toolbar.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<android.support.v7.widget.ActionBarOverlayLayout
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        xmlns:app="http://schemas.android.com/apk/res-auto"
-        android:id="@+id/decor_content_parent"
-        android:layout_width="match_parent"
-        android:layout_height="match_parent"
-        android:fitsSystemWindows="true">
-
-    <include layout="@layout/abc_screen_content_include"/>
-
-    <android.support.v7.widget.ActionBarContainer
-            android:id="@+id/action_bar_container"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_alignParentTop="true"
-            style="?attr/actionBarStyle"
-            android:touchscreenBlocksFocus="true"
-            android:gravity="top">
-
-        <android.support.v7.widget.Toolbar
-                android:id="@+id/action_bar"
-                android:layout_width="match_parent"
-                android:layout_height="wrap_content"
-                app:navigationContentDescription="@string/abc_action_bar_up_description"
-                style="?attr/toolbarStyle"/>
-
-        <android.support.v7.widget.ActionBarContextView
-                android:id="@+id/action_context_bar"
-                android:layout_width="match_parent"
-                android:layout_height="wrap_content"
-                android:visibility="gone"
-                android:theme="?attr/actionBarTheme"
-                style="?attr/actionModeStyle"/>
-
-    </android.support.v7.widget.ActionBarContainer>
-
-</android.support.v7.widget.ActionBarOverlayLayout>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_search_dropdown_item_icons_2line.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_search_dropdown_item_icons_2line.xml
deleted file mode 100644
index b81d5d8ca33eabe8b1ff40a76c389aac8dcc6421..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_search_dropdown_item_icons_2line.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*
- * Copyright (C) 2014 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
--->
-
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-                android:layout_width="match_parent"
-                android:layout_height="58dip"
-                style="@style/RtlOverlay.Widget.AppCompat.Search.DropDown">
-
-    <!-- Icons come first in the layout, since their placement doesn't depend on
-         the placement of the text views. -->
-    <ImageView
-               android:id="@android:id/icon1"
-               android:layout_width="@dimen/abc_dropdownitem_icon_width"
-               android:layout_height="48dip"
-               android:scaleType="centerInside"
-               android:layout_alignParentTop="true"
-               android:layout_alignParentBottom="true"
-               android:visibility="invisible"
-               style="@style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" />
-
-    <ImageView
-               android:id="@+id/edit_query"
-               android:layout_width="48dip"
-               android:layout_height="48dip"
-               android:scaleType="centerInside"
-               android:layout_alignParentTop="true"
-               android:layout_alignParentBottom="true"
-               android:background="?attr/selectableItemBackground"
-               android:visibility="gone"
-               style="@style/RtlOverlay.Widget.AppCompat.Search.DropDown.Query" />
-
-    <ImageView
-               android:id="@id/android:icon2"
-               android:layout_width="48dip"
-               android:layout_height="48dip"
-               android:scaleType="centerInside"
-               android:layout_alignWithParentIfMissing="true"
-               android:layout_alignParentTop="true"
-               android:layout_alignParentBottom="true"
-               android:visibility="gone"
-               style="@style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" />
-
-
-    <!-- The subtitle comes before the title, since the height of the title depends on whether the
-         subtitle is visible or gone. -->
-    <TextView android:id="@android:id/text2"
-              style="?android:attr/dropDownItemStyle"
-              android:textAppearance="?attr/textAppearanceSearchResultSubtitle"
-              android:singleLine="true"
-              android:layout_width="match_parent"
-              android:layout_height="29dip"
-              android:paddingBottom="4dip"
-              android:gravity="top"
-              android:layout_alignWithParentIfMissing="true"
-              android:layout_alignParentBottom="true"
-              android:visibility="gone" />
-
-    <!-- The title is placed above the subtitle, if there is one. If there is no
-         subtitle, it fills the parent. -->
-    <TextView android:id="@android:id/text1"
-              style="?android:attr/dropDownItemStyle"
-              android:textAppearance="?attr/textAppearanceSearchResultTitle"
-              android:singleLine="true"
-              android:layout_width="match_parent"
-              android:layout_height="wrap_content"
-              android:layout_centerVertical="true"
-              android:layout_above="@android:id/text2" />
-
-</RelativeLayout>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_search_view.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_search_view.xml
deleted file mode 100644
index 1d9a98b501815f03bbabfdc4305f1ff5e010ab3a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_search_view.xml
+++ /dev/null
@@ -1,137 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*
- * Copyright (C) 2014 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
--->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-        android:id="@+id/search_bar"
-        android:layout_width="match_parent"
-        android:layout_height="match_parent"
-        android:orientation="horizontal">
-
-    <!-- This is actually used for the badge icon *or* the badge label (or neither) -->
-    <TextView
-            android:id="@+id/search_badge"
-            android:layout_width="wrap_content"
-            android:layout_height="match_parent"
-            android:gravity="center_vertical"
-            android:layout_marginBottom="2dip"
-            android:drawablePadding="0dip"
-            android:textAppearance="?android:attr/textAppearanceMedium"
-            android:textColor="?android:attr/textColorPrimary"
-            android:visibility="gone" />
-
-    <ImageView
-            android:id="@+id/search_button"
-            style="?attr/actionButtonStyle"
-            android:layout_width="wrap_content"
-            android:layout_height="match_parent"
-            android:layout_gravity="center_vertical"
-            android:focusable="true"
-            android:contentDescription="@string/abc_searchview_description_search" />
-
-    <LinearLayout
-            android:id="@+id/search_edit_frame"
-            android:layout_width="wrap_content"
-            android:layout_height="match_parent"
-            android:layout_weight="1"
-            android:layout_marginLeft="8dip"
-            android:layout_marginRight="8dip"
-            android:orientation="horizontal"
-            android:layoutDirection="locale">
-
-        <ImageView
-                android:id="@+id/search_mag_icon"
-                android:layout_width="@dimen/abc_dropdownitem_icon_width"
-                android:layout_height="wrap_content"
-                android:scaleType="centerInside"
-                android:layout_gravity="center_vertical"
-                android:visibility="gone"
-                style="@style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon" />
-
-        <!-- Inner layout contains the app icon, button(s) and EditText -->
-        <LinearLayout
-                android:id="@+id/search_plate"
-                android:layout_width="wrap_content"
-                android:layout_height="match_parent"
-                android:layout_weight="1"
-                android:layout_gravity="center_vertical"
-                android:orientation="horizontal">
-
-            <view class="android.support.v7.widget.SearchView$SearchAutoComplete"
-                  android:id="@+id/search_src_text"
-                  android:layout_height="36dip"
-                  android:layout_width="0dp"
-                  android:layout_weight="1"
-                  android:layout_gravity="center_vertical"
-                  android:paddingLeft="@dimen/abc_dropdownitem_text_padding_left"
-                  android:paddingRight="@dimen/abc_dropdownitem_text_padding_right"
-                  android:singleLine="true"
-                  android:ellipsize="end"
-                  android:background="@null"
-                  android:inputType="text|textAutoComplete|textNoSuggestions"
-                  android:imeOptions="actionSearch"
-                  android:dropDownHeight="wrap_content"
-                  android:dropDownAnchor="@id/search_edit_frame"
-                  android:dropDownVerticalOffset="0dip"
-                  android:dropDownHorizontalOffset="0dip" />
-
-            <ImageView
-                    android:id="@+id/search_close_btn"
-                    android:layout_width="wrap_content"
-                    android:layout_height="match_parent"
-                    android:paddingLeft="8dip"
-                    android:paddingRight="8dip"
-                    android:layout_gravity="center_vertical"
-                    android:background="?attr/selectableItemBackgroundBorderless"
-                    android:focusable="true"
-                    android:contentDescription="@string/abc_searchview_description_clear" />
-
-        </LinearLayout>
-
-        <LinearLayout
-                android:id="@+id/submit_area"
-                android:orientation="horizontal"
-                android:layout_width="wrap_content"
-                android:layout_height="match_parent">
-
-            <ImageView
-                    android:id="@+id/search_go_btn"
-                    android:layout_width="wrap_content"
-                    android:layout_height="match_parent"
-                    android:layout_gravity="center_vertical"
-                    android:paddingLeft="16dip"
-                    android:paddingRight="16dip"
-                    android:background="?attr/selectableItemBackgroundBorderless"
-                    android:visibility="gone"
-                    android:focusable="true"
-                    android:contentDescription="@string/abc_searchview_description_submit" />
-
-            <ImageView
-                    android:id="@+id/search_voice_btn"
-                    android:layout_width="wrap_content"
-                    android:layout_height="match_parent"
-                    android:layout_gravity="center_vertical"
-                    android:paddingLeft="16dip"
-                    android:paddingRight="16dip"
-                    android:background="?attr/selectableItemBackgroundBorderless"
-                    android:visibility="gone"
-                    android:focusable="true"
-                    android:contentDescription="@string/abc_searchview_description_voice" />
-        </LinearLayout>
-    </LinearLayout>
-</LinearLayout>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_select_dialog_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_select_dialog_material.xml
deleted file mode 100644
index ae4b268153e5d884dfdcea52a5b3b1ba3ab9501c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_select_dialog_material.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!--
-    This layout file is used by the AlertDialog when displaying a list of items.
-    This layout file is inflated and used as the ListView to display the items.
-    Assign an ID so its state will be saved/restored.
--->
-<view xmlns:android="http://schemas.android.com/apk/res/android"
-      xmlns:app="http://schemas.android.com/apk/res-auto"
-      android:id="@+id/select_dialog_listview"
-      style="@style/Widget.AppCompat.ListView"
-      class="android.support.v7.app.AlertController$RecycleListView"
-      android:layout_width="match_parent"
-      android:layout_height="match_parent"
-      android:cacheColorHint="@null"
-      android:clipToPadding="false"
-      android:divider="?attr/listDividerAlertDialog"
-      android:fadingEdge="none"
-      android:overScrollMode="ifContentScrolls"
-      android:scrollbars="vertical"
-      android:textAlignment="viewStart"
-      app:paddingBottomNoButtons="@dimen/abc_dialog_list_padding_bottom_no_buttons"
-      app:paddingTopNoTitle="@dimen/abc_dialog_list_padding_top_no_title"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_action.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_action.xml
deleted file mode 100644
index 82e95a5a724d4a9d1ae9da1ae715b42947fdf9da..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_action.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    style="@style/Widget.AppCompat.NotificationActionContainer"
-    android:id="@+id/action_container"
-    android:layout_width="0dp"
-    android:layout_weight="1"
-    android:layout_height="48dp"
-    android:paddingLeft="4dp"
-    android:paddingStart="4dp"
-    android:orientation="horizontal">
-    <ImageView
-        android:id="@+id/action_image"
-        android:layout_width="@dimen/notification_action_icon_size"
-        android:layout_height="@dimen/notification_action_icon_size"
-        android:layout_gravity="center|start"
-        android:scaleType="centerInside"/>
-    <TextView
-        style="@style/Widget.AppCompat.NotificationActionText"
-        android:id="@+id/action_text"
-        android:textColor="#ccc"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center|start"
-        android:paddingLeft="4dp"
-        android:paddingStart="4dp"
-        android:singleLine="true"
-        android:ellipsize="end"
-        android:clickable="false"/>
-</LinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_action_tombstone.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_action_tombstone.xml
deleted file mode 100644
index d491c7847660af1c1e45a227abdd567e59e42632..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_action_tombstone.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    style="@style/Widget.AppCompat.NotificationActionContainer"
-    android:id="@+id/action_container"
-    android:layout_width="0dp"
-    android:layout_weight="1"
-    android:layout_height="48dp"
-    android:paddingLeft="4dp"
-    android:paddingStart="4dp"
-    android:orientation="horizontal"
-    android:enabled="false"
-    android:background="@null">
-    <ImageView
-        android:id="@+id/action_image"
-        android:layout_width="@dimen/notification_action_icon_size"
-        android:layout_height="@dimen/notification_action_icon_size"
-        android:layout_gravity="center|start"
-        android:scaleType="centerInside"
-        android:enabled="false"
-        android:alpha="0.5"/>
-    <TextView
-        style="@style/Widget.AppCompat.NotificationActionText"
-        android:id="@+id/action_text"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center|start"
-        android:textColor="#ccc"
-        android:paddingLeft="4dp"
-        android:paddingStart="4dp"
-        android:singleLine="true"
-        android:ellipsize="end"
-        android:clickable="false"
-        android:enabled="false"
-        android:alpha="0.5"/>
-</LinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_custom_big.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_custom_big.xml
deleted file mode 100644
index c922629227953dbcafff3fcb1a9294f1f1c8a83b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_custom_big.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<LinearLayout android:id="@+id/notification_main_column_container"
-    xmlns:android="http://schemas.android.com/apk/res/android"
-    android:layout_width="match_parent"
-    android:layout_height="wrap_content"
-    android:minHeight="@dimen/notification_large_icon_height"
-    android:orientation="horizontal"
-    android:paddingRight="12dp"
-    android:paddingEnd="12dp">
-    <ImageView android:id="@+id/icon"
-        android:layout_width="@dimen/notification_large_icon_width"
-        android:layout_height="@dimen/notification_large_icon_height"
-        android:background="@drawable/notification_tile_bg"
-        android:scaleType="center"
-    />
-    <FrameLayout
-        android:id="@+id/notification_main_column"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:paddingLeft="12dp"
-        android:paddingStart="12dp"
-        android:paddingTop="@dimen/notification_main_column_padding_top"
-        android:layout_weight="1"/>
-    <FrameLayout
-        android:id="@+id/right_side"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:paddingTop="12dp"
-        android:paddingLeft="12dp">
-        <include
-            layout="@layout/notification_template_part_time"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:layout_gravity="end|top"
-            android:visibility="gone"/>
-        <LinearLayout
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_gravity="end|bottom"
-            android:layout_marginTop="18dp"
-            android:orientation="horizontal">
-            <TextView android:id="@+id/info"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_gravity="center"
-                android:singleLine="true"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Info"
-            />
-            <ImageView android:id="@+id/right_icon"
-                android:layout_width="24dp"
-                android:layout_height="24dp"
-                android:layout_gravity="center"
-                android:layout_marginLeft="8dp"
-                android:alpha="0.7"
-                android:scaleType="center"
-                android:visibility="gone"
-            />
-        </LinearLayout>
-    </FrameLayout>
-</LinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_icon_group.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_icon_group.xml
deleted file mode 100644
index dd564f888018b1f422df5ebbd3dbc7f9347fc0a9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_icon_group.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<ImageView
-    xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/icon"
-    android:layout_width="@dimen/notification_large_icon_width"
-    android:layout_height="@dimen/notification_large_icon_height"
-    android:scaleType="centerCrop"
-/>
-
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_lines_media.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_lines_media.xml
deleted file mode 100644
index 9a7b788e56b8c74b6f87f3fdc20dd99c7e505eb6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_lines_media.xml
+++ /dev/null
@@ -1,112 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:layout_width="wrap_content"
-    android:layout_height="wrap_content"
-    android:orientation="vertical"
-    android:paddingRight="8dp"
-    android:paddingEnd="8dp"
-    android:paddingTop="2dp"
-    android:paddingBottom="2dp"
-    >
-    <LinearLayout
-        android:id="@+id/line1"
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content"
-        android:paddingTop="6dp"
-        android:layout_marginLeft="@dimen/notification_content_margin_start"
-        android:layout_marginStart="@dimen/notification_content_margin_start"
-        android:orientation="horizontal"
-        >
-        <TextView android:id="@+id/title"
-            android:textAppearance="@style/TextAppearance.AppCompat.Notification.Title.Media"
-            android:layout_width="fill_parent"
-            android:layout_height="wrap_content"
-            android:singleLine="true"
-            android:ellipsize="marquee"
-            android:fadingEdge="horizontal"
-            android:layout_weight="1"
-            />
-        <DateTimeView android:id="@+id/time"
-            android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time.Media"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:singleLine="true"
-            android:layout_gravity="center"
-            android:layout_weight="0"
-            android:visibility="gone"
-            android:paddingLeft="8dp"
-            android:paddingStart="8dp"
-        />
-        <Chronometer android:id="@+id/chronometer"
-            android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time.Media"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:singleLine="true"
-            android:layout_gravity="center"
-            android:layout_weight="0"
-            android:visibility="gone"
-            android:paddingLeft="8dp"
-            android:paddingStart="8dp"
-        />
-    </LinearLayout>
-    <TextView android:id="@+id/text2"
-        android:textAppearance="@style/TextAppearance.AppCompat.Notification.Line2.Media"
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content"
-        android:layout_marginTop="-2dp"
-        android:layout_marginBottom="-2dp"
-        android:layout_marginLeft="@dimen/notification_content_margin_start"
-        android:layout_marginStart="@dimen/notification_content_margin_start"
-        android:singleLine="true"
-        android:fadingEdge="horizontal"
-        android:ellipsize="marquee"
-        android:visibility="gone"
-        />
-    <LinearLayout
-        android:id="@+id/line3"
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content"
-        android:orientation="horizontal"
-        android:gravity="center_vertical"
-        android:layout_marginLeft="@dimen/notification_content_margin_start"
-        android:layout_marginStart="@dimen/notification_content_margin_start"
-        >
-        <TextView android:id="@+id/text"
-            android:textAppearance="@style/TextAppearance.AppCompat.Notification.Media"
-            android:layout_width="0dp"
-            android:layout_height="wrap_content"
-            android:layout_weight="1"
-            android:layout_gravity="center"
-            android:singleLine="true"
-            android:ellipsize="marquee"
-            android:fadingEdge="horizontal"
-            />
-        <TextView android:id="@+id/info"
-            android:textAppearance="@style/TextAppearance.AppCompat.Notification.Info.Media"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:layout_gravity="center"
-            android:layout_weight="0"
-            android:singleLine="true"
-            android:gravity="center"
-            android:paddingLeft="8dp"
-            android:paddingStart="8dp"
-            />
-    </LinearLayout>
-</LinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_media.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_media.xml
deleted file mode 100644
index 6eac23b78797ff8e7b2097e5ac35501a945d1c3d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_media.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/status_bar_latest_event_content"
-    android:layout_width="match_parent"
-    android:layout_height="64dp"
-    android:orientation="horizontal"
-    >
-    <include layout="@layout/notification_template_icon_group"
-        android:layout_width="@dimen/notification_large_icon_width"
-        android:layout_height="@dimen/notification_large_icon_height"
-    />
-    <include layout="@layout/notification_template_lines_media"
-        android:layout_width="0dp"
-        android:layout_height="wrap_content"
-        android:layout_weight="1"/>
-    <LinearLayout
-        android:id="@+id/media_actions"
-        android:layout_width="wrap_content"
-        android:layout_height="match_parent"
-        android:layout_gravity="center_vertical|end"
-        android:orientation="horizontal"
-        android:layoutDirection="ltr"
-        >
-        <!-- media buttons will be added here -->
-    </LinearLayout>
-    <include layout="@layout/notification_media_cancel_action"
-        android:layout_width="48dp"
-        android:layout_height="match_parent"
-        android:layout_marginRight="6dp"
-        android:layout_marginEnd="6dp"/>
-    <ImageView android:id="@+id/end_padder"
-        android:layout_width="6dp"
-        android:layout_height="match_parent"
-        />
-</LinearLayout>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_media_custom.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_media_custom.xml
deleted file mode 100644
index 62e07d4502115cff33445e5d3e63cdaa8c4382ec..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_media_custom.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/status_bar_latest_event_content"
-    android:layout_width="match_parent"
-    android:layout_height="64dp"
-    android:orientation="horizontal"
-    >
-    <include layout="@layout/notification_template_icon_group"
-        android:layout_width="@dimen/notification_large_icon_width"
-        android:layout_height="@dimen/notification_large_icon_height"
-    />
-    <LinearLayout
-        android:id="@+id/notification_main_column_container"
-        android:layout_width="0dp"
-        android:layout_weight="1"
-        android:layout_height="wrap_content"
-        android:paddingTop="@dimen/notification_main_column_padding_top"
-        android:minHeight="@dimen/notification_large_icon_height"
-        android:orientation="horizontal"
-        android:layout_toLeftOf="@id/cancel_action"
-        android:layout_toStartOf="@id/cancel_action">
-        <FrameLayout
-            android:id="@+id/notification_main_column"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_weight="1"
-            android:layout_marginLeft="@dimen/notification_content_margin_start"
-            android:layout_marginStart="@dimen/notification_content_margin_start"
-            android:layout_marginRight="8dp"
-            android:layout_marginEnd="8dp"
-            android:layout_marginBottom="8dp"/>
-        <FrameLayout
-            android:id="@+id/right_side"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:layout_marginRight="8dp"
-            android:layout_marginEnd="8dp"
-            android:paddingTop="@dimen/notification_right_side_padding_top">
-            <DateTimeView android:id="@+id/time"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:singleLine="true"
-                android:layout_gravity="end|top"
-                android:visibility="gone"
-            />
-            <Chronometer android:id="@+id/chronometer"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:singleLine="true"
-                android:layout_gravity="end|top"
-                android:visibility="gone"
-            />
-            <TextView android:id="@+id/info"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Info.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_marginTop="20dp"
-                android:layout_gravity="end|bottom"
-                android:singleLine="true"
-            />
-        </FrameLayout>
-    </LinearLayout>
-    <LinearLayout
-        android:id="@+id/media_actions"
-        android:layout_width="wrap_content"
-        android:layout_height="match_parent"
-        android:layout_gravity="center_vertical|end"
-        android:orientation="horizontal"
-        android:layoutDirection="ltr"
-        >
-        <!-- media buttons will be added here -->
-    </LinearLayout>
-    <include layout="@layout/notification_media_cancel_action"
-        android:layout_width="48dp"
-        android:layout_height="match_parent"
-        android:layout_marginRight="6dp"
-        android:layout_marginEnd="6dp"/>
-    <ImageView android:id="@+id/end_padder"
-        android:layout_width="6dp"
-        android:layout_height="match_parent"
-        />
-</LinearLayout>
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_part_chronometer.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_part_chronometer.xml
deleted file mode 100644
index 9e58a389b57dcf5b1fa2108af638431fb737047d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_part_chronometer.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<Chronometer android:id="@+id/chronometer" xmlns:android="http://schemas.android.com/apk/res/android"
-    android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time"
-    android:layout_width="wrap_content"
-    android:layout_height="wrap_content"
-    android:singleLine="true"
-    />
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_part_time.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_part_time.xml
deleted file mode 100644
index 810d1e31cda2bea9f9ed5586dd42cfa3d80932ca..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_part_time.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<DateTimeView android:id="@+id/time" xmlns:android="http://schemas.android.com/apk/res/android"
-    android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time"
-    android:layout_width="wrap_content"
-    android:layout_height="wrap_content"
-    android:singleLine="true"
-    />
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_item_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_item_material.xml
deleted file mode 100644
index 677b178d6dbc37f3296ac06519be9ce4941990cc..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_item_material.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!--
-    This layout file is used by the AlertDialog when displaying a list of items.
-    This layout file is inflated and used as the TextView to display individual
-    items.
--->
-<TextView xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@android:id/text1"
-    android:layout_width="match_parent"
-    android:layout_height="wrap_content"
-    android:minHeight="?attr/listPreferredItemHeightSmall"
-    android:textAppearance="?attr/textAppearanceListItemSmall"
-    android:textColor="?attr/textColorAlertDialogListItem"
-    android:gravity="center_vertical"
-    android:paddingLeft="?attr/listPreferredItemPaddingLeft"
-    android:paddingRight="?attr/listPreferredItemPaddingRight"
-    android:ellipsize="marquee" />
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_multichoice_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_multichoice_material.xml
deleted file mode 100644
index 60f3576a89035138a9266cced77abf1b7a400cb6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_multichoice_material.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
-                 android:id="@android:id/text1"
-                 android:layout_width="match_parent"
-                 android:layout_height="wrap_content"
-                 android:minHeight="?attr/listPreferredItemHeightSmall"
-                 android:textAppearance="?android:attr/textAppearanceMedium"
-                 android:textColor="?attr/textColorAlertDialogListItem"
-                 android:gravity="center_vertical"
-                 android:paddingLeft="@dimen/abc_select_dialog_padding_start_material"
-                 android:paddingRight="?attr/dialogPreferredPadding"
-                 android:paddingStart="@dimen/abc_select_dialog_padding_start_material"
-                 android:paddingEnd="?attr/dialogPreferredPadding"
-                 android:drawableLeft="?android:attr/listChoiceIndicatorMultiple"
-                 android:drawableStart="?android:attr/listChoiceIndicatorMultiple"
-                 android:drawablePadding="20dp"
-                 android:ellipsize="marquee" />
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_singlechoice_material.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_singlechoice_material.xml
deleted file mode 100644
index 4d10fc720e06914d346053d12c99125a021c3a37..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_singlechoice_material.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
-                 android:id="@android:id/text1"
-                 android:layout_width="match_parent"
-                 android:layout_height="wrap_content"
-                 android:minHeight="?attr/listPreferredItemHeightSmall"
-                 android:textAppearance="?android:attr/textAppearanceMedium"
-                 android:textColor="?attr/textColorAlertDialogListItem"
-                 android:gravity="center_vertical"
-                 android:paddingLeft="@dimen/abc_select_dialog_padding_start_material"
-                 android:paddingRight="?attr/dialogPreferredPadding"
-                 android:paddingStart="@dimen/abc_select_dialog_padding_start_material"
-                 android:paddingEnd="?attr/dialogPreferredPadding"
-                 android:drawableLeft="?android:attr/listChoiceIndicatorSingle"
-                 android:drawableStart="?android:attr/listChoiceIndicatorSingle"
-                 android:drawablePadding="20dp"
-                 android:ellipsize="marquee" />
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/support_simple_spinner_dropdown_item.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/support_simple_spinner_dropdown_item.xml
deleted file mode 100644
index d2f177ac8cb373a3adc26a14ce0b046a9bb1abc7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/support_simple_spinner_dropdown_item.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-**
-** Copyright 2008, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License"); 
-** you may not use this file except in compliance with the License. 
-** You may obtain a copy of the License at 
-**
-**     http://www.apache.org/licenses/LICENSE-2.0 
-**
-** Unless required by applicable law or agreed to in writing, software 
-** distributed under the License is distributed on an "AS IS" BASIS, 
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
-** See the License for the specific language governing permissions and 
-** limitations under the License.
-*/
--->
-<TextView xmlns:android="http://schemas.android.com/apk/res/android"
-          android:id="@android:id/text1"
-          style="?attr/spinnerDropDownItemStyle"
-          android:singleLine="true"
-          android:layout_width="match_parent"
-          android:layout_height="?attr/dropdownListPreferredItemHeight"
-          android:ellipsize="marquee"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml
deleted file mode 100644
index 1afc7558435040e52a95cb5d86933bce0f59dd9f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeer tuis"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigeer op"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Nog opsies"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Klaar"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Sien alles"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Kies \'n program"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"AF"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"AAN"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Soek …"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Vee navraag uit"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Soeknavraag"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Soek"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Dien navraag in"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Stemsoektog"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deel met"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deel met %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Vou in"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Soek"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml
deleted file mode 100644
index 750aecf587491c9c6acb1be5a804044c1476c6c4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ወደ መነሻ ይዳስሱ"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s፣ %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s፣ %2$s፣ %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ወደ ላይ ይዳስሱ"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ተጨማሪ አማራጮች"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"ተከናውኗል"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ሁሉንም ይመልከቱ"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"መተግበሪያ ይምረጡ"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ጠፍቷል"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"በርቷል"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ፈልግ…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"መጠይቅ አጽዳ"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"የፍለጋ ጥያቄ"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ፍለጋ"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"መጠይቅ ያስረክቡ"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"የድምፅ ፍለጋ"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ከሚከተለው ጋር ያጋሩ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"ከ%s ጋር ያጋሩ"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ሰብስብ"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ፈልግ"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml
deleted file mode 100644
index 4a4a5e118bb27682e451475fe504a7c1f04767d7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"التنقل إلى الشاشة الرئيسية"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s، %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s، %2$s، %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"التنقل إلى أعلى"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"خيارات إضافية"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"تم"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"عرض الكل"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"اختيار تطبيق"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"إيقاف"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"تشغيل"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"بحث…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"محو طلب البحث"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"طلب البحث"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"بحث"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"إرسال طلب البحث"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"البحث الصوتي"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"مشاركة مع"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏مشاركة مع %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"تصغير"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"البحث"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml
deleted file mode 100644
index 59aa1cd1f74e4be514a611eb50ff55708b3cf3c9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"EvÉ™ naviqasiya et"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yuxarı get"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Digər variantlar"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Hazırdır"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Hamısına baxın"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Tətbiq seçin"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DEAKTÄ°V"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"AKTÄ°V"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Axtarış..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sorğunu təmizlə"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Axtarış sorğusu"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Axtarış"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Sorğunu göndərin"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Səsli axtarış"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bununla paylaşın"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Dağıt"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Axtarış"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml
deleted file mode 100644
index 05e53a7c4d53759cd123bf5ddcaf2d591f0bfe92..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Odlazak na Početnu"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Kretanje nagore"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Još opcija"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Gotovo"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Izbor aplikacije"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ISKLJUÄŒI"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"UKLJUÄŒI"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Pretražite..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Brisanje upita"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Upit za pretragu"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Pretraga"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Slanje upita"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovna pretraga"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deli sa"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deli sa aplikacijom %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skupi"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Pretraži"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml
deleted file mode 100644
index 1bc6dccd2913be7505c506fb5085db7656b875d7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Перайсці на галоўную старонку"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Перайсці ўверх"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Дадатковыя параметры"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Гатова"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Прагледзець усё"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Выбраць праграму"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ВЫКЛ."</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"УКЛ."</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Пошук..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Выдалiць запыт"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Запыт на пошук"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Пошук"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Адправіць запыт"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Галасавы пошук"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Абагуліць з"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Абагуліць з %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Згарнуць"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Пошук"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"больш за 999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml
deleted file mode 100644
index 44f7a285e24e5bf07929712a692b4b6ff9f1dc7b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Придвижване към „Начало“"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"„%1$s“ – %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"„%1$s“, „%2$s“ – %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Придвижване нагоре"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Още опции"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Вижте всички"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Изберете приложение"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ИЗКЛ."</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ВКЛ."</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Търсете…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Изчистване на заявката"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Заявка за търсене"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Търсене"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Изпращане на заявката"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласово търсене"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Споделяне със:"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Споделяне със: %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Свиване"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Търсене"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml
deleted file mode 100644
index 89f21d1a3c4a1cb79af086380e4201404a13994e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"হোম এ নেভিগেট করুন"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"উপরের দিকে নেভিগেট করুন"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"আরো বিকল্প"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"সম্পন্ন হয়েছে"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"সবগুলো দেখুন"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"একটি অ্যাপ্লিকেশান বেছে নিন"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"বন্ধ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"চালু"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"অনুসন্ধান..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"ক্যোয়ারী সাফ করুন"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ক্যোয়ারী অনুসন্ধান করুন"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"অনুসন্ধান করুন"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ক্যোয়ারী জমা দিন"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ভয়েস অনুসন্ধান"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"এর সাথে শেয়ার করুন"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s এর সাথে শেয়ার করুন"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"সঙ্কুচিত করুন"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"অনুসন্ধান করুন"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"৯৯৯+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml
deleted file mode 100644
index c1dd63a73e4842082e6655eab10f694814d4d8ca..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Vrati se na početnu stranicu"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigiraj prema gore"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Više opcija"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Završeno"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Vidi sve"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Odaberite aplikaciju"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ISKLJUÄŒI"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"UKLJUÄŒI"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Pretraži..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Obriši upit"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Pretraži upit"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Traži"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošalji upit"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Pretraživanje glasom"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Podijeli sa"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Podijeli sa %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skupi"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Pretraži"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml
deleted file mode 100644
index d615d946749b1d6e32b63cbbdd54057989f11693..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navega a la pàgina d\'inici"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navega cap a dalt"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Més opcions"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Fet"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Mostra\'ls tots"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Selecciona una aplicació"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DESACTIVAT"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ACTIVAT"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Cerca..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Esborra la consulta"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de cerca"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Cerca"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envia la consulta"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Cerca per veu"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Comparteix amb"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Comparteix amb %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Replega"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Cerca"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml
deleted file mode 100644
index 474b37e8ee443bf121b72f8b76d4464a860b922c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Přejít na plochu"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s – %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s – %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Přejít nahoru"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Více možností"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Hotovo"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobrazit vše"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Vybrat aplikaci"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"VYPNUTO"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ZAPNUTO"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Vyhledat…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Smazat dotaz"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Vyhledávací dotaz"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Hledat"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Odeslat dotaz"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Hlasové vyhledávání"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Sdílet pomocí"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Sdílet pomocí %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sbalit"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Hledat"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml
deleted file mode 100644
index e397602a65da7aa7fe11e93a2e205dfbbcc6f80a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Naviger hjem"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Naviger op"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Flere muligheder"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Luk"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Se alle"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Vælg en app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"FRA"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"TIL"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Søg…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ryd forespørgslen"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Søgeforespørgsel"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Søg"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Indsend forespørgslen"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Talesøgning"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Del med"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Del med %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skjul"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Søg"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml
deleted file mode 100644
index 389dcf30cede0359f1c6e7e9f0899cd927af8c9a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Zur Startseite"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s: %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s: %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Nach oben"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Weitere Optionen"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Fertig"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Alle ansehen"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"App auswählen"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"Aus"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"An"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Suchen…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Suchanfrage löschen"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Suchanfrage"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Suchen"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Suchanfrage senden"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Sprachsuche"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Freigeben für"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Freigeben für %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Minimieren"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Suchen"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml
deleted file mode 100644
index d68df63f9242ee091b1fa6c90a127bfe4a6c020d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Πλοήγηση στην αρχική σελίδα"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Πλοήγηση προς τα επάνω"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Περισσότερες επιλογές"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Τέλος"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Προβολή όλων"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Επιλέξτε κάποια εφαρμογή"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ΕΝΕΡΓΟΠΟΙΗΣΗ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Αναζήτηση…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Διαγραφή ερωτήματος"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Ερώτημα αναζήτησης"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Αναζήτηση"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Υποβολή ερωτήματος"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Φωνητική αναζήτηση"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Κοινή χρήση με"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Κοινή χρήση με %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Σύμπτυξη"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Αναζήτηση"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml
deleted file mode 100644
index 35ea31a0ba5dacaded9b8a2c413ed319b6d20ca4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"OFF"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Search"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml
deleted file mode 100644
index 35ea31a0ba5dacaded9b8a2c413ed319b6d20ca4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"OFF"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Search"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml
deleted file mode 100644
index 35ea31a0ba5dacaded9b8a2c413ed319b6d20ca4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"OFF"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Search"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml
deleted file mode 100644
index 6ee60b64af581d7cfc41862bc5502d9df9d16111..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar a la página principal"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar hacia arriba"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Más opciones"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Listo"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todo"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Elige una aplicación."</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DESACTIVADO"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ACTIVADO"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Eliminar la consulta"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de búsqueda"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Búsqueda"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Búsqueda por voz"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Buscar"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml
deleted file mode 100644
index 926b83b90690d5b9f2d16db2950285692c2bc8f6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ir a la pantalla de inicio"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Desplazarse hacia arriba"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Más opciones"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Listo"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todo"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Seleccionar una aplicación"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"NO"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"SÍ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Borrar consulta"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Buscar"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Búsqueda por voz"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Buscar"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml
deleted file mode 100644
index b4cfc016bc180c25d56d92b395ca65b0b2c8172c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeerimine avaekraanile"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigeerimine üles"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Rohkem valikuid"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Valmis"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Kuva kõik"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Valige rakendus"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"VÄLJAS"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"SEES"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Otsige …"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Päringu tühistamine"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Otsingupäring"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Otsing"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Päringu esitamine"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Häälotsing"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Jagamine:"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Jagamine kasutajaga %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Ahendamine"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Otsing"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml
deleted file mode 100644
index 74fc58b7e3dd1c5bb48b22f84feb83d9025a21ff..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Joan orri nagusira"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Joan gora"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Aukera gehiago"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Eginda"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ikusi guztiak"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Aukeratu aplikazio bat"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DESAKTIBATUTA"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"AKTIBATUTA"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Bilatu…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Garbitu kontsulta"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Bilaketa-kontsulta"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Bilatu"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Bidali kontsulta"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Ahots bidezko bilaketa"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partekatu hauekin"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partekatu %s erabiltzailearekin"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Tolestu"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Bilatu"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml
deleted file mode 100644
index e77bb72dbd6f1686fea3260cf828155c930b995a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"پیمایش به صفحه اصلی"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"‏%1$s‏، %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"‏%1$s‏، %2$s‏، %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"پیمایش به بالا"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"گزینه‌های بیشتر"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"تمام"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"مشاهده همه"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"انتخاب برنامه"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"خاموش"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"روشن"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"جستجو…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"پاک کردن عبارت جستجو"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"عبارت جستجو"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"جستجو"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ارسال عبارت جستجو"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"جستجوی شفاهی"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"اشتراک‌گذاری با"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏اشتراک‌گذاری با %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"کوچک کردن"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"جستجو"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"Û¹Û¹Û¹+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml
deleted file mode 100644
index b6aa778be871669510691ec6b4477373d8586008..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Siirry etusivulle"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Siirry ylös"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Lisää"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Valmis"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Näytä kaikki"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Valitse sovellus"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"POIS KÄYTÖSTÄ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"KÄYTÖSSÄ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Haku…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Tyhjennä kysely"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Hakulauseke"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Haku"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Lähetä kysely"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Puhehaku"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Jakaminen:"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Jakaminen: %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Kutista"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Haku"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml
deleted file mode 100644
index 9ff50e1c3ae9147cc9f7714741fa7e73fb7267f6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Revenir en haut de la page"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Plus d\'options"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Terminé"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Voir toutes les chaînes"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Sélectionnez une application"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DÉSACTIVÉ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ACTIVÉ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Recherche en cours..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Effacer la requête"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Requête de recherche"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Rechercher"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envoyer la requête"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Recherche vocale"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partager"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partager avec %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Réduire"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Rechercher"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml
deleted file mode 100644
index 1334f3934fff2e938817f3b3c37637344900896b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Revenir en haut de la page"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Plus d\'options"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"OK"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tout afficher"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Sélectionner une application"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DÉSACTIVÉ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ACTIVÉ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Rechercher…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Effacer la requête"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Requête de recherche"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Rechercher"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envoyer la requête"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Recherche vocale"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partager avec"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partager avec %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Réduire"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Rechercher"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml
deleted file mode 100644
index d79bedf36560421613dc8205d929519bb091f04d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ir á páxina de inicio"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Desprazarse cara arriba"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Máis opcións"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Feito"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todas"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Escoller unha aplicación"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DESACTIVAR"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ACTIVAR"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Borrar consulta"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de busca"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Buscar"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Busca de voz"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Buscar"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml
deleted file mode 100644
index 00e9de34e69953585f3161c9c7ea557070215140..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"હોમ પર નેવિગેટ કરો"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ઉપર નેવિગેટ કરો"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"વધુ વિકલ્પો"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"થઈ ગયું"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"બધું જુઓ"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"એક ઍપ્લિકેશન પસંદ કરો"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"બંધ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ચાલુ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"શોધો…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"ક્વેરી સાફ કરો"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"શોધ ક્વેરી"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"શોધો"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ક્વેરી સબમિટ કરો"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"વૉઇસ શોધ"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"આની સાથે શેર કરો"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s સાથે શેર કરો"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"સંકુચિત કરો"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"શોધો"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-h720dp-v13/values-h720dp-v13.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-h720dp-v13/values-h720dp-v13.xml
deleted file mode 100644
index e38bb90b3581627d059565973a7443441a887fe9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-h720dp-v13/values-h720dp-v13.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <dimen name="abc_alert_dialog_button_bar_height">54dip</dimen>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hdpi-v4/values-hdpi-v4.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hdpi-v4/values-hdpi-v4.xml
deleted file mode 100644
index d5a138ef9b4a8d1276f694e95d0e0293771d92ae..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hdpi-v4/values-hdpi-v4.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
-          <item name="barLength">18.66dp</item>
-          <item name="gapBetweenBars">3.33dp</item>
-          <item name="drawableSize">24dp</item>
-     </style>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml
deleted file mode 100644
index 89057c403b98f317f2341b60af6e8b01dab5e7ee..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"मुख्यपृष्ठ पर नेविगेट करें"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ऊपर नेविगेट करें"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"अधिक विकल्प"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"पूर्ण"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सभी देखें"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"कोई एप्‍लिकेशन चुनें"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"बंद"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"चालू"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"खोजा जा रहा है…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"क्‍वेरी साफ़ करें"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"खोज क्वेरी"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"खोजें"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"क्वेरी सबमिट करें"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ध्वनि खोज"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"इसके द्वारा साझा करें"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s के साथ साझा करें"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"संक्षिप्त करें"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"खोज"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml
deleted file mode 100644
index ca0de20661fee7f8fbdb1c94174edf3fc61dbb11..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Idi na početnu"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Idi gore"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Dodatne opcije"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Gotovo"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Odabir aplikacije"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ISKLJUÄŒENO"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"UKLJUÄŒENO"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Pretražite…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Izbriši upit"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Upit za pretraživanje"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Pretraživanje"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošalji upit"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovno pretraživanje"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Dijeljenje sa"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Dijeljenje sa: %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sažmi"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Pretraživanje"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml
deleted file mode 100644
index b2ebff5076687bffd9210d7643c43f626101e489..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ugrás a főoldalra"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Felfelé mozgatás"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"További lehetőségek"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Kész"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Összes megtekintése"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Válasszon ki egy alkalmazást"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"KI"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"BE"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Keresés…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Lekérdezés törlése"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Keresési lekérdezés"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Keresés"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Lekérdezés küldése"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Hangalapú keresés"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Megosztás a következővel:"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Megosztás a következővel: %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Összecsukás"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Keresés"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml
deleted file mode 100644
index ffaeec02c5c5a8e3a77247159ffacb8d8402d8c4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ÕˆÖ‚Õ²Õ²Õ¾Õ¥Õ¬ Õ¿Õ¸Ö‚Õ¶"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ÕˆÖ‚Õ²Õ²Õ¾Õ¥Õ¬ Õ¾Õ¥Ö€Ö‡"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Ô±ÕµÕ¬ Õ¨Õ¶Õ¿Ö€Õ¡Õ¶Ö„Õ¶Õ¥Ö€"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"ÕŠÕ¡Õ¿Ö€Õ¡Õ½Õ¿ Õ§"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Տեսնել բոլորը"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Ô¸Õ¶Õ¿Ö€Õ¥Õ¬ Õ®Ö€Õ¡Õ£Õ«Ö€"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ԱՆՋԱՏՎԱԾ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"Õ„Ô»Ô±Õ‘ÕŽÔ±Ô¾"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ÕˆÖ€Õ¸Õ¶Õ¸Ö‚Õ´..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Մաքրել հարցումը"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Որոնման հարցում"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ÕˆÖ€Õ¸Õ¶Õ¥Õ¬"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Ուղարկել հարցումը"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Ձայնային որոնում"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Ô¿Õ«Õ½Õ¾Õ¥Õ¬"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Կիսվել %s-ի միջոցով"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Թաքցնել"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ÕˆÖ€Õ¸Õ¶Õ¥Õ¬"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml
deleted file mode 100644
index 1d32fa19ffc32236f91003dfd7797d443557b52b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigasi ke beranda"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigasi naik"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Opsi lain"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Selesai"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Lihat semua"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pilih aplikasi"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"NONAKTIF"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"AKTIF"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Telusuri..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Hapus kueri"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Kueri penelusuran"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Telusuri"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Kirim kueri"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Penelusuran suara"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bagikan dengan"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Bagikan dengan %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Ciutkan"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Telusuri"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml
deleted file mode 100644
index 6cd2b46626020a5efb0e08fedf29c57fc678415b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Fara heim"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Fara upp"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Fleiri valkostir"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Lokið"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Sjá allt"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Veldu forrit"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"SLÖKKT"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"KVEIKT"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Leita…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Hreinsa fyrirspurn"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Leitarfyrirspurn"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Leita"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Senda fyrirspurn"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Raddleit"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deila með"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deila með %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Minnka"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Leita"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml
deleted file mode 100644
index 103f40d92199f596274d971c19f83af74ca64725..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Vai alla home page"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Vai in alto"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Altre opzioni"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Fine"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Visualizza tutte"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Scegli un\'applicazione"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"OFF"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Cerca…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Cancella query"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Query di ricerca"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Cerca"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Invia query"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Ricerca vocale"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Condividi con"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Condividi con %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Comprimi"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Ricerca"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml
deleted file mode 100644
index 1ca9be604ace8d5b0aa034f8f0d41b055d1f1f8c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"נווט לדף הבית"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"‏%1$s‏, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"‏%1$s‏, %2$s‏, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"נווט למעלה"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"עוד אפשרויות"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"בוצע"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ראה הכל"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"בחר אפליקציה"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"כבוי"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"פועל"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"חפש…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"מחק שאילתה"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"שאילתת חיפוש"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"חפש"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"שלח שאילתה"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"חיפוש קולי"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"שתף עם"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏שתף עם %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"כווץ"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"חפש"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"‎999+‎"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml
deleted file mode 100644
index dc08b9f101e10ba1b44dccd8d5d87cf31e011e42..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ホームへ移動"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s、%2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s、%2$s、%3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"上へ移動"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"その他のオプション"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"完了"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"すべて表示"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"アプリの選択"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"OFF"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"検索…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"検索キーワードを削除"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"検索キーワード"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"検索"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"検索キーワードを送信"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"音声検索"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"共有"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%sと共有"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"折りたたむ"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"検索"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml
deleted file mode 100644
index 3f321189d390da4ecd9772ed9ccc36e5e7c531b4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"მთავარზე ნავიგაცია"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ზემოთ ნავიგაცია"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"მეტი ვარიანტები"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"დასრულდა"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ყველას ნახვა"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"აპის არჩევა"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"გამორთულია"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ჩართულია"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ძიება..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"მოთხოვნის გასუფთავება"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ძიების მოთხოვნა"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ძიება"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"მოთხოვნის გადაგზავნა"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ხმოვანი ძიება"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"გაზიარება:"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s-თან გაზიარება"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"აკეცვა"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ძიება"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml
deleted file mode 100644
index a00d111a3e5ec49e15a90784080a5b9c4ea226be..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Негізгі бетте қозғалу"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Жоғары қозғалу"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Басқа опциялар"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Дайын"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Барлығын көру"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Қолданбаны таңдау"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ӨШІРУЛІ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ҚОСУЛЫ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Іздеу…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Сұрақты жою"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Сұрақты іздеу"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Іздеу"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Сұрақты жіберу"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Дауыс арқылы іздеу"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Бөлісу"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s бөлісу"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Тасалау"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Іздеу"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml
deleted file mode 100644
index a2dd37a14ed76793791b17c95a6073b130ed83b6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"រកមើល​ទៅ​ដើម"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"រកមើល​ឡើងលើ"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ជម្រើស​ច្រើន​ទៀត"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"រួចរាល់"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"មើល​ទាំងអស់"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ជ្រើស​កម្មវិធី​​"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"បិទ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"បើក"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ស្វែងរក…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"សម្អាត​សំណួរ"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ស្វែងរក​សំណួរ"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ស្វែងរក"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ដាក់​​​ស្នើ​សំណួរ"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ការស្វែងរក​សំឡេង"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ចែករំលែក​ជាមួយ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"ចែករំលែក​ជាមួយ %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"បង្រួម"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ស្វែងរក"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml
deleted file mode 100644
index 99cdffd61b6791f3bb08cc20800054576dc9603d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"ಮುಗಿದಿದೆ"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ಎಲ್ಲವನ್ನೂ ನೋಡಿ"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ಆಫ್"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ಆನ್"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ಹುಡುಕಿ…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ಹುಡುಕಿ"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ಧ್ವನಿ ಹುಡುಕಾಟ"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ಸಂಕುಚಿಸು"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ಹುಡುಕಿ"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml
deleted file mode 100644
index ca986305861b720006c554b73a81c20aecea08bc..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"홈 탐색"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"위로 탐색"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"옵션 더보기"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"완료"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"전체 보기"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"앱 선택"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"사용 안함"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"사용"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"검색..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"검색어 삭제"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"검색어"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"검색"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"검색어 보내기"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"음성 검색"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"공유 대상"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s와(과) 공유"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"접기"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"검색"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml
deleted file mode 100644
index 2493032a11c8d91bd39ca64d0d71a70c4b8a5277..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Үйгө багыттоо"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Жогору"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Көбүрөөк мүмкүнчүлүктөр"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Даяр"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Бардыгын көрүү"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Колдонмо тандоо"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ӨЧҮК"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"КҮЙҮК"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Издөө…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Талаптарды тазалоо"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Издөө талаптары"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Издөө"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Талап жөнөтүү"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Үн аркылуу издөө"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Бөлүшүү"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s аркылуу бөлүшүү"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Жыйнап коюу"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Издөө"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-land/values-land.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-land/values-land.xml
deleted file mode 100644
index b337bad0d9b2d4f98be3b375ee7051c0cc433bde..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-land/values-land.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <dimen name="abc_action_bar_default_height_material">48dp</dimen>
-    <dimen name="abc_action_bar_progress_bar_size">32dp</dimen>
-    <dimen name="abc_text_size_subtitle_material_toolbar">12dp</dimen>
-    <dimen name="abc_text_size_title_material_toolbar">14dp</dimen>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-large-v4/values-large-v4.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-large-v4/values-large-v4.xml
deleted file mode 100644
index cc236ebd9c9bfc4d57f8e5eb3ce5f16c233569ec..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-large-v4/values-large-v4.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <dimen name="abc_config_prefDialogWidth">440dp</dimen>
-    <item name="abc_dialog_fixed_height_major" type="dimen">60%</item>
-    <item name="abc_dialog_fixed_height_minor" type="dimen">90%</item>
-    <item name="abc_dialog_fixed_width_major" type="dimen">60%</item>
-    <item name="abc_dialog_fixed_width_minor" type="dimen">90%</item>
-    <item name="abc_dialog_min_width_major" type="dimen">55%</item>
-    <item name="abc_dialog_min_width_minor" type="dimen">80%</item>
-    <style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.Dialog.FixedSize"/>
-    <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.Dialog.FixedSize"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ldltr-v21/values-ldltr-v21.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ldltr-v21/values-ldltr-v21.xml
deleted file mode 100644
index 1bdd835a6ea700cebab37f5242380ebd379f5612..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ldltr-v21/values-ldltr-v21.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Base.Widget.AppCompat.Spinner.Underlined" parent="android:Widget.Material.Spinner.Underlined"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml
deleted file mode 100644
index 933aed34a6d2dc58f888647269e2a3531c00b0c6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ກັບໄປໜ້າຫຼັກ"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ຂຶ້ນເທິງ"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ໂຕເລືອກອື່ນ"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"ແລ້ວໆ"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ເບິ່ງທັງຫມົດ"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ເລືອກແອັບຯ"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ປິດ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ເປີດ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ຊອກຫາ"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"ລຶບຂໍ້ຄວາມຊອກຫາ"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ຊອກຫາ"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ຊອກຫາ"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ສົ່ງການຊອກຫາ"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ຊອກຫາດ້ວຍສຽງ"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ແບ່ງປັນກັບ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"ແບ່ງ​ປັນ​ກັບ​ %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ຫຍໍ້"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ຊອກຫາ"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml
deleted file mode 100644
index 626021b60a94ef0c58a8cd1d136b986bbbbbc221..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Eiti į pagrindinį puslapį"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Eiti į viršų"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Daugiau parinkčių"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Atlikta"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Peržiūrėti viską"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pasirinkti programÄ…"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"IÅ JUNGTA"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ĮJUNGTI"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Ieškoti..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Išvalyti užklausą"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Paieškos užklausa"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Paieška"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pateikti užklausą"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Paieška balsu"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bendrinti naudojant"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Bendrinti naudojant „%s“"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sutraukti"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Paieška"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml
deleted file mode 100644
index df56b82528ae7c36cae0156416ea45ebc543f2bb..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Pārvietoties uz sākuma ekrānu"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s: %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s: %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Pārvietoties augšup"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Vairāk opciju"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Gatavs"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Skatīt visu"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Izvēlieties lietotni"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"IZSLÄ’GTS"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"IESLÄ’GTS"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Meklējiet…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Notīrīt vaicājumu"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Meklēšanas vaicājums"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Meklēt"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Iesniegt vaicājumu"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Meklēšana ar balsi"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Kopīgot ar:"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Kopīgot ar %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sakļaut"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Meklēt"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml
deleted file mode 100644
index b993d0eab5a636a475786df8ce1439535d88dafc..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Движи се кон дома"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Движи се нагоре"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Повеќе опции"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Види ги сите"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Избери апликација"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ИСКЛУЧЕНО"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ВКЛУЧЕНО"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Пребарување…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Исчисти барање"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Пребарај барање"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Пребарај"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Поднеси барање"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласовно пребарување"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Сподели со"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Собери"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Пребарај"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml
deleted file mode 100644
index e02d1db631d8fee31fe257866fc02fe3f774a21f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"കൂടുതൽ‍ ഓപ്‌ഷനുകള്‍"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"പൂർത്തിയാക്കി"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"എല്ലാം കാണുക"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ഓഫ്"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ഓൺ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"തിരയുക…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"അന്വേഷണം മായ്‌ക്കുക"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"തിരയൽ അന്വേഷണം"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"തിരയൽ"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"അന്വേഷണം സമർപ്പിക്കുക"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ശബ്ദതിരയൽ"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ഇവരുമായി പങ്കിടുക"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s എന്നതുമായി പങ്കിടുക"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ചുരുക്കുക"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"തിരയുക"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml
deleted file mode 100644
index 1697b484a4dfadec3bd0ea1ce8dc659565b4917f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Нүүр хуудас руу шилжих"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Дээш шилжих"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Нэмэлт сонголтууд"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Дууссан"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Бүгдийг харах"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Апп сонгох"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ИДЭВХГҮЙ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ИДЭВХТЭЙ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Хайх..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Асуулгыг цэвэрлэх"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Хайх асуулга"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Хайх"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Асуулгыг илгээх"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Дуут хайлт"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Хуваалцах"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s-тай хуваалцах"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Хумих"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Хайлт"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml
deleted file mode 100644
index e69e00178252d0e40972a91755344da07bf90b66..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"मुख्‍यपृष्‍ठ नेव्‍हिगेट करा"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"वर नेव्‍हिगेट करा"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"अधिक पर्याय"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"पूर्ण झाले"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सर्व पहा"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"एक अ‍ॅप निवडा"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"बंद"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"चालू"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"शोधा…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"क्‍वेरी स्‍पष्‍ट करा"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"शोध क्वेरी"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"शोध"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"क्वेरी सबमिट करा"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"व्हॉइस शोध"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"यांच्यासह सामायिक करा"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s सह सामायिक करा"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"संक्षिप्त करा"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"शोधा"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml
deleted file mode 100644
index f9ffc5cf73f6d3e39961ba2d8032c2e460617e3c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigasi skrin utama"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigasi ke atas"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Lagi pilihan"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Selesai"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Lihat semua"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pilih apl"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"MATI"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"HIDUP"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Cari…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Kosongkan pertanyaan"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Pertanyaan carian"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Cari"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Serah pertanyaan"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Carian suara"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Kongsi dengan"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Kongsi dengan %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Runtuhkan"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Cari"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml
deleted file mode 100644
index f5e479c3f13fba7ef18b5e07a1a0c37515912d15..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"မူလနေရာကို သွားရန်"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s၊ %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s ၊ %2$s ၊ %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"အပေါ်သို့သွားရန်"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ပိုမိုရွေးချယ်စရာများ"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"ပြီးဆုံးပါပြီ"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"အားလုံးကို ကြည့်ရန်"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"အက်ပ်တစ်ခုခုကို ရွေးချယ်ပါ"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ပိတ်"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ဖွင့်"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ရှာဖွေပါ..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"ရှာစရာ အချက်အလက်များ ဖယ်ရှားရန်"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ရှာစရာ အချက်အလက်နေရာ"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ရှာဖွေရန်"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ရှာဖွေစရာ အချက်အလက်ကို ပေးပို့ရန်"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"အသံဖြင့် ရှာဖွေခြင်း"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"မျှဝေဖို့ ရွေးပါ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ကို မျှဝေပါရန်"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ခေါက်ရန်"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ရှာဖွေပါ"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"၉၉၉+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml
deleted file mode 100644
index 93d382db46dd0a004af57a9423a13254a7ea2349..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"GÃ¥ til startsiden"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s – %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s – %2$s – %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"GÃ¥ opp"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Flere alternativer"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Ferdig"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Se alle"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Velg en app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"AV"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"PÃ…"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Søk …"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Slett søket"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Søkeord"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Søk"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Utfør søket"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Talesøk"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Del med"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Del med %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skjul"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Søk"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml
deleted file mode 100644
index 881cfefbd1b77291e91517775ce4911824a0ba47..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"गृह खोज्नुहोस्"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"माथि खोज्नुहोस्"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"थप विकल्पहरू"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"सम्पन्न भयो"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सबै हेर्नुहोस्"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"एउटा अनुप्रयोग छान्नुहोस्"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"निष्क्रिय पार्नुहोस्"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"सक्रिय गर्नुहोस्"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"खोज्नुहोस्..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"प्रश्‍न हटाउनुहोस्"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"जिज्ञासाको खोज गर्नुहोस्"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"खोज्नुहोस्"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"जिज्ञासा पेस गर्नुहोस्"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"भ्वाइस खोजी"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"साझेदारी गर्नुहोस्..."</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s सँग साझेदारी गर्नुहोस्"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"संक्षिप्त पार्नुहोस्"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"खोज्नुहोस्"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"९९९+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-night-v8/values-night-v8.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-night-v8/values-night-v8.xml
deleted file mode 100644
index 17a2110633be8fc0915391de67334c53df8f294c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-night-v8/values-night-v8.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat"/>
-    <style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat"/>
-    <style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Dialog"/>
-    <style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Dialog.Alert"/>
-    <style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Dialog.MinWidth"/>
-    <style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.DialogWhenLarge"/>
-    <style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.NoActionBar"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml
deleted file mode 100644
index 2992381478c2db62fbc6e353ee4a01ba9243c847..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeren naar startpositie"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Omhoog navigeren"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Meer opties"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Gereed"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Alles weergeven"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Een app selecteren"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"UIT"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"AAN"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Zoeken…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Zoekopdracht wissen"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Zoekopdracht"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Zoeken"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Zoekopdracht verzenden"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Gesproken zoekopdracht"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Delen met"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Delen met %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Samenvouwen"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Zoeken"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml
deleted file mode 100644
index 9e62b2c354833d3072cf66f819f94b385ad78eb2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ਹੋਰ ਚੋਣਾਂ"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"ਹੋ ਗਿਆ"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ਸਭ ਦੇਖੋ"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ਇੱਕ ਐਪ ਚੁਣੋ"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ਬੰਦ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ਤੇ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ਖੋਜ…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"ਸਵਾਲ ਹਟਾਓ"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ਸਵਾਲ ਖੋਜੋ"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ਖੋਜੋ"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ਵੌਇਸ ਖੋਜ"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ਇਸ ਨਾਲ ਸਾਂਝਾ ਕਰੋ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ਨਾਲ ਸਾਂਝਾ ਕਰੋ"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ਨਸ਼ਟ ਕਰੋ"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ਖੋਜ"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml
deleted file mode 100644
index 92d51ef3a61ce22277fb34a03aa51931f7a142d6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Przejdź do strony głównej"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Przejdź wyżej"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Więcej opcji"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Gotowe"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobacz wszystkie"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Wybierz aplikacjÄ™"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"WYŁ."</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"WŁ."</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Szukaj…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Wyczyść zapytanie"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Wyszukiwane hasło"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Szukaj"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Wyślij zapytanie"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Wyszukiwanie głosowe"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Udostępnij dla"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Udostępnij dla %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Zwiń"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Szukaj"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-port/values-port.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-port/values-port.xml
deleted file mode 100644
index 7a925dc76dd9a44fcb871d2a7ed379f9c50b5a3d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-port/values-port.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <bool name="abc_action_bar_embed_tabs">false</bool>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml
deleted file mode 100644
index fd255af3c346989c3d3339a4045a7c64f18d4ce5..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar para a página inicial"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar para cima"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mais opções"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Concluído"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver tudo"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Selecione um app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DESATIVAR"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ATIVAR"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Pesquisar..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Limpar consulta"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de pesquisa"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Pesquisar"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Pesquisa por voz"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartilhar com"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartilhar com %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Recolher"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Pesquisar"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml
deleted file mode 100644
index f5d2be7ae219b26dde5bc5c004071e0c7fecfc83..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar para a página inicial"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar para cima"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mais opções"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Concluído"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver tudo"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Escolher uma aplicação"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DESATIVADO"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ATIVADO"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Pesquisar..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Limpar consulta"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de pesquisa"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Pesquisar"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Pesquisa por voz"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partilhar com"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partilhar com %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Reduzir"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Pesquisar"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml
deleted file mode 100644
index fd255af3c346989c3d3339a4045a7c64f18d4ce5..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar para a página inicial"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar para cima"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mais opções"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Concluído"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver tudo"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Selecione um app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DESATIVAR"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ATIVAR"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Pesquisar..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Limpar consulta"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de pesquisa"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Pesquisar"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Pesquisa por voz"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartilhar com"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartilhar com %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Recolher"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Pesquisar"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml
deleted file mode 100644
index fe541257dc4c39b0053e090c1312806fa8ef2f98..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigați la ecranul de pornire"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigați în sus"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mai multe opțiuni"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Terminat"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Afișați-le pe toate"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Alegeți o aplicație"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DEZACTIVAÈšI"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ACTIVAÈšI"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Căutați…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ștergeți interogarea"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Interogare de căutare"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Căutați"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Trimiteți interogarea"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Căutare vocală"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Trimiteți la"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Trimiteți la %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Restrângeți"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Căutați"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"˃999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml
deleted file mode 100644
index 029a403ed0afb41d9f9fe8f52de5ddfd246e583e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Перейти на главный экран"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Перейти вверх"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Другие параметры"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Показать все"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Выбрать приложение"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ОТКЛ."</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ВКЛ."</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Поиск"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Удалить запрос"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Поисковый запрос"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Поиск"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Отправить запрос"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Голосовой поиск"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Открыть доступ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Открыть доступ пользователю %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Свернуть"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Поиск"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml
deleted file mode 100644
index ecd85c3e55d20ead60332d25deae2c11136e714e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ගෙදරට සංචාලනය කරන්න"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ඉහලට සංචාලනය කරන්න"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"තවත් විකල්ප"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"අවසාන වූ"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"සියල්ල බලන්න"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"යෙදුමක් තෝරන්න"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ක්‍රියාවිරහිතයි"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ක්‍රියාත්මකයි"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"සොයන්න..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"විමසුම හිස් කරන්න"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"සෙවුම් විමසුම"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"සෙවීම"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"විමසුම යොමු කරන්න"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"හඬ සෙවීම"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"සමඟ බෙදාගන්න"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s සමඟ බෙදාගන්න"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"හකුළන්න"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"සොයන්න"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml
deleted file mode 100644
index 81cfaaba0442c2aadf85366bb21c5185de9d19be..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Prejsť na plochu"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Prejsť hore"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Ďalšie možnosti"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Hotovo"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobraziť všetko"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Zvoľte aplikáciu"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"VYP."</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ZAP."</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Vyhľadať…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Vymazať dopyt"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Vyhľadávací dopyt"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Hľadať"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Odoslať dopyt"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Hlasové vyhľadávanie"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Zdieľať pomocou"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Zdieľať pomocou %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Zbaliť"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Vyhľadávanie"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml
deleted file mode 100644
index a9267347adb9c3b6485ae23e7f7390ff3e113566..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Krmarjenje domov"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Krmarjenje navzgor"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Več možnosti"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Končano"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Pokaži vse"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Izbira aplikacije"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"IZKLOPLJENO"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"VKLOPLJENO"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Iskanje …"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Izbris poizvedbe"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Iskalna poizvedba"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Iskanje"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošiljanje poizvedbe"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovno iskanje"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deljenje z"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deljenje z:"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Strni"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Iskanje"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml
deleted file mode 100644
index 0dc40eae4aa708ef4dc66746f50db0d9931400ac..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Orientohu për në shtëpi"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Ngjitu lart"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Opsione të tjera"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"U krye!"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Shikoji të gjitha"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Zgjidh një aplikacion"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"JOAKTIV"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"AKTIV"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Kërko..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Pastro pyetjen"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Kërko pyetjen"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Kërko"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Dërgo pyetjen"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Kërkim me zë"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Shpërnda publikisht me"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Shpërnda publikisht me %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Shpalos"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Kërko"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml
deleted file mode 100644
index 548d4722c20c7236e60d6f7ace636032b2954036..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Одлазак на Почетну"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Кретање нагоре"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Још опција"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Прикажи све"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Избор апликације"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ИСКЉУЧИ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"УКЉУЧИ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Претражите..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Брисање упита"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Упит за претрагу"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Претрага"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Слање упита"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласовна претрага"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Дели са"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Дели са апликацијом %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Скупи"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Претражи"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml
deleted file mode 100644
index 6c8500ce78a9eff2f24e9a22e21034728b8f8ade..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Visa startsidan"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigera uppåt"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Fler alternativ"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Klart"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Visa alla"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Välj en app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"AV"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"PÃ…"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Sök …"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ta bort frågan"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Sökfråga"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Sök"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Skicka fråga"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Röstsökning"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Dela med"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Dela med %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Komprimera"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Sök"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml
deleted file mode 100644
index cc59b94b9b2a6c2da64a05194be8103656efd3b0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Nenda mwanzo"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Nenda juu"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Chaguo zaidi"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Nimemaliza"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Angalia zote"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Chagua programu"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"IMEZIMWA"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"IMEWASHWA"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Tafuta…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Futa hoja"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Hoja ya utafutaji"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Tafuta"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Wasilisha hoja"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Tafuta kwa kutamka"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Shiriki na:"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Shiriki na %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Kunja"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Tafuta"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw600dp-v13/values-sw600dp-v13.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw600dp-v13/values-sw600dp-v13.xml
deleted file mode 100644
index be7c95f3d268a32e694dd5b5f4de09d11152a77e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw600dp-v13/values-sw600dp-v13.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <dimen name="abc_action_bar_content_inset_material">24dp</dimen>
-    <dimen name="abc_action_bar_content_inset_with_nav">80dp</dimen>
-    <dimen name="abc_action_bar_default_height_material">64dp</dimen>
-    <dimen name="abc_action_bar_default_padding_end_material">8dp</dimen>
-    <dimen name="abc_action_bar_default_padding_start_material">8dp</dimen>
-    <dimen name="abc_config_prefDialogWidth">580dp</dimen>
-    <dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen>
-    <dimen name="abc_text_size_title_material_toolbar">20dp</dimen>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml
deleted file mode 100644
index fd1fabfeace800dc97b54a2500f74958f53bb14a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"முகப்பிற்கு வழிசெலுத்து"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"மேலே வழிசெலுத்து"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"மேலும் விருப்பங்கள்"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"முடிந்தது"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"எல்லாம் காட்டு"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"பயன்பாட்டைத் தேர்வுசெய்க"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"முடக்கு"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"இயக்கு"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"தேடு..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"வினவலை அழி"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"தேடல் வினவல்"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"தேடு"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"வினவலைச் சமர்ப்பி"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"குரல் தேடல்"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"இதனுடன் பகிர்"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s உடன் பகிர்"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"சுருக்கு"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"தேடு"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml
deleted file mode 100644
index 7e9888d77c6c6c0be32a989a39187cef282a3fb2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"హోమ్‌కు నావిగేట్ చేయండి"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"పైకి నావిగేట్ చేయండి"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"మరిన్ని ఎంపికలు"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"పూర్తయింది"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"అన్నీ చూడండి"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"అనువర్తనాన్ని ఎంచుకోండి"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ఆఫ్ చేయి"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ఆన్ చేయి"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"శోధించు..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"ప్రశ్నను క్లియర్ చేయి"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ప్రశ్న శోధించండి"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"శోధించు"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ప్రశ్నని సమర్పించు"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"వాయిస్ శోధన"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"వీరితో భాగస్వామ్యం చేయి"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%sతో భాగస్వామ్యం చేయి"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"కుదించండి"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"శోధించు"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml
deleted file mode 100644
index 2570a3eae132169ce42e896d9773774f78830cbc..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"นำทางไปหน้าแรก"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"นำทางขึ้น"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ตัวเลือกอื่น"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"เสร็จสิ้น"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ดูทั้งหมด"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"เลือกแอป"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ปิด"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"เปิด"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ค้นหา…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"ล้างข้อความค้นหา"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ข้อความค้นหา"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ค้นหา"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ส่งข้อความค้นหา"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ค้นหาด้วยเสียง"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"แชร์กับ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"แชร์กับ %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ยุบ"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ค้นหา"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml
deleted file mode 100644
index 591cffd13256cec42f52ea65fb078625db7be5ab..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Mag-navigate patungo sa home"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Mag-navigate pataas"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Higit pang mga opsyon"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Tapos na"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tingnan lahat"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pumili ng isang app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"I-OFF"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"I-ON"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Maghanap…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"I-clear ang query"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Query sa paghahanap"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Maghanap"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Isumite ang query"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Paghahanap gamit ang boses"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Ibahagi sa/kay"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Ibahagi sa/kay %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"I-collapse"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Maghanap"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml
deleted file mode 100644
index 6fe1f8fc66bd51800dd41b0633cfdae5b8e25dd4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ana ekrana git"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yukarı git"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Diğer seçenekler"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Bitti"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tümünü göster"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Bir uygulama seçin"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"KAPAT"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"AÇ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Ara…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sorguyu temizle"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Arama sorgusu"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Ara"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Sorguyu gönder"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Sesli arama"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Åžununla paylaÅŸ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ile paylaÅŸ"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Daralt"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Ara"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml
deleted file mode 100644
index 73718ca48714d6b1079ed6e6c3b66cdbf2f5148e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Перейти на головний"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Перейти вгору"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Інші опції"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Переглянути всі"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Вибрати програму"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ВИМК."</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"УВІМК."</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Пошук…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Очистити запит"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Пошуковий запит"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Пошук"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Надіслати запит"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Голосовий пошук"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Надіслати через"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Надіслати через %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Згорнути"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Пошук"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml
deleted file mode 100644
index 2c8a2fe1801a1c9d8d4a54c92720538845f106c8..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ہوم پر نیویگیٹ کریں"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"اوپر نیویگیٹ کریں"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"مزید اختیارات"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"ہو گیا"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"سبھی دیکھیں"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ایک ایپ منتخب کریں"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"آف"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"آن"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"تلاش کریں…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"استفسار صاف کریں"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"استفسار تلاش کریں"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"تلاش کریں"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"استفسار جمع کرائیں"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"صوتی تلاش"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"اشتراک کریں مع"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏%s کے ساتھ اشتراک کریں"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"سکیڑیں"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"تلاش"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"‎999+‎"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml
deleted file mode 100644
index 644683613b899ced6c3d644eb7004ee83342a2be..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Boshiga o‘tish"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yuqoriga o‘tish"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Boshqa parametrlar"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Tayyor"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Barchasini ko‘rish"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Dastur tanlang"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"O‘CHIQ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"YONIQ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Qidirish…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"So‘rovni tozalash"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"So‘rovni izlash"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Qidirish"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"So‘rov yaratish"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Ovozli qidiruv"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Ruxsat berish"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%sga ruxsat berish"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Yig‘ish"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Qidirish"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml
deleted file mode 100644
index 35a2c7aa4b7aa6596b1512cdddc2ba86b1198c2e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml
+++ /dev/null
@@ -1,191 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Base.TextAppearance.AppCompat.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Large.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Medium.Inverse">
-        <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Small.Inverse">
-        <item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Subhead.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Title.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Dialog" parent="Base.V11.Theme.AppCompat.Dialog"/>
-    <style name="Base.Theme.AppCompat.Dialog.Alert">
-        <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Dialog.MinWidth">
-        <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V11.Theme.AppCompat.Light.Dialog"/>
-    <style name="Base.Theme.AppCompat.Light.Dialog.Alert">
-        <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Light.Dialog.MinWidth">
-        <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V11.ThemeOverlay.AppCompat.Dialog"/>
-    <style name="Base.ThemeOverlay.AppCompat.Dialog.Alert">
-        <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.V11.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog">
-        <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
-        <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="android:windowCloseOnTouchOutside">@bool/abc_config_closeDialogWhenTouchOutside</item>
-    </style>
-    <style name="Base.V11.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog">
-        <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
-        <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="android:windowCloseOnTouchOutside">@bool/abc_config_closeDialogWhenTouchOutside</item>
-    </style>
-    <style name="Base.V11.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog">
-        <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
-        <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="android:windowCloseOnTouchOutside">@bool/abc_config_closeDialogWhenTouchOutside</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Holo.ProgressBar">
-    </style>
-    <style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Holo.ProgressBar.Horizontal">
-    </style>
-    <style name="Platform.AppCompat" parent="Platform.V11.AppCompat"/>
-    <style name="Platform.AppCompat.Light" parent="Platform.V11.AppCompat.Light"/>
-    <style name="Platform.V11.AppCompat" parent="android:Theme.Holo">
-        <item name="android:windowNoTitle">true</item>
-        <item name="android:windowActionBar">false</item>
-
-        <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
-        <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
-
-        <!-- Window colors -->
-        <item name="android:colorForeground">@color/foreground_material_dark</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
-        <item name="android:colorBackground">@color/background_material_dark</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
-        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item>
-        <item name="android:backgroundDimAmount">0.6</item>
-        <item name="android:windowBackground">@color/background_material_dark</item>
-
-        <!-- Text colors -->
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
-        <item name="android:textColorHighlightInverse">@color/highlighted_text_material_light</item>
-        <item name="android:textColorLink">?attr/colorAccent</item>
-        <item name="android:textColorLinkInverse">?attr/colorAccent</item>
-        <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
-
-        <!-- Text styles -->
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
-        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
-        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
-        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
-        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
-        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
-
-        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
-        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
-
-        <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
-        <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
-        <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
-
-        <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_dark</item>
-        <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_dark</item>
-        <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_dark</item>
-    </style>
-    <style name="Platform.V11.AppCompat.Light" parent="android:Theme.Holo.Light">
-        <item name="android:windowNoTitle">true</item>
-        <item name="android:windowActionBar">false</item>
-
-        <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
-        <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
-
-        <!-- Window colors -->
-        <item name="android:colorForeground">@color/foreground_material_light</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
-        <item name="android:colorBackground">@color/background_material_light</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
-        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item>
-        <item name="android:backgroundDimAmount">0.6</item>
-        <item name="android:windowBackground">@color/background_material_light</item>
-
-        <!-- Text colors -->
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
-        <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
-        <item name="android:textColorHighlightInverse">@color/highlighted_text_material_dark</item>
-        <item name="android:textColorLink">?attr/colorAccent</item>
-        <item name="android:textColorLinkInverse">?attr/colorAccent</item>
-        <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
-
-        <!-- Text styles -->
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
-        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
-        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
-        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
-        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
-        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
-
-        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
-        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
-
-        <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
-        <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
-        <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
-
-        <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_light</item>
-        <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_light</item>
-        <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_light</item>
-    </style>
-    <style name="Platform.Widget.AppCompat.Spinner" parent="android:Widget.Holo.Spinner"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v12/values-v12.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v12/values-v12.xml
deleted file mode 100644
index 85e241664c2d9e4bd6b3698e4357d44f4ca22ff2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v12/values-v12.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Base.V12.Widget.AppCompat.AutoCompleteTextView" parent="Base.V7.Widget.AppCompat.AutoCompleteTextView">
-        <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
-    </style>
-    <style name="Base.V12.Widget.AppCompat.EditText" parent="Base.V7.Widget.AppCompat.EditText">
-        <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="Base.V12.Widget.AppCompat.AutoCompleteTextView"/>
-    <style name="Base.Widget.AppCompat.EditText" parent="Base.V12.Widget.AppCompat.EditText"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v13/values-v13.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v13/values-v13.xml
deleted file mode 100644
index 74d14088eab2b274cb9441d196b922994435553f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v13/values-v13.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <bool name="abc_allow_stacked_button_bar">false</bool>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v14/values-v14.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v14/values-v14.xml
deleted file mode 100644
index b1633f081d4febb0e25ba6e7ddc936e41923c578..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v14/values-v14.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Base.TextAppearance.AppCompat.Button">
-        <item name="android:textSize">@dimen/abc_text_size_button_material</item>
-        <item name="android:textAllCaps">true</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Platform.AppCompat" parent="Platform.V14.AppCompat"/>
-    <style name="Platform.AppCompat.Light" parent="Platform.V14.AppCompat.Light"/>
-    <style name="Platform.V14.AppCompat" parent="Platform.V11.AppCompat">
-        <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
-
-        <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
-        <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
-    </style>
-    <style name="Platform.V14.AppCompat.Light" parent="Platform.V11.AppCompat.Light">
-        <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
-
-        <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
-        <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification" parent="@android:style/TextAppearance.StatusBar.EventContent"/>
-    <style name="TextAppearance.AppCompat.Notification.Title" parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/>
-    <style name="TextAppearance.StatusBar.EventContent" parent="@android:style/TextAppearance.StatusBar.EventContent"/>
-    <style name="TextAppearance.StatusBar.EventContent.Info"/>
-    <style name="TextAppearance.StatusBar.EventContent.Line2">
-        <item name="android:textSize">@dimen/notification_subtext_size</item>
-    </style>
-    <style name="TextAppearance.StatusBar.EventContent.Time"/>
-    <style name="TextAppearance.StatusBar.EventContent.Title" parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v16/values-v16.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v16/values-v16.xml
deleted file mode 100644
index 2e02d6922c4ce9689810512486e24ba3c471ddfa..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v16/values-v16.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <dimen name="notification_right_side_padding_top">4dp</dimen>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml
deleted file mode 100644
index f9f23d13793c5704974e4b66096eabe82670a2f0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
-        <item name="android:textAlignment">viewStart</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
-        <item name="android:layout_gravity">center_vertical|start</item>
-        <item name="android:paddingEnd">8dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
-        <item name="android:layout_marginEnd">8dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
-        <item name="android:paddingEnd">16dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
-        <item name="android:layout_marginStart">16dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
-        <item name="android:layout_alignParentStart">true</item>
-        <item name="android:textAlignment">viewStart</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
-        <item name="android:paddingStart">@dimen/abc_dropdownitem_text_padding_left</item>
-        <item name="android:paddingEnd">4dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
-        <item name="android:layout_alignParentStart">true</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
-        <item name="android:layout_toStartOf">@id/edit_query</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
-        <item name="android:layout_alignParentEnd">true</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
-        <item name="android:layout_toStartOf">@android:id/icon2</item>
-        <item name="android:layout_toEndOf">@android:id/icon1</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
-        <item name="android:layout_marginStart">@dimen/abc_dropdownitem_text_padding_left</item>
-    </style>
-    <style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget">
-        <item name="android:paddingStart">12dp</item>
-        <item name="android:paddingEnd">12dp</item>
-    </style>
-    <style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton">
-        <item name="android:paddingStart">@dimen/abc_action_bar_overflow_padding_start_material</item>
-        <item name="android:paddingEnd">@dimen/abc_action_bar_overflow_padding_end_material</item>
-    </style>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v18/values-v18.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v18/values-v18.xml
deleted file mode 100644
index 7dad77f9e2733e7725120ce7201d2728040504a2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v18/values-v18.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <dimen name="abc_switch_padding">0px</dimen>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml
deleted file mode 100644
index 20d055200bddc1e8323864c22373da95a7dfccb7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml
+++ /dev/null
@@ -1,288 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <color name="notification_action_color_filter">@color/secondary_text_default_material_light</color>
-    <dimen name="notification_content_margin_start">0dp</dimen>
-    <dimen name="notification_main_column_padding_top">0dp</dimen>
-    <dimen name="notification_media_narrow_margin">12dp</dimen>
-    <style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance.Material"/>
-    <style name="Base.TextAppearance.AppCompat.Body1" parent="android:TextAppearance.Material.Body1"/>
-    <style name="Base.TextAppearance.AppCompat.Body2" parent="android:TextAppearance.Material.Body2"/>
-    <style name="Base.TextAppearance.AppCompat.Button" parent="android:TextAppearance.Material.Button"/>
-    <style name="Base.TextAppearance.AppCompat.Caption" parent="android:TextAppearance.Material.Caption"/>
-    <style name="Base.TextAppearance.AppCompat.Display1" parent="android:TextAppearance.Material.Display1"/>
-    <style name="Base.TextAppearance.AppCompat.Display2" parent="android:TextAppearance.Material.Display2"/>
-    <style name="Base.TextAppearance.AppCompat.Display3" parent="android:TextAppearance.Material.Display3"/>
-    <style name="Base.TextAppearance.AppCompat.Display4" parent="android:TextAppearance.Material.Display4"/>
-    <style name="Base.TextAppearance.AppCompat.Headline" parent="android:TextAppearance.Material.Headline"/>
-    <style name="Base.TextAppearance.AppCompat.Inverse" parent="android:TextAppearance.Material.Inverse"/>
-    <style name="Base.TextAppearance.AppCompat.Large" parent="android:TextAppearance.Material.Large"/>
-    <style name="Base.TextAppearance.AppCompat.Large.Inverse" parent="android:TextAppearance.Material.Large.Inverse"/>
-    <style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="android:TextAppearance.Material.Widget.PopupMenu.Large">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="android:TextAppearance.Material.Widget.PopupMenu.Small">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Medium" parent="android:TextAppearance.Material.Medium"/>
-    <style name="Base.TextAppearance.AppCompat.Medium.Inverse" parent="android:TextAppearance.Material.Medium.Inverse"/>
-    <style name="Base.TextAppearance.AppCompat.Menu" parent="android:TextAppearance.Material.Menu"/>
-    <style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle" parent="android:TextAppearance.Material.SearchResult.Subtitle">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.SearchResult.Title" parent="android:TextAppearance.Material.SearchResult.Title">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Small" parent="android:TextAppearance.Material.Small"/>
-    <style name="Base.TextAppearance.AppCompat.Small.Inverse" parent="android:TextAppearance.Material.Small.Inverse"/>
-    <style name="Base.TextAppearance.AppCompat.Subhead" parent="android:TextAppearance.Material.Subhead"/>
-    <style name="Base.TextAppearance.AppCompat.Title" parent="android:TextAppearance.Material.Title"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle.Inverse">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="android:TextAppearance.Material.Widget.ActionBar.Title">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="android:TextAppearance.Material.Widget.ActionBar.Title.Inverse">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="android:TextAppearance.Material.Widget.ActionMode.Subtitle">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="android:TextAppearance.Material.Widget.ActionMode.Title">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button" parent="android:TextAppearance.Material.Widget.Button"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat">
-        <item name="android:fontFamily">@string/abc_font_family_title_material</item>
-        <item name="android:textSize">@dimen/abc_text_size_menu_header_material</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="android:TextAppearance.Material.Widget.PopupMenu.Large">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="android:TextAppearance.Material.Widget.PopupMenu.Small">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="android:TextAppearance.Material.Button"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="android:TextAppearance.Material.Widget.TextView.SpinnerItem"/>
-    <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle">
-    </style>
-    <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="android:TextAppearance.Material.Widget.ActionBar.Title">
-    </style>
-    <style name="Base.Theme.AppCompat" parent="Base.V21.Theme.AppCompat"/>
-    <style name="Base.Theme.AppCompat.Dialog" parent="Base.V21.Theme.AppCompat.Dialog"/>
-    <style name="Base.Theme.AppCompat.Light" parent="Base.V21.Theme.AppCompat.Light"/>
-    <style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V21.Theme.AppCompat.Light.Dialog"/>
-    <style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V21.ThemeOverlay.AppCompat.Dialog"/>
-    <style name="Base.V21.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
-        <!-- Action Bar styling attributes -->
-        <item name="actionBarSize">?android:attr/actionBarSize</item>
-        <item name="actionBarDivider">?android:attr/actionBarDivider</item>
-        <item name="actionBarItemBackground">@drawable/abc_action_bar_item_background_material</item>
-        <item name="actionButtonStyle">?android:attr/actionButtonStyle</item>
-        <item name="actionModeBackground">?android:attr/actionModeBackground</item>
-        <item name="actionModeCloseDrawable">?android:attr/actionModeCloseDrawable</item>
-        <item name="actionOverflowButtonStyle">?android:attr/actionOverflowButtonStyle</item>
-        <item name="homeAsUpIndicator">?android:attr/homeAsUpIndicator</item>
-
-        <!-- For PopupMenu -->
-        <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item>
-        <item name="textAppearanceLargePopupMenu">?android:attr/textAppearanceLargePopupMenu</item>
-        <item name="textAppearanceSmallPopupMenu">?android:attr/textAppearanceSmallPopupMenu</item>
-
-        <!-- General view attributes -->
-        <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
-        <item name="selectableItemBackgroundBorderless">?android:attr/selectableItemBackgroundBorderless</item>
-        <item name="borderlessButtonStyle">?android:borderlessButtonStyle</item>
-        <item name="dividerHorizontal">?android:attr/dividerHorizontal</item>
-        <item name="dividerVertical">?android:attr/dividerVertical</item>
-        <item name="editTextBackground">@drawable/abc_edit_text_material</item>
-        <item name="editTextColor">?android:attr/editTextColor</item>
-        <item name="listChoiceBackgroundIndicator">?android:attr/listChoiceBackgroundIndicator</item>
-
-        <!-- Copy the platform default styles for the AppCompat widgets -->
-        <item name="buttonStyle">?android:attr/buttonStyle</item>
-        <item name="buttonStyleSmall">?android:attr/buttonStyleSmall</item>
-        <item name="checkboxStyle">?android:attr/checkboxStyle</item>
-        <item name="checkedTextViewStyle">?android:attr/checkedTextViewStyle</item>
-        <item name="radioButtonStyle">?android:attr/radioButtonStyle</item>
-        <item name="ratingBarStyle">?android:attr/ratingBarStyle</item>
-        <item name="spinnerStyle">?android:attr/spinnerStyle</item>
-
-        <!-- Copy our color theme attributes to the framework -->
-        <item name="android:colorPrimary">?attr/colorPrimary</item>
-        <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
-        <item name="android:colorAccent">?attr/colorAccent</item>
-        <item name="android:colorControlNormal">?attr/colorControlNormal</item>
-        <item name="android:colorControlActivated">?attr/colorControlActivated</item>
-        <item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
-        <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
-    </style>
-    <style name="Base.V21.Theme.AppCompat.Dialog" parent="Base.V11.Theme.AppCompat.Dialog">
-        <item name="android:windowElevation">@dimen/abc_floating_window_z</item>
-    </style>
-    <style name="Base.V21.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
-        <!-- Action Bar styling attributes -->
-        <item name="actionBarSize">?android:attr/actionBarSize</item>
-        <item name="actionBarDivider">?android:attr/actionBarDivider</item>
-        <item name="actionBarItemBackground">@drawable/abc_action_bar_item_background_material</item>
-        <item name="actionButtonStyle">?android:attr/actionButtonStyle</item>
-        <item name="actionModeBackground">?android:attr/actionModeBackground</item>
-        <item name="actionModeCloseDrawable">?android:attr/actionModeCloseDrawable</item>
-        <item name="actionOverflowButtonStyle">?android:attr/actionOverflowButtonStyle</item>
-        <item name="homeAsUpIndicator">?android:attr/homeAsUpIndicator</item>
-
-        <!-- For PopupMenu -->
-        <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item>
-        <item name="textAppearanceLargePopupMenu">?android:attr/textAppearanceLargePopupMenu</item>
-        <item name="textAppearanceSmallPopupMenu">?android:attr/textAppearanceSmallPopupMenu</item>
-
-        <!-- General view attributes -->
-        <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
-        <item name="selectableItemBackgroundBorderless">?android:attr/selectableItemBackgroundBorderless</item>
-        <item name="borderlessButtonStyle">?android:borderlessButtonStyle</item>
-        <item name="dividerHorizontal">?android:attr/dividerHorizontal</item>
-        <item name="dividerVertical">?android:attr/dividerVertical</item>
-        <item name="editTextBackground">@drawable/abc_edit_text_material</item>
-        <item name="editTextColor">?android:attr/editTextColor</item>
-        <item name="listChoiceBackgroundIndicator">?android:attr/listChoiceBackgroundIndicator</item>
-
-        <!-- Copy the platform default styles for the AppCompat widgets -->
-        <item name="buttonStyle">?android:attr/buttonStyle</item>
-        <item name="buttonStyleSmall">?android:attr/buttonStyleSmall</item>
-        <item name="checkboxStyle">?android:attr/checkboxStyle</item>
-        <item name="checkedTextViewStyle">?android:attr/checkedTextViewStyle</item>
-        <item name="radioButtonStyle">?android:attr/radioButtonStyle</item>
-        <item name="ratingBarStyle">?android:attr/ratingBarStyle</item>
-        <item name="spinnerStyle">?android:attr/spinnerStyle</item>
-
-        <!-- Copy our color theme attributes to the framework -->
-        <item name="android:colorPrimary">?attr/colorPrimary</item>
-        <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
-        <item name="android:colorAccent">?attr/colorAccent</item>
-        <item name="android:colorControlNormal">?attr/colorControlNormal</item>
-        <item name="android:colorControlActivated">?attr/colorControlActivated</item>
-        <item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
-        <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
-    </style>
-    <style name="Base.V21.Theme.AppCompat.Light.Dialog" parent="Base.V11.Theme.AppCompat.Light.Dialog">
-        <item name="android:windowElevation">@dimen/abc_floating_window_z</item>
-    </style>
-    <style name="Base.V21.ThemeOverlay.AppCompat.Dialog" parent="Base.V11.ThemeOverlay.AppCompat.Dialog">
-        <item name="android:windowElevation">@dimen/abc_floating_window_z</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar.TabText" parent="android:Widget.Material.ActionBar.TabText">
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar.TabView" parent="android:Widget.Material.ActionBar.TabView">
-    </style>
-    <style name="Base.Widget.AppCompat.ActionButton" parent="android:Widget.Material.ActionButton">
-    </style>
-    <style name="Base.Widget.AppCompat.ActionButton.CloseMode" parent="android:Widget.Material.ActionButton.CloseMode">
-        <item name="android:minWidth">56dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="android:Widget.Material.ActionButton.Overflow">
-    </style>
-    <style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.Material.AutoCompleteTextView">
-        <item name="android:background">?attr/editTextBackground</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button" parent="android:Widget.Material.Button"/>
-    <style name="Base.Widget.AppCompat.Button.Borderless" parent="android:Widget.Material.Button.Borderless"/>
-    <style name="Base.Widget.AppCompat.Button.Borderless.Colored" parent="android:Widget.Material.Button.Borderless.Colored">
-        <item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.Small" parent="android:Widget.Material.Button.Small"/>
-    <style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget.Material.ButtonBar"/>
-    <style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.Material.CompoundButton.CheckBox"/>
-    <style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.Material.CompoundButton.RadioButton"/>
-    <style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="android:Widget.Material.DropDownItem.Spinner"/>
-    <style name="Base.Widget.AppCompat.EditText" parent="android:Widget.Material.EditText">
-        <item name="android:background">?attr/editTextBackground</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.Material.ImageButton"/>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="android:Widget.Material.Light.ActionBar.TabText">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="android:Widget.Material.Light.ActionBar.TabText">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="android:Widget.Material.Light.ActionBar.TabView">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.PopupMenu" parent="android:Widget.Material.Light.PopupMenu">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
-        <item name="android:dropDownHorizontalOffset">-4dip</item>
-        <item name="android:overlapAnchor">true</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListPopupWindow" parent="android:Widget.Material.ListPopupWindow">
-    </style>
-    <style name="Base.Widget.AppCompat.ListView" parent="android:Widget.Material.ListView"/>
-    <style name="Base.Widget.AppCompat.ListView.DropDown" parent="android:Widget.Material.ListView.DropDown"/>
-    <style name="Base.Widget.AppCompat.ListView.Menu"/>
-    <style name="Base.Widget.AppCompat.PopupMenu" parent="android:Widget.Material.PopupMenu">
-    </style>
-    <style name="Base.Widget.AppCompat.PopupMenu.Overflow">
-        <item name="android:dropDownHorizontalOffset">-4dip</item>
-        <item name="android:overlapAnchor">true</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Material.ProgressBar">
-    </style>
-    <style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Material.ProgressBar.Horizontal">
-    </style>
-    <style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.Material.RatingBar"/>
-    <style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget.Material.SeekBar"/>
-    <style name="Base.Widget.AppCompat.Spinner" parent="android:Widget.Material.Spinner"/>
-    <style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.Material.TextView.SpinnerItem"/>
-    <style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget.Material.Toolbar.Button.Navigation">
-    </style>
-    <style name="Platform.AppCompat" parent="Platform.V21.AppCompat"/>
-    <style name="Platform.AppCompat.Light" parent="Platform.V21.AppCompat.Light"/>
-    <style name="Platform.ThemeOverlay.AppCompat" parent="">
-        <!-- Copy our color theme attributes to the framework -->
-        <item name="android:colorPrimary">?attr/colorPrimary</item>
-        <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
-        <item name="android:colorAccent">?attr/colorAccent</item>
-        <item name="android:colorControlNormal">?attr/colorControlNormal</item>
-        <item name="android:colorControlActivated">?attr/colorControlActivated</item>
-        <item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
-        <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
-    </style>
-    <style name="Platform.ThemeOverlay.AppCompat.Dark"/>
-    <style name="Platform.ThemeOverlay.AppCompat.Light"/>
-    <style name="Platform.V21.AppCompat" parent="android:Theme.Material.NoActionBar">
-        <!-- Update link colors pre-v23 -->
-        <item name="android:textColorLink">?android:attr/colorAccent</item>
-        <item name="android:textColorLinkInverse">?android:attr/colorAccent</item>
-
-        <!-- Update hint colors pre-v25 -->
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
-
-        <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
-        <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
-    </style>
-    <style name="Platform.V21.AppCompat.Light" parent="android:Theme.Material.Light.NoActionBar">
-        <!-- Update link colors pre-v23 -->
-        <item name="android:textColorLink">?android:attr/colorAccent</item>
-        <item name="android:textColorLinkInverse">?android:attr/colorAccent</item>
-
-        <!-- Update hint colors pre-v25 -->
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
-
-        <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
-        <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification" parent="@android:style/TextAppearance.Material.Notification"/>
-    <style name="TextAppearance.AppCompat.Notification.Info" parent="@android:style/TextAppearance.Material.Notification.Info"/>
-    <style name="TextAppearance.AppCompat.Notification.Info.Media">
-        <item name="android:textColor">@color/secondary_text_default_material_dark</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Media">
-        <item name="android:textColor">@color/secondary_text_default_material_dark</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Time" parent="@android:style/TextAppearance.Material.Notification.Time"/>
-    <style name="TextAppearance.AppCompat.Notification.Time.Media">
-        <item name="android:textColor">@color/secondary_text_default_material_dark</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Title" parent="@android:style/TextAppearance.Material.Notification.Title"/>
-    <style name="TextAppearance.AppCompat.Notification.Title.Media">
-        <item name="android:textColor">@color/primary_text_default_material_dark</item>
-    </style>
-    <style name="Widget.AppCompat.NotificationActionContainer" parent="">
-        <item name="android:background">@drawable/notification_action_background</item>
-    </style>
-    <style name="Widget.AppCompat.NotificationActionText" parent="">
-        <item name="android:textAppearance">?android:attr/textAppearanceButton</item>
-        <item name="android:textColor">@color/secondary_text_default_material_light</item>
-        <item name="android:textSize">@dimen/notification_action_text_size</item>
-    </style>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v22/values-v22.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v22/values-v22.xml
deleted file mode 100644
index d4a514a5fb6ac2cd17eeb996c4714307b1761750..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v22/values-v22.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Base.Theme.AppCompat" parent="Base.V22.Theme.AppCompat"/>
-    <style name="Base.Theme.AppCompat.Light" parent="Base.V22.Theme.AppCompat.Light"/>
-    <style name="Base.V22.Theme.AppCompat" parent="Base.V21.Theme.AppCompat">
-        <item name="actionModeShareDrawable">?android:attr/actionModeShareDrawable</item>
-        <!-- We use the framework provided edit text background on 22+ -->
-        <item name="editTextBackground">?android:attr/editTextBackground</item>
-    </style>
-    <style name="Base.V22.Theme.AppCompat.Light" parent="Base.V21.Theme.AppCompat.Light">
-        <item name="actionModeShareDrawable">?android:attr/actionModeShareDrawable</item>
-        <!-- We use the framework provided edit text background on 22+ -->
-        <item name="editTextBackground">?android:attr/editTextBackground</item>
-    </style>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v23/values-v23.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v23/values-v23.xml
deleted file mode 100644
index d807aaeeb4544c07784154e6af50ffcb48fcfc77..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v23/values-v23.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="android:TextAppearance.Material.Widget.ActionBar.Menu"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="android:TextAppearance.Material.Widget.Button.Inverse"/>
-    <style name="Base.Theme.AppCompat" parent="Base.V23.Theme.AppCompat"/>
-    <style name="Base.Theme.AppCompat.Light" parent="Base.V23.Theme.AppCompat.Light"/>
-    <style name="Base.V23.Theme.AppCompat" parent="Base.V22.Theme.AppCompat">
-        <!-- We can use the platform styles on API 23+ -->
-        <item name="ratingBarStyleIndicator">?android:attr/ratingBarStyleIndicator</item>
-        <item name="ratingBarStyleSmall">?android:attr/ratingBarStyleSmall</item>
-
-        <!-- We can use the platform drawable on v23+ -->
-        <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item>
-        <!-- We can use the platform styles on v23+ -->
-        <item name="actionMenuTextColor">?android:attr/actionMenuTextColor</item>
-        <item name="actionMenuTextAppearance">?android:attr/actionMenuTextAppearance</item>
-
-        <item name="controlBackground">@drawable/abc_control_background_material</item>
-    </style>
-    <style name="Base.V23.Theme.AppCompat.Light" parent="Base.V22.Theme.AppCompat.Light">
-        <!-- We can use the platform styles on API 23+ -->
-        <item name="ratingBarStyleIndicator">?android:attr/ratingBarStyleIndicator</item>
-        <item name="ratingBarStyleSmall">?android:attr/ratingBarStyleSmall</item>
-
-        <!-- We can use the platform drawable on v23+ -->
-        <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item>
-        <!-- We can use the platform styles on v23+ -->
-        <item name="actionMenuTextColor">?android:attr/actionMenuTextColor</item>
-        <item name="actionMenuTextAppearance">?android:attr/actionMenuTextAppearance</item>
-
-        <item name="controlBackground">@drawable/abc_control_background_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.Borderless.Colored" parent="android:Widget.Material.Button.Borderless.Colored"/>
-    <style name="Base.Widget.AppCompat.Button.Colored" parent="android:Widget.Material.Button.Colored"/>
-    <style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.Material.RatingBar.Indicator"/>
-    <style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.Material.RatingBar.Small"/>
-    <style name="Base.Widget.AppCompat.Spinner.Underlined" parent="android:Widget.Material.Spinner.Underlined"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v24/values-v24.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v24/values-v24.xml
deleted file mode 100644
index b41af536526ccdb48aa2c8dfa740afe3e459f756..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v24/values-v24.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="android:TextAppearance.Material.Widget.Button.Borderless.Colored"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button.Colored" parent="android:TextAppearance.Material.Widget.Button.Colored"/>
-    <style name="TextAppearance.AppCompat.Notification.Info.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Time.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Title.Media"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v25/values-v25.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v25/values-v25.xml
deleted file mode 100644
index 483ae0c4691a442c113f1acbfb63ab6962a5f756..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v25/values-v25.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Platform.AppCompat" parent="Platform.V25.AppCompat"/>
-    <style name="Platform.AppCompat.Light" parent="Platform.V25.AppCompat.Light"/>
-    <style name="Platform.V25.AppCompat" parent="android:Theme.Material.NoActionBar">
-    </style>
-    <style name="Platform.V25.AppCompat.Light" parent="android:Theme.Material.Light.NoActionBar">
-    </style>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml
deleted file mode 100644
index 5bf19364c828eeb8ceef41ed7b3358d4e0be0efd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Điều hướng về trang chủ"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Điều hướng lên trên"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Thêm tùy chọn"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Xong"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Xem tất cả"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Chọn một ứng dụng"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"TẮT"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"BẬT"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Tìm kiếm…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Xóa truy vấn"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Tìm kiếm truy vấn"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Tìm kiếm"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Gửi truy vấn"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Tìm kiếm bằng giọng nói"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Chia sẻ với"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Chia sẻ với %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Thu gọn"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Tìm kiếm"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-xlarge-v4/values-xlarge-v4.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-xlarge-v4/values-xlarge-v4.xml
deleted file mode 100644
index b499d2cf3729a0b92b869da97322e3cb7fc544c2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-xlarge-v4/values-xlarge-v4.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <item name="abc_dialog_fixed_height_major" type="dimen">60%</item>
-    <item name="abc_dialog_fixed_height_minor" type="dimen">90%</item>
-    <item name="abc_dialog_fixed_width_major" type="dimen">50%</item>
-    <item name="abc_dialog_fixed_width_minor" type="dimen">70%</item>
-    <item name="abc_dialog_min_width_major" type="dimen">45%</item>
-    <item name="abc_dialog_min_width_minor" type="dimen">72%</item>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml
deleted file mode 100644
index 3c76829365c38e3b01355f3db022d8e6432747c7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"转到主屏幕"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s:%2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s - %2$s:%3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"转到上一层级"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"更多选项"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"完成"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"查看全部"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"选择应用"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"关闭"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"开启"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"搜索…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"清除查询"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"搜索查询"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"搜索"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"提交查询"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"语音搜索"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"分享方式"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"通过%s分享"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"收起"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"搜索"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml
deleted file mode 100644
index ce0a0d37c9dbeea7b48ee0bbffabafc28aa98f95..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"瀏覽主頁"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s:%2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s (%2$s):%3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"向上瀏覽"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"更多選項"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"完成"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"顯示全部"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"選擇應用程式"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"關閉"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"é–‹å•Ÿ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"搜尋…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"清除查詢"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"搜尋查詢"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"搜尋"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"提交查詢"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"語音搜尋"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"分享對象"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"與「%s」分享"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"收合"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"搜尋"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999 +"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml
deleted file mode 100644
index 4d7b05bdd723c613b28abfb09c89c0ac1b81ae26..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"瀏覽首頁"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s:%2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s - %2$s:%3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"向上瀏覽"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"更多選項"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"完成"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"查看全部"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"選擇應用程式"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"關閉"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"é–‹å•Ÿ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"搜尋…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"清除查詢"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"搜尋查詢"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"搜尋"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"提交查詢"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"語音搜尋"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"選擇分享對象"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"與「%s」分享"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"收合"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"搜尋"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml
deleted file mode 100644
index 679d22f5ece288edaad936f55a7be770a57e4818..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Zulazulela ekhaya"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Zulazulela phezulu"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Izinketho eziningi"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Kwenziwe"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Buka konke"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Khetha uhlelo lokusebenza"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"VALIWE"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"VULIWE"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Iyasesha..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sula inkinga"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Umbuzo wosesho"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Sesha"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Hambisa umbuzo"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Ukusesha ngezwi"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Yabelana no-"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Yabelana no-%s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Goqa"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Sesha"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml b/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml
deleted file mode 100644
index 503dffdc79e8158888a636c186536f4c769c552b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml
+++ /dev/null
@@ -1,1735 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <attr format="reference" name="drawerArrowStyle"/>
-    <attr format="dimension" name="height"/>
-    <attr format="boolean" name="isLightTheme"/>
-    <attr format="string" name="title"/>
-    <bool name="abc_action_bar_embed_tabs">true</bool>
-    <bool name="abc_allow_stacked_button_bar">true</bool>
-    <bool name="abc_config_actionMenuItemAllCaps">true</bool>
-    <bool name="abc_config_closeDialogWhenTouchOutside">true</bool>
-    <bool name="abc_config_showMenuShortcutsWhenKeyboardPresent">false</bool>
-    <color name="abc_input_method_navigation_guard">@android:color/black</color>
-    <color name="abc_search_url_text_normal">#7fa87f</color>
-    <color name="abc_search_url_text_pressed">@android:color/black</color>
-    <color name="abc_search_url_text_selected">@android:color/black</color>
-    <color name="accent_material_dark">@color/material_deep_teal_200</color>
-    <color name="accent_material_light">@color/material_deep_teal_500</color>
-    <color name="background_floating_material_dark">@color/material_grey_800</color>
-    <color name="background_floating_material_light">@android:color/white</color>
-    <color name="background_material_dark">@color/material_grey_850</color>
-    <color name="background_material_light">@color/material_grey_50</color>
-    <color name="bright_foreground_disabled_material_dark">#80ffffff</color>
-    <color name="bright_foreground_disabled_material_light">#80000000</color>
-    <color name="bright_foreground_inverse_material_dark">@color/bright_foreground_material_light</color>
-    <color name="bright_foreground_inverse_material_light">@color/bright_foreground_material_dark</color>
-    <color name="bright_foreground_material_dark">@android:color/white</color>
-    <color name="bright_foreground_material_light">@android:color/black</color>
-    <color name="button_material_dark">#ff5a595b</color>
-    <color name="button_material_light">#ffd6d7d7</color>
-    <color name="dim_foreground_disabled_material_dark">#80bebebe</color>
-    <color name="dim_foreground_disabled_material_light">#80323232</color>
-    <color name="dim_foreground_material_dark">#ffbebebe</color>
-    <color name="dim_foreground_material_light">#ff323232</color>
-    <color name="foreground_material_dark">@android:color/white</color>
-    <color name="foreground_material_light">@android:color/black</color>
-    <color name="highlighted_text_material_dark">#6680cbc4</color>
-    <color name="highlighted_text_material_light">#66009688</color>
-    <color name="material_blue_grey_800">#ff37474f</color>
-    <color name="material_blue_grey_900">#ff263238</color>
-    <color name="material_blue_grey_950">#ff21272b</color>
-    <color name="material_deep_teal_200">#ff80cbc4</color>
-    <color name="material_deep_teal_500">#ff009688</color>
-    <color name="material_grey_100">#fff5f5f5</color>
-    <color name="material_grey_300">#ffe0e0e0</color>
-    <color name="material_grey_50">#fffafafa</color>
-    <color name="material_grey_600">#ff757575</color>
-    <color name="material_grey_800">#ff424242</color>
-    <color name="material_grey_850">#ff303030</color>
-    <color name="material_grey_900">#ff212121</color>
-    <color name="notification_action_color_filter">#ffffffff</color>
-    <color name="notification_icon_bg_color">#ff9e9e9e</color>
-    <color name="notification_material_background_media_default_color">#ff424242</color>
-    <color name="primary_dark_material_dark">@android:color/black</color>
-    <color name="primary_dark_material_light">@color/material_grey_600</color>
-    <color name="primary_material_dark">@color/material_grey_900</color>
-    <color name="primary_material_light">@color/material_grey_100</color>
-    <color name="primary_text_default_material_dark">#ffffffff</color>
-    <color name="primary_text_default_material_light">#de000000</color>
-    <color name="primary_text_disabled_material_dark">#4Dffffff</color>
-    <color name="primary_text_disabled_material_light">#39000000</color>
-    <color name="ripple_material_dark">#33ffffff</color>
-    <color name="ripple_material_light">#1f000000</color>
-    <color name="secondary_text_default_material_dark">#b3ffffff</color>
-    <color name="secondary_text_default_material_light">#8a000000</color>
-    <color name="secondary_text_disabled_material_dark">#36ffffff</color>
-    <color name="secondary_text_disabled_material_light">#24000000</color>
-    <color name="switch_thumb_disabled_material_dark">#ff616161</color>
-    <color name="switch_thumb_disabled_material_light">#ffbdbdbd</color>
-    <color name="switch_thumb_normal_material_dark">#ffbdbdbd</color>
-    <color name="switch_thumb_normal_material_light">#fff1f1f1</color>
-    <declare-styleable name="ActionBar"><attr name="navigationMode">
-            
-            <enum name="normal" value="0"/>
-            
-            <enum name="listMode" value="1"/>
-            
-            <enum name="tabMode" value="2"/>
-        </attr><attr name="displayOptions">
-            <flag name="none" value="0"/>
-            <flag name="useLogo" value="0x1"/>
-            <flag name="showHome" value="0x2"/>
-            <flag name="homeAsUp" value="0x4"/>
-            <flag name="showTitle" value="0x8"/>
-            <flag name="showCustom" value="0x10"/>
-            <flag name="disableHome" value="0x20"/>
-        </attr><attr name="title"/><attr format="string" name="subtitle"/><attr format="reference" name="titleTextStyle"/><attr format="reference" name="subtitleTextStyle"/><attr format="reference" name="icon"/><attr format="reference" name="logo"/><attr format="reference" name="divider"/><attr format="reference" name="background"/><attr format="reference|color" name="backgroundStacked"/><attr format="reference|color" name="backgroundSplit"/><attr format="reference" name="customNavigationLayout"/><attr name="height"/><attr format="reference" name="homeLayout"/><attr format="reference" name="progressBarStyle"/><attr format="reference" name="indeterminateProgressStyle"/><attr format="dimension" name="progressBarPadding"/><attr name="homeAsUpIndicator"/><attr format="dimension" name="itemPadding"/><attr format="boolean" name="hideOnContentScroll"/><attr format="dimension" name="contentInsetStart"/><attr format="dimension" name="contentInsetEnd"/><attr format="dimension" name="contentInsetLeft"/><attr format="dimension" name="contentInsetRight"/><attr format="dimension" name="contentInsetStartWithNavigation"/><attr format="dimension" name="contentInsetEndWithActions"/><attr format="dimension" name="elevation"/><attr format="reference" name="popupTheme"/></declare-styleable>
-    <declare-styleable name="ActionBarLayout"><attr name="android:layout_gravity"/></declare-styleable>
-    <declare-styleable name="ActionMenuItemView"><attr name="android:minWidth"/></declare-styleable>
-    <declare-styleable name="ActionMenuView"/>
-    <declare-styleable name="ActionMode"><attr name="titleTextStyle"/><attr name="subtitleTextStyle"/><attr name="background"/><attr name="backgroundSplit"/><attr name="height"/><attr format="reference" name="closeItemLayout"/></declare-styleable>
-    <declare-styleable name="ActivityChooserView"><attr format="string" name="initialActivityCount"/><attr format="reference" name="expandActivityOverflowButtonDrawable"/></declare-styleable>
-    <declare-styleable name="AlertDialog"><attr name="android:layout"/><attr format="reference" name="buttonPanelSideLayout"/><attr format="reference" name="listLayout"/><attr format="reference" name="multiChoiceItemLayout"/><attr format="reference" name="singleChoiceItemLayout"/><attr format="reference" name="listItemLayout"/><attr format="boolean" name="showTitle"/></declare-styleable>
-    <declare-styleable name="AppCompatImageView"><attr name="android:src"/><attr format="reference" name="srcCompat"/></declare-styleable>
-    <declare-styleable name="AppCompatSeekBar"><attr name="android:thumb"/><attr format="reference" name="tickMark"/><attr format="color" name="tickMarkTint"/><attr name="tickMarkTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-            
-            <enum name="add" value="16"/>
-        </attr></declare-styleable>
-    <declare-styleable name="AppCompatTextHelper"><attr name="android:drawableLeft"/><attr name="android:drawableTop"/><attr name="android:drawableRight"/><attr name="android:drawableBottom"/><attr name="android:drawableStart"/><attr name="android:drawableEnd"/><attr name="android:textAppearance"/></declare-styleable>
-    <declare-styleable name="AppCompatTextView"><attr format="reference|boolean" name="textAllCaps"/><attr name="android:textAppearance"/></declare-styleable>
-    <declare-styleable name="AppCompatTheme"><attr format="boolean" name="windowActionBar"/><attr format="boolean" name="windowNoTitle"/><attr format="boolean" name="windowActionBarOverlay"/><attr format="boolean" name="windowActionModeOverlay"/><attr format="dimension|fraction" name="windowFixedWidthMajor"/><attr format="dimension|fraction" name="windowFixedHeightMinor"/><attr format="dimension|fraction" name="windowFixedWidthMinor"/><attr format="dimension|fraction" name="windowFixedHeightMajor"/><attr format="dimension|fraction" name="windowMinWidthMajor"/><attr format="dimension|fraction" name="windowMinWidthMinor"/><attr name="android:windowIsFloating"/><attr name="android:windowAnimationStyle"/><attr format="reference" name="actionBarTabStyle"/><attr format="reference" name="actionBarTabBarStyle"/><attr format="reference" name="actionBarTabTextStyle"/><attr format="reference" name="actionOverflowButtonStyle"/><attr format="reference" name="actionOverflowMenuStyle"/><attr format="reference" name="actionBarPopupTheme"/><attr format="reference" name="actionBarStyle"/><attr format="reference" name="actionBarSplitStyle"/><attr format="reference" name="actionBarTheme"/><attr format="reference" name="actionBarWidgetTheme"/><attr format="dimension" name="actionBarSize">
-            <enum name="wrap_content" value="0"/>
-        </attr><attr format="reference" name="actionBarDivider"/><attr format="reference" name="actionBarItemBackground"/><attr format="reference" name="actionMenuTextAppearance"/><attr format="color|reference" name="actionMenuTextColor"/><attr format="reference" name="actionModeStyle"/><attr format="reference" name="actionModeCloseButtonStyle"/><attr format="reference" name="actionModeBackground"/><attr format="reference" name="actionModeSplitBackground"/><attr format="reference" name="actionModeCloseDrawable"/><attr format="reference" name="actionModeCutDrawable"/><attr format="reference" name="actionModeCopyDrawable"/><attr format="reference" name="actionModePasteDrawable"/><attr format="reference" name="actionModeSelectAllDrawable"/><attr format="reference" name="actionModeShareDrawable"/><attr format="reference" name="actionModeFindDrawable"/><attr format="reference" name="actionModeWebSearchDrawable"/><attr format="reference" name="actionModePopupWindowStyle"/><attr format="reference" name="textAppearanceLargePopupMenu"/><attr format="reference" name="textAppearanceSmallPopupMenu"/><attr format="reference" name="textAppearancePopupMenuHeader"/><attr format="reference" name="dialogTheme"/><attr format="dimension" name="dialogPreferredPadding"/><attr format="reference" name="listDividerAlertDialog"/><attr format="reference" name="actionDropDownStyle"/><attr format="dimension" name="dropdownListPreferredItemHeight"/><attr format="reference" name="spinnerDropDownItemStyle"/><attr format="reference" name="homeAsUpIndicator"/><attr format="reference" name="actionButtonStyle"/><attr format="reference" name="buttonBarStyle"/><attr format="reference" name="buttonBarButtonStyle"/><attr format="reference" name="selectableItemBackground"/><attr format="reference" name="selectableItemBackgroundBorderless"/><attr format="reference" name="borderlessButtonStyle"/><attr format="reference" name="dividerVertical"/><attr format="reference" name="dividerHorizontal"/><attr format="reference" name="activityChooserViewStyle"/><attr format="reference" name="toolbarStyle"/><attr format="reference" name="toolbarNavigationButtonStyle"/><attr format="reference" name="popupMenuStyle"/><attr format="reference" name="popupWindowStyle"/><attr format="reference|color" name="editTextColor"/><attr format="reference" name="editTextBackground"/><attr format="reference" name="imageButtonStyle"/><attr format="reference" name="textAppearanceSearchResultTitle"/><attr format="reference" name="textAppearanceSearchResultSubtitle"/><attr format="reference|color" name="textColorSearchUrl"/><attr format="reference" name="searchViewStyle"/><attr format="dimension" name="listPreferredItemHeight"/><attr format="dimension" name="listPreferredItemHeightSmall"/><attr format="dimension" name="listPreferredItemHeightLarge"/><attr format="dimension" name="listPreferredItemPaddingLeft"/><attr format="dimension" name="listPreferredItemPaddingRight"/><attr format="reference" name="dropDownListViewStyle"/><attr format="reference" name="listPopupWindowStyle"/><attr format="reference" name="textAppearanceListItem"/><attr format="reference" name="textAppearanceListItemSmall"/><attr format="reference" name="panelBackground"/><attr format="dimension" name="panelMenuListWidth"/><attr format="reference" name="panelMenuListTheme"/><attr format="reference" name="listChoiceBackgroundIndicator"/><attr format="color" name="colorPrimary"/><attr format="color" name="colorPrimaryDark"/><attr format="color" name="colorAccent"/><attr format="color" name="colorControlNormal"/><attr format="color" name="colorControlActivated"/><attr format="color" name="colorControlHighlight"/><attr format="color" name="colorButtonNormal"/><attr format="color" name="colorSwitchThumbNormal"/><attr format="reference" name="controlBackground"/><attr format="color" name="colorBackgroundFloating"/><attr format="reference" name="alertDialogStyle"/><attr format="reference" name="alertDialogButtonGroupStyle"/><attr format="boolean" name="alertDialogCenterButtons"/><attr format="reference" name="alertDialogTheme"/><attr format="reference|color" name="textColorAlertDialogListItem"/><attr format="reference" name="buttonBarPositiveButtonStyle"/><attr format="reference" name="buttonBarNegativeButtonStyle"/><attr format="reference" name="buttonBarNeutralButtonStyle"/><attr format="reference" name="autoCompleteTextViewStyle"/><attr format="reference" name="buttonStyle"/><attr format="reference" name="buttonStyleSmall"/><attr format="reference" name="checkboxStyle"/><attr format="reference" name="checkedTextViewStyle"/><attr format="reference" name="editTextStyle"/><attr format="reference" name="radioButtonStyle"/><attr format="reference" name="ratingBarStyle"/><attr format="reference" name="ratingBarStyleIndicator"/><attr format="reference" name="ratingBarStyleSmall"/><attr format="reference" name="seekBarStyle"/><attr format="reference" name="spinnerStyle"/><attr format="reference" name="switchStyle"/><attr format="reference" name="listMenuViewStyle"/></declare-styleable>
-    <declare-styleable name="ButtonBarLayout"><attr format="boolean" name="allowStacking"/></declare-styleable>
-    <declare-styleable name="ColorStateListItem"><attr name="android:color"/><attr format="float" name="alpha"/><attr name="android:alpha"/></declare-styleable>
-    <declare-styleable name="CompoundButton"><attr name="android:button"/><attr format="color" name="buttonTint"/><attr name="buttonTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-        </attr></declare-styleable>
-    <declare-styleable name="DrawerArrowToggle"><attr format="color" name="color"/><attr format="boolean" name="spinBars"/><attr format="dimension" name="drawableSize"/><attr format="dimension" name="gapBetweenBars"/><attr format="dimension" name="arrowHeadLength"/><attr format="dimension" name="arrowShaftLength"/><attr format="dimension" name="barLength"/><attr format="dimension" name="thickness"/></declare-styleable>
-    <declare-styleable name="LinearLayoutCompat"><attr name="android:orientation"/><attr name="android:gravity"/><attr name="android:baselineAligned"/><attr name="android:baselineAlignedChildIndex"/><attr name="android:weightSum"/><attr format="boolean" name="measureWithLargestChild"/><attr name="divider"/><attr name="showDividers">
-            <flag name="none" value="0"/>
-            <flag name="beginning" value="1"/>
-            <flag name="middle" value="2"/>
-            <flag name="end" value="4"/>
-        </attr><attr format="dimension" name="dividerPadding"/></declare-styleable>
-    <declare-styleable name="LinearLayoutCompat_Layout"><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_weight"/><attr name="android:layout_gravity"/></declare-styleable>
-    <declare-styleable name="ListPopupWindow"><attr name="android:dropDownVerticalOffset"/><attr name="android:dropDownHorizontalOffset"/></declare-styleable>
-    <declare-styleable name="MenuGroup"><attr name="android:id"/><attr name="android:menuCategory"/><attr name="android:orderInCategory"/><attr name="android:checkableBehavior"/><attr name="android:visible"/><attr name="android:enabled"/></declare-styleable>
-    <declare-styleable name="MenuItem"><attr name="android:id"/><attr name="android:menuCategory"/><attr name="android:orderInCategory"/><attr name="android:title"/><attr name="android:titleCondensed"/><attr name="android:icon"/><attr name="android:alphabeticShortcut"/><attr name="android:numericShortcut"/><attr name="android:checkable"/><attr name="android:checked"/><attr name="android:visible"/><attr name="android:enabled"/><attr name="android:onClick"/><attr name="showAsAction">
-            
-            <flag name="never" value="0"/>
-            
-            <flag name="ifRoom" value="1"/>
-            
-            <flag name="always" value="2"/>
-            
-            <flag name="withText" value="4"/>
-            
-            <flag name="collapseActionView" value="8"/>
-        </attr><attr format="reference" name="actionLayout"/><attr format="string" name="actionViewClass"/><attr format="string" name="actionProviderClass"/></declare-styleable>
-    <declare-styleable name="MenuView"><attr name="android:itemTextAppearance"/><attr name="android:horizontalDivider"/><attr name="android:verticalDivider"/><attr name="android:headerBackground"/><attr name="android:itemBackground"/><attr name="android:windowAnimationStyle"/><attr name="android:itemIconDisabledAlpha"/><attr format="boolean" name="preserveIconSpacing"/><attr format="reference" name="subMenuArrow"/></declare-styleable>
-    <declare-styleable name="PopupWindow"><attr format="boolean" name="overlapAnchor"/><attr name="android:popupBackground"/><attr name="android:popupAnimationStyle"/></declare-styleable>
-    <declare-styleable name="PopupWindowBackgroundState"><attr format="boolean" name="state_above_anchor"/></declare-styleable>
-    <declare-styleable name="RecycleListView"><attr format="dimension" name="paddingBottomNoButtons"/><attr format="dimension" name="paddingTopNoTitle"/></declare-styleable>
-    <declare-styleable name="SearchView"><attr format="reference" name="layout"/><attr format="boolean" name="iconifiedByDefault"/><attr name="android:maxWidth"/><attr format="string" name="queryHint"/><attr format="string" name="defaultQueryHint"/><attr name="android:imeOptions"/><attr name="android:inputType"/><attr format="reference" name="closeIcon"/><attr format="reference" name="goIcon"/><attr format="reference" name="searchIcon"/><attr format="reference" name="searchHintIcon"/><attr format="reference" name="voiceIcon"/><attr format="reference" name="commitIcon"/><attr format="reference" name="suggestionRowLayout"/><attr format="reference" name="queryBackground"/><attr format="reference" name="submitBackground"/><attr name="android:focusable"/></declare-styleable>
-    <declare-styleable name="Spinner"><attr name="android:prompt"/><attr name="popupTheme"/><attr name="android:popupBackground"/><attr name="android:dropDownWidth"/><attr name="android:entries"/></declare-styleable>
-    <declare-styleable name="SwitchCompat"><attr name="android:thumb"/><attr format="color" name="thumbTint"/><attr name="thumbTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-            
-            <enum name="add" value="16"/>
-        </attr><attr format="reference" name="track"/><attr format="color" name="trackTint"/><attr name="trackTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-            
-            <enum name="add" value="16"/>
-        </attr><attr name="android:textOn"/><attr name="android:textOff"/><attr format="dimension" name="thumbTextPadding"/><attr format="reference" name="switchTextAppearance"/><attr format="dimension" name="switchMinWidth"/><attr format="dimension" name="switchPadding"/><attr format="boolean" name="splitTrack"/><attr format="boolean" name="showText"/></declare-styleable>
-    <declare-styleable name="TextAppearance"><attr name="android:textSize"/><attr name="android:textColor"/><attr name="android:textColorHint"/><attr name="android:textStyle"/><attr name="android:typeface"/><attr name="textAllCaps"/><attr name="android:shadowColor"/><attr name="android:shadowDy"/><attr name="android:shadowDx"/><attr name="android:shadowRadius"/></declare-styleable>
-    <declare-styleable name="Toolbar"><attr format="reference" name="titleTextAppearance"/><attr format="reference" name="subtitleTextAppearance"/><attr name="title"/><attr name="subtitle"/><attr name="android:gravity"/><attr format="dimension" name="titleMargin"/><attr format="dimension" name="titleMarginStart"/><attr format="dimension" name="titleMarginEnd"/><attr format="dimension" name="titleMarginTop"/><attr format="dimension" name="titleMarginBottom"/><attr format="dimension" name="titleMargins"/><attr name="contentInsetStart"/><attr name="contentInsetEnd"/><attr name="contentInsetLeft"/><attr name="contentInsetRight"/><attr name="contentInsetStartWithNavigation"/><attr name="contentInsetEndWithActions"/><attr format="dimension" name="maxButtonHeight"/><attr name="buttonGravity">
-            
-            <flag name="top" value="0x30"/>
-            
-            <flag name="bottom" value="0x50"/>
-        </attr><attr format="reference" name="collapseIcon"/><attr format="string" name="collapseContentDescription"/><attr name="popupTheme"/><attr format="reference" name="navigationIcon"/><attr format="string" name="navigationContentDescription"/><attr name="logo"/><attr format="string" name="logoDescription"/><attr format="color" name="titleTextColor"/><attr format="color" name="subtitleTextColor"/><attr name="android:minHeight"/></declare-styleable>
-    <declare-styleable name="View"><attr format="dimension" name="paddingStart"/><attr format="dimension" name="paddingEnd"/><attr name="android:focusable"/><attr format="reference" name="theme"/><attr name="android:theme"/></declare-styleable>
-    <declare-styleable name="ViewBackgroundHelper"><attr name="android:background"/><attr format="color" name="backgroundTint"/><attr name="backgroundTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-        </attr></declare-styleable>
-    <declare-styleable name="ViewStubCompat"><attr name="android:layout"/><attr name="android:inflatedId"/><attr name="android:id"/></declare-styleable>
-    <dimen name="abc_action_bar_content_inset_material">16dp</dimen>
-    <dimen name="abc_action_bar_content_inset_with_nav">72dp</dimen>
-    <dimen name="abc_action_bar_default_height_material">56dp</dimen>
-    <dimen name="abc_action_bar_default_padding_end_material">0dp</dimen>
-    <dimen name="abc_action_bar_default_padding_start_material">0dp</dimen>
-    <dimen name="abc_action_bar_elevation_material">4dp</dimen>
-    <dimen name="abc_action_bar_icon_vertical_padding_material">16dp</dimen>
-    <dimen name="abc_action_bar_overflow_padding_end_material">10dp</dimen>
-    <dimen name="abc_action_bar_overflow_padding_start_material">6dp</dimen>
-    <dimen name="abc_action_bar_progress_bar_size">40dp</dimen>
-    <dimen name="abc_action_bar_stacked_max_height">48dp</dimen>
-    <dimen name="abc_action_bar_stacked_tab_max_width">180dp</dimen>
-    <dimen name="abc_action_bar_subtitle_bottom_margin_material">5dp</dimen>
-    <dimen name="abc_action_bar_subtitle_top_margin_material">-3dp</dimen>
-    <dimen name="abc_action_button_min_height_material">48dp</dimen>
-    <dimen name="abc_action_button_min_width_material">48dp</dimen>
-    <dimen name="abc_action_button_min_width_overflow_material">36dp</dimen>
-    <dimen name="abc_alert_dialog_button_bar_height">48dp</dimen>
-    <dimen name="abc_button_inset_horizontal_material">@dimen/abc_control_inset_material</dimen>
-    <dimen name="abc_button_inset_vertical_material">6dp</dimen>
-    <dimen name="abc_button_padding_horizontal_material">8dp</dimen>
-    <dimen name="abc_button_padding_vertical_material">@dimen/abc_control_padding_material</dimen>
-    <dimen name="abc_cascading_menus_min_smallest_width">720dp</dimen>
-    <dimen name="abc_config_prefDialogWidth">320dp</dimen>
-    <dimen name="abc_control_corner_material">2dp</dimen>
-    <dimen name="abc_control_inset_material">4dp</dimen>
-    <dimen name="abc_control_padding_material">4dp</dimen>
-    <item name="abc_dialog_fixed_height_major" type="dimen">80%</item>
-    <item name="abc_dialog_fixed_height_minor" type="dimen">100%</item>
-    <item name="abc_dialog_fixed_width_major" type="dimen">320dp</item>
-    <item name="abc_dialog_fixed_width_minor" type="dimen">320dp</item>
-    <dimen name="abc_dialog_list_padding_bottom_no_buttons">8dp</dimen>
-    <dimen name="abc_dialog_list_padding_top_no_title">8dp</dimen>
-    <item name="abc_dialog_min_width_major" type="dimen">65%</item>
-    <item name="abc_dialog_min_width_minor" type="dimen">95%</item>
-    <dimen name="abc_dialog_padding_material">24dp</dimen>
-    <dimen name="abc_dialog_padding_top_material">18dp</dimen>
-    <dimen name="abc_dialog_title_divider_material">8dp</dimen>
-    <item format="float" name="abc_disabled_alpha_material_dark" type="dimen">0.30</item>
-    <item format="float" name="abc_disabled_alpha_material_light" type="dimen">0.26</item>
-    <dimen name="abc_dropdownitem_icon_width">32dip</dimen>
-    <dimen name="abc_dropdownitem_text_padding_left">8dip</dimen>
-    <dimen name="abc_dropdownitem_text_padding_right">8dip</dimen>
-    <dimen name="abc_edit_text_inset_bottom_material">7dp</dimen>
-    <dimen name="abc_edit_text_inset_horizontal_material">4dp</dimen>
-    <dimen name="abc_edit_text_inset_top_material">10dp</dimen>
-    <dimen name="abc_floating_window_z">16dp</dimen>
-    <dimen name="abc_list_item_padding_horizontal_material">@dimen/abc_action_bar_content_inset_material</dimen>
-    <dimen name="abc_panel_menu_list_width">296dp</dimen>
-    <dimen name="abc_progress_bar_height_material">4dp</dimen>
-    <dimen name="abc_search_view_preferred_height">48dip</dimen>
-    <dimen name="abc_search_view_preferred_width">320dip</dimen>
-    <dimen name="abc_seekbar_track_background_height_material">2dp</dimen>
-    <dimen name="abc_seekbar_track_progress_height_material">2dp</dimen>
-    <dimen name="abc_select_dialog_padding_start_material">20dp</dimen>
-    <dimen name="abc_switch_padding">3dp</dimen>
-    <dimen name="abc_text_size_body_1_material">14sp</dimen>
-    <dimen name="abc_text_size_body_2_material">14sp</dimen>
-    <dimen name="abc_text_size_button_material">14sp</dimen>
-    <dimen name="abc_text_size_caption_material">12sp</dimen>
-    <dimen name="abc_text_size_display_1_material">34sp</dimen>
-    <dimen name="abc_text_size_display_2_material">45sp</dimen>
-    <dimen name="abc_text_size_display_3_material">56sp</dimen>
-    <dimen name="abc_text_size_display_4_material">112sp</dimen>
-    <dimen name="abc_text_size_headline_material">24sp</dimen>
-    <dimen name="abc_text_size_large_material">22sp</dimen>
-    <dimen name="abc_text_size_medium_material">18sp</dimen>
-    <dimen name="abc_text_size_menu_header_material">14sp</dimen>
-    <dimen name="abc_text_size_menu_material">16sp</dimen>
-    <dimen name="abc_text_size_small_material">14sp</dimen>
-    <dimen name="abc_text_size_subhead_material">16sp</dimen>
-    <dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen>
-    <dimen name="abc_text_size_title_material">20sp</dimen>
-    <dimen name="abc_text_size_title_material_toolbar">20dp</dimen>
-    <item format="float" name="disabled_alpha_material_dark" type="dimen">0.30</item>
-    <item format="float" name="disabled_alpha_material_light" type="dimen">0.26</item>
-    <item format="float" name="highlight_alpha_material_colored" type="dimen">0.26</item>
-    <item format="float" name="highlight_alpha_material_dark" type="dimen">0.20</item>
-    <item format="float" name="highlight_alpha_material_light" type="dimen">0.12</item>
-    <item format="float" name="hint_alpha_material_dark" type="dimen">0.50</item>
-    <item format="float" name="hint_alpha_material_light" type="dimen">0.38</item>
-    <item format="float" name="hint_pressed_alpha_material_dark" type="dimen">0.70</item>
-    <item format="float" name="hint_pressed_alpha_material_light" type="dimen">0.54</item>
-    <dimen name="notification_action_icon_size">32dp</dimen>
-    <dimen name="notification_action_text_size">13sp</dimen>
-    <dimen name="notification_big_circle_margin">12dp</dimen>
-    <dimen name="notification_content_margin_start">8dp</dimen>
-    <dimen name="notification_large_icon_height">64dp</dimen>
-    <dimen name="notification_large_icon_width">64dp</dimen>
-    <dimen name="notification_main_column_padding_top">10dp</dimen>
-    <dimen name="notification_media_narrow_margin">@dimen/notification_content_margin_start</dimen>
-    <dimen name="notification_right_icon_size">16dp</dimen>
-    <dimen name="notification_right_side_padding_top">2dp</dimen>
-    <dimen name="notification_small_icon_background_padding">3dp</dimen>
-    <dimen name="notification_small_icon_size_as_large">24dp</dimen>
-    <dimen name="notification_subtext_size">13sp</dimen>
-    <dimen name="notification_top_pad">10dp</dimen>
-    <dimen name="notification_top_pad_large_text">5dp</dimen>
-    <drawable name="notification_template_icon_bg">#3333B5E5</drawable>
-    <drawable name="notification_template_icon_low_bg">#0cffffff</drawable>
-    <item name="action_bar_activity_content" type="id"/>
-    <item name="action_bar_spinner" type="id"/>
-    <item name="action_menu_divider" type="id"/>
-    <item name="action_menu_presenter" type="id"/>
-    <item name="home" type="id"/>
-    <item name="progress_circular" type="id"/>
-    <item name="progress_horizontal" type="id"/>
-    <item name="split_action_bar" type="id"/>
-    <item name="up" type="id"/>
-    <integer name="abc_config_activityDefaultDur">220</integer>
-    <integer name="abc_config_activityShortDur">150</integer>
-    <integer name="cancel_button_image_alpha">127</integer>
-    <integer name="status_bar_notification_info_maxnum">999</integer>
-    <string name="abc_action_bar_home_description">Navigate home</string>
-    <string name="abc_action_bar_home_description_format">%1$s, %2$s</string>
-    <string name="abc_action_bar_home_subtitle_description_format">%1$s, %2$s, %3$s</string>
-    <string name="abc_action_bar_up_description">Navigate up</string>
-    <string name="abc_action_menu_overflow_description">More options</string>
-    <string name="abc_action_mode_done">Done</string>
-    <string name="abc_activity_chooser_view_see_all">See all</string>
-    <string name="abc_activitychooserview_choose_application">Choose an app</string>
-    <string name="abc_capital_off">OFF</string>
-    <string name="abc_capital_on">ON</string>
-    <string name="abc_font_family_body_1_material">sans-serif</string>
-    <string name="abc_font_family_body_2_material">sans-serif-medium</string>
-    <string name="abc_font_family_button_material">sans-serif-medium</string>
-    <string name="abc_font_family_caption_material">sans-serif</string>
-    <string name="abc_font_family_display_1_material">sans-serif</string>
-    <string name="abc_font_family_display_2_material">sans-serif</string>
-    <string name="abc_font_family_display_3_material">sans-serif</string>
-    <string name="abc_font_family_display_4_material">sans-serif-light</string>
-    <string name="abc_font_family_headline_material">sans-serif</string>
-    <string name="abc_font_family_menu_material">sans-serif</string>
-    <string name="abc_font_family_subhead_material">sans-serif</string>
-    <string name="abc_font_family_title_material">sans-serif-medium</string>
-    <string name="abc_search_hint">Search…</string>
-    <string name="abc_searchview_description_clear">Clear query</string>
-    <string name="abc_searchview_description_query">Search query</string>
-    <string name="abc_searchview_description_search">Search</string>
-    <string name="abc_searchview_description_submit">Submit query</string>
-    <string name="abc_searchview_description_voice">Voice search</string>
-    <string name="abc_shareactionprovider_share_with">Share with</string>
-    <string name="abc_shareactionprovider_share_with_application">Share with %s</string>
-    <string name="abc_toolbar_collapse_description">Collapse</string>
-    <string name="search_menu_title">Search</string>
-    <string name="status_bar_notification_info_overflow">999+</string>
-    <style name="AlertDialog.AppCompat" parent="Base.AlertDialog.AppCompat"/>
-    <style name="AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat.Light"/>
-    <style name="Animation.AppCompat.Dialog" parent="Base.Animation.AppCompat.Dialog"/>
-    <style name="Animation.AppCompat.DropDownUp" parent="Base.Animation.AppCompat.DropDownUp"/>
-    <style name="Base.AlertDialog.AppCompat" parent="android:Widget">
-        <item name="android:layout">@layout/abc_alert_dialog_material</item>
-        <item name="listLayout">@layout/abc_select_dialog_material</item>
-        <item name="listItemLayout">@layout/select_dialog_item_material</item>
-        <item name="multiChoiceItemLayout">@layout/select_dialog_multichoice_material</item>
-        <item name="singleChoiceItemLayout">@layout/select_dialog_singlechoice_material</item>
-    </style>
-    <style name="Base.AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat"/>
-    <style name="Base.Animation.AppCompat.Dialog" parent="android:Animation">
-        <item name="android:windowEnterAnimation">@anim/abc_popup_enter</item>
-        <item name="android:windowExitAnimation">@anim/abc_popup_exit</item>
-    </style>
-    <style name="Base.Animation.AppCompat.DropDownUp" parent="android:Animation">
-        <item name="android:windowEnterAnimation">@anim/abc_grow_fade_in_from_bottom</item>
-        <item name="android:windowExitAnimation">@anim/abc_shrink_fade_out_from_bottom</item>
-    </style>
-    <style name="Base.DialogWindowTitle.AppCompat" parent="android:Widget">
-        <item name="android:maxLines">1</item>
-        <item name="android:scrollHorizontally">true</item>
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Title</item>
-    </style>
-    <style name="Base.DialogWindowTitleBackground.AppCompat" parent="android:Widget">
-        <item name="android:background">@null</item>
-        <item name="android:paddingLeft">?attr/dialogPreferredPadding</item>
-        <item name="android:paddingRight">?attr/dialogPreferredPadding</item>
-        <item name="android:paddingTop">@dimen/abc_dialog_padding_top_material</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance">
-        <item name="android:textColor">?android:textColorPrimary</item>
-        <item name="android:textColorHint">?android:textColorHint</item>
-        <item name="android:textColorHighlight">?android:textColorHighlight</item>
-        <item name="android:textColorLink">?android:textColorLink</item>
-        <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Body1">
-        <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Body2">
-        <item name="android:textSize">@dimen/abc_text_size_body_2_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Button">
-        <item name="android:textSize">@dimen/abc_text_size_button_material</item>
-        <item name="textAllCaps">true</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Caption">
-        <item name="android:textSize">@dimen/abc_text_size_caption_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Display1">
-        <item name="android:textSize">@dimen/abc_text_size_display_1_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Display2">
-        <item name="android:textSize">@dimen/abc_text_size_display_2_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Display3">
-        <item name="android:textSize">@dimen/abc_text_size_display_3_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Display4">
-        <item name="android:textSize">@dimen/abc_text_size_display_4_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Headline">
-        <item name="android:textSize">@dimen/abc_text_size_headline_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Large">
-        <item name="android:textSize">@dimen/abc_text_size_large_material</item>
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Large.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Medium">
-        <item name="android:textSize">@dimen/abc_text_size_medium_material</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Medium.Inverse">
-        <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Menu">
-        <item name="android:textSize">@dimen/abc_text_size_menu_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.SearchResult" parent="">
-        <item name="android:textStyle">normal</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-        <item name="android:textColorHint">?android:textColorHint</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
-        <item name="android:textSize">14sp</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.SearchResult.Title">
-        <item name="android:textSize">18sp</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Small">
-        <item name="android:textSize">@dimen/abc_text_size_small_material</item>
-        <item name="android:textColor">?android:attr/textColorTertiary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Small.Inverse">
-        <item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Subhead">
-        <item name="android:textSize">@dimen/abc_text_size_subhead_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Subhead.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Title">
-        <item name="android:textSize">@dimen/abc_text_size_title_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Title.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="TextAppearance.AppCompat.Button">
-        <item name="android:textColor">?attr/actionMenuTextColor</item>
-        <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="TextAppearance.AppCompat.Subhead">
-        <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="TextAppearance.AppCompat.Subhead.Inverse">
-        <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
-        <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="TextAppearance.AppCompat.Title">
-        <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="TextAppearance.AppCompat.Title.Inverse">
-        <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button" parent="TextAppearance.AppCompat.Button"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button">
-        <item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button.Colored">
-        <item name="android:textColor">@color/abc_btn_colored_text_material</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="TextAppearance.AppCompat.Button">
-        <item name="android:textColor">?android:textColorPrimaryInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.DropDownItem" parent="android:TextAppearance.Small">
-        <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat">
-        <item name="android:textSize">@dimen/abc_text_size_menu_header_material</item>
-        <item name="android:textColor">?attr/colorAccent</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Menu"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Menu"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="TextAppearance.AppCompat.Button"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="TextAppearance.AppCompat.Menu"/>
-    <style name="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="android:TextAppearance.Medium">
-        <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
-    </style>
-    <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle">
-    </style>
-    <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title">
-    </style>
-    <style name="Base.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
-    </style>
-    <style name="Base.Theme.AppCompat.CompactMenu" parent="">
-        <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item>
-        <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
-        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog"/>
-    <style name="Base.Theme.AppCompat.Dialog.Alert">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Dialog.FixedSize">
-        <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
-        <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
-        <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
-        <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Dialog.MinWidth">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Theme.AppCompat"/>
-    <style name="Base.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
-    </style>
-    <style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light">
-        <item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Light</item>
-        <item name="actionBarWidgetTheme">@null</item>
-        <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
-
-        <!-- Panel attributes -->
-        <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
-
-        <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
-        <item name="colorPrimary">@color/primary_material_dark</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog"/>
-    <style name="Base.Theme.AppCompat.Light.Dialog.Alert">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Light.Dialog.FixedSize">
-        <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
-        <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
-        <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
-        <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Light.Dialog.MinWidth">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Theme.AppCompat.Light"/>
-    <style name="Base.ThemeOverlay.AppCompat" parent="Platform.ThemeOverlay.AppCompat"/>
-    <style name="Base.ThemeOverlay.AppCompat.ActionBar">
-        <item name="colorControlNormal">?android:attr/textColorPrimary</item>
-        <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
-    </style>
-    <style name="Base.ThemeOverlay.AppCompat.Dark" parent="Platform.ThemeOverlay.AppCompat.Dark">
-        <item name="android:windowBackground">@color/background_material_dark</item>
-        <item name="android:colorForeground">@color/foreground_material_dark</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
-        <item name="android:colorBackground">@color/background_material_dark</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
-        <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
-
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
-
-        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
-        <item name="colorControlHighlight">@color/ripple_material_dark</item>
-        <item name="colorButtonNormal">@color/button_material_dark</item>
-        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
-
-        <!-- Used by MediaRouter -->
-        <item name="isLightTheme">false</item>
-    </style>
-    <style name="Base.ThemeOverlay.AppCompat.Dark.ActionBar">
-        <item name="colorControlNormal">?android:attr/textColorPrimary</item>
-        <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
-    </style>
-    <style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog"/>
-    <style name="Base.ThemeOverlay.AppCompat.Dialog.Alert">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.ThemeOverlay.AppCompat.Light" parent="Platform.ThemeOverlay.AppCompat.Light">
-        <item name="android:windowBackground">@color/background_material_light</item>
-        <item name="android:colorForeground">@color/foreground_material_light</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
-        <item name="android:colorBackground">@color/background_material_light</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
-        <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
-
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
-        <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
-
-        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
-        <item name="colorControlHighlight">@color/ripple_material_light</item>
-        <item name="colorButtonNormal">@color/button_material_light</item>
-        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
-
-        <!-- Used by MediaRouter -->
-        <item name="isLightTheme">true</item>
-    </style>
-    <style name="Base.V7.Theme.AppCompat" parent="Platform.AppCompat">
-        <item name="windowNoTitle">false</item>
-        <item name="windowActionBar">true</item>
-        <item name="windowActionBarOverlay">false</item>
-        <item name="windowActionModeOverlay">false</item>
-        <item name="actionBarPopupTheme">@null</item>
-
-        <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
-
-        <!-- Used by MediaRouter -->
-        <item name="isLightTheme">false</item>
-
-        <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
-        <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
-        <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
-
-        <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
-        <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
-
-        <!-- Action Bar Styles -->
-        <item name="actionBarTabStyle">@style/Widget.AppCompat.ActionBar.TabView</item>
-        <item name="actionBarTabBarStyle">@style/Widget.AppCompat.ActionBar.TabBar</item>
-        <item name="actionBarTabTextStyle">@style/Widget.AppCompat.ActionBar.TabText</item>
-        <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
-        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
-        <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.PopupMenu.Overflow</item>
-        <item name="actionBarStyle">@style/Widget.AppCompat.ActionBar.Solid</item>
-        <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
-        <item name="actionBarWidgetTheme">@null</item>
-        <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
-        <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
-        <item name="actionBarDivider">?attr/dividerVertical</item>
-        <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
-        <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
-        <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
-
-        <!-- Dropdown Spinner Attributes -->
-        <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
-
-        <!-- Action Mode -->
-        <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
-        <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
-        <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
-        <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
-        <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
-
-        <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
-        <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
-        <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
-        <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
-        <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
-
-        <!-- Panel attributes -->
-        <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
-        <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
-        <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
-        <item name="android:panelBackground">@android:color/transparent</item>
-        <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
-
-        <!-- List attributes -->
-        <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
-        <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
-        <item name="listPreferredItemHeight">64dp</item>
-        <item name="listPreferredItemHeightSmall">48dp</item>
-        <item name="listPreferredItemHeightLarge">80dp</item>
-        <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
-        <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
-
-        <!-- Spinner styles -->
-        <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
-        <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
-        <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
-
-        <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
-        <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-        <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
-
-        <!-- Popup Menu styles -->
-        <item name="popupMenuStyle">@style/Widget.AppCompat.PopupMenu</item>
-        <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item>
-        <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item>
-        <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
-        <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
-        <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
-        <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
-
-        <!-- SearchView attributes -->
-        <item name="searchViewStyle">@style/Widget.AppCompat.SearchView</item>
-        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-        <item name="textColorSearchUrl">@color/abc_search_url_text</item>
-        <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
-        <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
-
-        <!-- ShareActionProvider attributes -->
-        <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
-
-        <!-- Toolbar styles -->
-        <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
-        <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
-
-        <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
-        <item name="editTextBackground">@drawable/abc_edit_text_material</item>
-        <item name="editTextColor">?android:attr/textColorPrimary</item>
-        <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
-
-        <!-- Color palette -->
-        <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
-        <item name="colorPrimary">@color/primary_material_dark</item>
-        <item name="colorAccent">@color/accent_material_dark</item>
-
-        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
-        <item name="colorControlActivated">?attr/colorAccent</item>
-        <item name="colorControlHighlight">@color/ripple_material_dark</item>
-        <item name="colorButtonNormal">@color/button_material_dark</item>
-        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
-        <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
-
-        <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
-
-        <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
-        <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
-        <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
-
-        <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
-        <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
-        <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
-        <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
-
-        <!-- Button styles -->
-        <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
-        <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
-        <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
-
-        <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
-
-        <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
-        <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
-        <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
-        <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
-        <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
-
-        <!-- Dialog attributes -->
-        <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
-        <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
-
-        <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
-        <item name="alertDialogStyle">@style/AlertDialog.AppCompat</item>
-        <item name="alertDialogCenterButtons">false</item>
-        <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
-        <item name="listDividerAlertDialog">@null</item>
-
-        <!-- Define these here; ContextThemeWrappers around themes that define them should
-             always clear these values. -->
-        <item name="windowFixedWidthMajor">@null</item>
-        <item name="windowFixedWidthMinor">@null</item>
-        <item name="windowFixedHeightMajor">@null</item>
-        <item name="windowFixedHeightMinor">@null</item>
-    </style>
-    <style name="Base.V7.Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat">
-        <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
-        <item name="android:colorBackgroundCacheHint">@null</item>
-
-        <item name="android:windowFrame">@null</item>
-        <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
-        <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
-        <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
-        <item name="android:windowIsFloating">true</item>
-        <item name="android:backgroundDimEnabled">true</item>
-        <item name="android:windowContentOverlay">@null</item>
-        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
-        <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
-
-        <item name="windowActionBar">false</item>
-        <item name="windowActionModeOverlay">true</item>
-
-        <item name="listPreferredItemPaddingLeft">24dip</item>
-        <item name="listPreferredItemPaddingRight">24dip</item>
-
-        <item name="android:listDivider">@null</item>
-    </style>
-    <style name="Base.V7.Theme.AppCompat.Light" parent="Platform.AppCompat.Light">
-        <item name="windowNoTitle">false</item>
-        <item name="windowActionBar">true</item>
-        <item name="windowActionBarOverlay">false</item>
-        <item name="windowActionModeOverlay">false</item>
-        <item name="actionBarPopupTheme">@null</item>
-
-        <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
-
-        <!-- Used by MediaRouter -->
-        <item name="isLightTheme">true</item>
-
-        <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
-        <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
-        <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
-
-        <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
-        <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
-
-        <!-- Action Bar Styles -->
-        <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView</item>
-        <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar</item>
-        <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText</item>
-        <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
-        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
-        <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.Light.PopupMenu.Overflow</item>
-        <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid</item>
-        <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
-        <item name="actionBarWidgetTheme">@null</item>
-        <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
-        <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
-        <item name="actionBarDivider">?attr/dividerVertical</item>
-        <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
-        <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
-        <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
-
-        <!-- Action Mode -->
-        <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
-        <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
-        <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
-        <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
-        <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
-
-        <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
-        <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
-        <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
-        <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
-        <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
-
-        <!-- Dropdown Spinner Attributes -->
-        <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
-
-        <!-- Panel attributes -->
-        <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
-        <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
-        <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
-        <item name="android:panelBackground">@android:color/transparent</item>
-        <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item>
-
-        <!-- List attributes -->
-        <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
-        <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
-        <item name="listPreferredItemHeight">64dp</item>
-        <item name="listPreferredItemHeightSmall">48dp</item>
-        <item name="listPreferredItemHeightLarge">80dp</item>
-        <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
-        <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
-
-        <!-- Spinner styles -->
-        <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
-        <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
-        <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
-
-        <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
-        <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-        <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
-
-        <!-- Popup Menu styles -->
-        <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item>
-        <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item>
-        <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item>
-        <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
-        <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
-        <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
-        <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
-
-        <!-- SearchView attributes -->
-        <item name="searchViewStyle">@style/Widget.AppCompat.Light.SearchView</item>
-        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-        <item name="textColorSearchUrl">@color/abc_search_url_text</item>
-        <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
-        <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
-
-        <!-- ShareActionProvider attributes -->
-        <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
-
-        <!-- Toolbar styles -->
-        <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
-        <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
-
-        <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
-        <item name="editTextBackground">@drawable/abc_edit_text_material</item>
-        <item name="editTextColor">?android:attr/textColorPrimary</item>
-        <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
-
-        <!-- Color palette -->
-        <item name="colorPrimaryDark">@color/primary_dark_material_light</item>
-        <item name="colorPrimary">@color/primary_material_light</item>
-        <item name="colorAccent">@color/accent_material_light</item>
-
-        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
-        <item name="colorControlActivated">?attr/colorAccent</item>
-        <item name="colorControlHighlight">@color/ripple_material_light</item>
-        <item name="colorButtonNormal">@color/button_material_light</item>
-        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
-        <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
-
-        <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
-
-        <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
-        <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
-        <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
-
-        <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
-        <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
-        <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
-        <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
-
-        <!-- Button styles -->
-        <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
-        <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
-        <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
-
-        <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
-
-        <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
-        <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
-        <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
-        <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
-        <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
-
-        <!-- Dialog attributes -->
-        <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
-        <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
-
-        <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
-        <item name="alertDialogStyle">@style/AlertDialog.AppCompat.Light</item>
-        <item name="alertDialogCenterButtons">false</item>
-        <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
-        <item name="listDividerAlertDialog">@null</item>
-
-        <!-- Define these here; ContextThemeWrappers around themes that define them should
-             always clear these values. -->
-        <item name="windowFixedWidthMajor">@null</item>
-        <item name="windowFixedWidthMinor">@null</item>
-        <item name="windowFixedHeightMajor">@null</item>
-        <item name="windowFixedHeightMinor">@null</item>
-    </style>
-    <style name="Base.V7.Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light">
-        <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
-        <item name="android:colorBackgroundCacheHint">@null</item>
-
-        <item name="android:windowFrame">@null</item>
-        <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
-        <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
-        <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
-        <item name="android:windowIsFloating">true</item>
-        <item name="android:backgroundDimEnabled">true</item>
-        <item name="android:windowContentOverlay">@null</item>
-        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
-        <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
-
-        <item name="windowActionBar">false</item>
-        <item name="windowActionModeOverlay">true</item>
-
-        <item name="listPreferredItemPaddingLeft">24dip</item>
-        <item name="listPreferredItemPaddingRight">24dip</item>
-
-        <item name="android:listDivider">@null</item>
-    </style>
-    <style name="Base.V7.ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat">
-        <item name="android:colorBackgroundCacheHint">@null</item>
-        <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
-
-        <item name="android:windowFrame">@null</item>
-        <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
-        <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
-        <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
-        <item name="android:windowIsFloating">true</item>
-        <item name="android:backgroundDimEnabled">true</item>
-        <item name="android:windowContentOverlay">@null</item>
-        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
-        <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
-
-        <item name="windowActionBar">false</item>
-        <item name="windowActionModeOverlay">true</item>
-
-        <item name="listPreferredItemPaddingLeft">24dip</item>
-        <item name="listPreferredItemPaddingRight">24dip</item>
-
-        <item name="android:listDivider">@null</item>
-
-        <item name="windowFixedWidthMajor">@null</item>
-        <item name="windowFixedWidthMinor">@null</item>
-        <item name="windowFixedHeightMajor">@null</item>
-        <item name="windowFixedHeightMinor">@null</item>
-    </style>
-    <style name="Base.V7.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.AutoCompleteTextView">
-        <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
-        <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
-        <item name="android:background">?attr/editTextBackground</item>
-        <item name="android:textColor">?attr/editTextColor</item>
-        <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
-    </style>
-    <style name="Base.V7.Widget.AppCompat.EditText" parent="android:Widget.EditText">
-        <item name="android:background">?attr/editTextBackground</item>
-        <item name="android:textColor">?attr/editTextColor</item>
-        <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar" parent="">
-        <item name="displayOptions">showTitle</item>
-        <item name="divider">?attr/dividerVertical</item>
-        <item name="height">?attr/actionBarSize</item>
-
-        <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item>
-        <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle</item>
-
-        <item name="background">@null</item>
-        <item name="backgroundStacked">@null</item>
-        <item name="backgroundSplit">@null</item>
-
-        <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
-        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
-
-        <item name="android:gravity">center_vertical</item>
-        <item name="contentInsetStart">@dimen/abc_action_bar_content_inset_material</item>
-        <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
-        <item name="contentInsetEnd">@dimen/abc_action_bar_content_inset_material</item>
-        <item name="elevation">@dimen/abc_action_bar_elevation_material</item>
-        <item name="popupTheme">?attr/actionBarPopupTheme</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar.Solid">
-        <item name="background">?attr/colorPrimary</item>
-        <item name="backgroundStacked">?attr/colorPrimary</item>
-        <item name="backgroundSplit">?attr/colorPrimary</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar.TabBar" parent="">
-        <item name="divider">?attr/actionBarDivider</item>
-        <item name="showDividers">middle</item>
-        <item name="dividerPadding">8dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar.TabText" parent="">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
-        <item name="android:textSize">12sp</item>
-        <item name="android:textStyle">bold</item>
-        <item name="android:ellipsize">marquee</item>
-        <item name="android:maxLines">2</item>
-        <item name="android:maxWidth">180dp</item>
-        <item name="textAllCaps">true</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar.TabView" parent="">
-        <item name="android:background">@drawable/abc_tab_indicator_material</item>
-        <item name="android:gravity">center_horizontal</item>
-        <item name="android:paddingLeft">16dip</item>
-        <item name="android:paddingRight">16dip</item>
-        <item name="android:layout_width">0dip</item>
-        <item name="android:layout_weight">1</item>
-        <item name="android:minWidth">80dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionButton" parent="RtlUnderlay.Widget.AppCompat.ActionButton">
-        <item name="android:background">?attr/actionBarItemBackground</item>
-        <item name="android:minWidth">@dimen/abc_action_button_min_width_material</item>
-        <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
-        <item name="android:scaleType">center</item>
-        <item name="android:gravity">center</item>
-        <item name="android:maxLines">2</item>
-        <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionButton.CloseMode">
-        <item name="android:background">?attr/controlBackground</item>
-        <item name="android:minWidth">56dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow">
-        <item name="srcCompat">@drawable/abc_ic_menu_overflow_material</item>
-        <item name="android:background">?attr/actionBarItemBackground</item>
-        <item name="android:contentDescription">@string/abc_action_menu_overflow_description</item>
-        <item name="android:minWidth">@dimen/abc_action_button_min_width_overflow_material</item>
-        <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionMode" parent="">
-        <item name="background">?attr/actionModeBackground</item>
-        <item name="backgroundSplit">?attr/actionModeSplitBackground</item>
-        <item name="height">?attr/actionBarSize</item>
-        <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Title</item>
-        <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle</item>
-        <item name="closeItemLayout">@layout/abc_action_mode_close_item_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActivityChooserView" parent="">
-        <item name="android:gravity">center</item>
-        <item name="android:background">@drawable/abc_ab_share_pack_mtrl_alpha</item>
-        <item name="divider">?attr/dividerVertical</item>
-        <item name="showDividers">middle</item>
-        <item name="dividerPadding">6dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="Base.V7.Widget.AppCompat.AutoCompleteTextView"/>
-    <style name="Base.Widget.AppCompat.Button" parent="android:Widget">
-        <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
-        <item name="android:textAppearance">?android:attr/textAppearanceButton</item>
-        <item name="android:minHeight">48dip</item>
-        <item name="android:minWidth">88dip</item>
-        <item name="android:focusable">true</item>
-        <item name="android:clickable">true</item>
-        <item name="android:gravity">center_vertical|center_horizontal</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.Borderless">
-        <item name="android:background">@drawable/abc_btn_borderless_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.Borderless.Colored">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Widget.AppCompat.Button.Borderless.Colored">
-        <item name="android:minWidth">64dp</item>
-        <item name="android:minHeight">@dimen/abc_alert_dialog_button_bar_height</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.Colored">
-        <item name="android:background">@drawable/abc_btn_colored_material</item>
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Colored</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.Small">
-        <item name="android:minHeight">48dip</item>
-        <item name="android:minWidth">48dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget">
-        <item name="android:background">@null</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ButtonBar.AlertDialog"/>
-    <style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.CompoundButton.CheckBox">
-        <item name="android:button">?android:attr/listChoiceIndicatorMultiple</item>
-        <item name="android:background">?attr/controlBackground</item>
-    </style>
-    <style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.CompoundButton.RadioButton">
-        <item name="android:button">?android:attr/listChoiceIndicatorSingle</item>
-        <item name="android:background">?attr/controlBackground</item>
-    </style>
-    <style name="Base.Widget.AppCompat.CompoundButton.Switch" parent="android:Widget.CompoundButton">
-        <item name="track">@drawable/abc_switch_track_mtrl_alpha</item>
-        <item name="android:thumb">@drawable/abc_switch_thumb_material</item>
-        <item name="switchTextAppearance">@style/TextAppearance.AppCompat.Widget.Switch</item>
-        <item name="android:background">?attr/controlBackground</item>
-        <item name="showText">false</item>
-        <item name="switchPadding">@dimen/abc_switch_padding</item>
-        <item name="android:textOn">@string/abc_capital_on</item>
-        <item name="android:textOff">@string/abc_capital_off</item>
-    </style>
-    <style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
-        <item name="barLength">18dp</item>
-        <item name="gapBetweenBars">3dp</item>
-        <item name="drawableSize">24dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.DrawerArrowToggle.Common" parent="">
-        <item name="color">?android:attr/textColorSecondary</item>
-        <item name="spinBars">true</item>
-        <item name="thickness">2dp</item>
-        <item name="arrowShaftLength">16dp</item>
-        <item name="arrowHeadLength">8dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.DropDownItem</item>
-        <item name="android:paddingLeft">8dp</item>
-        <item name="android:paddingRight">8dp</item>
-        <item name="android:gravity">center_vertical</item>
-    </style>
-    <style name="Base.Widget.AppCompat.EditText" parent="Base.V7.Widget.AppCompat.EditText"/>
-    <style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.ImageButton">
-        <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
-        <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
-        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.Solid">
-        <item name="background">?attr/colorPrimary</item>
-        <item name="backgroundStacked">?attr/colorPrimary</item>
-        <item name="backgroundSplit">?attr/colorPrimary</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
-        <item name="android:background">@drawable/abc_tab_indicator_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Light.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
-        <item name="overlapAnchor">true</item>
-        <item name="android:dropDownHorizontalOffset">-4dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListMenuView" parent="android:Widget">
-        <item name="subMenuArrow">@drawable/abc_ic_arrow_drop_right_black_24dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListPopupWindow" parent="">
-        <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
-        <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
-        <item name="android:dropDownVerticalOffset">0dip</item>
-        <item name="android:dropDownHorizontalOffset">0dip</item>
-        <item name="android:dropDownWidth">wrap_content</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListView" parent="android:Widget.ListView">
-        <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListView.DropDown">
-        <item name="android:divider">@null</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListView.Menu" parent="android:Widget.ListView.Menu">
-        <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
-        <item name="android:divider">?attr/dividerHorizontal</item>
-    </style>
-    <style name="Base.Widget.AppCompat.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
-    </style>
-    <style name="Base.Widget.AppCompat.PopupMenu.Overflow">
-        <item name="overlapAnchor">true</item>
-        <item name="android:dropDownHorizontalOffset">-4dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.PopupWindow" parent="android:Widget.PopupWindow">
-    </style>
-    <style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.ProgressBar">
-        <item name="android:minWidth">@dimen/abc_action_bar_progress_bar_size</item>
-        <item name="android:maxWidth">@dimen/abc_action_bar_progress_bar_size</item>
-        <item name="android:minHeight">@dimen/abc_action_bar_progress_bar_size</item>
-        <item name="android:maxHeight">@dimen/abc_action_bar_progress_bar_size</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.ProgressBar.Horizontal">
-    </style>
-    <style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.RatingBar">
-        <item name="android:progressDrawable">@drawable/abc_ratingbar_material</item>
-        <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.RatingBar">
-        <item name="android:progressDrawable">@drawable/abc_ratingbar_indicator_material</item>
-        <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_indicator_material</item>
-        <item name="android:minHeight">36dp</item>
-        <item name="android:maxHeight">36dp</item>
-        <item name="android:isIndicator">true</item>
-        <item name="android:thumb">@null</item>
-    </style>
-    <style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.RatingBar">
-        <item name="android:progressDrawable">@drawable/abc_ratingbar_small_material</item>
-        <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_small_material</item>
-        <item name="android:minHeight">16dp</item>
-        <item name="android:maxHeight">16dp</item>
-        <item name="android:isIndicator">true</item>
-        <item name="android:thumb">@null</item>
-    </style>
-    <style name="Base.Widget.AppCompat.SearchView" parent="android:Widget">
-        <item name="layout">@layout/abc_search_view</item>
-        <item name="queryBackground">@drawable/abc_textfield_search_material</item>
-        <item name="submitBackground">@drawable/abc_textfield_search_material</item>
-        <item name="closeIcon">@drawable/abc_ic_clear_material</item>
-        <item name="searchIcon">@drawable/abc_ic_search_api_material</item>
-        <item name="searchHintIcon">@drawable/abc_ic_search_api_material</item>
-        <item name="goIcon">@drawable/abc_ic_go_search_api_material</item>
-        <item name="voiceIcon">@drawable/abc_ic_voice_search_api_material</item>
-        <item name="commitIcon">@drawable/abc_ic_commit_search_api_mtrl_alpha</item>
-        <item name="suggestionRowLayout">@layout/abc_search_dropdown_item_icons_2line</item>
-    </style>
-    <style name="Base.Widget.AppCompat.SearchView.ActionBar">
-        <item name="queryBackground">@null</item>
-        <item name="submitBackground">@null</item>
-        <item name="searchHintIcon">@null</item>
-        <item name="defaultQueryHint">@string/abc_search_hint</item>
-    </style>
-    <style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget">
-        <item name="android:indeterminateOnly">false</item>
-        <item name="android:progressDrawable">@drawable/abc_seekbar_track_material</item>
-        <item name="android:indeterminateDrawable">@drawable/abc_seekbar_track_material</item>
-        <item name="android:thumb">@drawable/abc_seekbar_thumb_material</item>
-        <item name="android:focusable">true</item>
-        <item name="android:paddingLeft">16dip</item>
-        <item name="android:paddingRight">16dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.SeekBar.Discrete">
-        <item name="tickMark">@drawable/abc_seekbar_tick_mark_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Spinner" parent="Platform.Widget.AppCompat.Spinner">
-        <item name="android:background">@drawable/abc_spinner_mtrl_am_alpha</item>
-        <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
-        <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
-        <item name="android:dropDownVerticalOffset">0dip</item>
-        <item name="android:dropDownHorizontalOffset">0dip</item>
-        <item name="android:dropDownWidth">wrap_content</item>
-        <item name="android:clickable">true</item>
-        <item name="android:gravity">left|start|center_vertical</item>
-        <item name="overlapAnchor">true</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Spinner.Underlined">
-        <item name="android:background">@drawable/abc_spinner_textfield_background_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.TextView.SpinnerItem">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem</item>
-        <item name="android:paddingLeft">8dp</item>
-        <item name="android:paddingRight">8dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Toolbar" parent="android:Widget">
-        <item name="titleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Title</item>
-        <item name="subtitleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle</item>
-        <item name="android:minHeight">?attr/actionBarSize</item>
-        <item name="titleMargin">4dp</item>
-        <item name="maxButtonHeight">@dimen/abc_action_bar_default_height_material</item>
-        <item name="buttonGravity">top</item>
-        <item name="collapseIcon">?attr/homeAsUpIndicator</item>
-        <item name="collapseContentDescription">@string/abc_toolbar_collapse_description</item>
-        <item name="contentInsetStart">16dp</item>
-        <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
-        <item name="android:paddingLeft">@dimen/abc_action_bar_default_padding_start_material</item>
-        <item name="android:paddingRight">@dimen/abc_action_bar_default_padding_end_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget">
-        <item name="android:background">?attr/controlBackground</item>
-        <item name="android:minWidth">56dp</item>
-        <item name="android:scaleType">center</item>
-    </style>
-    <style name="Platform.AppCompat" parent="android:Theme">
-        <item name="android:windowNoTitle">true</item>
-
-        <!-- Window colors -->
-        <item name="android:colorForeground">@color/foreground_material_dark</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
-        <item name="android:colorBackground">@color/background_material_dark</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
-        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item>
-        <item name="android:backgroundDimAmount">0.6</item>
-        <item name="android:windowBackground">@color/background_material_dark</item>
-
-        <!-- Text colors -->
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
-        <item name="android:textColorLink">?attr/colorAccent</item>
-
-        <!-- Text styles -->
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
-        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
-        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
-        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
-        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
-        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
-
-        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
-        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
-
-        <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_dark</item>
-        <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_dark</item>
-        <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_dark</item>
-    </style>
-    <style name="Platform.AppCompat.Light" parent="android:Theme.Light">
-        <item name="android:windowNoTitle">true</item>
-
-        <!-- Window colors -->
-        <item name="android:colorForeground">@color/foreground_material_light</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
-        <item name="android:colorBackground">@color/background_material_light</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
-        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item>
-        <item name="android:backgroundDimAmount">0.6</item>
-        <item name="android:windowBackground">@color/background_material_light</item>
-
-        <!-- Text colors -->
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
-        <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
-        <item name="android:textColorLink">?attr/colorAccent</item>
-
-        <!-- Text styles -->
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
-        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
-        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
-        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
-        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
-        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
-
-        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
-        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
-
-        <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_light</item>
-        <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_light</item>
-        <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_light</item>
-    </style>
-    <style name="Platform.ThemeOverlay.AppCompat" parent=""/>
-    <style name="Platform.ThemeOverlay.AppCompat.Dark">
-        <!-- Action Bar styles -->
-        <item name="actionBarItemBackground">@drawable/abc_item_background_holo_dark</item>
-        <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
-        <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
-
-        <!-- SearchView styles -->
-        <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
-        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-    </style>
-    <style name="Platform.ThemeOverlay.AppCompat.Light">
-        <item name="actionBarItemBackground">@drawable/abc_item_background_holo_light</item>
-        <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
-        <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
-
-        <!-- SearchView attributes -->
-        <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.Light.AutoCompleteTextView</item>
-        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-    </style>
-    <style name="Platform.Widget.AppCompat.Spinner" parent="android:Widget.Spinner"/>
-    <style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
-        <item name="android:layout_gravity">center_vertical|left</item>
-        <item name="android:paddingRight">8dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
-        <item name="android:layout_marginRight">8dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
-        <item name="android:paddingRight">16dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
-        <item name="android:layout_marginLeft">16dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
-        <item name="android:layout_alignParentLeft">true</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
-        <item name="android:paddingLeft">@dimen/abc_dropdownitem_text_padding_left</item>
-        <item name="android:paddingRight">4dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
-        <item name="android:layout_alignParentLeft">true</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
-        <item name="android:layout_toLeftOf">@id/edit_query</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
-        <item name="android:layout_alignParentRight">true</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
-        <item name="android:layout_toLeftOf">@android:id/icon2</item>
-        <item name="android:layout_toRightOf">@android:id/icon1</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
-        <item name="android:layout_marginLeft">@dimen/abc_dropdownitem_text_padding_left</item>
-    </style>
-    <style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget">
-        <item name="android:paddingLeft">12dp</item>
-        <item name="android:paddingRight">12dp</item>
-    </style>
-    <style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton">
-        <item name="android:paddingLeft">@dimen/abc_action_bar_overflow_padding_start_material</item>
-        <item name="android:paddingRight">@dimen/abc_action_bar_overflow_padding_end_material</item>
-    </style>
-    <style name="TextAppearance.AppCompat" parent="Base.TextAppearance.AppCompat"/>
-    <style name="TextAppearance.AppCompat.Body1" parent="Base.TextAppearance.AppCompat.Body1"/>
-    <style name="TextAppearance.AppCompat.Body2" parent="Base.TextAppearance.AppCompat.Body2"/>
-    <style name="TextAppearance.AppCompat.Button" parent="Base.TextAppearance.AppCompat.Button"/>
-    <style name="TextAppearance.AppCompat.Caption" parent="Base.TextAppearance.AppCompat.Caption"/>
-    <style name="TextAppearance.AppCompat.Display1" parent="Base.TextAppearance.AppCompat.Display1"/>
-    <style name="TextAppearance.AppCompat.Display2" parent="Base.TextAppearance.AppCompat.Display2"/>
-    <style name="TextAppearance.AppCompat.Display3" parent="Base.TextAppearance.AppCompat.Display3"/>
-    <style name="TextAppearance.AppCompat.Display4" parent="Base.TextAppearance.AppCompat.Display4"/>
-    <style name="TextAppearance.AppCompat.Headline" parent="Base.TextAppearance.AppCompat.Headline"/>
-    <style name="TextAppearance.AppCompat.Inverse" parent="Base.TextAppearance.AppCompat.Inverse"/>
-    <style name="TextAppearance.AppCompat.Large" parent="Base.TextAppearance.AppCompat.Large"/>
-    <style name="TextAppearance.AppCompat.Large.Inverse" parent="Base.TextAppearance.AppCompat.Large.Inverse"/>
-    <style name="TextAppearance.AppCompat.Light.SearchResult.Subtitle" parent="TextAppearance.AppCompat.SearchResult.Subtitle"/>
-    <style name="TextAppearance.AppCompat.Light.SearchResult.Title" parent="TextAppearance.AppCompat.SearchResult.Title"/>
-    <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Widget.PopupMenu.Large"/>
-    <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Widget.PopupMenu.Small"/>
-    <style name="TextAppearance.AppCompat.Medium" parent="Base.TextAppearance.AppCompat.Medium"/>
-    <style name="TextAppearance.AppCompat.Medium.Inverse" parent="Base.TextAppearance.AppCompat.Medium.Inverse"/>
-    <style name="TextAppearance.AppCompat.Menu" parent="Base.TextAppearance.AppCompat.Menu"/>
-    <style name="TextAppearance.AppCompat.Notification">
-        <item name="android:textSize">14sp</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Info">
-        <item name="android:textSize">12sp</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Info.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Line2" parent="TextAppearance.AppCompat.Notification.Info"/>
-    <style name="TextAppearance.AppCompat.Notification.Line2.Media" parent="TextAppearance.AppCompat.Notification.Info.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Time">
-        <item name="android:textSize">12sp</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Time.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Title">
-        <item name="android:textSize">16sp</item>
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Title.Media"/>
-    <style name="TextAppearance.AppCompat.SearchResult.Subtitle" parent="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
-    </style>
-    <style name="TextAppearance.AppCompat.SearchResult.Title" parent="Base.TextAppearance.AppCompat.SearchResult.Title">
-    </style>
-    <style name="TextAppearance.AppCompat.Small" parent="Base.TextAppearance.AppCompat.Small"/>
-    <style name="TextAppearance.AppCompat.Small.Inverse" parent="Base.TextAppearance.AppCompat.Small.Inverse"/>
-    <style name="TextAppearance.AppCompat.Subhead" parent="Base.TextAppearance.AppCompat.Subhead"/>
-    <style name="TextAppearance.AppCompat.Subhead.Inverse" parent="Base.TextAppearance.AppCompat.Subhead.Inverse"/>
-    <style name="TextAppearance.AppCompat.Title" parent="Base.TextAppearance.AppCompat.Title"/>
-    <style name="TextAppearance.AppCompat.Title.Inverse" parent="Base.TextAppearance.AppCompat.Title.Inverse"/>
-    <style name="TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/>
-    <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.ActionBar.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title"/>
-    <style name="TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Subtitle"/>
-    <style name="TextAppearance.AppCompat.Widget.ActionMode.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Title">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Title"/>
-    <style name="TextAppearance.AppCompat.Widget.Button" parent="Base.TextAppearance.AppCompat.Widget.Button"/>
-    <style name="TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored"/>
-    <style name="TextAppearance.AppCompat.Widget.Button.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Colored"/>
-    <style name="TextAppearance.AppCompat.Widget.Button.Inverse" parent="Base.TextAppearance.AppCompat.Widget.Button.Inverse"/>
-    <style name="TextAppearance.AppCompat.Widget.DropDownItem" parent="Base.TextAppearance.AppCompat.Widget.DropDownItem">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header"/>
-    <style name="TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large"/>
-    <style name="TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small"/>
-    <style name="TextAppearance.AppCompat.Widget.Switch" parent="Base.TextAppearance.AppCompat.Widget.Switch"/>
-    <style name="TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem"/>
-    <style name="TextAppearance.StatusBar.EventContent" parent=""/>
-    <style name="TextAppearance.StatusBar.EventContent.Info" parent=""/>
-    <style name="TextAppearance.StatusBar.EventContent.Line2" parent=""/>
-    <style name="TextAppearance.StatusBar.EventContent.Time" parent=""/>
-    <style name="TextAppearance.StatusBar.EventContent.Title" parent=""/>
-    <style name="TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item">
-    </style>
-    <style name="TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle">
-    </style>
-    <style name="TextAppearance.Widget.AppCompat.Toolbar.Title" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Title">
-    </style>
-    <style name="Theme.AppCompat" parent="Base.Theme.AppCompat"/>
-    <style name="Theme.AppCompat.CompactMenu" parent="Base.Theme.AppCompat.CompactMenu"/>
-    <style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat.Light"/>
-    <style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat.Light.DarkActionBar"/>
-    <style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Light.Dialog"/>
-    <style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Light.Dialog.Alert"/>
-    <style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Light.Dialog.MinWidth"/>
-    <style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.Light.DialogWhenLarge"/>
-    <style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar"/>
-    <style name="Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat.Dialog"/>
-    <style name="Theme.AppCompat.Dialog.Alert" parent="Base.Theme.AppCompat.Dialog.Alert"/>
-    <style name="Theme.AppCompat.Dialog.MinWidth" parent="Base.Theme.AppCompat.Dialog.MinWidth"/>
-    <style name="Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.DialogWhenLarge">
-    </style>
-    <style name="Theme.AppCompat.Light" parent="Base.Theme.AppCompat.Light"/>
-    <style name="Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light.DarkActionBar"/>
-    <style name="Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light.Dialog"/>
-    <style name="Theme.AppCompat.Light.Dialog.Alert" parent="Base.Theme.AppCompat.Light.Dialog.Alert"/>
-    <style name="Theme.AppCompat.Light.Dialog.MinWidth" parent="Base.Theme.AppCompat.Light.Dialog.MinWidth"/>
-    <style name="Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.DialogWhenLarge">
-    </style>
-    <style name="Theme.AppCompat.Light.NoActionBar">
-        <item name="windowActionBar">false</item>
-        <item name="windowNoTitle">true</item>
-    </style>
-    <style name="Theme.AppCompat.NoActionBar">
-        <item name="windowActionBar">false</item>
-        <item name="windowNoTitle">true</item>
-    </style>
-    <style name="ThemeOverlay.AppCompat" parent="Base.ThemeOverlay.AppCompat"/>
-    <style name="ThemeOverlay.AppCompat.ActionBar" parent="Base.ThemeOverlay.AppCompat.ActionBar"/>
-    <style name="ThemeOverlay.AppCompat.Dark" parent="Base.ThemeOverlay.AppCompat.Dark"/>
-    <style name="ThemeOverlay.AppCompat.Dark.ActionBar" parent="Base.ThemeOverlay.AppCompat.Dark.ActionBar"/>
-    <style name="ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat.Dialog"/>
-    <style name="ThemeOverlay.AppCompat.Dialog.Alert" parent="Base.ThemeOverlay.AppCompat.Dialog.Alert"/>
-    <style name="ThemeOverlay.AppCompat.Light" parent="Base.ThemeOverlay.AppCompat.Light"/>
-    <style name="Widget.AppCompat.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
-    </style>
-    <style name="Widget.AppCompat.ActionBar.Solid" parent="Base.Widget.AppCompat.ActionBar.Solid">
-    </style>
-    <style name="Widget.AppCompat.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
-    </style>
-    <style name="Widget.AppCompat.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
-    </style>
-    <style name="Widget.AppCompat.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
-    </style>
-    <style name="Widget.AppCompat.ActionButton" parent="Base.Widget.AppCompat.ActionButton"/>
-    <style name="Widget.AppCompat.ActionButton.CloseMode" parent="Base.Widget.AppCompat.ActionButton.CloseMode"/>
-    <style name="Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton.Overflow"/>
-    <style name="Widget.AppCompat.ActionMode" parent="Base.Widget.AppCompat.ActionMode">
-    </style>
-    <style name="Widget.AppCompat.ActivityChooserView" parent="Base.Widget.AppCompat.ActivityChooserView">
-    </style>
-    <style name="Widget.AppCompat.AutoCompleteTextView" parent="Base.Widget.AppCompat.AutoCompleteTextView">
-    </style>
-    <style name="Widget.AppCompat.Button" parent="Base.Widget.AppCompat.Button"/>
-    <style name="Widget.AppCompat.Button.Borderless" parent="Base.Widget.AppCompat.Button.Borderless"/>
-    <style name="Widget.AppCompat.Button.Borderless.Colored" parent="Base.Widget.AppCompat.Button.Borderless.Colored"/>
-    <style name="Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog"/>
-    <style name="Widget.AppCompat.Button.Colored" parent="Base.Widget.AppCompat.Button.Colored"/>
-    <style name="Widget.AppCompat.Button.Small" parent="Base.Widget.AppCompat.Button.Small"/>
-    <style name="Widget.AppCompat.ButtonBar" parent="Base.Widget.AppCompat.ButtonBar"/>
-    <style name="Widget.AppCompat.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.ButtonBar.AlertDialog"/>
-    <style name="Widget.AppCompat.CompoundButton.CheckBox" parent="Base.Widget.AppCompat.CompoundButton.CheckBox"/>
-    <style name="Widget.AppCompat.CompoundButton.RadioButton" parent="Base.Widget.AppCompat.CompoundButton.RadioButton"/>
-    <style name="Widget.AppCompat.CompoundButton.Switch" parent="Base.Widget.AppCompat.CompoundButton.Switch"/>
-    <style name="Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle">
-        <item name="color">?attr/colorControlNormal</item>
-    </style>
-    <style name="Widget.AppCompat.DropDownItem.Spinner" parent="RtlOverlay.Widget.AppCompat.Search.DropDown.Text"/>
-    <style name="Widget.AppCompat.EditText" parent="Base.Widget.AppCompat.EditText"/>
-    <style name="Widget.AppCompat.ImageButton" parent="Base.Widget.AppCompat.ImageButton"/>
-    <style name="Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.Light.ActionBar">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.Solid" parent="Base.Widget.AppCompat.Light.ActionBar.Solid">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.Solid.Inverse"/>
-    <style name="Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.Light.ActionBar.TabBar">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.TabBar.Inverse"/>
-    <style name="Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.Light.ActionBar.TabView">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.TabView.Inverse"/>
-    <style name="Widget.AppCompat.Light.ActionButton" parent="Widget.AppCompat.ActionButton"/>
-    <style name="Widget.AppCompat.Light.ActionButton.CloseMode" parent="Widget.AppCompat.ActionButton.CloseMode"/>
-    <style name="Widget.AppCompat.Light.ActionButton.Overflow" parent="Widget.AppCompat.ActionButton.Overflow"/>
-    <style name="Widget.AppCompat.Light.ActionMode.Inverse" parent="Widget.AppCompat.ActionMode"/>
-    <style name="Widget.AppCompat.Light.ActivityChooserView" parent="Widget.AppCompat.ActivityChooserView"/>
-    <style name="Widget.AppCompat.Light.AutoCompleteTextView" parent="Widget.AppCompat.AutoCompleteTextView"/>
-    <style name="Widget.AppCompat.Light.DropDownItem.Spinner" parent="Widget.AppCompat.DropDownItem.Spinner"/>
-    <style name="Widget.AppCompat.Light.ListPopupWindow" parent="Widget.AppCompat.ListPopupWindow"/>
-    <style name="Widget.AppCompat.Light.ListView.DropDown" parent="Widget.AppCompat.ListView.DropDown"/>
-    <style name="Widget.AppCompat.Light.PopupMenu" parent="Base.Widget.AppCompat.Light.PopupMenu"/>
-    <style name="Widget.AppCompat.Light.PopupMenu.Overflow" parent="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
-    </style>
-    <style name="Widget.AppCompat.Light.SearchView" parent="Widget.AppCompat.SearchView"/>
-    <style name="Widget.AppCompat.Light.Spinner.DropDown.ActionBar" parent="Widget.AppCompat.Spinner.DropDown.ActionBar"/>
-    <style name="Widget.AppCompat.ListMenuView" parent="Base.Widget.AppCompat.ListMenuView"/>
-    <style name="Widget.AppCompat.ListPopupWindow" parent="Base.Widget.AppCompat.ListPopupWindow">
-    </style>
-    <style name="Widget.AppCompat.ListView" parent="Base.Widget.AppCompat.ListView"/>
-    <style name="Widget.AppCompat.ListView.DropDown" parent="Base.Widget.AppCompat.ListView.DropDown"/>
-    <style name="Widget.AppCompat.ListView.Menu" parent="Base.Widget.AppCompat.ListView.Menu"/>
-    <style name="Widget.AppCompat.NotificationActionContainer" parent=""/>
-    <style name="Widget.AppCompat.NotificationActionText" parent=""/>
-    <style name="Widget.AppCompat.PopupMenu" parent="Base.Widget.AppCompat.PopupMenu"/>
-    <style name="Widget.AppCompat.PopupMenu.Overflow" parent="Base.Widget.AppCompat.PopupMenu.Overflow">
-    </style>
-    <style name="Widget.AppCompat.PopupWindow" parent="Base.Widget.AppCompat.PopupWindow">
-    </style>
-    <style name="Widget.AppCompat.ProgressBar" parent="Base.Widget.AppCompat.ProgressBar">
-    </style>
-    <style name="Widget.AppCompat.ProgressBar.Horizontal" parent="Base.Widget.AppCompat.ProgressBar.Horizontal">
-    </style>
-    <style name="Widget.AppCompat.RatingBar" parent="Base.Widget.AppCompat.RatingBar"/>
-    <style name="Widget.AppCompat.RatingBar.Indicator" parent="Base.Widget.AppCompat.RatingBar.Indicator"/>
-    <style name="Widget.AppCompat.RatingBar.Small" parent="Base.Widget.AppCompat.RatingBar.Small"/>
-    <style name="Widget.AppCompat.SearchView" parent="Base.Widget.AppCompat.SearchView"/>
-    <style name="Widget.AppCompat.SearchView.ActionBar" parent="Base.Widget.AppCompat.SearchView.ActionBar"/>
-    <style name="Widget.AppCompat.SeekBar" parent="Base.Widget.AppCompat.SeekBar"/>
-    <style name="Widget.AppCompat.SeekBar.Discrete" parent="Base.Widget.AppCompat.SeekBar.Discrete"/>
-    <style name="Widget.AppCompat.Spinner" parent="Base.Widget.AppCompat.Spinner"/>
-    <style name="Widget.AppCompat.Spinner.DropDown"/>
-    <style name="Widget.AppCompat.Spinner.DropDown.ActionBar"/>
-    <style name="Widget.AppCompat.Spinner.Underlined" parent="Base.Widget.AppCompat.Spinner.Underlined"/>
-    <style name="Widget.AppCompat.TextView.SpinnerItem" parent="Base.Widget.AppCompat.TextView.SpinnerItem"/>
-    <style name="Widget.AppCompat.Toolbar" parent="Base.Widget.AppCompat.Toolbar"/>
-    <style name="Widget.AppCompat.Toolbar.Button.Navigation" parent="Base.Widget.AppCompat.Toolbar.Button.Navigation"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/AndroidManifest.xml
deleted file mode 100644
index 464698c2c47b4c38509e60cdcced18ca5d620ab8..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:tools="http://schemas.android.com/tools"
-    package="android.support.compat" >
-
-    <uses-sdk
-        android:minSdkVersion="9"
-        tools:overrideLibrary="android.support.compat" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/aidl/android/support/v4/os/ResultReceiver.aidl b/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/aidl/android/support/v4/os/ResultReceiver.aidl
deleted file mode 100644
index 81c81f6a934ec7d822be443655fe7edafaa68eeb..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/aidl/android/support/v4/os/ResultReceiver.aidl
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
-** Copyright 2015, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-**     http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
-
-package android.support.v4.os;
-
-parcelable ResultReceiver;
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/annotations.zip b/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/annotations.zip
deleted file mode 100644
index 4dfa76a2d7108c56d9bffbb45ca0a53c8ba9963f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/annotations.zip and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/jars/classes.jar
deleted file mode 100644
index ade43fcc79fd3e199ec3b19131639baca794f039..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/AndroidManifest.xml
deleted file mode 100644
index 13f520c393ff4a3547e06cb35de5360942a89ab7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:tools="http://schemas.android.com/tools"
-    package="android.support.coreui" >
-
-    <uses-sdk
-        android:minSdkVersion="9"
-        tools:overrideLibrary="android.support.coreui" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/annotations.zip b/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/annotations.zip
deleted file mode 100644
index 906253f66399fe390b4cfc8bbf293dc87d6f79be..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/annotations.zip and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/jars/classes.jar
deleted file mode 100644
index e3e58950448967812073c94d4f6f67979e135f98..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/proguard.txt b/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/proguard.txt
deleted file mode 100644
index 2ec1c653cd4db45a3d6e5ee7fcddf782d141b05a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/proguard.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright (C) 2016 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-# Make sure we keep annotations for ViewPager's DecorView
--keepattributes *Annotation*
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/AndroidManifest.xml
deleted file mode 100644
index 7565bbe25f7859adc77e42079a14a6086d79e086..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:tools="http://schemas.android.com/tools"
-    package="android.support.coreutils" >
-
-    <uses-sdk
-        android:minSdkVersion="9"
-        tools:overrideLibrary="android.support.coreutils" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/annotations.zip b/android/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/annotations.zip
deleted file mode 100644
index 44167e50e08f717473799ca093fd8643872476bf..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/annotations.zip and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/jars/classes.jar
deleted file mode 100644
index 0904a17c0d0354da7de5e0306a685c1adbbca5bb..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/AndroidManifest.xml
deleted file mode 100644
index 0e76490e7fa9078fdc3b1eaebcef7fbfcd2a8487..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:tools="http://schemas.android.com/tools"
-    package="android.support.fragment" >
-
-    <uses-sdk
-        android:minSdkVersion="9"
-        tools:overrideLibrary="android.support.fragment" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/annotations.zip b/android/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/annotations.zip
deleted file mode 100644
index 11f3235d8de9af31431f8ac4773be4ccf0233da9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/annotations.zip and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/jars/classes.jar
deleted file mode 100644
index b278caaa9da0672d7096e9fd654fd0cc872b47d9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/AndroidManifest.xml
deleted file mode 100644
index fba03258f17ec6aed8016f334a94f32a0685f472..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:tools="http://schemas.android.com/tools"
-    package="android.support.mediacompat" >
-
-    <uses-sdk
-        android:minSdkVersion="9"
-        tools:overrideLibrary="android.support.mediacompat" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/aidl/android/support/v4/media/MediaMetadataCompat.aidl b/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/aidl/android/support/v4/media/MediaMetadataCompat.aidl
deleted file mode 100644
index 6d36b97eca36fb58db1ab3eed058d5043f790329..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/aidl/android/support/v4/media/MediaMetadataCompat.aidl
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Copyright 2014, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-**     http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
-
-package android.support.v4.media;
-
-parcelable MediaMetadataCompat;
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/aidl/android/support/v4/media/RatingCompat.aidl b/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/aidl/android/support/v4/media/RatingCompat.aidl
deleted file mode 100644
index 223fd5c96f73e12c98906546387f77a35e05e0f1..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/aidl/android/support/v4/media/RatingCompat.aidl
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Copyright 2014, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-**     http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
-
-package android.support.v4.media;
-
-parcelable RatingCompat;
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/aidl/android/support/v4/media/session/MediaSessionCompat.aidl b/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/aidl/android/support/v4/media/session/MediaSessionCompat.aidl
deleted file mode 100644
index d0c2f6fce2caf63c6138fd2de300ef8bde70fc5c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/aidl/android/support/v4/media/session/MediaSessionCompat.aidl
+++ /dev/null
@@ -1,20 +0,0 @@
-/* Copyright 2014, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-**     http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
-
-package android.support.v4.media.session;
-
-parcelable MediaSessionCompat.Token;
-parcelable MediaSessionCompat.QueueItem;
-parcelable MediaSessionCompat.ResultReceiverWrapper;
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl b/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl
deleted file mode 100644
index 2e77c4fbde08e92f4843dc3bf1a51b0eeaf1169c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Copyright 2014, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-**     http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
-
-package android.support.v4.media.session;
-
-parcelable ParcelableVolumeInfo;
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl b/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl
deleted file mode 100644
index 3d4ef5956a592baf812e5c432234a20240a4b980..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Copyright 2014, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-**     http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
-
-package android.support.v4.media.session;
-
-parcelable PlaybackStateCompat;
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/annotations.zip b/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/annotations.zip
deleted file mode 100644
index f73d008e803ff61863ddaf4335c3248b36026d70..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/annotations.zip and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/jars/classes.jar
deleted file mode 100644
index 5ffc1dd74f2b80afaef04d0dc0e17a305f10585e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-v4/25.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.android.support/support-v4/25.2.0/AndroidManifest.xml
deleted file mode 100644
index 7d4064c26a0b46a7f286a7c2f86d21647ba4de1b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/support-v4/25.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:tools="http://schemas.android.com/tools"
-    package="android.support.v4" >
-
-    <uses-sdk
-        android:minSdkVersion="9"
-        tools:overrideLibrary="android.support.v4" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-v4/25.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.android.support/support-v4/25.2.0/jars/classes.jar
deleted file mode 100644
index 10ff45ae029d6017adb971b7dd40fd824f816df2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/support-v4/25.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-vector-drawable/25.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.android.support/support-vector-drawable/25.2.0/AndroidManifest.xml
deleted file mode 100644
index 3dd713edb2b285b9a96c14365e92662086069b21..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.android.support/support-vector-drawable/25.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-   Copyright (C) 2015 The Android Open Source Project
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
-
-        http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
--->
-<manifest
-    package="android.support.graphics.drawable"
-    xmlns:android="http://schemas.android.com/apk/res/android" >
-
-    <uses-sdk android:minSdkVersion="9" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.android.support/support-vector-drawable/25.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.android.support/support-vector-drawable/25.2.0/jars/classes.jar
deleted file mode 100644
index f305ba00c6a3a35ebd61e6a2747fecc5c4320963..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.android.support/support-vector-drawable/25.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.11/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.11/AndroidManifest.xml
deleted file mode 100644
index 042c35512cafc00810ced0bb21763c2210c5a38f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.11/AndroidManifest.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.crashlytics.android.answers"
-    android:versionCode="1"
-    android:versionName="1.3.11" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.11/aapt/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.11/aapt/AndroidManifest.xml
deleted file mode 100644
index 042c35512cafc00810ced0bb21763c2210c5a38f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.11/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.crashlytics.android.answers"
-    android:versionCode="1"
-    android:versionName="1.3.11" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.11/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.11/jars/classes.jar
deleted file mode 100644
index 3341dbc49b24a658001ac21e2401c50122149431..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.11/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/AndroidManifest.xml
deleted file mode 100644
index 1e40a4a260bfc8476bdb8f0eccc0884d7023de74..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/AndroidManifest.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.crashlytics.android.answers"
-    android:versionCode="1"
-    android:versionName="1.3.12" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/aapt/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/aapt/AndroidManifest.xml
deleted file mode 100644
index 1e40a4a260bfc8476bdb8f0eccc0884d7023de74..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.crashlytics.android.answers"
-    android:versionCode="1"
-    android:versionName="1.3.12" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/jars/classes.jar
deleted file mode 100644
index 5a516b5129936eb03646adf1cdea86601ba20021..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.3/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.3/AndroidManifest.xml
deleted file mode 100644
index 19ecd54ba9d1ed4b8b1664c40aa7854508a4aeb7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.3/AndroidManifest.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.crashlytics.android.beta"
-    android:versionCode="1"
-    android:versionName="1.2.3" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.3/aapt/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.3/aapt/AndroidManifest.xml
deleted file mode 100644
index 19ecd54ba9d1ed4b8b1664c40aa7854508a4aeb7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.3/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.crashlytics.android.beta"
-    android:versionCode="1"
-    android:versionName="1.2.3" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.3/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.3/jars/classes.jar
deleted file mode 100644
index 61337920393f5e3d768045dc5a7e29c506cab63e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.3/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/AndroidManifest.xml
deleted file mode 100644
index 14b8732868236e1275a2680274a7c234889f536d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/AndroidManifest.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.crashlytics.android.beta"
-    android:versionCode="1"
-    android:versionName="1.2.4" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/aapt/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/aapt/AndroidManifest.xml
deleted file mode 100644
index 14b8732868236e1275a2680274a7c234889f536d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.crashlytics.android.beta"
-    android:versionCode="1"
-    android:versionName="1.2.4" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/jars/classes.jar
deleted file mode 100644
index 3f7efc1bab88b39eaeef006b26afd86855cb7517..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.15/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.15/AndroidManifest.xml
deleted file mode 100644
index 5f1cc175cf7350b8a8e1921af2c374f475ca98be..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.15/AndroidManifest.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ ATTRIBUTIONS:
-  ~
-  ~ Protocol Buffers - Google's data interchange format
-  ~ WireFormat.class, ByteString.class, CodedOutputStream.class
-  ~ http://code.google.com/p/protobuf-c/source/browse/trunk/LICENSE
-  ~
-  ~ Copyright (c) 2008-2011, Dave Benson.
-  ~
-  ~ All rights reserved.
-  ~
-  ~ Redistribution and use in source and binary forms, with
-  ~ or without modification, are permitted provided that the
-  ~ following conditions are met:
-  ~
-  ~ * Redistributions of source code must retain the above
-  ~ copyright notice, this list of conditions and the following
-  ~ disclaimer.
-  ~ * Redistributions in binary form must reproduce
-  ~ the above copyright notice, this list of conditions and
-  ~ the following disclaimer in the documentation and/or other
-  ~ materials provided with the distribution.
-  ~ * Neither the name
-  ~ of "protobuf-c" nor the names of its contributors
-  ~ may be used to endorse or promote products derived from
-  ~ this software without specific prior written permission.
-  ~
-  ~ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
-  ~ CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
-  ~ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-  ~ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-  ~ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
-  ~ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-  ~ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-  ~ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
-  ~ GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
-  ~ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-  ~ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-  ~ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-  ~ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-  ~ POSSIBILITY OF SUCH DAMAGE.
-  ~
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.crashlytics.android.core"
-    android:versionCode="1"
-    android:versionName="2.3.15" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.15/aapt/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.15/aapt/AndroidManifest.xml
deleted file mode 100644
index 5f1cc175cf7350b8a8e1921af2c374f475ca98be..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.15/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ ATTRIBUTIONS:
-  ~
-  ~ Protocol Buffers - Google's data interchange format
-  ~ WireFormat.class, ByteString.class, CodedOutputStream.class
-  ~ http://code.google.com/p/protobuf-c/source/browse/trunk/LICENSE
-  ~
-  ~ Copyright (c) 2008-2011, Dave Benson.
-  ~
-  ~ All rights reserved.
-  ~
-  ~ Redistribution and use in source and binary forms, with
-  ~ or without modification, are permitted provided that the
-  ~ following conditions are met:
-  ~
-  ~ * Redistributions of source code must retain the above
-  ~ copyright notice, this list of conditions and the following
-  ~ disclaimer.
-  ~ * Redistributions in binary form must reproduce
-  ~ the above copyright notice, this list of conditions and
-  ~ the following disclaimer in the documentation and/or other
-  ~ materials provided with the distribution.
-  ~ * Neither the name
-  ~ of "protobuf-c" nor the names of its contributors
-  ~ may be used to endorse or promote products derived from
-  ~ this software without specific prior written permission.
-  ~
-  ~ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
-  ~ CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
-  ~ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-  ~ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-  ~ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
-  ~ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-  ~ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-  ~ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
-  ~ GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
-  ~ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-  ~ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-  ~ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-  ~ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-  ~ POSSIBILITY OF SUCH DAMAGE.
-  ~
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.crashlytics.android.core"
-    android:versionCode="1"
-    android:versionName="2.3.15" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.15/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.15/jars/classes.jar
deleted file mode 100644
index 4521e9cbfe4d7f39cdba8bd5c30f456f3a8ce467..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.15/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/AndroidManifest.xml
deleted file mode 100644
index 236b5cc94a8eecc71173592d95755ee3b8c3bf9f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/AndroidManifest.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ ATTRIBUTIONS:
-  ~
-  ~ Protocol Buffers - Google's data interchange format
-  ~ WireFormat.class, ByteString.class, CodedOutputStream.class
-  ~ http://code.google.com/p/protobuf-c/source/browse/trunk/LICENSE
-  ~
-  ~ Copyright (c) 2008-2011, Dave Benson.
-  ~
-  ~ All rights reserved.
-  ~
-  ~ Redistribution and use in source and binary forms, with
-  ~ or without modification, are permitted provided that the
-  ~ following conditions are met:
-  ~
-  ~ * Redistributions of source code must retain the above
-  ~ copyright notice, this list of conditions and the following
-  ~ disclaimer.
-  ~ * Redistributions in binary form must reproduce
-  ~ the above copyright notice, this list of conditions and
-  ~ the following disclaimer in the documentation and/or other
-  ~ materials provided with the distribution.
-  ~ * Neither the name
-  ~ of "protobuf-c" nor the names of its contributors
-  ~ may be used to endorse or promote products derived from
-  ~ this software without specific prior written permission.
-  ~
-  ~ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
-  ~ CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
-  ~ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-  ~ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-  ~ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
-  ~ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-  ~ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-  ~ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
-  ~ GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
-  ~ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-  ~ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-  ~ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-  ~ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-  ~ POSSIBILITY OF SUCH DAMAGE.
-  ~
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.crashlytics.android.core"
-    android:versionCode="1"
-    android:versionName="2.3.16" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/aapt/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/aapt/AndroidManifest.xml
deleted file mode 100644
index 236b5cc94a8eecc71173592d95755ee3b8c3bf9f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ ATTRIBUTIONS:
-  ~
-  ~ Protocol Buffers - Google's data interchange format
-  ~ WireFormat.class, ByteString.class, CodedOutputStream.class
-  ~ http://code.google.com/p/protobuf-c/source/browse/trunk/LICENSE
-  ~
-  ~ Copyright (c) 2008-2011, Dave Benson.
-  ~
-  ~ All rights reserved.
-  ~
-  ~ Redistribution and use in source and binary forms, with
-  ~ or without modification, are permitted provided that the
-  ~ following conditions are met:
-  ~
-  ~ * Redistributions of source code must retain the above
-  ~ copyright notice, this list of conditions and the following
-  ~ disclaimer.
-  ~ * Redistributions in binary form must reproduce
-  ~ the above copyright notice, this list of conditions and
-  ~ the following disclaimer in the documentation and/or other
-  ~ materials provided with the distribution.
-  ~ * Neither the name
-  ~ of "protobuf-c" nor the names of its contributors
-  ~ may be used to endorse or promote products derived from
-  ~ this software without specific prior written permission.
-  ~
-  ~ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
-  ~ CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
-  ~ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-  ~ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-  ~ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
-  ~ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-  ~ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-  ~ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
-  ~ GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
-  ~ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-  ~ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-  ~ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-  ~ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-  ~ POSSIBILITY OF SUCH DAMAGE.
-  ~
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.crashlytics.android.core"
-    android:versionCode="1"
-    android:versionName="2.3.16" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/jars/classes.jar
deleted file mode 100644
index 69640271b3ed5c610b7ea155f578312934f81ca1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/AndroidManifest.xml
deleted file mode 100644
index d3ac5425d7a96ce9ab36e610837f3a0bbe4a9121..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/AndroidManifest.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ ATTRIBUTIONS:
-
-  ~ libunwind - a platform-independent unwind library
-  ~ Copyright (C) 2012 Tommi Rantala <tt.rantala@gmail.com>
-  ~ Copyright (C) 2013 Linaro Limited
-  ~ Copyright (C) 2008 CodeSourcery
-  ~
-  ~ you may not use these libunwind except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
-  ~
-  ~
--->
-<manifest
-    package="com.crashlytics.android.ndk"
-    xmlns:android="http://schemas.android.com/apk/res/android"
-    android:versionCode="1"
-    android:versionName="1.1.6" >
-
-    <uses-sdk android:minSdkVersion="9" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/aapt/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/aapt/AndroidManifest.xml
deleted file mode 100644
index d3ac5425d7a96ce9ab36e610837f3a0bbe4a9121..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ ATTRIBUTIONS:
-
-  ~ libunwind - a platform-independent unwind library
-  ~ Copyright (C) 2012 Tommi Rantala <tt.rantala@gmail.com>
-  ~ Copyright (C) 2013 Linaro Limited
-  ~ Copyright (C) 2008 CodeSourcery
-  ~
-  ~ you may not use these libunwind except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
-  ~
-  ~
--->
-<manifest
-    package="com.crashlytics.android.ndk"
-    xmlns:android="http://schemas.android.com/apk/res/android"
-    android:versionCode="1"
-    android:versionName="1.1.6" >
-
-    <uses-sdk android:minSdkVersion="9" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jars/classes.jar
deleted file mode 100644
index 1665fa79f73cec640fed4a626712dba052c7845c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/arm64-v8a/libcrashlytics-envelope.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/arm64-v8a/libcrashlytics-envelope.so
deleted file mode 100644
index 22b6bba1fbb412fbf7adc8a9b81eba24e7a32460..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/arm64-v8a/libcrashlytics-envelope.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/arm64-v8a/libcrashlytics.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/arm64-v8a/libcrashlytics.so
deleted file mode 100644
index c09aef45dd22102d7721306ef4b04b8a520160e2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/arm64-v8a/libcrashlytics.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/arm64-v8a/libunwind-crashlytics.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/arm64-v8a/libunwind-crashlytics.so
deleted file mode 100644
index 4dfd47ef697c9c9b9c7fdcbc572ff67384b7430f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/arm64-v8a/libunwind-crashlytics.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/armeabi-v7a/libcrashlytics-envelope.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/armeabi-v7a/libcrashlytics-envelope.so
deleted file mode 100644
index 99bbdb425c417b3c07297e1843d4be26e43ee4c5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/armeabi-v7a/libcrashlytics-envelope.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/armeabi-v7a/libcrashlytics.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/armeabi-v7a/libcrashlytics.so
deleted file mode 100644
index db5503f71fecc9e5c8c2581f21d68a38c7d7b604..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/armeabi-v7a/libcrashlytics.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/armeabi-v7a/libunwind-crashlytics.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/armeabi-v7a/libunwind-crashlytics.so
deleted file mode 100644
index 0811e84f096b745e886775a8dbfec7dbf8caccc9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/armeabi-v7a/libunwind-crashlytics.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/armeabi/libcrashlytics.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/armeabi/libcrashlytics.so
deleted file mode 100644
index f618c811ba161295f731b657b3ac222b60970c82..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/armeabi/libcrashlytics.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips/libcrashlytics-envelope.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips/libcrashlytics-envelope.so
deleted file mode 100644
index 15ec416884f0fde9cd2e040f8a8ae930e41970be..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips/libcrashlytics-envelope.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips/libcrashlytics.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips/libcrashlytics.so
deleted file mode 100644
index 9f51aa40055407d18f660825cb00361e6b78d555..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips/libcrashlytics.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips/libunwind-crashlytics.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips/libunwind-crashlytics.so
deleted file mode 100644
index 6fa5a29026c18f981841f917e50b567e99fc3b75..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips/libunwind-crashlytics.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips64/libcrashlytics-envelope.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips64/libcrashlytics-envelope.so
deleted file mode 100644
index b7aa57ba1a61d9d05aaa6fd0d6f3ed71dcb91bd3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips64/libcrashlytics-envelope.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips64/libcrashlytics.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips64/libcrashlytics.so
deleted file mode 100644
index c0901d14508694450b751d5b07cdb146ac05be96..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips64/libcrashlytics.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips64/libunwind-crashlytics.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips64/libunwind-crashlytics.so
deleted file mode 100644
index 37ebe7ede8dd3e1a2af2305d28cf635b07116a2f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/mips64/libunwind-crashlytics.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86/libcrashlytics-envelope.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86/libcrashlytics-envelope.so
deleted file mode 100644
index af54c93eae133e4337cece6778e8e58711dfea1d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86/libcrashlytics-envelope.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86/libcrashlytics.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86/libcrashlytics.so
deleted file mode 100644
index 3e12b2c13c582e49b9629f37a2f04400848bbac6..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86/libcrashlytics.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86/libunwind-crashlytics.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86/libunwind-crashlytics.so
deleted file mode 100644
index 8644c3028b8162022f2072734eb9367757dc995c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86/libunwind-crashlytics.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86_64/libcrashlytics-envelope.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86_64/libcrashlytics-envelope.so
deleted file mode 100644
index 9b86dcc395036bbc5e4e3c17b84b2e3b7ce82094..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86_64/libcrashlytics-envelope.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86_64/libcrashlytics.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86_64/libcrashlytics.so
deleted file mode 100644
index c7f7543669876e91dfa7d8153b6290bf75d57c40..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86_64/libcrashlytics.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86_64/libunwind-crashlytics.so b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86_64/libunwind-crashlytics.so
deleted file mode 100644
index a1dc6e57ca025f358e63b948e8a6e5761779c000..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jni/x86_64/libunwind-crashlytics.so and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.6/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.6/AndroidManifest.xml
deleted file mode 100644
index dcc572f3550fb04c8bf22d12d047e1e47a3cb8b0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.6/AndroidManifest.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.crashlytics.android"
-    android:versionCode="1"
-    android:versionName="2.6.6" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.6/aapt/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.6/aapt/AndroidManifest.xml
deleted file mode 100644
index dcc572f3550fb04c8bf22d12d047e1e47a3cb8b0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.6/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.crashlytics.android"
-    android:versionCode="1"
-    android:versionName="2.6.6" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.6/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.6/jars/classes.jar
deleted file mode 100644
index f06f49f17f992abfdf31733d87c34026562c978c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.6/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/AndroidManifest.xml
deleted file mode 100644
index 668158b715b2a81b7a920e038daf810cecd8a2ba..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/AndroidManifest.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.crashlytics.android"
-    android:versionCode="1"
-    android:versionName="2.6.7" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/aapt/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/aapt/AndroidManifest.xml
deleted file mode 100644
index 668158b715b2a81b7a920e038daf810cecd8a2ba..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.crashlytics.android"
-    android:versionCode="1"
-    android:versionName="2.6.7" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/jars/classes.jar
deleted file mode 100644
index 6d0e2d26fa08ee71827d7fa21e0e3617d207e777..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/AndroidManifest.xml
deleted file mode 100644
index 8e54de077da234b8a46f67527461a6b3b97a9fe8..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0"?>
-<!-- Copyright (C) 2012 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.google.android.gms.base">
-    <uses-sdk android:minSdkVersion="14"/>
-    <application>
-        <activity android:name="com.google.android.gms.common.api.GoogleApiActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar" android:exported="false"/>
-    </application>
-</manifest>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/jars/classes.jar
deleted file mode 100644
index 113edd9e110ce6d58c4bc624f067633c51702b4d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/proguard.txt b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/proguard.txt
deleted file mode 100755
index 2240f47d89ae84681cdb2358504a187e87b4f625..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/proguard.txt
+++ /dev/null
@@ -1,47 +0,0 @@
-
-# Proguard flags for consumers of the Google Play services SDK
-# https://developers.google.com/android/guides/setup#add_google_play_services_to_your_project
-
-# Keep SafeParcelable value, needed for reflection. This is required to support backwards
-# compatibility of some classes.
--keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
-    public static final *** NULL;
-}
-
-# Needed for Parcelable/SafeParcelable classes & their creators to not get renamed, as they are
-# found via reflection.
--keep class com.google.android.gms.common.internal.ReflectedParcelable
--keepnames class * implements com.google.android.gms.common.internal.ReflectedParcelable
--keepclassmembers class * implements android.os.Parcelable {
-  public static final *** CREATOR;
-}
-
-# Keep the classes/members we need for client functionality.
--keep @interface android.support.annotation.Keep
--keep @android.support.annotation.Keep class *
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <fields>;
-}
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <methods>;
-}
-
-# Keep the names of classes/members we need for client functionality.
--keep @interface com.google.android.gms.common.annotation.KeepName
--keepnames @com.google.android.gms.common.annotation.KeepName class *
--keepclassmembernames class * {
-  @com.google.android.gms.common.annotation.KeepName *;
-}
-
-# Keep Dynamite API entry points
--keep @interface com.google.android.gms.common.util.DynamiteApi
--keep @com.google.android.gms.common.util.DynamiteApi public class * {
-  public <fields>;
-  public <methods>;
-}
-
-# Needed when building against pre-Marshmallow SDK.
--dontwarn android.security.NetworkSecurityPolicy
-
-# Needed when building against Marshmallow SDK.
--dontwarn android.app.Notification
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_text_dark.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_text_dark.xml
deleted file mode 100644
index f0d72f11f4effd69bd1cca48d800bcca9657c79f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_text_dark.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item
-        android:state_enabled="false"
-        android:color="@color/common_google_signin_btn_text_dark_disabled" />
-    <item
-        android:state_pressed="true"
-        android:color="@color/common_google_signin_btn_text_dark_pressed" />
-    <item
-        android:state_focused="true"
-        android:color="@color/common_google_signin_btn_text_dark_focused" />
-    <item
-        android:color="@color/common_google_signin_btn_text_dark_default" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_text_light.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_text_light.xml
deleted file mode 100644
index 7e6b09ea0df47bc13ec9a4e6b265b5502b569403..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_text_light.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item
-        android:state_enabled="false"
-        android:color="@color/common_google_signin_btn_text_light_disabled" />
-    <item
-        android:state_pressed="true"
-        android:color="@color/common_google_signin_btn_text_light_pressed" />
-    <item
-        android:state_focused="true"
-        android:color="@color/common_google_signin_btn_text_light_focused" />
-    <item
-        android:color="@color/common_google_signin_btn_text_light_default" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_tint.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_tint.xml
deleted file mode 100644
index ca46dcb5bbcca8748fa0bce67c23126dab19a9d8..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_tint.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-  <item
-      android:state_pressed="true"
-      android:color="#11000000" />
-  <item
-      android:color="@android:color/transparent" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_full_open_on_phone.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_full_open_on_phone.png
deleted file mode 100644
index 843544af6b25dd416782a52790b67cc6ffcc1f2b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_full_open_on_phone.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png
deleted file mode 100644
index 55ec17dbae3bee0d8366ffa5ec127b0cb717a6a9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png
deleted file mode 100644
index 73d08d35a6f5734d6416fcbe95d454669d932924..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png
deleted file mode 100644
index 3b8200d0c5a33800275d277a95db9885c21f2748..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_text_light_normal_background.9.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_text_light_normal_background.9.png
deleted file mode 100644
index 592f81d729449787e19abf349274299c662aab11..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_text_light_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/googleg_disabled_color_18.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/googleg_disabled_color_18.png
deleted file mode 100644
index 7bba2b4ee7ac836d0118b8118a35f76f7391573d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/googleg_disabled_color_18.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/googleg_standard_color_18.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/googleg_standard_color_18.png
deleted file mode 100644
index 416699ab8db893fb549b135fdfb4fc1e801a1769..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/googleg_standard_color_18.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png
deleted file mode 100644
index 37c6e9107604aac87cb9609a6d18f7be5e33bcdc..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png
deleted file mode 100644
index f0dafea0144765c7d6c8b869fd60b5183c3950c8..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png
deleted file mode 100644
index 1433d9a34dcd46ed407ed60d3b2e2840aa9733cb..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_text_light_normal_background.9.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_text_light_normal_background.9.png
deleted file mode 100644
index 86c0660db23ca4820bb9b7953dd44f63967add21..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_text_light_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/googleg_disabled_color_18.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/googleg_disabled_color_18.png
deleted file mode 100644
index 3e064990bc7d16c16437193638da55ca1504fd80..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/googleg_disabled_color_18.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/googleg_standard_color_18.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/googleg_standard_color_18.png
deleted file mode 100644
index c06956523f19f415fa17b196ed2e6dd251e2e127..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/googleg_standard_color_18.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_full_open_on_phone.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_full_open_on_phone.png
deleted file mode 100644
index be9200fdef38afcfb1e7450278366d0f9b0b073b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_full_open_on_phone.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png
deleted file mode 100644
index 63283eee355efb9c54d468845cf9a39adc7fea2c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png
deleted file mode 100644
index 8218b018ab07907c4f3ff1c7224bb780e308c3a4..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png
deleted file mode 100644
index 6a4f2dc824a76fd671d668e7c15e30e4be76ec3e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png
deleted file mode 100644
index 7c504b0afadd06a1194d225130fff89a3665ffd1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/googleg_disabled_color_18.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/googleg_disabled_color_18.png
deleted file mode 100644
index 25b975516858d14bb9857f6fa57eae42ddb2861a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/googleg_disabled_color_18.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/googleg_standard_color_18.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/googleg_standard_color_18.png
deleted file mode 100644
index 3fe53e7a8e60babd5f398136358c4329a5581a20..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/googleg_standard_color_18.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png
deleted file mode 100644
index 8a463dc4afb3e55d821569eac05c3f0233049aac..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png
deleted file mode 100644
index 108a10c6af983e1f6c67932fdcc192447d0c4931..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png
deleted file mode 100644
index 8f74215e8e3c646be4f92d4ff3dda301102e4d34..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png
deleted file mode 100644
index 9e41464cd1e9c69bd0b9fa41da191f193cc67b93..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/googleg_disabled_color_18.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/googleg_disabled_color_18.png
deleted file mode 100644
index 12df9a8587dee87e821db811eb1215ccb298eacf..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/googleg_disabled_color_18.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/googleg_standard_color_18.png b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/googleg_standard_color_18.png
deleted file mode 100644
index d8938dfa67be1393461ad635ff9869e3ec4c3b03..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/googleg_standard_color_18.png and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark.xml
deleted file mode 100644
index aab36cc371e18b8cd30184e4d2216974ce955e68..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item
-        android:state_enabled="false"
-        android:drawable="@drawable/common_google_signin_btn_icon_disabled" />
-    <!-- Pressed state is handled by common_google_signin_btn_tint -->
-    <item
-        android:state_focused="true"
-        android:drawable="@drawable/common_google_signin_btn_icon_dark_focused" />
-    <item
-        android:drawable="@drawable/common_google_signin_btn_icon_dark_normal" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark_focused.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark_focused.xml
deleted file mode 100644
index 49549b853636879024f00ec195298cda8c8166ee..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark_focused.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:left="1dp"
-          android:top="1dp"
-          android:right="1dp"
-          android:bottom="1dp">
-        <shape android:shape="rectangle">
-            <!-- Explicit transparent fill to avoid GB filling with the stroke colour -->
-            <solid android:color="@android:color/transparent" />
-            <stroke android:color="#FFC6DAFB"
-                    android:width="4dp" />
-        </shape>
-    </item>
-    <item android:drawable="@drawable/common_google_signin_btn_icon_dark_normal" />
-</layer-list>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark_normal.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark_normal.xml
deleted file mode 100644
index 27c9bce9f1d6fecf5529de4b56b4ef1fa09b244e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark_normal.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:drawable="@drawable/common_google_signin_btn_icon_dark_normal_background" />
-    <item>
-        <bitmap android:src="@drawable/googleg_standard_color_18"
-                android:gravity="center" />
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_disabled.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_disabled.xml
deleted file mode 100644
index c8429bfc3ccd59f3b14105a6867e2d335b684dd5..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_disabled.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:left="3dp"
-          android:top="3dp"
-          android:right="3dp"
-          android:bottom="3dp">
-        <shape android:shape="rectangle">
-            <solid android:color="#EBEBEB" />
-            <corners android:radius="2dp" />
-            <padding android:left="7dp"
-                     android:top="7dp"
-                     android:right="7dp"
-                     android:bottom="7dp" />
-        </shape>
-    </item>
-    <item>
-        <bitmap android:src="@drawable/googleg_disabled_color_18"
-                android:gravity="center" />
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light.xml
deleted file mode 100644
index b2a0d3cbfe0342ed5af9fed3239f502030143333..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item
-        android:state_enabled="false"
-        android:drawable="@drawable/common_google_signin_btn_icon_disabled" />
-    <!-- Pressed state is handled by common_google_signin_btn_tint -->
-    <item
-        android:state_focused="true"
-        android:drawable="@drawable/common_google_signin_btn_icon_light_focused" />
-    <item
-        android:drawable="@drawable/common_google_signin_btn_icon_light_normal" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light_focused.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light_focused.xml
deleted file mode 100644
index 678ca07e248548105250d074516d7c14b3706a53..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light_focused.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:left="1dp"
-          android:top="1dp"
-          android:right="1dp"
-          android:bottom="1dp">
-        <shape android:shape="rectangle">
-            <!-- Explicit transparent fill to avoid GB filling with the stroke colour -->
-            <solid android:color="@android:color/transparent" />
-            <stroke android:color="#4D4284F2"
-                    android:width="4dp" />
-        </shape>
-    </item>
-    <item android:drawable="@drawable/common_google_signin_btn_icon_light_normal" />
-</layer-list>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light_normal.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light_normal.xml
deleted file mode 100644
index 0cbb0b5f5568724f7f359fc54cb555a75764fe08..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light_normal.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:drawable="@drawable/common_google_signin_btn_icon_light_normal_background" />
-    <item>
-        <bitmap android:src="@drawable/googleg_standard_color_18"
-                android:gravity="center" />
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark.xml
deleted file mode 100644
index b42c758596c2d6dde570fead19f10549266c57ad..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Currently Google SignIn button in Android does not support dark scheme.
-    Using light scheme instead -->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item
-        android:state_enabled="false"
-        android:drawable="@drawable/common_google_signin_btn_text_disabled" />
-    <!-- Pressed state is handled by common_google_signin_btn_tint -->
-    <item
-        android:state_focused="true"
-        android:drawable="@drawable/common_google_signin_btn_text_dark_focused" />
-    <item
-        android:drawable="@drawable/common_google_signin_btn_text_dark_normal" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark_focused.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark_focused.xml
deleted file mode 100644
index 2ff9c3f2342aaec8b08b20a5833b9d4a428aeaaa..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark_focused.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:left="1dp"
-          android:top="1dp"
-          android:right="1dp"
-          android:bottom="1dp">
-        <shape android:shape="rectangle">
-            <!-- Explicit transparent fill to avoid GB filling with the stroke colour -->
-            <solid android:color="@android:color/transparent" />
-            <stroke android:color="#FFC6DAFB"
-                    android:width="4dp" />
-        </shape>
-    </item>
-    <item android:drawable="@drawable/common_google_signin_btn_text_dark_normal" />
-</layer-list>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark_normal.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark_normal.xml
deleted file mode 100644
index 640a9eb9dda4f1cf1629867c365aab1543180570..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark_normal.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:drawable="@drawable/common_google_signin_btn_text_dark_normal_background" />
-    <item android:left="-36dp">
-        <bitmap android:src="@drawable/googleg_standard_color_18"
-                android:gravity="left|center_vertical" />
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_disabled.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_disabled.xml
deleted file mode 100644
index 830826c836eb7a968621f8be446ff7240f0889cb..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_disabled.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:left="3dp"
-          android:top="3dp"
-          android:right="3dp"
-          android:bottom="3dp">
-        <shape android:shape="rectangle">
-            <solid android:color="#EBEBEB" />
-            <corners android:radius="2dp" />
-            <padding android:left="50dp"
-                     android:top="8dp"
-                     android:right="11dp"
-                     android:bottom="7dp" />
-        </shape>
-    </item>
-    <item android:left="-36dp">
-        <bitmap android:src="@drawable/googleg_disabled_color_18"
-                android:gravity="left|center_vertical" />
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light.xml
deleted file mode 100644
index 7fc64321d44aae11130496164014c5d438ddede0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item
-        android:state_enabled="false"
-        android:drawable="@drawable/common_google_signin_btn_text_disabled" />
-    <!-- Pressed state is handled by common_google_signin_btn_tint -->
-    <item
-        android:state_focused="true"
-        android:drawable="@drawable/common_google_signin_btn_text_light_focused" />
-    <item
-        android:drawable="@drawable/common_google_signin_btn_text_light_normal" />
-</selector>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light_focused.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light_focused.xml
deleted file mode 100644
index bde9ef6cc491f0e6f7b04114e65cfbef64093646..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light_focused.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:left="1dp"
-          android:top="1dp"
-          android:right="1dp"
-          android:bottom="1dp">
-        <shape android:shape="rectangle">
-            <!-- Explicit transparent fill to avoid GB filling with the stroke colour -->
-            <solid android:color="@android:color/transparent" />
-            <stroke android:color="#4D4284F2"
-                    android:width="4dp" />
-        </shape>
-    </item>
-    <item android:drawable="@drawable/common_google_signin_btn_text_light_normal" />
-</layer-list>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light_normal.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light_normal.xml
deleted file mode 100644
index 191869b0c733f6c8c2a1b1e04672d995da2869d7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light_normal.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:drawable="@drawable/common_google_signin_btn_text_light_normal_background" />
-    <item android:left="-36dp">
-        <bitmap android:src="@drawable/googleg_standard_color_18"
-                android:gravity="left|center_vertical" />
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml
deleted file mode 100644
index 37cc306aa0e06c2e30e4a9127586ba56709d903c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-af/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Aktiveer"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> sal nie werk nie tensy jy Google Play-dienste aktiveer."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Aktiveer Google Play-dienste"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Installeer"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> sal nie sonder Google Play Dienste werk nie, wat nie op jou toestel is nie."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Kry Google Play-dienste"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play Services-fout"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> sal nie werk sonder Google Play Dienste nie, wat nie deur jou toestel gesteun word nie."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Dateer op"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> sal nie werk nie tensy jy Google Play Dienste opdateer."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Dateer Google Play-dienste op"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> sal nie sonder Google Play-dienste werk nie, wat tans opdateer."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Nuwe weergawe van Google Play-dienste is nodig. Dit sal binnekort self opdateer."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Maak oop op foon"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Meld aan"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Meld aan met Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml
deleted file mode 100644
index 1d563ee103703408316acab4ae884e1101ff608e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-am/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"አንቃ"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Google Play አገልግሎቶችን ካላነቁ በስተቀር <xliff:g id="APP_NAME">%1$s</xliff:g> አይሰራም።"</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play አገልግሎቶችን ያንቁ"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"ጫን"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> ያለ Google Play አገልግሎቶች አይሰራም፣ እነሱ ደግሞ በመሣሪያዎ ላይ የሉም።"</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play አገልግሎቶችን ያግኙ"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"የGoogle Play አገልግሎቶች ስህተት"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> ያለGoogle Play አገልግሎቶች አይሄድም፣ እነዚህም በመሣሪያዎ አይደገፉም።"</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"ያዘምኑ"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Google Play አገልግሎቶችን ካላዘመኑ በስተቀር ድረስ <xliff:g id="APP_NAME">%1$s</xliff:g> አይሰራም።"</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play አገልግሎቶችን ያዘምኑ"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> ያለ Google Play አገልግሎቶች አይሰራም፣ እነሱ ደግሞ በአሁኑ ጊዜ በመዘመን ላይ ናቸው።"</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"አዲስ የGoogle Play አገልግሎቶች ስሪት ያስፈልጋል። በቅርቡ እራሱን ያዘምናል።"</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"ስልክ ላይ ክፈት"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"ግባ"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"በGoogle ይግቡ"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml
deleted file mode 100644
index 5131308dd4c1868ed69fb5f67e5a1b12a5ee521e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-ar/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"تمكين"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"‏لن يعمل <xliff:g id="APP_NAME">%1$s</xliff:g> ما لم يتم تمكين خدمات Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"‏تمكين خدمات Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"تثبيت"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"‏لن يتم تشغيل <xliff:g id="APP_NAME">%1$s</xliff:g> بدون خدمات Google Play، والتي لا تتوفر على جهازك."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"‏الحصول على خدمات Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"‏خطأ في خدمات Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"‏لن يتم تشغيل <xliff:g id="APP_NAME">%1$s</xliff:g> بدون خدمات Google Play التي لا يوفرها جهازك."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"تحديث"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"‏لن يتم تشغيل <xliff:g id="APP_NAME">%1$s</xliff:g> ما لم يتم تحديث خدمات Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"‏تحديث خدمات Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"‏لن يتم تشغيل <xliff:g id="APP_NAME">%1$s</xliff:g> بدون خدمات Google Play، والتي يتم تحديثها حاليًا."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"‏يجب توفر إصدار جديد من خدمات Google Play. سيتم تحديثها تلقائيًا قريبًا."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"فتح على الهاتف"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"تسجل الدخول"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"‏تسجيل الدخول عبر Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml
deleted file mode 100644
index 0a7e01b89c8f30961270e454c4f313a259ca95e0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-az/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Aktiv edin"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> Google Play xidmətlərini aktiv edənə kimi işləməyəcək."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play xidmətlərini aktiv edin"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Quraşdırın"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> cihazınızda mövcud olmayan Google Play xidmətləri olmadan çalışmayacaq."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play xidmətlərini əldə edin"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play xidmətləri xətası"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Cihazınız tərəfindən dəstəklənməyən Google Play xidmətləri olmadan <xliff:g id="APP_NAME">%1$s</xliff:g> tətbiqi işləməyəcək."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Güncəlləyin"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> Google Play xidmətləri yeniləmə halda çalışmaz."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play xidmətlərini güncəlləşdirin"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> hal-hazırda güncəllənən Google Play xidmətləri olmadan çalışmayacaq."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play xidmətlərinin yeni versiyası lazımdır. Qısa müddətə özünü yeniləyəcək."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Telefonda açın"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Daxil olun"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google ilÉ™ daxil olun"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml
deleted file mode 100644
index 65344e5aeb8b65fa9a55f358581fc459206afd81..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-be/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Уключыць"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> не будзе працаваць, пакуль вы не ўключыце службы Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Уключыць службы Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Усталяваць"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> не будзе працаваць без службаў Google Play, якія адсутнічаюць на вашай прыладзе."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Атрымаць службы Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Памылка службаў Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> не будзе працаваць без службаў Google Play, якія не падтрымліваюцца вашай прыладай."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Абнавіць"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> не будзе працаваць, пакуль вы не абновіце службы Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Абнаўленне службаў Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> не будзе працаваць без службаў Google Play, якія ў цяперашні час абнаўляюцца."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Патрабуецца новая версія служб Google Play. Яна абновіцца аўтаматычна ў бліжэйшы час."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Адкрыць на тэлефоне"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Увайсцi"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Увайсці праз Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml
deleted file mode 100644
index 5c5045487737b579861e91846a9dcf9f1bd802f8..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-bg/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Активиране"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> няма да работи, освен ако не активирате услугите за Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Активиране на услугите за Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Инсталиране"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> няма да се изпълнява, тъй като услугите за Google Play не са инсталирани на устройството ви."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Изтегляне на услугите за Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Грешка в услугите за Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> няма да се изпълнява, тъй като услугите за Google Play не се поддържат от устройството ви."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Актуализиране"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> няма да се изпълнява, освен ако не актуализирате услугите за Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Актуализиране на услугите за Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> няма да се изпълнява без услугите за Google Play. Понастоящем те се актуализират."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Необходима е нова версия на услугите за Google Play. Скоро тя ще се актуализира автоматично."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Отваряне на телефона"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Вход"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Вход с Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml
deleted file mode 100644
index cd887aaa287bf2bc8a4661b8891478bcf2790438..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-bn/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"সক্ষম করুন"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"আপনি Google Play পরিষেবা সক্ষম না করা পর্যন্ত <xliff:g id="APP_NAME">%1$s</xliff:g> কাজ করবে না।"</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play পরিষেবা সক্ষম করুন"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"ইনস্টল করুন"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Google Play পরিষেবা ছাড়া <xliff:g id="APP_NAME">%1$s</xliff:g> চলবে না, যা আপনার ডিভাইসে অনুপস্থিত।"</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play পরিষেবা পান"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play পরিষেবার ত্রুটি"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Google Play পরিষেবা ছাড়া <xliff:g id="APP_NAME">%1$s</xliff:g> চলবে না, যেটি আপনার ডিভাইসে সমর্থিত নয়৷"</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"আপডেট করুন"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"আপনি Google Play পরিষেবা আপডেট না করা পর্যন্ত <xliff:g id="APP_NAME">%1$s</xliff:g> চলবে না।"</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play পরিষেবা আপডেট করুন"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Google Play পরিষেবা ছাড়া <xliff:g id="APP_NAME">%1$s</xliff:g> চলবে না যা বর্তমানে আপডেট হচ্ছে।"</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play পরিষেবার নতুন সংস্করণ প্রয়োজন৷ খুব শীঘ্রই এটা নিজেই আপডেট হবে৷"</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"ফোনে খুলুন"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"প্রবেশ করুন"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google এর মাধ্যমে প্রবেশ করুন"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml
deleted file mode 100644
index 94a7482848b9c1977b3cf39edcb94ecdc72a2b51..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-bs/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Omogući"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Aplikacija <xliff:g id="APP_NAME">%1$s</xliff:g> neće raditi ako ne omogućite Google Play usluge."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Omogućite Google Play usluge"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Instaliraj"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Aplikacija <xliff:g id="APP_NAME">%1$s</xliff:g> neće raditi bez Google Play usluga, kojih na vašem uređaju nema."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Nabavite Google Play usluge"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Greška Google Play usluge"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Aplikacija <xliff:g id="APP_NAME">%1$s</xliff:g> neće raditi bez Google Play usluga, koje vaš uređaj ne podržava."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Ažuriraj"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Aplikacija <xliff:g id="APP_NAME">%1$s</xliff:g> neće raditi ako ne ažurirate Google Play usluge."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Ažuriranje Google Play usluga"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Aplikacija <xliff:g id="APP_NAME">%1$s</xliff:g> neće raditi bez Google Play usluga, koje se trenutno ažuriraju."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Potrebna je nova verzija Google Play usluga. Ubrzo će se samo ažurirati."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Otvori na telefonu"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Prijavi se"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Prijavi se pomoću Googlea"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml
deleted file mode 100644
index db79dc76a1ab222b71eba47ea242b6e7296e8f17..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-ca/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Activa"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> no funcionarà si no actives els Serveis de Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Activa els Serveis de Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Instal·la"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> no s\'executarà si el dispositiu no té instal·lats els serveis de Google Play."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Obtén els Serveis de Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Error dels Serveis de Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> no es pot executar sense els serveis de Google Play, però no són compatibles amb el teu dispositiu."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Actualitza"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> no s\'executarà si no actualitzes els Serveis de Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Actualitza els Serveis de Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> no s\'executarà sense els Serveis de Google Play, que s\'estan actualitzant en aquest moment."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Cal una nova versió dels Serveis de Google Play. S\'actualitzaran automàticament aviat."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Obre al telèfon"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Inicia sessió"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Inicia la sessió amb Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml
deleted file mode 100644
index 0339d446697138e6be9f6f9e9b5f95714b2b5b65..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-cs/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Povolit"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Ke spuštění aplikace <xliff:g id="APP_NAME">%1$s</xliff:g> je třeba aktivovat služby Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Aktivace služeb Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Instalovat"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Ke spuštění aplikace <xliff:g id="APP_NAME">%1$s</xliff:g> jsou potřeba služby Google Play, které v zařízení nemáte."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Instalace služeb Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Chyba služeb Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Ke spuštění aplikace <xliff:g id="APP_NAME">%1$s</xliff:g> jsou potřeba služby Google Play, které v tomto zařízení nejsou podporovány."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Aktualizovat"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Ke spuštění aplikace <xliff:g id="APP_NAME">%1$s</xliff:g> je třeba aktualizovat služby Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Aktualizace služeb Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Ke spuštění aplikace <xliff:g id="APP_NAME">%1$s</xliff:g> jsou potřeba služby Google Play, které jsou právě aktualizovány."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Je vyžadována nová verze služeb Google Play. Nová verze se brzy sama nainstaluje."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Otevřít v telefonu"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Přihlásit se"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Přihlásit se k účtu Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml
deleted file mode 100644
index e292cc1784ffd7b84fa5c7fc90ec64307295cdfc..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-da/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Aktivér"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Du skal aktivere Google Play-tjenester, for at <xliff:g id="APP_NAME">%1$s</xliff:g> kan fungere."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Aktivér Google Play-tjenester"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Installer"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Du skal installere Google Play-tjenester, før <xliff:g id="APP_NAME">%1$s</xliff:g> kan køre på din enhed."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Hent Google Play-tjenester"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Fejl i Google Play-tjenester"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> fungerer ikke uden Google Play-tjenester, som ikke understøttes på din enhed."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Opdater"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> kan ikke køre, medmindre du opdaterer Google Play-tjenester."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Opdater Google Play-tjenester"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> kan ikke køre uden Google Play-tjenester, som i øjeblikket opdateres."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Du skal bruge en ny version af Google Play-tjenester. Opdateringen gennemføres automatisk om et øjeblik."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Åbn på telefonen"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Log ind"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Log ind med Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml
deleted file mode 100644
index 2afabdc9fabdbd8a16cbe7ed5e4408d207f16795..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-de/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Aktivieren"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> funktioniert erst nach der Aktivierung der Google Play-Dienste."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play-Dienste aktivieren"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Installieren"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Zur Nutzung von <xliff:g id="APP_NAME">%1$s</xliff:g> sind die Google Play-Dienste erforderlich, die auf deinem Gerät nicht installiert sind."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play-Dienste installieren"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Fehler bei Zugriff auf Google Play-Dienste"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Zur Nutzung von <xliff:g id="APP_NAME">%1$s</xliff:g> sind Google Play-Dienste erforderlich, die auf deinem Gerät nicht unterstützt werden."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Aktualisieren"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> wird nur ausgeführt, wenn du die Google Play-Dienste aktualisierst."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play-Dienste aktualisieren"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Zur Nutzung von <xliff:g id="APP_NAME">%1$s</xliff:g> sind Google Play-Dienste erforderlich, die gerade aktualisiert werden."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Eine neue Version der Google Play-Dienste wird benötigt. Diese wird in Kürze automatisch aktualisiert."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Auf Smartphone öffnen"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Anmelden"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Ãœber Google anmelden"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml
deleted file mode 100644
index 1f0009598da37a2f4cd922e447c252adfbc954f2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-el/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Ενεργοποίηση"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Η εφαρμογή <xliff:g id="APP_NAME">%1$s</xliff:g> δεν θα λειτουργήσει εάν δεν έχετε ενεργοποιήσει τις υπηρεσίες Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Ενεργοποίηση υπηρεσιών Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Εγκατάσταση"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Η εφαρμογή <xliff:g id="APP_NAME">%1$s</xliff:g> δεν μπορεί να εκτελεστεί χωρίς τις υπηρεσίες Google Play, οι οποίες λείπουν από τη συσκευή σας."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Λήψη υπηρεσιών Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Σφάλμα Υπηρεσιών Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Η εφαρμογή <xliff:g id="APP_NAME">%1$s</xliff:g> δεν θα εκτελεστεί χωρίς τις υπηρεσίες Google Play, οι οποίες δεν υποστηρίζονται από τη συσκευή σας."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Ενημέρωση"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Η εφαρμογή <xliff:g id="APP_NAME">%1$s</xliff:g> θα εκτελεστεί αφού ενημερώσετε τις Υπηρεσίες Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Ενημέρωση υπηρεσιών Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Η εφαρμογή <xliff:g id="APP_NAME">%1$s</xliff:g> δεν θα εκτελεστεί χωρίς τις υπηρεσίες Google Play, οι οποίες ενημερώνονται αυτήν τη στιγμή."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Απαιτείται νέα έκδοση των υπηρεσιών Google Play. Θα ενημερωθεί σύντομα."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Άνοιγμα σε τηλέφωνο"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Σύνδεση"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Συνδεθείτε με το Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml
deleted file mode 100644
index 9841006836527ae727a8935abce0dcc0da3cb7e3..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-en-rGB/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Enable"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> won\'t work unless you enable Google Play services."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Enable Google Play services"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Install"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> won\'t run without Google Play services, which are missing from your device."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Get Google Play services"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play services error"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> won\'t run without Google Play services, which are not supported by your device."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Update"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> won\'t run unless you update Google Play services."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Update Google Play services"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> won\'t run without Google Play services, which are currently updating."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"New version of Google Play services needed. It will update itself shortly."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Open on phone"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Sign In"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Sign in with Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml
deleted file mode 100644
index fb3063dc2933607caa935316842c7fd3072b8a74..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-es-rUS/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Habilitar"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> no funcionará a menos que habilites los servicios de Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Habilitar servicios de Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Instalar"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> no se ejecutará si los Servicios de Google Play no están instalados en tu dispositivo."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Obtener servicios de Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Error de Google Play Services"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> no se ejecutará sin los servicios de Google Play, que no son compatibles con tu dispositivo."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Actualizar"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> no se ejecutará a menos que actualices los servicios de Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Actualizar servicios de Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> no se ejecutará sin los servicios de Google Play. La plataforma se está actualizando en este momento."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Se necesita una nueva versión de los servicios de Google Play. Se actualizarán automáticamente en breve."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Abrir en el teléfono"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Acceder"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Acceder con Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml
deleted file mode 100644
index 27522122d169e05373a4c2f23a9a648c5ed2be9f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-es/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Habilitar"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> no funcionará hasta que no habilites Servicios de Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Habilita Servicios de Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Instalar"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> no se ejecutará si los Servicios de Google Play no están instalados en tu dispositivo."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Descargar Servicios de Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Error de Servicios de Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"No es posible ejecutar la aplicación <xliff:g id="APP_NAME">%1$s</xliff:g> sin los Servicios de Google Play, que no son compatibles con tu dispositivo."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Actualizar"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> no funcionará hasta que no actualices Servicios de Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Actualiza Servicios de Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> no se ejecutará hasta que finalice la actualización en curso de Servicios de Google Play."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Se necesita una nueva versión de Servicios de Google Play. Se actualizará en breve."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Abrir en teléfono"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Iniciar sesión"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Iniciar sesión con Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml
deleted file mode 100644
index ebb58e8f375c11c9c13cdfea3e990895d60af0f6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-et/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Luba"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Rakendus <xliff:g id="APP_NAME">%1$s</xliff:g> töötab ainult siis, kui lubate Google Play teenused."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play teenuste lubamine"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Installi"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Rakendus <xliff:g id="APP_NAME">%1$s</xliff:g> töötab ainult koos Google Play teenustega, mida teie seadmes pole."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play teenuste hankimine"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Viga Google Play teenustes"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Rakendus <xliff:g id="APP_NAME">%1$s</xliff:g> töötab ainult koos Google Play teenustega, mida teie seadmes ei toetata."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Värskenda"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Rakenduse <xliff:g id="APP_NAME">%1$s</xliff:g> töötamiseks peate värskendama Google Play teenuseid."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play teenuste värskendamine"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Rakendus <xliff:g id="APP_NAME">%1$s</xliff:g> töötab ainult koos Google Play teenustega, mida praegu värskendatakse."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Vajalik on Google Play teenuste uus versioon. See värskendab end peagi."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Ava telefonis"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Logi sisse"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Logi sisse Google\'i kontoga"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml
deleted file mode 100644
index 7b79bd18253b911b3f7f6fb01cc34ca7c761b467..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-eu/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Gaitu"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> aplikazioak ez du funtzionatuko Google Play zerbitzuak gaitzen ez badituzu."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Gaitu Google Play zerbitzuak"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Instalatu"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> ez da exekutatuko Google Play zerbitzurik gabe, baina ez dituzu gailuan."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Lortu Google Play zerbitzuak"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play zerbitzuen errorea"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> aplikazioa ezin da erabili Google Play zerbitzurik gabe, eta zure gailua ez da zerbitzuokin bateragarria."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Eguneratu"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> ez da exekutatuko Google Play zerbitzuak eguneratzen ez badituzu."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Eguneratu Google Play zerbitzuak"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> ez da exekutatuko Google Play zerbitzurik gabe; une honetan eguneratzen ari dira zerbitzuok."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play zerbitzuen bertsio berria behar da. Berehala eguneratuko da automatikoki."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Ireki telefonoan"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Hasi saioa"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Hasi saioa Google-n"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml
deleted file mode 100644
index 9f5d15fbb06b3925d22e9845ebdc00f41b74711d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-fa/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"فعال کردن"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"‏تا وقتی سرویس‌های Google Play را فعال نکنید، <xliff:g id="APP_NAME">%1$s</xliff:g> کار نمی‌کند."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"‏‫فعال کردن سرویس‌های Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"نصب"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"‏<xliff:g id="APP_NAME">%1$s</xliff:g> بدون خدمات Google Play که در دستگاه شما وجود ندارد اجرا نمی‌شود."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"‏دریافت سرویس‌های Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"‏خطا در خدمات Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"‏<xliff:g id="APP_NAME">%1$s</xliff:g> بدون خدمات Google Play که در دستگاه شما پشتیبانی نمی‌شود، اجرا نخواهد شد."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"به‌روزرسانی"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"‏تاز مانی که سرویس‌های Google Play را به‌روزرسانی نکنید، <xliff:g id="APP_NAME">%1$s</xliff:g> اجرا نمی‌شود."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"‏‫به‌روزرسانی سرویس‌های Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"‏<xliff:g id="APP_NAME">%1$s</xliff:g> بدون سرویس‌های Google Play که درحال حاضر درحال به‌روزرسانی هستند، کار نمی‌کند."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"‏نسخه جدید سرویس‌های Google Play نیاز است. به‌زودی به‌طور خودکار به‌روزرسانی می‌شود."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"باز کردن در تلفن"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"ورود به سیستم"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"‏ورود به سیستم با Google‎"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml
deleted file mode 100644
index fdd42313857d1f47b36e290f2d054de01a15dd0a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-fi/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Ota käyttöön"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> ei toimi, ellet ota Google Play Palveluita käyttöön."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Ota Google Play Palvelut käyttöön"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Asenna"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> ei toimi ilman Google Play Palveluita, jotka puuttuvat laitteeltasi."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Asenna Google Play Palvelut"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Virhe Google Play -palveluissa"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> ei toimi ilman Google Play Palveluita, joita laitteesi ei tue."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Päivitä"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> ei toimi, ellet päivitä Google Play Palveluita."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Päivitä Google Play Palvelut"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> ei toimi ilman Google Play Palveluita, joita päivitetään tällä hetkellä."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Uusi Google Play Palveluiden versio tarvitaan. Se päivittyy pian."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Avaa puhelimessa"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Kirjaudu sisään"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Kirjaudu Google-tilille"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml
deleted file mode 100644
index 2047ec64b83c76f7be1def0cbb61af9d3d4aac41..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-fr-rCA/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Activer"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> ne fonctionnera pas tant que vous n\'aurez pas activé les services Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Activer les services Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Installer"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> ne fonctionnera pas sans les services Google Play, qui ne sont pas installés sur votre appareil."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Installer les services Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Erreur liée aux services Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"L\'application <xliff:g id="APP_NAME">%1$s</xliff:g> ne fonctionnera pas sans les services Google Play, qui ne sont pas pris en charge par votre appareil."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Mettre à jour"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> ne fonctionnera pas tant que vous n\'aurez pas mis à jour les services Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Mettre à jour les services Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> ne fonctionnera pas sans les services Google Play, qui sont actuellement mis à jour."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"La nouvelle version des services Google Play est nécessaire. Elle sera bientôt installée automatiquement."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Ouvrir sur le téléphone"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Connexion"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Se connecter avec Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml
deleted file mode 100644
index 6dc8d157d14257ad91889d27ebc71276461e828b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-fr/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Activer"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> ne fonctionnera pas tant que vous n\'aurez pas activé les services Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Activer les services Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Installer"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> ne fonctionnera pas sans les services Google Play, qui ne sont pas installés sur votre appareil."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Installer les services Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Erreur liée aux services Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> ne fonctionnera pas sans les services Google Play, qui ne sont pas compatibles avec votre appareil."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Mettre à jour"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> ne fonctionnera pas tant que vous n\'aurez pas mis à jour les services Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Mettre à jour les services Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> ne fonctionnera pas sans les services Google Play, qui sont en cours de mise à jour."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"La nouvelle version des services Google Play est nécessaire. Elle sera bientôt installée automatiquement."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Ouvrir sur le téléphone"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Se connecter"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Se connecter avec Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml
deleted file mode 100644
index 912a2db0d7c10690f27a0d23827e9ca7ab801060..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-gl/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Activar"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> non funcionará a menos que actives os servizos de Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Activar servizos de Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Instalar"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> non se executará se o teu dispositivo non ten instalados os servizos de Google Play."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Descargar servizos de Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Erro nos servizos de Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> non se executará sen os servizos de Google Play, que non son compatibles co teu dispositivo."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Actualizar"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> non se executará a menos que actualices os servizos de Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Actualizar os servizos de Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> non se executará sen os servizos de Google Play, que se están actualizando neste momento."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Necesítase a nova versión dos servizos de Google Play. Actualizarase en breve."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Abrir no teléfono"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Iniciar sesión"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Iniciar sesión con Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml
deleted file mode 100644
index 7b01c9db4f9fe1bbcbf11677968273adfa4bc428..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-gu/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"સક્ષમ કરો"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"તમે Google Play સેવાઓ સક્ષમ કરશો નહીં ત્યાં સુધી <xliff:g id="APP_NAME">%1$s</xliff:g> કાર્ય કરશે નહીં."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play સેવાઓ સક્ષમ કરો"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"ઇન્સ્ટૉલ કરો"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g>, Google Play સેવાઓ વગર ચાલશે નહીં, જે તમારા ઉપકરણમાંથી ખૂટે છે."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play સેવાઓ મેળવો"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play સેવાઓની ભૂલ"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g>, Google Play સેવાઓ વગર ચાલશે નહીં, જે તમારા ઉપકરણ દ્વારા સમર્થિત નથી."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"અપડેટ કરો"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"તમે Google Play સેવાઓ અપડેટ કરશો નહીં ત્યાં સુધી <xliff:g id="APP_NAME">%1$s</xliff:g> શરૂ થશે નહીં."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play સેવાઓ અપડેટ કરો"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g>, Google Play સેવાઓ વગર શરૂ થશે નહીં, જે વર્તમાનમાં અપડેટ થઈ રહી છે."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play સેવાઓના નવા સંસ્કરણની જરૂર છે. તે ટૂંક સમયમાં પોતાને અપડેટ કરશે."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"ફોનમાં ખોલો"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"સાઇન ઇન કરો"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google માં સાઇન ઇન કરો"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml
deleted file mode 100644
index 4b65e46789fe55f71286cb59f1fb753de8d9e253..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-hi/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"सक्षम करें"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> तब तक कार्य नहीं करेगा जब तक आप Google Play सेवाओं को सक्षम नहीं करते."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play सेवाएं सक्षम करना"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"इंस्टॉल करें"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> उन Google Play सेवाओं के बिना नहीं चलेगा जो आपके डिवाइस में उपलब्ध नहीं हैं."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play सेवाएं प्राप्त करना"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play सेवाएं त्रुटि"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> उन Google Play सेवाओं के बिना नहीं चलेगा, जो आपके डिवाइस द्वारा समर्थित नहीं हैं."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"अपडेट करें"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> तब तक नहीं चलेगा जब तक आप Google Play सेवाओं को अपडेट नहीं करते."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play सेवाओं को अपडेट करें"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> उन Google Play सेवाओं के बिना नहीं चलेगा जो वर्तमान में अपडेट हो रही हैं."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play सेवाओं के नए वर्शन की आवश्यकता है. यह स्वयं को जल्दी ही अपडेट करेगा."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"फ़ोन पर खोलें"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"प्रवेश करें"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google के साथ प्रवेश करें"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml
deleted file mode 100644
index 4b17c33ea96025d261fe187d3242f58d6a5182a8..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-hr/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Omogući"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> neće funkcionirati ako ne omogućite usluge Google Playa."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Omogućivanje usluga Google Playa"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Instaliraj"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> neće funkcionirati bez usluga Google Playa koje nisu instalirane na vašem uređaju."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Preuzimanje usluga Google Playa"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Pogreška Usluga za Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> neće funkcionirati bez usluga Google Playa koje vaš uređaj ne podržava."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Ažuriraj"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> neće funkcionirati ako ne ažurirate Google Play usluge."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Ažuriranje usluga Google Playa"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> neće se pokrenuti bez usluga Google Playa koje se trenutačno ažuriraju."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Potrebna je nova verzija usluga Google Playa. Uskoro će se ažurirati."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Otvori na telefonu"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Prijava"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Prijava putem Googlea"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml
deleted file mode 100644
index 34ad82c3d80ebc82a4232ca217cf4fdda7f05efb..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-hu/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Engedélyezés"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"A(z) <xliff:g id="APP_NAME">%1$s</xliff:g> alkalmazás csak akkor működik, ha  engedélyezi a Google Play-szolgáltatásokat."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play-szolgáltatások engedélyezése"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Telepítés"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"A(z) <xliff:g id="APP_NAME">%1$s</xliff:g> alkalmazás nem fut a Google Play-szolgáltatások nélkül, amelyek hiányoznak az eszközről."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"A Google Play-szolgáltatások beszerzése"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play-szolgáltatások – hiba"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"A(z) <xliff:g id="APP_NAME">%1$s</xliff:g> alkalmazás nem fut a Google Play-szolgáltatások nélkül, amelyeket eszköze nem támogat."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Frissítés"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"A(z) <xliff:g id="APP_NAME">%1$s</xliff:g> alkalmazás csak akkor fog működni, ha frissíti a Google Play-szolgáltatásokat."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"A Google Play-szolgáltatások frissítése"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"A(z) <xliff:g id="APP_NAME">%1$s</xliff:g> alkalmazás nem fut a Google Play-szolgáltatások nélkül, amelyek frissítése folyamatban van."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"A Google Play-szolgáltatások új verziójára van szükség. A szolgáltatás hamarosan frissíti önmagát."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Megnyitás a telefonon"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Bejelentkezés"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Bejelentkezés Google-fiókkal"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml
deleted file mode 100644
index f0a89db7525bf2b8635c0df8ae5b26776b721373..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-hy/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Միացնել"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> հավելվածը չի աշխատի մինչև չմիացնեք Google Play ծառայությունները:"</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Միացնել Google Play ծառայությունները"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Տեղադրել"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> հավելվածը չի աշխատի առանց Google Play ծառայությունների, որոնք չկան ձեր սարքում:"</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Տեղադրել Google Play ծառայությունները"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« Õ½Õ­Õ¡Õ¬ Õ¯Õ¡"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> հավելվածը չի աշխատի առանց Google Play ծառայությունների, որոնք ձեր սարքում չեն աջակցվում:"</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Թարմացնել"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> հավելվածը չի աշխատի մինչև չթարմացնեք Google Play ծառայությունները:"</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Թարմացնել Google Play ծառայությունները"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> հավելվածը չի աշխատի առանց Google Play ծառայությունների, որոնք այս պահին թարմացվում են:"</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Անհրաժեշտ է Google Play ծառայությունների նոր տարբերակը: Այն շուտով կթարմացվի ավտոմատ կերպով:"</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Բացել հեռախոսով"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Õ„Õ¸Ö‚Õ¿Ö„ Õ£Õ¸Ö€Õ®Õ¥Õ¬"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Õ„Õ¸Ö‚Õ¿Ö„ Õ£Õ¸Ö€Õ®Õ¥Õ¬ Google-Õ¸Õ¾"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml
deleted file mode 100644
index 7509fa2a6d60aa3b1140e106016ae5df76371acf..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-in/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Aktifkan"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> tidak akan berfungsi jika layanan Google Play tidak diaktifkan."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Aktifkan layanan Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Pasang"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> tidak akan berjalan tanpa layanan Google Play, yang tidak ada di perangkat Anda."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Dapatkan layanan Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Kesalahan layanan Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> tidak akan berjalan tanpa layanan Google Play, yang tidak didukung oleh perangkat Anda."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Perbarui"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> tidak akan berjalan jika layanan Google Play tidak diperbarui."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Perbarui layanan Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> tidak akan berjalan tanpa layanan Google Play, yang saat ini sedang diperbarui."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Perlu versi baru layanan Google Play. Akan segera memperbarui sendiri."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Buka di ponsel"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Masuk"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Masuk dengan Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml
deleted file mode 100644
index aa396dcddb054153c189a701b954102fdb8753c0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-is/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Kveikja"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> virkar ekki nema þú gerir þjónustu Google Play virka."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Virkja þjónustu Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Setja upp"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> getur ekki keyrt án þjónustu Google Play, sem vantar í tækið þitt."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Sækja þjónustu Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Villa í þjónustu Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> getur ekki keyrt án þjónustu Google Play, sem er ekki studd af tækinu þínu."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Uppfæra"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> getur ekki keyrt nema þú uppfærir þjónustu Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Uppfæra þjónustu Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> getur ekki keyrt án þjónustu Google Play, sem verið er að uppfæra."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Nýja útgáfu af þjónustu Google Play vantar. Hún uppfærir sig sjálf innan skamms."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Opna í símanum"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Skrá inn"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Skrá inn með Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml
deleted file mode 100644
index d40a03cd4a067e9bd6a2bd50c6b6a60915792c93..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-it/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Attiva"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> non funzionerà se non attivi Google Play Services."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Attiva Google Play Services"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Installa"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"L\'app <xliff:g id="APP_NAME">%1$s</xliff:g> non funzionerà senza Google Play Services, non presente sul tuo dispositivo."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Installa Google Play Services"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Errore Google Play Services"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> non funzionerà senza Google Play Services, non supportati dal tuo dispositivo."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Aggiorna"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> non funzionerà se non aggiorni Google Play Services."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Aggiorna Google Play Services"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> non funzionerà senza Google Play Services, attualmente in fase di aggiornamento."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"È richiesta una nuova versione di Google Play Services. L\'aggiornamento automatico verrà eseguito a breve."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Apri sul telefono"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Accedi"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Accedi con Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml
deleted file mode 100644
index 7644d98bf653a5f2aba7abedd7bb40a4378bec98..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-iw/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"הפעל"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"‏האפליקציה <xliff:g id="APP_NAME">%1$s</xliff:g> לא תפעל אם לא תפעיל את שירותי Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"‏הפעל את שירותי Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"התקן"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"‏האפליקציה <xliff:g id="APP_NAME">%1$s</xliff:g> לא תפעל ללא שירותי Google Play, שאינם מותקנים במכשיר."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"‏קבל את שירותי Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"‏שגיאה בשירותי Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"‏<xliff:g id="APP_NAME">%1$s</xliff:g> לא תפעל ללא שירותי Google Play, שאינם נתמכים במכשיר שלך."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"עדכן"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"‏<xliff:g id="APP_NAME">%1$s</xliff:g> לא יפעל אם לא תעדכן את שירותי Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"‏עדכון שירותי Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"‏האפליקציה <xliff:g id="APP_NAME">%1$s</xliff:g> לא תפעל ללא שירותי Google Play, שמתעדכנים כרגע."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"‏דרושה גרסה חדשה של שירותי Google Play. הגרסה תתעדכן בעצמה תוך זמן קצר."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"פתח בטלפון"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"היכנס"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"‏היכנס באמצעות Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml
deleted file mode 100644
index 8c9e164dec794c9d49da077da989de9cd522cedd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-ja/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"有効にする"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g>の実行には、Google Play開発者サービスの有効化が必要です。"</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play開発者サービスの有効化"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"インストール"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"「<xliff:g id="APP_NAME">%1$s</xliff:g>」の実行には Google Play 開発者サービスが必要ですが、お使いの端末にはインストールされていません。"</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play開発者サービスの入手"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play開発者サービスのエラー"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"「<xliff:g id="APP_NAME">%1$s</xliff:g>」の実行には Google Play 開発者サービスが必要ですが、お使いの端末ではサポートされていません。"</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"æ›´æ–°"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g>の実行にはGoogle Play開発者サービスの更新が必要です。"</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play開発者サービスの更新"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g>の実行にはGoogle Play開発者サービスが必要ですが、このサービスは現在更新中です。"</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play開発者サービスの新しいバージョンが必要です。まもなく自動更新されます。"</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"スマートフォンで開く"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"ログイン"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Googleにログイン"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml
deleted file mode 100644
index cf53620c35871a784b14d50c4f92a0bb79c12ea9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-ka/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"ჩართვა"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> ვერ იმუშავებს Google Play Services-ის ჩართვამდე."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play Services-ის ჩართვა"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"ინსტალაცია"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> ვერ გაეშვება Google Play Services-ის გარეშე, რომელიც აკლია თქვენს მოწყობილობას."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play Services-ის ჩამოტვირთვა"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play Services-ის შეცდომა"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> ვერ გაეშვება Google Play Services-ის გარეშე, რომლებიც მხარდაუჭერელია თქვენი მოწყობილობის მიერ."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"განახლება"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> ვერ გაეშვება, თუ Google Play სერვისებს არ განაახლებთ."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"განაახლეთ Google Play Services"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> ვერ გაეშვება Google Play Services-ის გარეშე, რომელთა განახლებაც ამჟამად მიმდინარეობს."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"საჭიროა Google Play Services-ის ახალი ვერსია. ის მალე განახლდება."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"ტელეფონში გახსნა"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"შესვლა"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google-ით შესვლა"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml
deleted file mode 100644
index fd81670ef82d0841bb3162604999d8324dbcc25d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-kk/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Қосу"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Google Play қызметтерін қоспасаңыз, <xliff:g id="APP_NAME">%1$s</xliff:g> жұмыс істемейді."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play қызметтерін қосу"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Орнату"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Google Play қызметтері құрылғыда болмағандықтан, <xliff:g id="APP_NAME">%1$s</xliff:g> іске қосылмайды."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play қызметтерін алу"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play қызметтерінің қатесі"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> қолданбасы құрылғыңызда қолдау көрсетілмейтін Google Play қызметінсіз жұмыс істемейді."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Жаңарту"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Google Play қызметтерін жаңартпасаңыз, <xliff:g id="APP_NAME">%1$s</xliff:g> іске қосылмайды."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play қызметтерін жаңарту"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Қазіргі уақытта жаңартылып жатқан Google Play қызметтерінсіз <xliff:g id="APP_NAME">%1$s</xliff:g> іске қосылмайды."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play қызметтерінің жаңа нұсқасы қажет. Ол қысқа уақыттан кейін өзі жаңарады."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Телефонда ашу"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Кіру"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google арқылы кіру"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml
deleted file mode 100644
index 7b2179bbf8f24ad0d227f9c693cbd8da5e6e93d0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-km/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"បើក"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> នឹងមិនដំណើរការទេ លុះត្រាតែអ្នកបើកសេវាកម្ម Google Play។"</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"បើកសេវាកម្ម Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"ដំឡើង"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> នឹងមិនដំណើរការទេ ប្រសិនបើមិនមានសេវាកម្មនានារបស់ Google Play ដែលបានបាត់ពីឧបករណ៍របស់អ្នក។"</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"ទាញយកសេវាកម្ម Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"កំហុស​​សេវាកម្ម​ Google កម្សាន្ត"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> នឹងមិនដំណើរការដោយគ្មានសេវាកម្មរបស់ Google Play ដែលឧបករណ៍របស់អ្នកមិនគាំទ្រនោះទេ។"</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"អាប់ដេត"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> នឹងមិនដំណើរការទេ លុះត្រាតែអ្នកធ្វើបច្ចុប្បន្នភាពសេវាកម្ម Google Play។"</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"អាប់ដេតសេវាកម្ម Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> នឹងមិនដំណើរការទេ បើមិនមានសេវាកម្ម Google Play ដោយសារតែវាកំពុងអាប់ដេត។"</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"តម្រូវឲ្យមានកំណែថ្មីនៃសេវាកម្ម Google Play។ វានឹងអាប់ដេតដោយខ្លួនវានៅពេលបន្តិចទៀតនេះ។"</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"បើកតាមទូរស័ព្ទ"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"ចូល"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"ចូលដោយប្រើ Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml
deleted file mode 100644
index 977fad8a70f95cc408ef7e5130f4393863f1987f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-kn/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"ಸಕ್ರಿಯಗೊಳಿಸು"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Google Play ಸೇವೆಗಳನ್ನು ನೀವು ಸಕ್ರಿಯಗೊಳಿಸದ ಹೊರತು <xliff:g id="APP_NAME">%1$s</xliff:g> ಕಾರ್ಯನಿರ್ವಹಿಸುವುದಿಲ್ಲ."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play ಸೇವೆಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"ಸ್ಥಾಪಿಸು"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"ನಿಮ್ಮ ಸಾಧನದಿಂದ ಕಾಣೆಯಾಗಿರುವ <xliff:g id="APP_NAME">%1$s</xliff:g>, Google Play ಸೇವೆಗಳಿಲ್ಲದೆ ರನ್ ಆಗುವುದಿಲ್ಲ."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play ಸೇವೆಗಳನ್ನು ಪಡೆಯಿರಿ"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play ಸೇವೆಗಳ ದೋಷ"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"ನಿಮ್ಮ ಸಾಧನದ ಮೂಲಕ ಬೆಂಬಲಿಸದಿರುವ Google Play ಸೇವೆಗಳಿಲ್ಲದೆ <xliff:g id="APP_NAME">%1$s</xliff:g> ರನ್‌ ಆಗುವುದಿಲ್ಲ."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"ಅಪ್‌ಡೇಟ್‌ ಮಾಡು"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"ನೀವು Google Play ಸೇವೆಗಳನ್ನು ನವೀಕರಿಸದ ಹೊರತು <xliff:g id="APP_NAME">%1$s</xliff:g> ರನ್ ಆಗುವುದಿಲ್ಲ."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play ಸೇವೆಗಳನ್ನು ಅಪ್‌ಡೇಟ್‌ ಮಾಡಿ"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Google Play ಸೇವೆಗಳಿಲ್ಲದೆ ಪ್ರಸ್ತುತ ಅಪ್‌ಡೇಟ್ ಆಗುತ್ತಿರುವ <xliff:g id="APP_NAME">%1$s</xliff:g> ರನ್ ಆಗುವುದಿಲ್ಲ."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play ಸೇವೆಗಳ ಹೊಸ ಆವೃತ್ತಿ ಅಗತ್ಯವಿದೆ. ಸದ್ಯದಲ್ಲೇ ಅದು ತಾನಾಗಿಯೇ ಅಪ್‌ಡೇಟ್ ಆಗುತ್ತದೆ."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"ಫೋನ್‌ನಲ್ಲಿ ತೆರೆಯಿರಿ"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"ಸೈನ್ ಇನ್"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google ಮೂಲಕ ಸೈನ್ ಇನ್ ಮಾಡಿ"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml
deleted file mode 100644
index 1d7062d371a01bfaade7c10d4cbdf6925bc91b96..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-ko/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"사용 설정"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Google Play 서비스를 사용하도록 설정해야 <xliff:g id="APP_NAME">%1$s</xliff:g>이(가) 작동합니다."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play 서비스 사용"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"설치"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"기기에 Google Play 서비스가 설치되어 있어야 <xliff:g id="APP_NAME">%1$s</xliff:g>이(가) 실행됩니다."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play 서비스 설치"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play 서비스 오류"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g>은(는) Google Play 서비스 없이는 실행되지 않으나, 기기에서 Google Play 서비스를 지원하지 않습니다."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"업데이트"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Google Play 서비스를 업데이트해야 <xliff:g id="APP_NAME">%1$s</xliff:g>이(가) 실행됩니다."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play 서비스 업데이트"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"현재 업데이트 중인 Google Play 서비스가 있어야 <xliff:g id="APP_NAME">%1$s</xliff:g>이(가) 실행됩니다."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"새 버전의 Google Play 서비스가 필요합니다. 곧 자동으로 업데이트됩니다."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"스마트폰에서 열기"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"로그인"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google 계정으로 로그인"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml
deleted file mode 100644
index 19776b063cd2a7c2c4187e4f0b6c2b2e9c8eed78..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-ky/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Иштетүү"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Google Play кызматтарын иштетмейиңизче <xliff:g id="APP_NAME">%1$s</xliff:g> иштебейт."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play кызматтарын иштетүү"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Орнотуу"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Google Play кызматтарысыз <xliff:g id="APP_NAME">%1$s</xliff:g> иштебейт. Алар түзмөгүңүздө жок болуп жатат."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play кызматтарын алуу"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play кызматтарынын катасы"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> колдонмосу сиздин түзмөгүңүздө колдоого алынбаган Google Play кызматтары болбосо иштебейт."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Жаңыртуу"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Google Play кызматтары жаңыртылмайынча <xliff:g id="APP_NAME">%1$s</xliff:g> иштебейт."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play кызматтарын жаңыртуу"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Google Play кызматтарысыз <xliff:g id="APP_NAME">%1$s</xliff:g> иштебейт, алар учурда жаңыртылууда."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play кызматтарынын жаңы версиясы талап кылынат. Бир аздан кийин ал өзү эле жаңыртылат."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Телефондо ачык"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Кирүү"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google менен кирүү"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml
deleted file mode 100644
index 5fef57e5ee422248f73fac8c3a2941af19088973..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-lo/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"ເປີດນຳໃຊ້"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> ຈະບໍ່ສາມາດໃຊ້ງານໄດ້ຈົນກວ່າທ່ານຈະເປີດໃຊ້ງານ​ການ​ບໍ​ລິ​ການ Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"ເປີດໃຊ້ການ​ບໍ​ລິ​ການ Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"ຕິດຕັ້ງ"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> ຈະບໍ່ສາມາດເປີດໃຊ້ໄດ້ຫາກບໍ່ມີການບໍລິການ Google Play ເຊິ່ງແທັບເລັດຂອງທ່ານບໍ່ມີ."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"ຕິດຕັ້ງບໍລິການ Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play Services ​ເກີດ​ຄວາມ​ຜິດ​ພາດ"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> ຈະບໍ່ສາມາດໃຊ້ໄດ້ຫາກບໍ່ມີບໍລິການ Google Play ເຊິ່ງອຸປະກອນຂອງທ່ານບໍ່ຮອງຮັບ."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"ອັບເດດ"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> ຈະບໍ່ສາມາດເຮັດວຽກໄດ້ຈົນກວ່າທ່ານຈະອັບເດດການ​ບໍ​ລິ​ການ Google Play"</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"ອັບເດດການ​ບໍ​ລິ​ການ Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> ຈະບໍ່ສາມາດໃຊ້ງານໄດ້ໂດຍທີ່ບໍ່ມີການ​ບໍ​ລິ​ການ Google Play, ເຊິ່ງ​ກຳ​ລັງ​ອັບ​ເດດ​ຢູ່​ໃນ​ປະ​ຈຸ​ບັນ."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"ຈຳ​ເປັນ​ຕ້ອງ​ມີ​ກາ​ນ​ບໍ​ລິ​ການ Google Play ເວີ​ຊັນ​ໃໝ່. ມັນ​ຈະ​ອັບ​ເດດ​ຕົວ​ເອງ​ໄວໆ​ນີ້."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"​ເປີດ​ໃນ​ໂທ​ລະ​ສັບ"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"ລົງຊື່ເຂົ້າໃຊ້"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"ລົງຊື່ເຂົ້າໃຊ້ດ້ວຍ Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml
deleted file mode 100644
index 4e726f7822d9ce00ab524802cb0287f4f71d691e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-lt/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Įgalinti"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"„<xliff:g id="APP_NAME">%1$s</xliff:g>“ neveiks, jei neįgalinsite „Google Play“ paslaugų."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Įgalinkite „Google Play“ paslaugas"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Įdiegti"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Programa „<xliff:g id="APP_NAME">%1$s</xliff:g>“ nebus paleidžiama be „Google Play“ paslaugų, kurių nėra įrenginyje."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Gaukite „Google Play“ paslaugas"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"„Google Play“ paslaugų klaida"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Programa „<xliff:g id="APP_NAME">%1$s</xliff:g>“ nebus paleidžiama be „Google Play“ paslaugų, kurių jūsų įrenginys nepalaiko."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Atnaujinti"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"„<xliff:g id="APP_NAME">%1$s</xliff:g>“ nebus paleidžiama, jei neatnaujinsite „Google Play“ paslaugų."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Atnaujinkite „Google Play“ paslaugas"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"„<xliff:g id="APP_NAME">%1$s</xliff:g>“ nebus paleidžiama be „Google Play“ paslaugų, kurios šiuo metu atnaujinamos."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Reikia naujos versijos „Google Play“ paslaugų. Jos netrukus bus atnaujintos."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Atidaryti telefone"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Prisijungti"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Prisijungti naudojant „Google“"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml
deleted file mode 100644
index 051a930ad059bda4b8c8c7b2c8f31a3fecfdd433..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-lv/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Iespējot"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Lai lietotne <xliff:g id="APP_NAME">%1$s</xliff:g> darbotos, ir jāiespējo Google Play pakalpojumi."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play pakalpojumu iespējošana"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Instalēt"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Lai lietotne <xliff:g id="APP_NAME">%1$s</xliff:g> darbotos, ierīcē ir jāinstalē Google Play pakalpojumi."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play pakalpojumu iegūšana"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play pakalpojumu kļūda"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Lai lietotne <xliff:g id="APP_NAME">%1$s</xliff:g> darbotos, ir nepieciešami Google Play pakalpojumi, taču jūsu ierīce tos neatbalsta."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Atjaunināt"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Lai lietotne <xliff:g id="APP_NAME">%1$s</xliff:g> darbotos, jums ir jāatjaunina Google Play pakalpojumi."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play pakalpojumu atjaunināšana"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Lai lietotne <xliff:g id="APP_NAME">%1$s</xliff:g> darbotos, ir jāinstalē Google Play pakalpojumi. Pašlaik notiek to atjaunināšana."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Ir nepieciešama jauna Google Play pakalpojumu versija. Drīzumā tā tiks instalēta."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Atvērt tālrunī"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Pierakstīties"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Pierakstīties ar Google kontu"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml
deleted file mode 100644
index 7e9bc9dc596f52b1d1e8a071b96da9b4d32abcb2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-mk/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Овозможи"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> нема да се извршува ако не овозможите услуги на Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Овозможи ги услугите на Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Инсталирај"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> нема да се извршува без услугите на Google Play што ги нема на уредот."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Преземи ги услугите на Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Грешка на услугите на Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> нема да се извршува без услугите на Google Play, што не се подржани од уредов."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Ажурирај"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> нема да се извршува ако не ги ажурирате услугите на Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Ажурирај ги услугите на Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> нема да се извршува без услугите на Google Play што се ажурираат во моментов."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Потребна е нова верзија на услугите на Google Play. Таа наскоро самата ќе се ажурира."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Отвори на телефонот"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Најави се"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Најави се со Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml
deleted file mode 100644
index 9d0a5bce5e1f7442660fd172bc48c766e59efe32..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-ml/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"പ്രവർത്തനക്ഷമമാക്കുക"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"നിങ്ങൾ Google Play സേവനങ്ങൾ പ്രവർത്തനക്ഷമമാക്കുന്നില്ലെങ്കിൽ <xliff:g id="APP_NAME">%1$s</xliff:g> പ്രവർത്തിക്കില്ല."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play സേവനങ്ങൾ പ്രവർത്തനക്ഷമമാക്കുക"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"ഇന്‍സ്റ്റാള്‍ ചെയ്യുക"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Google Play സേവനങ്ങളില്ലാതെ <xliff:g id="APP_NAME">%1$s</xliff:g> പ്രവർത്തിക്കില്ല, ഈ സേവനങ്ങളാകട്ടെ നിങ്ങളുടെ ഉപകരണത്തിൽ ഇല്ല."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play സേവനങ്ങൾ നേടുക"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play സേവനങ്ങളിലെ പിശക്"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Google Play സേവനങ്ങളില്ലാതെ <xliff:g id="APP_NAME">%1$s</xliff:g> പ്രവർത്തിക്കില്ല, സേവനങ്ങളെയാകട്ടെ നിങ്ങളുടെ ഉപകരണം പിന്തുണയ്ക്കുന്നുമില്ല."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"അപ്‌ഡേറ്റുചെയ്യുക"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"നിങ്ങൾ Google Play സേവനങ്ങൾ അപ്‌ഡേറ്റുചെയ്‌തില്ലെങ്കിൽ <xliff:g id="APP_NAME">%1$s</xliff:g> പ്രവർത്തിക്കില്ല."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play സേവനങ്ങൾ അപ്‌ഡേറ്റുചെയ്യുക"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"നിലവിൽ അപ്‌ഡേറ്റുചെയ്യുന്ന Google Play സേവനങ്ങൾ ഇല്ലാതെ <xliff:g id="APP_NAME">%1$s</xliff:g> പ്രവർത്തിക്കില്ല."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play സേവനങ്ങളുടെ പുതിയ പതിപ്പ് ആവശ്യമാണ്. താമസിയാതെ ഇത് സ്വയം അപ്‌ഡേറ്റുചെയ്യും."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"ഫോണിൽ തുറക്കുക"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"സൈൻ ഇൻ ചെയ്യുക"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google ഉപയോഗിച്ച് സൈൻ ഇൻ ചെയ്യുക"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml
deleted file mode 100644
index f5f70fefe1c8bd8d93a3f200fae42927ec4d823c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-mn/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Идэвхжүүлэх"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> нь Google Play үйлчилгээг идэвхжүүлэх хүртэл ажиллахгүй."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play үйлчилгээг идэвхжүүлэх"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Суулгах"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Таны төхөөрөмжид Google Play үйлчилгээ байхгүй тул <xliff:g id="APP_NAME">%1$s</xliff:g> ажиллахгүй."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play үйлчилгээг авах"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Наадаан үйлчилгээний алдаа"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Таны төхөөрөмж Google Play үйлчилгээг дэмждэггүй учир <xliff:g id="APP_NAME">%1$s</xliff:g> ажиллахгүй."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Шинэчлэх"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> нь таныг Google Play үйлчилгээнүүдийг шинэчлэхээс нааш ажиллахгүй."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play үйлчилгээг шинэчлэх"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> нь одоогоор шинэчилж буй Google Play үйлчилгээгүйгээр ажиллахгүй."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play үйлчилгээний шинэ хувилбар хэрэгтэй. Энэ нь удахгүй өөрөө өөрийгөө шинэчлэх болно."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Утсаар нээх"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Нэвтрэх"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google-р нэвтрэх:"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml
deleted file mode 100644
index 490de79324e8a76d3a2afc919479ba89044c7414..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-mr/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"सक्षम करा"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"आपण Google Play सेवा सक्षम केल्याशिवाय <xliff:g id="APP_NAME">%1$s</xliff:g> हा अॅप कार्य करणार नाही."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play सेवा सक्षम करा"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"स्‍थापित करा"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Google Play सेवा आपल्या डिव्हाइसवर उपलब्ध नाही, त्याशिवाय <xliff:g id="APP_NAME">%1$s</xliff:g> चालणार नाही."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play सेवा मिळवा"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play सेवा त्रुटी"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"आपले डिव्हाइस समर्थन देत नसलेल्या, Google Play सेवांशिवाय <xliff:g id="APP_NAME">%1$s</xliff:g> चालणार नाही."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"अद्यतनित करा"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"आपण Google Play सेवा अद्यतनित करेपर्यंत <xliff:g id="APP_NAME">%1$s</xliff:g> चालणार नाही."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play सेवा अद्यतनित करा"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"सध्‍या अद्यतनित होत असलेल्‍या, Google Play सेवांशिवाय <xliff:g id="APP_NAME">%1$s</xliff:g> चालणार नाही."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play सेवांच्या नवीन आवृत्तीची आवश्यकता आहे. हे स्वत:ला लवकरच अद्यतनित करेल."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"फोनवर उघडा"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"साइन इन करा"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google सह साइन इन करा"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml
deleted file mode 100644
index d7caebc6582ae4143c6447c6fe10eac680d51ae4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-ms/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Dayakan"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> tidak akan berfungsi melainkan anda mendayakan perkhidmatan Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Dayakan perkhidmatan Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Pasang"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> tidak akan berfungsi tanpa perkhidmatan Google Play dan perkhidmatan ini tiada pada peranti anda."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Dapatkan perkhidmatan Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Ralat perkhidmatan Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> tidak akan berfungsi tanpa perkhidmatan Google Play dan perkhidmatan ini tidak disokong oleh peranti anda."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Kemas kini"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> tidak akan berfungsi kecuali anda mengemas kini perkhidmatan Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Kemaskinikan perkhidmatan Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> tidak akan berfungsi tanpa perkhidmatan Google Play dan perkhidmatan ini sedang dikemaskinikan."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Versi baharu perkhidmatan Google Play diperlukan. Kemas kini automatik akan dijalankan sebentar lagi."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Buka pada telefon"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Log masuk"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Log masuk dengan Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml
deleted file mode 100644
index e72da3d57ba120d42766751a7ff86ed94e1ec117..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-my/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"ဖွင့်ရန်"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Google Play ဝန်ဆောင်မှုများကို မဖွင့်သ၍ <xliff:g id="APP_NAME">%1$s</xliff:g> သည်အလုပ်လုပ်မည်မဟုတ်ပါ။"</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play ဝန်ဆောင်မှုများ ဖွင့်ရန်"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"ထည့်သွင်းပါ"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"သင့်တက်ဘလက်တွင် Google Play ဝန်ဆောင်မှုများမရှိသောကြောင့် <xliff:g id="APP_NAME">%1$s</xliff:g> ကိုဖွင့်၍မရပါ။"</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play ဝန်ဆောင်မှုများရယူရန်"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play ဝန်ဆောင်မှုများ အမှား"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Google Play ဝန်ဆောင်မှုများကို သင့်စက်ပစ္စည်းတွင် ပံ့ပိုးမထားသည့်အတွက် ၎င်းမရှိဘဲ <xliff:g id="APP_NAME">%1$s</xliff:g> ကို ဖွင့်၍မရပါ။"</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"အပ်ဒိတ်"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Google Play ဝန်ဆောင်မှုများအား အပ်ဒိတ်မလုပ်ပါက <xliff:g id="APP_NAME">%1$s</xliff:g> အလုပ်လုပ်မည် မဟုတ်ပါ။"</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play ဝန်ဆောင်မှုများကို အပ်ဒိတ်လုပ်ရန်"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Google Play ဝန်ဆောင်မှုများကို လက်ရှိအပ်ဒိတ်လုပ်နေသောကြောင့် <xliff:g id="APP_NAME">%1$s</xliff:g> ကိုဖွင့်၍ရမည်မဟုတ်ပါ။"</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play ဝန်ဆောင်မှုဗားရှင်းအသစ်များ လိုအပ်နေသည်။ အချိန်အနည်းငယ်အကြာတွင် ၎င်းကိုယ်တိုင်အပ်ဒိတ်လုပ်ပါ လိမ့်မည်။"</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"ဖုန်းပေါ်မှာ ဖွင့်ပါ"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"လက်မှတ်ထိုး ဝင်ရန်"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google ဖြင့် လက်မှတ်ထိုးဝင်ရေ"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml
deleted file mode 100644
index c9e27234fe2b2d7c74fe9c8e84c95471d487b49f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-nb/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Slå på"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> fungerer ikke med mindre du slår på Google Play-tjenester."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Slå på Google Play-tjenester"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Installer"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> kan ikke kjøre uten Google Play-tjenester, som ikke er installert på enheten din."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Installer Google Play-tjenester"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play Tjenester-feil"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> kan ikke kjøre uten Google Play-tjenester, som ikke støttes av enheten din."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Oppdater"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> kjører ikke med mindre du oppdaterer Google Play Tjenester."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Oppdater Google Play-tjenester"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> kjører ikke uten Google Play-tjenester, som oppdateres akkurat nå."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Du må installere en ny versjon av Google Play-tjenester. Appen oppdateres automatisk om en kort stund."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Åpne på telefonen"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Logg på"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Logg på med Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml
deleted file mode 100644
index d1ee789c9e98f13ad83df1c449e0d79e9a789f74..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-ne/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"सक्रिय गर्नुहोस्"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> ले तपाईँले Google Play सेवाहरू सक्षम नगरेसम्म काम गर्दैन।"</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play सेवाहरू सक्षम पार्नुहोस्"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"स्थापना गर्नुहोस्"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> Google Play services बिना सञ्चालन हुने छैन र तपाईँको यन्त्रमा Google Play services उपलब्ध छैनन्।"</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play सेवाहरू प्राप्त गर्नुहोस्"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play सेवाहरूका त्रुटि"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> Google Play services बिना सञ्चालन हुने छैन र तपाईँको यन्त्रले Google Play services लाई समर्थन गर्दैन।"</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"अद्यावधिक गर्नुहोस्"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> तपाईंले Google प्ले सेवाहरू अद्यावधिक नगरेसम्म सञ्चालन हुँदैन।"</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play सेवाहरू अद्यावधिक गर्नुहोस्"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Google Play सेवाहरू <xliff:g id="APP_NAME">%1$s</xliff:g> बिना सञ्‍चालन हुँदैन, जुन हाल अद्यावधिक भइरहेका छन्।"</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play सेवाहरूको नयाँ संस्करण आवश्यक छ। यो आफै छिट्टै नै अद्यावधिक हुनेछ।"</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"फोनमा खोल्नुहोस्"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"साइन इन गर्नुहोस्"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google मार्फत साइन‍ इन गर्नुहोस्"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml
deleted file mode 100644
index 0e41503cf92a3ff8efbfba57cc690f3b0736941f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-nl/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Inschakelen"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> werkt niet, tenzij je Google Play-services inschakelt."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play-services inschakelen"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Installeren"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> kan niet worden uitgevoerd zonder Google Play-services, die je nog niet op je apparaat hebt."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play-services ophalen"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Fout met Google Play-services"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> kan niet worden uitgevoerd zonder Google Play-services, die niet worden ondersteund op je apparaat."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Updaten"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> kan niet worden uitgevoerd, tenzij je Google Play-services updatet."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play-services updaten"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> kan niet worden uitgevoerd zonder Google Play-services, die momenteel worden geüpdatet."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Er is een nieuwe versie van Google Play-services vereist. De update wordt binnenkort automatisch uitgevoerd."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Openen op telefoon"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Inloggen"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Inloggen met Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml
deleted file mode 100644
index 458d905ab8cd5f0f3a82d0ff5ef34da1a202266e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-pa/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"ਯੋਗ ਬਣਾਓ"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> ਕੰਮ ਨਹੀਂ ਕਰੇਗਾ ਜਦੋਂ ਤੱਕ ਤੁਸੀਂ Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਯੋਗ ਨਹੀਂ ਬਣਾਉਂਦੇ ਹੋ।"</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਯੋਗ ਬਣਾਓ"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"ਸਥਾਪਤ ਕਰੋ"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> Google Play ਸੇਵਾਵਾਂ ਤੋਂ ਬਿਨਾਂ ਨਹੀਂ ਚੱਲੇਗੀ, ਜੋ ਤੁਹਾਡੀ ਡੀਵਾਈਸ ਤੋਂ ਗੁੰਮ ਹਨ।"</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play ਸੇਵਾਵਾਂ ਪ੍ਰਾਪਤ ਕਰੋ"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play ਸੇਵਾਵਾਂ ਅਸ਼ੁੱਧੀ"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> Google Play ਸੇਵਾਵਾਂ ਤੋਂ ਬਿਨਾਂ ਨਹੀਂ ਚੱਲ ਸਕੇਗੀ, ਜੋ ਤੁਹਾਡੀ ਡੀਵਾਈਸ \'ਤੇ ਸਮਰਥਿਤ ਨਹੀਂ ਹਨ।"</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"ਅੱਪਡੇਟ ਕਰੋ"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> ਨਹੀਂ ਚੱਲੇਗਾ ਜਦੋਂ ਤੱਕ ਤੁਸੀਂ Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਅਪਡੇਟ ਨਹੀਂ ਕਰਦੇ।"</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਅੱਪਡੇਟ ਕਰੋ"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> Google Play ਸੇਵਾਵਾਂ ਤੋਂ ਬਿਨਾਂ ਨਹੀਂ ਚੱਲੇਗਾ, ਜੋ ਵਰਤਮਾਨ ਵਿੱਚ ਅਪਡੇਟ ਹੋ ਰਹੀਆਂ ਹਨ।"</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play ਸੇਵਾਵਾਂ ਦੇ ਨਵਾਂ ਸੰਸਕਰਨ ਦੀ ਲੋੜ ਹੈ। ਇਹ ਛੇਤੀ ਹੀ ਆਪਣੇ ਆਪ ਅਪਡੇਟ ਕਰੇਗਾ।"</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"ਫ਼ੋਨ \'ਤੇ ਖੋਲ੍ਹੋ"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"ਸਾਈਨ ਇਨ ਕਰੇ"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google ਨਾਲ ਸਾਈਨ ਇਨ ਕਰੋ"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml
deleted file mode 100644
index c67d5c32183969a2622ee89ee7717e65009128c7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-pl/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"WÅ‚Ä…cz"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Aplikacja <xliff:g id="APP_NAME">%1$s</xliff:g> nie będzie działać, jeśli nie włączysz Usług Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Włącz Usługi Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Zainstaluj"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> nie będzie działać, jeśli nie zainstalujesz na urządzeniu Usług Google Play."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Pobierz Usługi Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Błąd Usług Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> nie będzie działać bez Usług Google Play, które nie są obecnie obsługiwane przez urządzenie."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Aktualizuj"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Aplikacja <xliff:g id="APP_NAME">%1$s</xliff:g> nie będzie działać, jeśli nie zaktualizujesz Usług Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Zaktualizuj Usługi Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Aplikacja <xliff:g id="APP_NAME">%1$s</xliff:g> nie będzie działać bez Usług Google Play, które są obecnie aktualizowane."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Wymagana jest nowa wersja Usług Google Play. Wkrótce nastąpi automatyczna aktualizacja."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Otwórz na telefonie"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Zaloguj siÄ™"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Zaloguj siÄ™ przez Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml
deleted file mode 100644
index ce39880bcf7b8de0f9b6d71b7abf835c6a1a4a36..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-pt-rBR/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Ativar"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> só funciona com o Google Play Services ativado."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Ativar o Google Play Services"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Instalar"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"O app <xliff:g id="APP_NAME">%1$s</xliff:g> não funciona sem o Google Play Services, o qual não está instalado no seu dispositivo."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Instalar o Google Play Services"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Erro do Google Play Services"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"O app <xliff:g id="APP_NAME">%1$s</xliff:g> não funciona sem o Google Play Services, o qual não é compatível com seu dispositivo."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Atualizar"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> só funciona com uma versão atualizada do Google Play Services."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Atualizar o Google Play Services"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> não funciona sem o Google Play Services, o qual está sendo atualizado no momento."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"É necessária uma nova versão do Google Play Services. Ele será atualizado em breve."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Abrir no smartphone"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Fazer login"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Fazer login com o Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml
deleted file mode 100644
index f5ab546e35b1a52a8e0733afbd7c9083fcdca63c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-pt-rPT/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Ativar"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"O <xliff:g id="APP_NAME">%1$s</xliff:g> não funciona enquanto não ativar os serviços do Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Ativar serviços do Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Instalar"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"O <xliff:g id="APP_NAME">%1$s</xliff:g> não é executado sem os Serviços do Google Play, os quais estão em falta no seu dispositivo."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Obter serviços do Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Erro dos Serviços do Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Não é possível executar o <xliff:g id="APP_NAME">%1$s</xliff:g> sem os Serviços do Google Play, os quais não são compatíveis com o seu dispositivo."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Atualizar"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"O <xliff:g id="APP_NAME">%1$s</xliff:g> não é executado enquanto não atualizar os serviços do Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Atualizar serviços do Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"O <xliff:g id="APP_NAME">%1$s</xliff:g> não é executado sem os serviços do Google Play, os quais estão a ser atualizados."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"É necessária uma nova versão dos serviços do Google Play. Esta será atualizada automaticamente em breve."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Abrir no telemóvel"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Iniciar sessão"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Iniciar sessão com o Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml
deleted file mode 100644
index 66cc6229135927dd6b0c0daabf167f0216837005..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-ro/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Activați"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> nu va funcționa decât dacă activați serviciile Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Activați serviciile Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Instalați"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> nu va rula fără serviciile Google Play, care lipsesc de pe dispozitivul dvs."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Descărcați serviciile Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Eroare a serviciilor Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> nu va rula fără serviciile Google Play, care nu sunt acceptate de dispozitivul dvs."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Actualizați"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> nu va rula decât dacă actualizați serviciile Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Actualizați serviciile Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> nu va rula fără serviciile Google Play, care momentan se actualizează."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Este necesară o nouă versiune a serviciilor Google Play. Se vor actualiza automat în curând."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Deschideți pe telefon"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Conectați-vă"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Conectați-vă cu Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml
deleted file mode 100644
index 9ceb9b77089a6dffcc1bca6b2cafa7a1734dc0ff..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-ru/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Включить"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Для работы приложения \"<xliff:g id="APP_NAME">%1$s</xliff:g>\" требуется включить сервисы Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Включите сервисы Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Установить"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Для работы приложения \"<xliff:g id="APP_NAME">%1$s</xliff:g>\" требуется установить сервисы Google Play."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Установите сервисы Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Ошибка сервисов Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Для работы с приложением \"<xliff:g id="APP_NAME">%1$s</xliff:g>\" требуются сервисы Google Play. Они не поддерживаются на вашем устройстве."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Обновить"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Чтобы запустить приложение \"<xliff:g id="APP_NAME">%1$s</xliff:g>\", обновите сервисы Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Обновите сервисы Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Сервисы Google Play, необходимые для работы приложения \"<xliff:g id="APP_NAME">%1$s</xliff:g>\", в настоящий момент обновляются."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Версия сервисов Google Play устарела. Они автоматически обновятся в ближайшее время."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Открыть на телефоне"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Войти"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Войти через аккаунт Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml
deleted file mode 100644
index 6742448d8e31eac62fce8d1ca218014220c5a435..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-si/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"සබල කරන්න"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"ඔබ Google Play සේවා සබල කරන්නේ නම් මිස <xliff:g id="APP_NAME">%1$s</xliff:g> වැඩ නොකරනු ඇත."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play සේවා සබල කරන්න"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"ස්ථාපනය කරන්න"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"ඔබගේ ටැබ්ලට් පරිගණකයේ නැති Google Play සේවා නොමැතිව <xliff:g id="APP_NAME">%1$s</xliff:g> ධාවනය නොවනු ඇත."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play සේවා ලබා ගන්න"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play සේවා දෝෂය"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"ඔබගේ උපාංගය මගින් සහාය නොදක්වන, Google Play සේවා නොමැතිව <xliff:g id="APP_NAME">%1$s</xliff:g> ධාවනය නොවනු ඇත."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"යාවත්කාලීන කරන්න"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Google Play සේවා යාවත්කාලීන කරන්නේ නොමැතිව <xliff:g id="APP_NAME">%1$s</xliff:g> ධාවනය නොවේ."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play සේවා යාවත්කාලීන කරන්න"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"දැනට යාවත්කාලීන කරමින් ඇති, Google Play සේවා නොමැතිව <xliff:g id="APP_NAME">%1$s</xliff:g> ධාවනය නොවනු ඇත."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play සේවාවල නව අනුවාදයක් අවශ්‍යයි. එය මද වේලාවකින් එය විසින්ම යාවත්කාලීන වනු ඇත."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"දුරකථනය තුළ විවෘත කරන්න"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"පුරන්න"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google සමගින් පුරන්න"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml
deleted file mode 100644
index 128000f42206d537663273b125446dcfa6996d2a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-sk/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Povoliť"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Aplikácia <xliff:g id="APP_NAME">%1$s</xliff:g> bude fungovať až po povolení služieb Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Povoliť služby Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Inštalovať"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Na spustenie aplikácie <xliff:g id="APP_NAME">%1$s</xliff:g> sa vyžadujú služby Google Play, ktoré na zariadení nemáte."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Inštalovať služby Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Chyba služieb Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Aplikáciu <xliff:g id="APP_NAME">%1$s</xliff:g> nebude možné spustiť bez služieb Google Play, ktoré vaše zariadenie nepodporuje."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Aktualizovať"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Aplikáciu <xliff:g id="APP_NAME">%1$s</xliff:g> bude možné spustiť až po aktualizácii služieb Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Aktualizácia služieb Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Na spustenie aplikácie <xliff:g id="APP_NAME">%1$s</xliff:g> sa vyžadujú služby Google Play, ktoré sa momentálne aktualizujú."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Vyžaduje sa nová verzia služieb Google Play. Aktualizujú sa automaticky v najbližšom čase."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Otvoriť v telefóne"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Prihlásiť sa"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Prihlásiť sa do účtu Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml
deleted file mode 100644
index be7c311bf80bd68eb342399036ae1f806c25ea32..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-sl/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Omogoči"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Aplikacija <xliff:g id="APP_NAME">%1$s</xliff:g> ne bo delovala, če ne omogočite storitev Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Omogočanje storitev Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Namesti"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Aplikacija <xliff:g id="APP_NAME">%1$s</xliff:g> ne deluje brez storitev Google Play, vendar teh ni v napravi."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Namestitev storitev Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Napaka storitev Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Aplikacija <xliff:g id="APP_NAME">%1$s</xliff:g> ne deluje brez storitev Google Play, ki jih vaša naprava ne podpira."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Posodobi"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Aplikacija <xliff:g id="APP_NAME">%1$s</xliff:g> ne bo delovala, če ne posodobite storitev Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Posodobitev storitev Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Aplikacija <xliff:g id="APP_NAME">%1$s</xliff:g> ne deluje brez storitev Google Play, ki se trenutno posodabljajo."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Potrebujete novo različico storitev Google Play. V kratkem se bodo posodobile."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Odpiranje v telefonu"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Prijava"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Prijava z Google Računom"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml
deleted file mode 100644
index bacdef55acba46c06fd419c7e508562adf405609..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-sq/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Aktivizo"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> nuk do të funksionojë nëse nuk aktivizon shërbimet e \"Luaj me Google\"."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Aktivizo shërbimet e \"Luaj me Google\""</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Instalo"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> nuk do të funksionojë pa shërbimet e Google Play, të cilat mungojnë në pajisjen tënde."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Merr shërbimet e \"Luaj me Google\""</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Gabim në shërbimet e \"Luaj me Google\""</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> nuk do të funksionojë pa shërbimet e Google Play, të cilat nuk mbështeten nga pajisja jote."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Përditëso"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> nuk do të funksionojë nëse nuk përditëson shërbimet e \"Luaj me Google\"."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Përditëso shërbimet e \"Luaj me Google\""</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> nuk do të funksionojë pa shërbimet e \"Luaj me Google\", të cilat po përditësohen aktualisht."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Nevojitet një version i ri i shërbimeve të \"Luaj me Google\". Ai do të përditësohet automatikisht së shpejti."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Hape në telefon"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Identifikohu"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Identifikohu me Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml
deleted file mode 100644
index c1ea045ef0685a15aeecb0384a686dd14287a488..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-sr/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Омогући"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> неће функционисати ако не омогућите Google Play услуге."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Омогућите Google Play услуге"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Инсталирај"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> не може да се покрене без Google Play услуга, које нису инсталиране на уређају."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Преузмите Google Play услуге"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Грешка Google Play услуга"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> не може да се покрене без Google Play услуга, које уређај не подржава."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Ажурирај"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> не може да се покрене ако не ажурирате Google Play услуге."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Ажурирајте Google Play услуге"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> не може да се покрене без Google Play услуга, које се тренутно ажурирају."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Потребна је нова верзија Google Play услуга. Ускоро ће се ажурирати."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Отвори на телефону"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Пријави ме"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Пријави ме на Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml
deleted file mode 100644
index 375d5fc603fe24427c2a9fa897486635082c2a81..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-sv/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Aktivera"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> fungerar inte om du inte aktiverar Google Play-tjänster."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Aktivera Google Play-tjänster"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Installera"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> kan inte köras utan Google Play-tjänsterna, som saknas på enheten."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Hämta Google Play-tjänster"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Fel på Google Play-tjänster"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> fungerar inte utan Google Play-tjänsterna, som inte stöds på enheten."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Uppdatera"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> kan inte köras om du inte uppdaterar Google Play-tjänsterna."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Uppdatera Google Play-tjänster"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> kan inte köras utan Google Play-tjänster, och dessa uppdateras för närvarande."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"En ny version av Google Play-tjänster krävs. Den uppdateras automatiskt inom kort."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Öppna på mobilen"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Logga in"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Logga in med Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml
deleted file mode 100644
index bc672e1c32d854e6efb0f2338058ab3f9a1b6ad8..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-sw/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Washa"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> haitafanya kazi isipokuwa uwashe huduma za Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Washa huduma za Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Sakinisha"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> haitafanya kazi bila huduma za Google Play. Huduma hizi hazipatikani kwenye kifaa chako."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Pata huduma za Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Hitilafu kwenye huduma za Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> haitafanya kazi bila huduma za Google Play. Huduma hizi hazitumiki kwenye kifaa chako."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Sasisha"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> haitafanya kazi hadi usasishe huduma za Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Sasisha huduma za Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> haitafanya kazi bila huduma za Google Play. Huduma hizi zinasasishwa sasa."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Toleo jipya la huduma za Google Play linahitajika. Litajisasisha baada ya muda mfupi."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Fungua kwenye simu"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Ingia katika akaunti"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Ingia katika akaunti ukitumia Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml
deleted file mode 100644
index 0b81a6c5b1fa103d7fe453fbf9e9c1560849945b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-ta/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"இயக்கு"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Google Play சேவைகளை இயக்கினால் மட்டுமே, <xliff:g id="APP_NAME">%1$s</xliff:g> செயல்படும்."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play சேவைகளை இயக்கவும்"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"நிறுவு"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Google Play சேவைகள் இருந்தால் மட்டுமே, <xliff:g id="APP_NAME">%1$s</xliff:g> இயங்கும். அவை உங்கள் சாதனத்தில் இல்லை."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play சேவைகளைப் பெறவும்"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play சேவைகள் பிழை"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Google Play சேவைகள் இருந்தால் மட்டுமே <xliff:g id="APP_NAME">%1$s</xliff:g> பயன்பாடு இயங்கும். ஆனால், உங்கள் சாதனத்தில் அவை ஆதரிக்கப்படவில்லை."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"புதுப்பி"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Google Play சேவைகளை இயக்கினால் மட்டுமே, <xliff:g id="APP_NAME">%1$s</xliff:g> செயல்படும்."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play சேவைகளைப் புதுப்பிக்கவும்"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"தற்போது புதுப்பிக்கப்படும், Google Play சேவைகள் இருந்தால் மட்டுமே, <xliff:g id="APP_NAME">%1$s</xliff:g> செயல்படும்."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play சேவைகளின் புதிய பதிப்பு தேவை. அது விரைவில் தானாகவே புதுப்பிக்கப்படும்."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"மொபைலில் திற"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"உள்நுழைக"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google மூலம் உள்நுழைக"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml
deleted file mode 100644
index d4e4f8dad8895c09d4bdbfac3686146582826ac0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-te/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"ప్రారంభించు"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"మీరు Google Play సేవలను ప్రారంభిస్తే మినహా <xliff:g id="APP_NAME">%1$s</xliff:g> పని చేయదు."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play సేవలను ప్రారంభించండి"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"ఇన్‌స్టాల్ చేయి"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> Google Play సేవలు లేకుండా అమలు కాదు, ఆ సేవలు మీ పరికరంలో లేవు."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play సేవలను పొందండి"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play సేవల లోపం"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> Google Play సేవలు లేకుండా అమలు కాదు, ఈ సేవలకు మీ పరికరంలో మద్దతు లేదు."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"నవీకరించు"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"మీరు Google Play సేవలను నవీకరిస్తే మినహా <xliff:g id="APP_NAME">%1$s</xliff:g> అమలు కాదు."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play సేవలను నవీకరించండి"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> Google Play సేవలు లేకుండా అమలు కాదు, ఆ సేవలు ప్రస్తుతం నవీకరించబడుతున్నాయి."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"కొత్త Google Play సేవల సంస్కరణ అవసరం. అది కొద్ది సేపట్లో దానంతట అదే నవీకరించబడుతుంది."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"ఫోన్‌లో తెరువు"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"సైన్ ఇన్ చేయి"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Googleతో సైన్ ఇన్ చేయి"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml
deleted file mode 100644
index d3a6fda3ddc5080987c5d799355930392f2bfa4a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-th/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"เปิดใช้"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> จะไม่ทำงานจนกว่าคุณจะเปิดใช้บริการ Google Play"</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"เปิดใช้บริการ Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"ติดตั้ง"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> จะไม่ทำงานหากไม่มีบริการ Google Play ซี่งไม่มีในอุปกรณ์ของคุณ"</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"ติดตั้งบริการ Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"ข้อผิดพลาดของบริการ Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> จะไม่ทำงานหากไม่มีบริการ Google Play ซึ่งอุปกรณ์ของคุณไม่สนับสนุน"</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"อัปเดต"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> จะไม่ทำงานจนกว่าคุณจะอัปเดตบริการ Google Play"</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"อัปเดตบริการ Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> จะไม่ทำงานหากไม่มีบริการ Google Play ซึ่งกำลังอัปเดตอยู่ในขณะนี้"</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"จำเป็นต้องใช้บริการ Google Play เวอร์ชันใหม่ ซึ่งจะอัปเดตอัตโนมัติในอีกไม่ช้า"</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"เปิดบนโทรศัพท์"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"ลงชื่อเข้าใช้"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"ลงชื่อเข้าใช้ด้วย Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml
deleted file mode 100644
index fe5f986d90412374a26654bce8c14cbc199cd9cd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-tl/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"I-enable"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Hindi gagana ang <xliff:g id="APP_NAME">%1$s</xliff:g> maliban kung ie-enable mo ang mga serbisyo ng Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"I-enable ang mga serbisyo ng Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"I-install"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Hindi gagana ang <xliff:g id="APP_NAME">%1$s</xliff:g> nang wala ang mga serbisyo ng Google Play na wala sa iyong device."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Kunin ang mga serbisyo ng Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Error sa Mga Serbisyo ng Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Hindi gagana ang <xliff:g id="APP_NAME">%1$s</xliff:g> nang wala ang mga serbisyo ng Google Play, na hindi nasusuportahan ng iyong device."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"I-update"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Hindi gagana ang <xliff:g id="APP_NAME">%1$s</xliff:g> maliban kung i-a-update mo ang mga serbisyo ng Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"I-update ang mga serbisyo ng Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Hindi gagana ang <xliff:g id="APP_NAME">%1$s</xliff:g> nang wala ang mga serbisyo ng Google Play na kasalukuyang ina-update."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Kailangan ang bagong bersyon ng mga serbisyo ng Google Play. Mag-a-update itong mag-isa sa ilang sandali."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Buksan sa telepono"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Mag-sign in"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Mag-sign in sa Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml
deleted file mode 100644
index cfddc0f0badf466b9d2ef832b68a486099a5c12d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-tr/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"EtkinleÅŸtir"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Google Play hizmetlerini etkinleştirmezseniz <xliff:g id="APP_NAME">%1$s</xliff:g> çalışmaz."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play hizmetlerini etkinleÅŸtirin"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Yükle"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g>, şu anda cihazınızda bulunmayan Google Play hizmetleri olmadan çalışmaz."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play hizmetlerini edinin"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play Hizmetleri hatası"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g>, Google Play hizmetleri olmadan çalışmaz ve bu hizmetler cihazınız tarafından desteklenmiyor."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Güncelle"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Google Play hizmetlerini güncellemezseniz <xliff:g id="APP_NAME">%1$s</xliff:g> çalışmayacak."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play hizmetlerini güncelleyin"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g>, şu anda güncellenmekte olan Google Play hizmetleri olmadan çalışmaz."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play hizmetlerinin yeni sürümü gerekiyor. Kendisini kısa süre içinde güncelleyecektir."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Telefonda aç"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Oturum aç"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google\'da oturum aç"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml
deleted file mode 100644
index 37b1e01f97765cc5b6118a0f8ab748560e4311c6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-uk/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Увімкнути"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Додаток <xliff:g id="APP_NAME">%1$s</xliff:g> не працюватиме, якщо не ввімкнути сервіси Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Увімкнути сервіси Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Установити"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"Додаток <xliff:g id="APP_NAME">%1$s</xliff:g> не працюватиме без сервісів Google Play, яких немає на вашому пристрої."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Установити сервіси Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Помилка сервісів Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"Додаток <xliff:g id="APP_NAME">%1$s</xliff:g> не працюватиме без сервісів Google Play, які не підтримуються на вашому пристрої."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Оновити"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Додаток <xliff:g id="APP_NAME">%1$s</xliff:g> не працюватиме, якщо не оновити сервіси Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Оновіть сервіси Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Додаток <xliff:g id="APP_NAME">%1$s</xliff:g> не працюватиме без сервісів Google Play, які зараз оновлюються."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Потрібна нова версія сервісів Google Play. Вони невдовзі оновляться."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Відкрити на телефоні"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Увійти"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Увійти в облік. запис Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml
deleted file mode 100644
index bb2048d35158201bcd2c8890093c7f40e8b09c8a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-ur/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"فعال کریں"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"‏جب تک آپ Google Play سروسز فعال نہیں کر لیتے، <xliff:g id="APP_NAME">%1$s</xliff:g> کام نہیں کرے گی۔"</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"‏Google Play سروسز فعال کریں"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"انسٹال کریں"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"‏<xliff:g id="APP_NAME">%1$s</xliff:g> Google Play سروسز کے بغیر نہیں چلے گی، جو آپ کے آلہ سے غائب ہیں۔"</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"‏Google Play سروسز حاصل کریں"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"‏Google Play سروسز کی خرابی"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"‏<xliff:g id="APP_NAME">%1$s</xliff:g> Google Play سروسز کے بغیر نہیں چلے گی، جن کی آپ کا آلہ معاونت نہیں کرتا۔"</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"اپ ڈیٹ کریں"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"‏جب تک آپ Google Play سروسز اپ ڈیٹ نہیں کر لیتے ہیں <xliff:g id="APP_NAME">%1$s</xliff:g> تب تک نہیں چلے گی۔"</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"‏Google Play سروسز اپ ڈیٹ کریں"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"‏<xliff:g id="APP_NAME">%1$s</xliff:g> Google Play سروسز کے بغیر نہیں چلے گی، جو فی الحال اپ ڈیٹ ہو رہی ہیں۔"</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"‏Google Play سروسز کے نئے ورژن کی ضرورت ہے۔ یہ تھوڑی دیر میں خود ہی اپنے آپ کو اپ ڈیٹ کر لے گا۔"</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"فون پر کھولیں"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"سائن ان کریں"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"‏Google کے ساتھ سائن ان کریں"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml
deleted file mode 100644
index 95c833af72ac05cffecbe4ed02e63c5ad80e08d7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-uz/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Yoqish"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"Google Play xizmatlari yoqilmaguncha, <xliff:g id="APP_NAME">%1$s</xliff:g> ishlamaydi."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Google Play xizmatlarini yoqish"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"O‘rnatish"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> ishlashi uchun qurilmangizda Google Play xizmatlarini o‘rnatish lozim."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Google Play xizmatlarini o‘rnatish"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play xizmatlari xatosi"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> ilovasi Google Play xizmatlarisiz ishlamaydi, biroq qurilmangiz ularni qo‘llab-quvvatlamaydi."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Yangilash"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"Google Play xizmatlari yangilanmaguncha, <xliff:g id="APP_NAME">%1$s</xliff:g> ishga tushmaydi."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Google Play xizmatlarini yangilash"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> ilovasining ishlashi uchun zarur Google Play xizmatlari hozirda yangilanmoqda."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Google Play xizmatlarining yangi versiyasi zarur. U o‘zini qisqa vaqt ichida yangilaydi."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Telefonda ochish"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Kirish"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Google orqali kirish"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml
deleted file mode 100644
index a1592d1c225169691695a3c709a69add21b5add6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-vi/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Bật"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"<xliff:g id="APP_NAME">%1$s</xliff:g> sẽ không hoạt động nếu bạn không bật dịch vụ của Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Bật dịch vụ của Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Cài đặt"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"<xliff:g id="APP_NAME">%1$s</xliff:g> sẽ không chạy nếu không có dịch vụ của Google Play. Thiết bị của bạn bị thiếu dịch vụ này."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Cài đặt dịch vụ của Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Lỗi dịch vụ của Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> sẽ không chạy nếu không có các dịch vụ của Google Play. Thiết bị của bạn không hỗ trợ các dịch vụ này."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Cập nhật"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"<xliff:g id="APP_NAME">%1$s</xliff:g> sẽ không chạy trừ khi bạn cập nhật Dịch vụ của Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Cập nhật dịch vụ của Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"<xliff:g id="APP_NAME">%1$s</xliff:g> sẽ không chạy nếu không có dịch vụ của Google Play. Dịch vụ này hiện đang cập nhật."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Cần phiên bản mới của dịch vụ Google Play. Dịch vụ sẽ sớm tự động cập nhật."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Mở trên điện thoại"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Đăng nhập"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Đăng nhập bằng Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml
deleted file mode 100644
index 0de341248b0c67b10093f563dd7925ca8c3f9c93..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-zh-rCN/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"启用"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"您必须先启用 Google Play 服务,然后才能运行<xliff:g id="APP_NAME">%1$s</xliff:g>。"</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"启用 Google Play 服务"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"安装"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"您的设备没有安装 Google Play 服务,因此无法运行<xliff:g id="APP_NAME">%1$s</xliff:g>。"</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"获取 Google Play 服务"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play服务出错"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"您的设备不支持 Google Play 服务,因此无法运行<xliff:g id="APP_NAME">%1$s</xliff:g>。"</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"æ›´æ–°"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"您必须先更新 Google Play 服务,然后才能运行<xliff:g id="APP_NAME">%1$s</xliff:g>。"</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"更新 Google Play 服务"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"Google Play 服务当前正在更新,因此您无法运行<xliff:g id="APP_NAME">%1$s</xliff:g>。"</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"必须使用新版 Google Play 服务。该服务很快就会自行更新。"</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"在手机上打开"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"登录"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"使用 Google 帐号登录"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml
deleted file mode 100644
index 194a45faddd9af407a8c036000e8862e04496a86..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-zh-rHK/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"啟用"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"您必須啟用 Google Play 服務,方可執行「<xliff:g id="APP_NAME">%1$s</xliff:g>」。"</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"啟用 Google Play 服務"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"安裝"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"您的裝置尚未安裝 Google Play 服務,因此無法執行「<xliff:g id="APP_NAME">%1$s</xliff:g>」。"</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"安裝 Google Play 服務"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play 服務錯誤"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"您的裝置不支援 Google Play 服務,因此無法執行「<xliff:g id="APP_NAME">%1$s</xliff:g>」。"</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"æ›´æ–°"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"您必須更新「Google Play 服務」,才能執行 <xliff:g id="APP_NAME">%1$s</xliff:g>。"</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"更新 Google Play 服務"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"正在更新 Google Play 服務,更新完成後方可執行「<xliff:g id="APP_NAME">%1$s</xliff:g>」。"</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"需要使用新版本的 Google Play 服務。更新會即將自動開始。"</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"在手機開啟"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"登入"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"透過 Google 登入"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml
deleted file mode 100644
index 1e9ecb46090e53770fb9ce7651cbe44a3c948b2b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-zh-rTW/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"啟用"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"您必須啟用 Google Play 服務,才能執行「<xliff:g id="APP_NAME">%1$s</xliff:g>」。"</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"啟用 Google Play 服務"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"安裝"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"您的裝置並未安裝 Google Play 服務,因此無法執行「<xliff:g id="APP_NAME">%1$s</xliff:g>」。"</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"取得 Google Play 服務"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Google Play 服務發生錯誤"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"您的裝置不支援 Google Play 服務,因此無法執行「<xliff:g id="APP_NAME">%1$s</xliff:g>」。"</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"æ›´æ–°"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"您必須更新 Google Play 服務,才能執行「<xliff:g id="APP_NAME">%1$s</xliff:g>」。"</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"更新 Google Play 服務"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"執行「<xliff:g id="APP_NAME">%1$s</xliff:g>」所需的 Google Play 服務正在更新。"</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"必須使用新版 Google Play 服務。該服務稍後就會自動更新。"</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"在手機上開啟"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"登入"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"使用 Google 帳戶登入"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml
deleted file mode 100644
index b97f45ecbcb4eed1de91b99db995ae9d45ce12e0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/base/res/values-zu/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="8585111718777012708">"Nika amandla"</string>
-<string name="common_google_play_services_enable_text" msgid="7045129128108380659">"I-<xliff:g id="APP_NAME">%1$s</xliff:g> ngeke isebenze ngaphandle kokuthi unike amandla amasevisi we-Google Play."</string>
-<string name="common_google_play_services_enable_title" msgid="3147157405986503375">"Nika amandla amasevisi we-Google Play"</string>
-<string name="common_google_play_services_install_button" msgid="9115728400623041681">"Faka"</string>
-<string name="common_google_play_services_install_text" msgid="8179894293032530091">"I-<xliff:g id="APP_NAME">%1$s</xliff:g> ngeke ize iqalise ngaphandle kwamasevisi we-Google Play, angekho kusukela kudivayisi yakho."</string>
-<string name="common_google_play_services_install_title" msgid="7442193194585196676">"Thola amasevisi we-Google Play"</string>
-<string name="common_google_play_services_notification_ticker" msgid="180394615667698242">"Iphutha lamasevisi we-Google Play"</string>
-<string name="common_google_play_services_unsupported_text" msgid="5501187292256987189">"<xliff:g id="APP_NAME">%1$s</xliff:g> ngeke isebenze ngaphandle kwamasevisi e-Google Play, angasekelwa idivayisi yakho."</string>
-<string name="common_google_play_services_update_button" msgid="8172070149091615356">"Isibuyekezo"</string>
-<string name="common_google_play_services_update_text" msgid="7773943415006962566">"I-<xliff:g id="APP_NAME">%1$s</xliff:g> ngeke ize iqalise ngaphandle kokuthi ubuyekeze i-Google Play."</string>
-<string name="common_google_play_services_update_title" msgid="8706675115216073244">"Buyekeza amasevisi we-Google Play"</string>
-<string name="common_google_play_services_updating_text" msgid="7894275749778928941">"I-<xliff:g id="APP_NAME">%1$s</xliff:g> ngeke ize iqalise ngaphandle kwamasevisi we-Google Play, okwamanje abuyekezwayo."</string>
-<string name="common_google_play_services_wear_update_text" msgid="2804989272736383918">"Kudingeka inguqulo entsha yamasevisi we-Google Play. Izozibuyekeza ngokwayo maduze."</string>
-<string name="common_open_on_phone" msgid="5201977337835724196">"Vula kufoni"</string>
-<string name="common_signin_button_text" msgid="3441753203274453993">"Ngena ngemvume"</string>
-<string name="common_signin_button_text_long" msgid="669893613918351210">"Ngena ngemvume nge-Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml
deleted file mode 100644
index 92384c84966100efdd42530ba1f21c4b891ccf48..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- java/com/google/android/gmscore/integ/client/base/res/values/colors.xml -->
-<eat-comment/>
-<color name="common_google_signin_btn_text_dark_default">@android:color/white</color>
-<color name="common_google_signin_btn_text_dark_disabled">#1F000000</color>
-<color name="common_google_signin_btn_text_dark_focused">@android:color/black</color>
-<color name="common_google_signin_btn_text_dark_pressed">@android:color/white</color>
-<color name="common_google_signin_btn_text_light_default">#90000000</color>
-<color name="common_google_signin_btn_text_light_disabled">#1F000000</color>
-<color name="common_google_signin_btn_text_light_focused">#90000000</color>
-<color name="common_google_signin_btn_text_light_pressed">#DE000000</color>
-<!-- java/com/google/android/gmscore/integ/client/base/res/values/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_enable_button" msgid="2523291102206661146">Enable</string>
-<string name="common_google_play_services_enable_text" msgid="227660514972886228"><xliff:g id="app_name">%1$s</xliff:g> won\'t work unless you enable Google Play services.</string>
-<string name="common_google_play_services_enable_title" msgid="5122002158466380389">Enable Google Play services</string>
-<string name="common_google_play_services_install_button" msgid="7153882981874058840">Install</string>
-<string name="common_google_play_services_install_text"><xliff:g id="app_name">%1$s</xliff:g> won\'t run without Google Play services, which are missing from your device.</string>
-<string name="common_google_play_services_install_title" msgid="7215213145546190223">Get Google Play services</string>
-<string name="common_google_play_services_notification_ticker">Google Play services error</string>
-<string name="common_google_play_services_unsupported_text"><xliff:g id="app_name">%1$s</xliff:g> won\'t run without Google Play services, which are not supported by your device.</string>
-<string name="common_google_play_services_update_button" msgid="6556509956452265614">Update</string>
-<string name="common_google_play_services_update_text" msgid="9053896323427875356"><xliff:g id="app_name">%1$s</xliff:g> won\'t run unless you update Google Play services.</string>
-<string name="common_google_play_services_update_title" msgid="6006316683626838685">Update Google Play services</string>
-<string name="common_google_play_services_updating_text"><xliff:g id="app_name">%1$s</xliff:g> won\'t run without Google Play services, which are currently updating.</string>
-<string name="common_google_play_services_wear_update_text">New version of Google Play services needed. It will update itself shortly.</string>
-<string name="common_open_on_phone">Open on phone</string>
-<string name="common_signin_button_text">Sign in</string>
-<string name="common_signin_button_text_long">Sign in with Google</string>
-<!-- java/com/google/android/gmscore/integ/client/base/res/values/attrs.xml -->
-<eat-comment/>
-<declare-styleable name="LoadingImageView"><attr name="imageAspectRatioAdjust">
-<enum name="none" value="0"/>
-
-<enum name="adjust_width" value="1"/>
-
-<enum name="adjust_height" value="2"/>
-
-</attr>
-
-<attr name="imageAspectRatio" format="float"/>
-
-<attr name="circleCrop" format="boolean"/>
-</declare-styleable>
-<declare-styleable name="SignInButton"><attr name="buttonSize" format="reference">
-<enum name="standard" value="0"/>
-
-<enum name="wide" value="1"/>
-
-<enum name="icon_only" value="2"/>
-
-</attr>
-<attr name="colorScheme" format="reference">
-<enum name="dark" value="0"/>
-
-<enum name="light" value="1"/>
-
-<enum name="auto" value="2"/>
-
-</attr>
-
-<attr name="scopeUris" format="reference|string"/>
-</declare-styleable>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/AndroidManifest.xml
deleted file mode 100644
index 3921dc8be879ec8c2556e29bb0c8261e9fc08ddc..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0"?>
-<!-- Copyright (C) 2012 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.google.android.gms">
-    <uses-sdk android:minSdkVersion="14"/>
-
-    <application>
-        <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"/>
-    </application>
-
-</manifest>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/R.txt b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/R.txt
deleted file mode 100644
index b545bd92243b557e576bb8fcb6dd4175327aa73f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/R.txt
+++ /dev/null
@@ -1,688 +0,0 @@
-int array cast_expanded_controller_default_control_buttons 0x1
-int array cast_mini_controller_default_control_buttons 0x1
-int attr adSize 0x1
-int attr adSizes 0x1
-int attr adUnitId 0x1
-int attr allowShortcuts 0x1
-int attr ambientEnabled 0x1
-int attr appTheme 0x1
-int attr buttonSize 0x1
-int attr buyButtonAppearance 0x1
-int attr buyButtonHeight 0x1
-int attr buyButtonText 0x1
-int attr buyButtonWidth 0x1
-int attr cameraBearing 0x1
-int attr cameraMaxZoomPreference 0x1
-int attr cameraMinZoomPreference 0x1
-int attr cameraTargetLat 0x1
-int attr cameraTargetLng 0x1
-int attr cameraTilt 0x1
-int attr cameraZoom 0x1
-int attr castBackground 0x1
-int attr castBackgroundColor 0x1
-int attr castButtonBackgroundColor 0x1
-int attr castButtonColor 0x1
-int attr castButtonText 0x1
-int attr castButtonTextAppearance 0x1
-int attr castClosedCaptionsButtonDrawable 0x1
-int attr castControlButtons 0x1
-int attr castExpandedControllerStyle 0x1
-int attr castExpandedControllerToolbarStyle 0x1
-int attr castFocusRadius 0x1
-int attr castForward30ButtonDrawable 0x1
-int attr castIntroOverlayStyle 0x1
-int attr castLargePauseButtonDrawable 0x1
-int attr castLargePlayButtonDrawable 0x1
-int attr castLargeStopButtonDrawable 0x1
-int attr castMiniControllerStyle 0x1
-int attr castMuteToggleButtonDrawable 0x1
-int attr castPauseButtonDrawable 0x1
-int attr castPlayButtonDrawable 0x1
-int attr castProgressBarColor 0x1
-int attr castRewind30ButtonDrawable 0x1
-int attr castSeekBarProgressDrawable 0x1
-int attr castSeekBarThumbDrawable 0x1
-int attr castShowImageThumbnail 0x1
-int attr castSkipNextButtonDrawable 0x1
-int attr castSkipPreviousButtonDrawable 0x1
-int attr castStopButtonDrawable 0x1
-int attr castSubtitleTextAppearance 0x1
-int attr castTitleTextAppearance 0x1
-int attr circleCrop 0x1
-int attr colorScheme 0x1
-int attr contentProviderUri 0x1
-int attr corpusId 0x1
-int attr corpusVersion 0x1
-int attr defaultIntentAction 0x1
-int attr defaultIntentActivity 0x1
-int attr defaultIntentData 0x1
-int attr documentMaxAgeSecs 0x1
-int attr environment 0x1
-int attr featureType 0x1
-int attr fragmentMode 0x1
-int attr fragmentStyle 0x1
-int attr imageAspectRatio 0x1
-int attr imageAspectRatioAdjust 0x1
-int attr indexPrefixes 0x1
-int attr inputEnabled 0x1
-int attr latLngBoundsNorthEastLatitude 0x1
-int attr latLngBoundsNorthEastLongitude 0x1
-int attr latLngBoundsSouthWestLatitude 0x1
-int attr latLngBoundsSouthWestLongitude 0x1
-int attr liteMode 0x1
-int attr mapType 0x1
-int attr maskedWalletDetailsBackground 0x1
-int attr maskedWalletDetailsButtonBackground 0x1
-int attr maskedWalletDetailsButtonTextAppearance 0x1
-int attr maskedWalletDetailsHeaderTextAppearance 0x1
-int attr maskedWalletDetailsLogoImageType 0x1
-int attr maskedWalletDetailsLogoTextColor 0x1
-int attr maskedWalletDetailsTextAppearance 0x1
-int attr noIndex 0x1
-int attr paramName 0x1
-int attr paramValue 0x1
-int attr perAccountTemplate 0x1
-int attr schemaOrgProperty 0x1
-int attr schemaOrgType 0x1
-int attr scopeUris 0x1
-int attr searchEnabled 0x1
-int attr searchLabel 0x1
-int attr sectionContent 0x1
-int attr sectionFormat 0x1
-int attr sectionId 0x1
-int attr sectionType 0x1
-int attr sectionWeight 0x1
-int attr semanticallySearchable 0x1
-int attr settingsDescription 0x1
-int attr sourceClass 0x1
-int attr subsectionSeparator 0x1
-int attr toAddressesSection 0x1
-int attr toolbarTextColorStyle 0x1
-int attr trimmable 0x1
-int attr uiCompass 0x1
-int attr uiMapToolbar 0x1
-int attr uiRotateGestures 0x1
-int attr uiScrollGestures 0x1
-int attr uiTiltGestures 0x1
-int attr uiZoomControls 0x1
-int attr uiZoomGestures 0x1
-int attr useViewLifecycle 0x1
-int attr userInputSection 0x1
-int attr userInputTag 0x1
-int attr userInputValue 0x1
-int attr windowTransitionStyle 0x1
-int attr zOrderOnTop 0x1
-int color cast_expanded_controller_ad_container_white_stripe_color 0x1
-int color cast_expanded_controller_ad_label_background_color 0x1
-int color cast_expanded_controller_background_color 0x1
-int color cast_expanded_controller_progress_text_color 0x1
-int color cast_expanded_controller_seek_bar_progress_background_tint_color 0x1
-int color cast_expanded_controller_text_color 0x1
-int color cast_intro_overlay_background_color 0x1
-int color cast_intro_overlay_button_background_color 0x1
-int color cast_libraries_material_featurehighlight_outer_highlight_default_color 0x1
-int color cast_libraries_material_featurehighlight_text_body_color 0x1
-int color cast_libraries_material_featurehighlight_text_header_color 0x1
-int color common_google_signin_btn_text_dark 0x1
-int color common_google_signin_btn_text_dark_default 0x1
-int color common_google_signin_btn_text_dark_disabled 0x1
-int color common_google_signin_btn_text_dark_focused 0x1
-int color common_google_signin_btn_text_dark_pressed 0x1
-int color common_google_signin_btn_text_light 0x1
-int color common_google_signin_btn_text_light_default 0x1
-int color common_google_signin_btn_text_light_disabled 0x1
-int color common_google_signin_btn_text_light_focused 0x1
-int color common_google_signin_btn_text_light_pressed 0x1
-int color common_google_signin_btn_tint 0x1
-int color place_autocomplete_prediction_primary_text 0x1
-int color place_autocomplete_prediction_primary_text_highlight 0x1
-int color place_autocomplete_prediction_secondary_text 0x1
-int color place_autocomplete_search_hint 0x1
-int color place_autocomplete_search_text 0x1
-int color place_autocomplete_separator 0x1
-int color wallet_bright_foreground_disabled_holo_light 0x1
-int color wallet_bright_foreground_holo_dark 0x1
-int color wallet_bright_foreground_holo_light 0x1
-int color wallet_dim_foreground_disabled_holo_dark 0x1
-int color wallet_dim_foreground_holo_dark 0x1
-int color wallet_highlighted_text_holo_dark 0x1
-int color wallet_highlighted_text_holo_light 0x1
-int color wallet_hint_foreground_holo_dark 0x1
-int color wallet_hint_foreground_holo_light 0x1
-int color wallet_holo_blue_light 0x1
-int color wallet_link_text_light 0x1
-int color wallet_primary_text_holo_light 0x1
-int color wallet_secondary_text_holo_dark 0x1
-int dimen cast_expanded_controller_ad_background_layout_height 0x1
-int dimen cast_expanded_controller_ad_background_layout_width 0x1
-int dimen cast_expanded_controller_ad_layout_height 0x1
-int dimen cast_expanded_controller_ad_layout_width 0x1
-int dimen cast_expanded_controller_control_button_margin 0x1
-int dimen cast_expanded_controller_control_toolbar_min_height 0x1
-int dimen cast_expanded_controller_margin_between_seek_bar_and_control_buttons 0x1
-int dimen cast_expanded_controller_margin_between_status_text_and_seek_bar 0x1
-int dimen cast_expanded_controller_seekbar_disabled_alpha 0x1
-int dimen cast_intro_overlay_button_margin_bottom 0x1
-int dimen cast_intro_overlay_focus_radius 0x1
-int dimen cast_intro_overlay_title_margin_top 0x1
-int dimen cast_libraries_material_featurehighlight_center_horizontal_offset 0x1
-int dimen cast_libraries_material_featurehighlight_center_threshold 0x1
-int dimen cast_libraries_material_featurehighlight_inner_margin 0x1
-int dimen cast_libraries_material_featurehighlight_inner_radius 0x1
-int dimen cast_libraries_material_featurehighlight_outer_padding 0x1
-int dimen cast_libraries_material_featurehighlight_text_body_size 0x1
-int dimen cast_libraries_material_featurehighlight_text_header_size 0x1
-int dimen cast_libraries_material_featurehighlight_text_horizontal_margin 0x1
-int dimen cast_libraries_material_featurehighlight_text_horizontal_offset 0x1
-int dimen cast_libraries_material_featurehighlight_text_max_width 0x1
-int dimen cast_libraries_material_featurehighlight_text_vertical_space 0x1
-int dimen cast_mini_controller_control_button_margin 0x1
-int dimen cast_mini_controller_icon_height 0x1
-int dimen cast_mini_controller_icon_width 0x1
-int dimen cast_notification_image_size 0x1
-int dimen cast_tracks_chooser_dialog_no_message_text_size 0x1
-int dimen cast_tracks_chooser_dialog_row_text_size 0x1
-int dimen place_autocomplete_button_padding 0x1
-int dimen place_autocomplete_powered_by_google_height 0x1
-int dimen place_autocomplete_powered_by_google_start 0x1
-int dimen place_autocomplete_prediction_height 0x1
-int dimen place_autocomplete_prediction_horizontal_margin 0x1
-int dimen place_autocomplete_prediction_primary_text 0x1
-int dimen place_autocomplete_prediction_secondary_text 0x1
-int dimen place_autocomplete_progress_horizontal_margin 0x1
-int dimen place_autocomplete_progress_size 0x1
-int dimen place_autocomplete_separator_start 0x1
-int drawable cast_abc_scrubber_control_off_mtrl_alpha 0x1
-int drawable cast_abc_scrubber_control_to_pressed_mtrl_000 0x1
-int drawable cast_abc_scrubber_control_to_pressed_mtrl_005 0x1
-int drawable cast_abc_scrubber_primary_mtrl_alpha 0x1
-int drawable cast_album_art_placeholder 0x1
-int drawable cast_album_art_placeholder_large 0x1
-int drawable cast_expanded_controller_actionbar_bg_gradient_light 0x1
-int drawable cast_expanded_controller_bg_gradient_light 0x1
-int drawable cast_expanded_controller_seekbar_thumb 0x1
-int drawable cast_expanded_controller_seekbar_track 0x1
-int drawable cast_ic_expanded_controller_closed_caption 0x1
-int drawable cast_ic_expanded_controller_forward30 0x1
-int drawable cast_ic_expanded_controller_mute 0x1
-int drawable cast_ic_expanded_controller_pause 0x1
-int drawable cast_ic_expanded_controller_play 0x1
-int drawable cast_ic_expanded_controller_rewind30 0x1
-int drawable cast_ic_expanded_controller_skip_next 0x1
-int drawable cast_ic_expanded_controller_skip_previous 0x1
-int drawable cast_ic_expanded_controller_stop 0x1
-int drawable cast_ic_mini_controller_closed_caption 0x1
-int drawable cast_ic_mini_controller_forward30 0x1
-int drawable cast_ic_mini_controller_mute 0x1
-int drawable cast_ic_mini_controller_pause 0x1
-int drawable cast_ic_mini_controller_pause_large 0x1
-int drawable cast_ic_mini_controller_play 0x1
-int drawable cast_ic_mini_controller_play_large 0x1
-int drawable cast_ic_mini_controller_rewind30 0x1
-int drawable cast_ic_mini_controller_skip_next 0x1
-int drawable cast_ic_mini_controller_skip_prev 0x1
-int drawable cast_ic_mini_controller_stop 0x1
-int drawable cast_ic_mini_controller_stop_large 0x1
-int drawable cast_ic_notification_0 0x1
-int drawable cast_ic_notification_1 0x1
-int drawable cast_ic_notification_2 0x1
-int drawable cast_ic_notification_connecting 0x1
-int drawable cast_ic_notification_disconnect 0x1
-int drawable cast_ic_notification_forward 0x1
-int drawable cast_ic_notification_forward10 0x1
-int drawable cast_ic_notification_forward30 0x1
-int drawable cast_ic_notification_on 0x1
-int drawable cast_ic_notification_pause 0x1
-int drawable cast_ic_notification_play 0x1
-int drawable cast_ic_notification_rewind 0x1
-int drawable cast_ic_notification_rewind10 0x1
-int drawable cast_ic_notification_rewind30 0x1
-int drawable cast_ic_notification_skip_next 0x1
-int drawable cast_ic_notification_skip_prev 0x1
-int drawable cast_ic_notification_small_icon 0x1
-int drawable cast_ic_notification_stop_live_stream 0x1
-int drawable cast_ic_stop_circle_filled_grey600 0x1
-int drawable cast_ic_stop_circle_filled_white 0x1
-int drawable cast_mini_controller_gradient_light 0x1
-int drawable cast_mini_controller_progress_drawable 0x1
-int drawable cast_skip_ad_label_border 0x1
-int drawable common_full_open_on_phone 0x1
-int drawable common_google_signin_btn_icon_dark 0x1
-int drawable common_google_signin_btn_icon_dark_focused 0x1
-int drawable common_google_signin_btn_icon_dark_normal 0x1
-int drawable common_google_signin_btn_icon_dark_normal_background 0x1
-int drawable common_google_signin_btn_icon_disabled 0x1
-int drawable common_google_signin_btn_icon_light 0x1
-int drawable common_google_signin_btn_icon_light_focused 0x1
-int drawable common_google_signin_btn_icon_light_normal 0x1
-int drawable common_google_signin_btn_icon_light_normal_background 0x1
-int drawable common_google_signin_btn_text_dark 0x1
-int drawable common_google_signin_btn_text_dark_focused 0x1
-int drawable common_google_signin_btn_text_dark_normal 0x1
-int drawable common_google_signin_btn_text_dark_normal_background 0x1
-int drawable common_google_signin_btn_text_disabled 0x1
-int drawable common_google_signin_btn_text_light 0x1
-int drawable common_google_signin_btn_text_light_focused 0x1
-int drawable common_google_signin_btn_text_light_normal 0x1
-int drawable common_google_signin_btn_text_light_normal_background 0x1
-int drawable googleg_disabled_color_18 0x1
-int drawable googleg_standard_color_18 0x1
-int drawable ic_plusone_medium_off_client 0x1
-int drawable ic_plusone_small_off_client 0x1
-int drawable ic_plusone_standard_off_client 0x1
-int drawable ic_plusone_tall_off_client 0x1
-int drawable places_ic_clear 0x1
-int drawable places_ic_search 0x1
-int drawable powered_by_google_dark 0x1
-int drawable powered_by_google_light 0x1
-int drawable quantum_ic_art_track_grey600_48 0x1
-int drawable quantum_ic_bigtop_updates_white_24 0x1
-int drawable quantum_ic_cast_connected_white_24 0x1
-int drawable quantum_ic_cast_white_36 0x1
-int drawable quantum_ic_clear_white_24 0x1
-int drawable quantum_ic_closed_caption_grey600_36 0x1
-int drawable quantum_ic_closed_caption_white_36 0x1
-int drawable quantum_ic_forward_10_white_24 0x1
-int drawable quantum_ic_forward_30_grey600_36 0x1
-int drawable quantum_ic_forward_30_white_24 0x1
-int drawable quantum_ic_forward_30_white_36 0x1
-int drawable quantum_ic_keyboard_arrow_down_white_36 0x1
-int drawable quantum_ic_pause_circle_filled_grey600_36 0x1
-int drawable quantum_ic_pause_circle_filled_white_36 0x1
-int drawable quantum_ic_pause_grey600_36 0x1
-int drawable quantum_ic_pause_grey600_48 0x1
-int drawable quantum_ic_pause_white_24 0x1
-int drawable quantum_ic_play_arrow_grey600_36 0x1
-int drawable quantum_ic_play_arrow_grey600_48 0x1
-int drawable quantum_ic_play_arrow_white_24 0x1
-int drawable quantum_ic_play_circle_filled_grey600_36 0x1
-int drawable quantum_ic_play_circle_filled_white_36 0x1
-int drawable quantum_ic_refresh_white_24 0x1
-int drawable quantum_ic_replay_10_white_24 0x1
-int drawable quantum_ic_replay_30_grey600_36 0x1
-int drawable quantum_ic_replay_30_white_24 0x1
-int drawable quantum_ic_replay_30_white_36 0x1
-int drawable quantum_ic_replay_white_24 0x1
-int drawable quantum_ic_skip_next_grey600_36 0x1
-int drawable quantum_ic_skip_next_white_24 0x1
-int drawable quantum_ic_skip_next_white_36 0x1
-int drawable quantum_ic_skip_previous_grey600_36 0x1
-int drawable quantum_ic_skip_previous_white_24 0x1
-int drawable quantum_ic_skip_previous_white_36 0x1
-int drawable quantum_ic_stop_grey600_36 0x1
-int drawable quantum_ic_stop_grey600_48 0x1
-int drawable quantum_ic_stop_white_24 0x1
-int drawable quantum_ic_volume_off_grey600_36 0x1
-int drawable quantum_ic_volume_off_white_36 0x1
-int drawable quantum_ic_volume_up_grey600_36 0x1
-int drawable quantum_ic_volume_up_white_36 0x1
-int id ad_container 0x1
-int id ad_image_view 0x1
-int id ad_in_progress_label 0x1
-int id ad_label 0x1
-int id adjust_height 0x1
-int id adjust_width 0x1
-int id android_pay 0x1
-int id android_pay_dark 0x1
-int id android_pay_light 0x1
-int id android_pay_light_with_border 0x1
-int id audio_empty_message 0x1
-int id audio_list_view 0x1
-int id auto 0x1
-int id background_image_view 0x1
-int id background_place_holder_image_view 0x1
-int id blurred_background_image_view 0x1
-int id book_now 0x1
-int id button 0x1
-int id button_0 0x1
-int id button_1 0x1
-int id button_2 0x1
-int id button_3 0x1
-int id button_play_pause_toggle 0x1
-int id buyButton 0x1
-int id buy_now 0x1
-int id buy_with 0x1
-int id buy_with_google 0x1
-int id cast_button_type_closed_caption 0x1
-int id cast_button_type_custom 0x1
-int id cast_button_type_empty 0x1
-int id cast_button_type_forward_30_seconds 0x1
-int id cast_button_type_mute_toggle 0x1
-int id cast_button_type_play_pause_toggle 0x1
-int id cast_button_type_rewind_30_seconds 0x1
-int id cast_button_type_skip_next 0x1
-int id cast_button_type_skip_previous 0x1
-int id cast_featurehighlight_help_text_body_view 0x1
-int id cast_featurehighlight_help_text_header_view 0x1
-int id cast_featurehighlight_view 0x1
-int id cast_notification_id 0x1
-int id center 0x1
-int id classic 0x1
-int id contact 0x1
-int id container_all 0x1
-int id container_current 0x1
-int id controllers 0x1
-int id crash_reporting_present 0x1
-int id dark 0x1
-int id date 0x1
-int id demote_common_words 0x1
-int id demote_rfc822_hostnames 0x1
-int id donate_with 0x1
-int id donate_with_google 0x1
-int id email 0x1
-int id end_text 0x1
-int id expanded_controller_layout 0x1
-int id google_wallet_classic 0x1
-int id google_wallet_grayscale 0x1
-int id google_wallet_monochrome 0x1
-int id grayscale 0x1
-int id holo_dark 0x1
-int id holo_light 0x1
-int id html 0x1
-int id hybrid 0x1
-int id icon_only 0x1
-int id icon_uri 0x1
-int id icon_view 0x1
-int id index_entity_types 0x1
-int id instant_message 0x1
-int id intent_action 0x1
-int id intent_activity 0x1
-int id intent_data 0x1
-int id intent_data_id 0x1
-int id intent_extra_data 0x1
-int id large_icon_uri 0x1
-int id light 0x1
-int id live_stream_indicator 0x1
-int id live_stream_seek_bar 0x1
-int id loading_indicator 0x1
-int id logo_only 0x1
-int id match_global_nicknames 0x1
-int id match_parent 0x1
-int id monochrome 0x1
-int id none 0x1
-int id normal 0x1
-int id omnibox_title_section 0x1
-int id omnibox_url_section 0x1
-int id place_autocomplete_clear_button 0x1
-int id place_autocomplete_powered_by_google 0x1
-int id place_autocomplete_prediction_primary_text 0x1
-int id place_autocomplete_prediction_secondary_text 0x1
-int id place_autocomplete_progress 0x1
-int id place_autocomplete_search_button 0x1
-int id place_autocomplete_search_input 0x1
-int id place_autocomplete_separator 0x1
-int id plain 0x1
-int id production 0x1
-int id progressBar 0x1
-int id radio 0x1
-int id rfc822 0x1
-int id sandbox 0x1
-int id satellite 0x1
-int id seek_bar 0x1
-int id seek_bar_controls 0x1
-int id selectionDetails 0x1
-int id slide 0x1
-int id standard 0x1
-int id start_text 0x1
-int id status_text 0x1
-int id strict_sandbox 0x1
-int id subtitle_view 0x1
-int id tab_host 0x1
-int id terrain 0x1
-int id test 0x1
-int id text 0x1
-int id text1 0x1
-int id text2 0x1
-int id textTitle 0x1
-int id text_empty_message 0x1
-int id text_list_view 0x1
-int id thing_proto 0x1
-int id title_view 0x1
-int id toolbar 0x1
-int id url 0x1
-int id wide 0x1
-int id wrap_content 0x1
-int integer cast_libraries_material_featurehighlight_pulse_base_alpha 0x1
-int integer google_play_services_version 0x1
-int layout cast_expanded_controller_activity 0x1
-int layout cast_help_text 0x1
-int layout cast_intro_overlay 0x1
-int layout cast_mini_controller 0x1
-int layout cast_tracks_chooser_dialog_layout 0x1
-int layout cast_tracks_chooser_dialog_row_layout 0x1
-int layout place_autocomplete_fragment 0x1
-int layout place_autocomplete_item_powered_by_google 0x1
-int layout place_autocomplete_item_prediction 0x1
-int layout place_autocomplete_progress 0x1
-int string accept 0x1
-int string cast_ad_label 0x1
-int string cast_casting_to_device 0x1
-int string cast_closed_captions 0x1
-int string cast_closed_captions_unavailable 0x1
-int string cast_disconnect 0x1
-int string cast_expanded_controller_ad_image_description 0x1
-int string cast_expanded_controller_ad_in_progress 0x1
-int string cast_expanded_controller_background_image 0x1
-int string cast_expanded_controller_live_stream_indicator 0x1
-int string cast_expanded_controller_loading 0x1
-int string cast_expanded_controller_skip_ad_label 0x1
-int string cast_forward 0x1
-int string cast_forward_10 0x1
-int string cast_forward_30 0x1
-int string cast_intro_overlay_button_text 0x1
-int string cast_invalid_stream_duration_text 0x1
-int string cast_invalid_stream_position_text 0x1
-int string cast_mute 0x1
-int string cast_notification_connected_message 0x1
-int string cast_notification_connecting_message 0x1
-int string cast_notification_disconnect 0x1
-int string cast_pause 0x1
-int string cast_play 0x1
-int string cast_rewind 0x1
-int string cast_rewind_10 0x1
-int string cast_rewind_30 0x1
-int string cast_seek_bar 0x1
-int string cast_skip_next 0x1
-int string cast_skip_prev 0x1
-int string cast_stop 0x1
-int string cast_stop_live_stream 0x1
-int string cast_tracks_chooser_dialog_audio 0x1
-int string cast_tracks_chooser_dialog_cancel 0x1
-int string cast_tracks_chooser_dialog_closed_captions 0x1
-int string cast_tracks_chooser_dialog_default_track_name 0x1
-int string cast_tracks_chooser_dialog_no_audio_tracks 0x1
-int string cast_tracks_chooser_dialog_no_text_tracks 0x1
-int string cast_tracks_chooser_dialog_none 0x1
-int string cast_tracks_chooser_dialog_ok 0x1
-int string cast_tracks_chooser_dialog_subtitles 0x1
-int string cast_unmute 0x1
-int string common_google_play_services_enable_button 0x1
-int string common_google_play_services_enable_text 0x1
-int string common_google_play_services_enable_title 0x1
-int string common_google_play_services_install_button 0x1
-int string common_google_play_services_install_text 0x1
-int string common_google_play_services_install_title 0x1
-int string common_google_play_services_notification_ticker 0x1
-int string common_google_play_services_unknown_issue 0x1
-int string common_google_play_services_unsupported_text 0x1
-int string common_google_play_services_update_button 0x1
-int string common_google_play_services_update_text 0x1
-int string common_google_play_services_update_title 0x1
-int string common_google_play_services_updating_text 0x1
-int string common_google_play_services_wear_update_text 0x1
-int string common_open_on_phone 0x1
-int string common_signin_button_text 0x1
-int string common_signin_button_text_long 0x1
-int string create_calendar_message 0x1
-int string create_calendar_title 0x1
-int string debug_menu_ad_information 0x1
-int string debug_menu_creative_preview 0x1
-int string debug_menu_title 0x1
-int string debug_menu_troubleshooting 0x1
-int string decline 0x1
-int string place_autocomplete_clear_button 0x1
-int string place_autocomplete_search_hint 0x1
-int string store_picture_message 0x1
-int string store_picture_title 0x1
-int string tagmanager_preview_dialog_button 0x1
-int string tagmanager_preview_dialog_message 0x1
-int string tagmanager_preview_dialog_title 0x1
-int string wallet_buy_button_place_holder 0x1
-int style CastExpandedController 0x1
-int style CastIntroOverlay 0x1
-int style CastMiniController 0x1
-int style CustomCastTheme 0x1
-int style TextAppearance_CastIntroOverlay_Button 0x1
-int style TextAppearance_CastIntroOverlay_Title 0x1
-int style TextAppearance_CastMiniController_Subtitle 0x1
-int style TextAppearance_CastMiniController_Title 0x1
-int style Theme_AppInvite_Preview 0x1
-int style Theme_AppInvite_Preview_Base 0x1
-int style Theme_IAPTheme 0x1
-int style WalletFragmentDefaultButtonTextAppearance 0x1
-int style WalletFragmentDefaultDetailsHeaderTextAppearance 0x1
-int style WalletFragmentDefaultDetailsTextAppearance 0x1
-int style WalletFragmentDefaultStyle 0x1
-int[] styleable AdsAttrs { 0x1, 0x1, 0x1 }
-int styleable AdsAttrs_adSize 0
-int styleable AdsAttrs_adSizes 1
-int styleable AdsAttrs_adUnitId 2
-int[] styleable AppDataSearch { }
-int[] styleable CastExpandedController { 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1 }
-int styleable CastExpandedController_castButtonColor 3
-int styleable CastExpandedController_castClosedCaptionsButtonDrawable 12
-int styleable CastExpandedController_castControlButtons 2
-int styleable CastExpandedController_castForward30ButtonDrawable 10
-int styleable CastExpandedController_castMuteToggleButtonDrawable 11
-int styleable CastExpandedController_castPauseButtonDrawable 5
-int styleable CastExpandedController_castPlayButtonDrawable 4
-int styleable CastExpandedController_castRewind30ButtonDrawable 9
-int styleable CastExpandedController_castSeekBarProgressDrawable 0
-int styleable CastExpandedController_castSeekBarThumbDrawable 1
-int styleable CastExpandedController_castSkipNextButtonDrawable 8
-int styleable CastExpandedController_castSkipPreviousButtonDrawable 7
-int styleable CastExpandedController_castStopButtonDrawable 6
-int[] styleable CastIntroOverlay { 0x1, 0x1, 0x1, 0x1, 0x1, 0x1 }
-int styleable CastIntroOverlay_castBackgroundColor 0
-int styleable CastIntroOverlay_castButtonBackgroundColor 1
-int styleable CastIntroOverlay_castButtonText 3
-int styleable CastIntroOverlay_castButtonTextAppearance 2
-int styleable CastIntroOverlay_castFocusRadius 5
-int styleable CastIntroOverlay_castTitleTextAppearance 4
-int[] styleable CastMiniController { 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1 }
-int styleable CastMiniController_castBackground 4
-int styleable CastMiniController_castButtonColor 6
-int styleable CastMiniController_castClosedCaptionsButtonDrawable 18
-int styleable CastMiniController_castControlButtons 3
-int styleable CastMiniController_castForward30ButtonDrawable 16
-int styleable CastMiniController_castLargePauseButtonDrawable 11
-int styleable CastMiniController_castLargePlayButtonDrawable 10
-int styleable CastMiniController_castLargeStopButtonDrawable 12
-int styleable CastMiniController_castMuteToggleButtonDrawable 17
-int styleable CastMiniController_castPauseButtonDrawable 8
-int styleable CastMiniController_castPlayButtonDrawable 7
-int styleable CastMiniController_castProgressBarColor 5
-int styleable CastMiniController_castRewind30ButtonDrawable 15
-int styleable CastMiniController_castShowImageThumbnail 1
-int styleable CastMiniController_castSkipNextButtonDrawable 14
-int styleable CastMiniController_castSkipPreviousButtonDrawable 13
-int styleable CastMiniController_castStopButtonDrawable 9
-int styleable CastMiniController_castSubtitleTextAppearance 2
-int styleable CastMiniController_castTitleTextAppearance 0
-int[] styleable Corpus { 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1 }
-int styleable Corpus_contentProviderUri 2
-int styleable Corpus_corpusId 0
-int styleable Corpus_corpusVersion 1
-int styleable Corpus_documentMaxAgeSecs 6
-int styleable Corpus_perAccountTemplate 7
-int styleable Corpus_schemaOrgType 4
-int styleable Corpus_semanticallySearchable 5
-int styleable Corpus_trimmable 3
-int[] styleable CustomCastTheme { 0x1, 0x1, 0x1 }
-int styleable CustomCastTheme_castExpandedControllerStyle 2
-int styleable CustomCastTheme_castIntroOverlayStyle 0
-int styleable CustomCastTheme_castMiniControllerStyle 1
-int[] styleable CustomWalletTheme { 0x1, 0x1 }
-int styleable CustomWalletTheme_toolbarTextColorStyle 1
-int styleable CustomWalletTheme_windowTransitionStyle 0
-int[] styleable FeatureParam { 0x1, 0x1 }
-int styleable FeatureParam_paramName 0
-int styleable FeatureParam_paramValue 1
-int[] styleable GlobalSearch { 0x1, 0x1, 0x1, 0x1, 0x1, 0x1 }
-int styleable GlobalSearch_defaultIntentAction 3
-int styleable GlobalSearch_defaultIntentActivity 5
-int styleable GlobalSearch_defaultIntentData 4
-int styleable GlobalSearch_searchEnabled 0
-int styleable GlobalSearch_searchLabel 1
-int styleable GlobalSearch_settingsDescription 2
-int[] styleable GlobalSearchCorpus { 0x1 }
-int styleable GlobalSearchCorpus_allowShortcuts 0
-int[] styleable GlobalSearchSection { 0x1, 0x1 }
-int styleable GlobalSearchSection_sectionContent 1
-int styleable GlobalSearchSection_sectionType 0
-int[] styleable IMECorpus { 0x1, 0x1, 0x1, 0x1, 0x1, 0x1 }
-int styleable IMECorpus_inputEnabled 0
-int styleable IMECorpus_sourceClass 1
-int styleable IMECorpus_toAddressesSection 5
-int styleable IMECorpus_userInputSection 3
-int styleable IMECorpus_userInputTag 2
-int styleable IMECorpus_userInputValue 4
-int[] styleable LoadingImageView { 0x1, 0x1, 0x1 }
-int styleable LoadingImageView_circleCrop 2
-int styleable LoadingImageView_imageAspectRatio 1
-int styleable LoadingImageView_imageAspectRatioAdjust 0
-int[] styleable MapAttrs { 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1 }
-int styleable MapAttrs_ambientEnabled 16
-int styleable MapAttrs_cameraBearing 1
-int styleable MapAttrs_cameraMaxZoomPreference 18
-int styleable MapAttrs_cameraMinZoomPreference 17
-int styleable MapAttrs_cameraTargetLat 2
-int styleable MapAttrs_cameraTargetLng 3
-int styleable MapAttrs_cameraTilt 4
-int styleable MapAttrs_cameraZoom 5
-int styleable MapAttrs_latLngBoundsNorthEastLatitude 21
-int styleable MapAttrs_latLngBoundsNorthEastLongitude 22
-int styleable MapAttrs_latLngBoundsSouthWestLatitude 19
-int styleable MapAttrs_latLngBoundsSouthWestLongitude 20
-int styleable MapAttrs_liteMode 6
-int styleable MapAttrs_mapType 0
-int styleable MapAttrs_uiCompass 7
-int styleable MapAttrs_uiMapToolbar 15
-int styleable MapAttrs_uiRotateGestures 8
-int styleable MapAttrs_uiScrollGestures 9
-int styleable MapAttrs_uiTiltGestures 10
-int styleable MapAttrs_uiZoomControls 11
-int styleable MapAttrs_uiZoomGestures 12
-int styleable MapAttrs_useViewLifecycle 13
-int styleable MapAttrs_zOrderOnTop 14
-int[] styleable Section { 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1 }
-int styleable Section_indexPrefixes 4
-int styleable Section_noIndex 2
-int styleable Section_schemaOrgProperty 6
-int styleable Section_sectionFormat 1
-int styleable Section_sectionId 0
-int styleable Section_sectionWeight 3
-int styleable Section_subsectionSeparator 5
-int[] styleable SectionFeature { 0x1 }
-int styleable SectionFeature_featureType 0
-int[] styleable SignInButton { 0x1, 0x1, 0x1 }
-int styleable SignInButton_buttonSize 0
-int styleable SignInButton_colorScheme 1
-int styleable SignInButton_scopeUris 2
-int[] styleable WalletFragmentOptions { 0x1, 0x1, 0x1, 0x1 }
-int styleable WalletFragmentOptions_appTheme 0
-int styleable WalletFragmentOptions_environment 1
-int styleable WalletFragmentOptions_fragmentMode 3
-int styleable WalletFragmentOptions_fragmentStyle 2
-int[] styleable WalletFragmentStyle { 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1 }
-int styleable WalletFragmentStyle_buyButtonAppearance 3
-int styleable WalletFragmentStyle_buyButtonHeight 0
-int styleable WalletFragmentStyle_buyButtonText 2
-int styleable WalletFragmentStyle_buyButtonWidth 1
-int styleable WalletFragmentStyle_maskedWalletDetailsBackground 6
-int styleable WalletFragmentStyle_maskedWalletDetailsButtonBackground 8
-int styleable WalletFragmentStyle_maskedWalletDetailsButtonTextAppearance 7
-int styleable WalletFragmentStyle_maskedWalletDetailsHeaderTextAppearance 5
-int styleable WalletFragmentStyle_maskedWalletDetailsLogoImageType 10
-int styleable WalletFragmentStyle_maskedWalletDetailsLogoTextColor 9
-int styleable WalletFragmentStyle_maskedWalletDetailsTextAppearance 4
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/jars/classes.jar
deleted file mode 100644
index 15e3ebeee9151e1796aaf035728a4758f32b60a6..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/proguard.txt b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/proguard.txt
deleted file mode 100755
index 2240f47d89ae84681cdb2358504a187e87b4f625..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/proguard.txt
+++ /dev/null
@@ -1,47 +0,0 @@
-
-# Proguard flags for consumers of the Google Play services SDK
-# https://developers.google.com/android/guides/setup#add_google_play_services_to_your_project
-
-# Keep SafeParcelable value, needed for reflection. This is required to support backwards
-# compatibility of some classes.
--keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
-    public static final *** NULL;
-}
-
-# Needed for Parcelable/SafeParcelable classes & their creators to not get renamed, as they are
-# found via reflection.
--keep class com.google.android.gms.common.internal.ReflectedParcelable
--keepnames class * implements com.google.android.gms.common.internal.ReflectedParcelable
--keepclassmembers class * implements android.os.Parcelable {
-  public static final *** CREATOR;
-}
-
-# Keep the classes/members we need for client functionality.
--keep @interface android.support.annotation.Keep
--keep @android.support.annotation.Keep class *
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <fields>;
-}
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <methods>;
-}
-
-# Keep the names of classes/members we need for client functionality.
--keep @interface com.google.android.gms.common.annotation.KeepName
--keepnames @com.google.android.gms.common.annotation.KeepName class *
--keepclassmembernames class * {
-  @com.google.android.gms.common.annotation.KeepName *;
-}
-
-# Keep Dynamite API entry points
--keep @interface com.google.android.gms.common.util.DynamiteApi
--keep @com.google.android.gms.common.util.DynamiteApi public class * {
-  public <fields>;
-  public <methods>;
-}
-
-# Needed when building against pre-Marshmallow SDK.
--dontwarn android.security.NetworkSecurityPolicy
-
-# Needed when building against Marshmallow SDK.
--dontwarn android.app.Notification
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-af/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-af/values.xml
deleted file mode 100644
index b2c6f17edd52a9de74b41cf6bc1ecd4c84733673..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-af/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-af/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> ondervind probleme met Google Play Dienste. Probeer asseblief weer."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-am/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-am/values.xml
deleted file mode 100644
index ada3289a0e23de3b84b012b50922300ce2217546..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-am/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-am/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> በGoogle Play አገልግሎቶች ላይ ችግሮች እያጋጠሙት ነው። እባክዎ እንደገና ይሞክሩ።"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ar/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ar/values.xml
deleted file mode 100644
index 56e8a61a1521b271cad883aac7bd318538d52c62..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ar/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-ar/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"‏لدى <xliff:g id="APP_NAME">%1$s</xliff:g> مشكلة في خدمات Google Play. الرجاء إعادة المحاولة."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-az/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-az/values.xml
deleted file mode 100644
index fa4783230a3abc5478f19d4bc6fdc6187caaddb8..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-az/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-az/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> tətbiqi ilə Google Play xidmətləri arasında problem var. Daha sonra yenidən cəhd edin."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-be/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-be/values.xml
deleted file mode 100644
index 9d1f892f1da00e2552b078da7c306d7603fe2532..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-be/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-be/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"У праграмы <xliff:g id="APP_NAME">%1$s</xliff:g> узніклі праблемы са службамі Google Play. Паўтарыце спробу."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-bg/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-bg/values.xml
deleted file mode 100644
index 86eaeab88547d6210bfdcaa3dd4a30cf3ba0ada2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-bg/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-bg/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> има проблеми с услугите за Google Play. Моля, опитайте отново."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-bn/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-bn/values.xml
deleted file mode 100644
index 53ef93652e3d1676476e5f935570680cd271b8fa..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-bn/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-bn/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"Google Play পরিষেবাগুলির সাথে <xliff:g id="APP_NAME">%1$s</xliff:g> এর সমস্যা হচ্ছে৷ অনুগ্রহ করে আবার চেষ্টা করুন৷"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-bs/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-bs/values.xml
deleted file mode 100644
index d0ad7624562771d40359b2ce7d6a6dc8ded837e6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-bs/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-bs/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"Aplikacija <xliff:g id="APP_NAME">%1$s</xliff:g> ima problema s Google Play uslugama. Pokušajte ponovo."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ca/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ca/values.xml
deleted file mode 100644
index 05bec9b0b144b20132ad4f5ad7368ca34d00ce21..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ca/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-ca/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> té problemes amb els serveis de Google Play. Torna-ho a provar."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-cs/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-cs/values.xml
deleted file mode 100644
index 698cce62abbbe2a28e910686bdc1b3f447a41761..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-cs/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-cs/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"Aplikace <xliff:g id="APP_NAME">%1$s</xliff:g> má potíže se službami Google Play. Zkuste to prosím znovu."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-da/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-da/values.xml
deleted file mode 100644
index e7631a8ccb24d7a653499f30ecddb2708b6a8ce4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-da/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-da/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> har problemer med Google Play-tjenester. Prøv igen."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-de/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-de/values.xml
deleted file mode 100644
index c823a6c2b070dc9039a2647677543c284779b60b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-de/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-de/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> hat Probleme mit Google Play-Diensten. Bitte versuche es noch einmal."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-el/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-el/values.xml
deleted file mode 100644
index 99ce4053061be55f2523d4b41755e762c9961963..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-el/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-el/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"Η εφαρμογή <xliff:g id="APP_NAME">%1$s</xliff:g> αντιμετωπίζει κάποιο πρόβλημα με τις υπηρεσίες Google Play. Προσπαθήστε ξανά."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-en-rGB/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-en-rGB/values.xml
deleted file mode 100644
index 798c833b6d8097f6ebea38853ae5daa426d4b6ed..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-en-rGB/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-en-rGB/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> is having trouble with Google Play services. Please try again."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-es-rUS/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-es-rUS/values.xml
deleted file mode 100644
index 411584770103726f5b7b16b24bd7b199289c371f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-es-rUS/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-es-rUS/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> tiene problemas con los servicios de Google Play. Vuelve a intentarlo."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-es/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-es/values.xml
deleted file mode 100644
index 428672b84abd87541fa25a861d62b2660d3b9e3e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-es/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-es/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"La aplicación <xliff:g id="APP_NAME">%1$s</xliff:g> tiene problemas con los Servicios de Google Play. Vuelve a intentarlo."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-et/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-et/values.xml
deleted file mode 100644
index 34b961d1e47bca41b2ef448959b6460eb88bf61d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-et/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-et/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"Rakendusel <xliff:g id="APP_NAME">%1$s</xliff:g> on probleeme Google Play teenustega. Proovige uuesti."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-eu/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-eu/values.xml
deleted file mode 100644
index 5ece12379939507f55bac873f4e4675edddec34e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-eu/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-eu/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> aplikazioak arazoak ditu Google Play zerbitzuekin. Saiatu berriro."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fa/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fa/values.xml
deleted file mode 100644
index 279e7e0cf50819b7894622862f388e7b33c0739e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fa/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-fa/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"‏<xliff:g id="APP_NAME">%1$s</xliff:g> برای استفاده از خدمات Google Play با مشکل روبرو است. لطفاً دوباره امتحان کنید."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fi/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fi/values.xml
deleted file mode 100644
index 434c301b5abfd9be721e8dc7b3a9ca95f4cab3fd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fi/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-fi/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"Sovelluksella <xliff:g id="APP_NAME">%1$s</xliff:g> on ongelmia Google Play Palveluiden kanssa. Yritä uudelleen."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fr-rCA/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fr-rCA/values.xml
deleted file mode 100644
index 2b7c0a9dd17ba5eb215faa91868c594e17b7e123..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fr-rCA/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-fr-rCA/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"L\'application <xliff:g id="APP_NAME">%1$s</xliff:g> éprouve un problème avec les services Google Play. Veuillez réessayer."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fr/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fr/values.xml
deleted file mode 100644
index 8ab689660206956e857ffff82dc15980a2b3f9d4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fr/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-fr/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"L\'application <xliff:g id="APP_NAME">%1$s</xliff:g> rencontre des problèmes avec les services Google Play. Veuillez réessayer."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-gl/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-gl/values.xml
deleted file mode 100644
index b95ee0b74e7525cb013fb6992e4ed7fa64d059c3..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-gl/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-gl/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> ten problemas cos servizos de Google Play. Téntao de novo."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-gu/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-gu/values.xml
deleted file mode 100644
index 35d6839ae789201caf8dcdb3da217c5cfd5f2657..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-gu/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-gu/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> ને Google Play સેવાઓમાં મુશ્કેલી આવી રહી છે. કૃપા કરીને ફરી પ્રયાસ કરો."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hi/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hi/values.xml
deleted file mode 100644
index 10e88dbe7231380c72cbeb0d47e22a9904857177..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hi/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-hi/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> को Google Play सेवाओं के साथ समस्या आ रही है. कृपया फिर से प्रयास करें."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hr/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hr/values.xml
deleted file mode 100644
index df545d0ac5bb69a490b858db33d8d909aa91c19a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hr/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-hr/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> ima poteškoća s uslugama Google Playa. Pokušajte ponovo."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hu/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hu/values.xml
deleted file mode 100644
index 1939856bb89da2412391030f0fc5b64a5f4c7c8d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hu/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-hu/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"A(z) <xliff:g id="APP_NAME">%1$s</xliff:g> alkalmazás problémába ütközött a Google Play-szolgáltatások használata során. Próbálkozzon újra."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hy/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hy/values.xml
deleted file mode 100644
index f63cf18a578d1471263b776958d3ac3b941df6be..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hy/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-hy/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> հավելվածը Google Play ծառայությունների հետ կապված խնդիր ունի: Փորձեք նորից:"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-in/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-in/values.xml
deleted file mode 100644
index 479fbe8f2a2de02e882bdd65f34df8c63d1a8c43..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-in/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-in/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> mengalami masalah dengan layanan Google Play. Coba lagi."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-is/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-is/values.xml
deleted file mode 100644
index 10f19d5313c3ec5a0bab67df27e0baa369133e31..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-is/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-is/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> á í vandræðum með þjónustu Google Play. Reyndu aftur."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-it/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-it/values.xml
deleted file mode 100644
index 1453fba5c9c1a8b891640d6bc521879f2dbbfe94..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-it/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-it/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> sta riscontrando problemi con Google Play Services. Riprova."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-iw/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-iw/values.xml
deleted file mode 100644
index bb77705cceb839c94063a43a1e7b7e34b697fa5d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-iw/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-iw/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"‏<xliff:g id="APP_NAME">%1$s</xliff:g> נתקלה בבעיה בשירותי Google Play. נסה שוב."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ja/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ja/values.xml
deleted file mode 100644
index 1090e6ffcd565c151480c320573bcedaa53317fe..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ja/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-ja/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"「<xliff:g id="APP_NAME">%1$s</xliff:g>」で Google Play 開発者サービスに問題が発生しています。もう一度お試しください。"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ka/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ka/values.xml
deleted file mode 100644
index 06f53daf70f2d16f15b03bb95fe65c1df0b35958..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ka/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-ka/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g>-ს Google Play Services-თან პრობლემა შეექმნა. გთხოვთ, ცადოთ ხელახლა."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-kk/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-kk/values.xml
deleted file mode 100644
index 31a472b262267ecdd69835b31eae06f4476f1e4f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-kk/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-kk/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> қолданбасында Google Play қызметіне байланысты белгісіз қате шықты. Әрекетті қайталаңыз."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-km/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-km/values.xml
deleted file mode 100644
index f70121e814d82d49a2e54decdcaf41d5a3b12233..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-km/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-km/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> កំពុងមានបញ្ហាជាមួយសេវាកម្មរបស់ Google Play ។ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ។"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-kn/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-kn/values.xml
deleted file mode 100644
index ee9ac4c3129f352ad4461f40fa359a72876eedd4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-kn/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-kn/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"Google Play ಸೇವೆಗಳಲ್ಲಿ <xliff:g id="APP_NAME">%1$s</xliff:g> ಸಮಸ್ಯೆಯನ್ನು ಹೊಂದಿದೆ. ದಯವಿಟ್ಟು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ko/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ko/values.xml
deleted file mode 100644
index 8f5843c1888051dde850e1498d686f9fc0ec9d83..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ko/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-ko/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g>에서 Google Play 서비스를 사용하는 데 문제가 있습니다. 다시 시도하세요."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ky/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ky/values.xml
deleted file mode 100644
index a3f32e04b8c1157eb108ff9c03ac00199d2ec458..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ky/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-ky/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> колдонмосунун Google Play кызматтары менен иштөөдө көйгөй чыкты. Кайра аракет кылыңыз."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-lo/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-lo/values.xml
deleted file mode 100644
index 993aa027e204a130711599d4e5f52dd9e2029d9e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-lo/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-lo/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> ກຳລັງມີບັນຫາກັບບໍລິການ Google Play. ກະລຸນາລອງໃໝ່ອີກຄັ້ງ."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-lt/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-lt/values.xml
deleted file mode 100644
index 6019e1c483430c1b3ca5db7bc1a6f9c596ce4e9a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-lt/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-lt/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"Naudojant programą „<xliff:g id="APP_NAME">%1$s</xliff:g>“ kilo problemų dėl „Google Play“ paslaugų. Bandykite dar kartą."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-lv/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-lv/values.xml
deleted file mode 100644
index 23add7545e02f2ab2c3d881faa34b8e56a2101ad..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-lv/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-lv/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"Lietotnē <xliff:g id="APP_NAME">%1$s</xliff:g> ir radusies problēma ar Google Play pakalpojumu darbību. Lūdzu, mēģiniet vēlreiz."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-mk/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-mk/values.xml
deleted file mode 100644
index ab03ce5c6a95225135bf9df388c24f48b353d209..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-mk/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-mk/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> има проблеми со услугите на Google Play. Обидете се повторно."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ml/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ml/values.xml
deleted file mode 100644
index b4523c03ca28254ce475865ec8b31d3405962c93..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ml/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-ml/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"Google Play സേവനങ്ങളുമായി ബന്ധപ്പെട്ട് <xliff:g id="APP_NAME">%1$s</xliff:g> ആപ്പിനെന്തോ പ്രശ്നമുണ്ട്. വീണ്ടും ശ്രമിക്കുക."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-mn/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-mn/values.xml
deleted file mode 100644
index 33574a303d73eb4ef5f6905213510b67c431ca00..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-mn/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-mn/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g>-г Google Play-н үйлчилгээгээр ашиглахад асуудал гарлаа. Дахин оролдоно уу."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-mr/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-mr/values.xml
deleted file mode 100644
index dd94a355b61070eba131003a19b2e162448111a0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-mr/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-mr/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> ला Google Play सेवांमध्ये समस्या येत आहे. कृपया पुन्हा प्रयत्न करा."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ms/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ms/values.xml
deleted file mode 100644
index a68519fa383720326014e9d29638005d3b8793ff..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ms/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-ms/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> menghadapi masalah berhubung perkhidmatan Google Play. Sila cuba lagi."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-my/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-my/values.xml
deleted file mode 100644
index 20b6f9509e2b66ba1fbf3c0a10ad52152a77e077..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-my/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-my/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> သည် Google Play ဝန်ဆောင်မှုများနှင့် ပြဿနာအနည်းငယ် ရှိနေပါသည်။ ထပ်လုပ်ကြည့်ပါ။"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-nb/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-nb/values.xml
deleted file mode 100644
index 7ffed6717e1c246d786a29c01e5257ee3c23a94d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-nb/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-nb/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> har problemer med Google Play-tjenester. Prøv på nytt."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ne/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ne/values.xml
deleted file mode 100644
index 6cce074f9849cc8d682b75df99543811a477cddf..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ne/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-ne/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> लाई Google Play services सँग सहकार्य गर्न समस्या भइरहेको छ। कृपया फेरि प्रयास गर्नुहोस्।"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-nl/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-nl/values.xml
deleted file mode 100644
index 385bd13c739c50b9c7e79773aae219ef0d5bc09a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-nl/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-nl/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> ondervindt problemen met Google Play-services. Probeer het opnieuw."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pa/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pa/values.xml
deleted file mode 100644
index f322b4759f885a15ce0bd2fb5415c552351ee811..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pa/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-pa/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> ਨੂੰ Google Play ਸੇਵਾਵਾਂ ਨਾਲ ਸਮੱਸਿਆ ਆ ਰਹੀ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pl/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pl/values.xml
deleted file mode 100644
index 17cf9eacf6a6873f00ea94d66bc763ebb28a20d7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pl/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-pl/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> ma problem z dostępem do Usług Google Play. Spróbuj jeszcze raz."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pt-rBR/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pt-rBR/values.xml
deleted file mode 100644
index 9479957ee7daa92c12792425fd231c5035620757..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pt-rBR/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-pt-rBR/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"O app <xliff:g id="APP_NAME">%1$s</xliff:g> está com problemas com o Google Play Services. Tente novamente."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pt-rPT/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pt-rPT/values.xml
deleted file mode 100644
index f1f2804393057a1092966dbdb6b4296f84b1b361..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pt-rPT/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-pt-rPT/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> está a ter problemas com os Serviços do Google Play. Tente novamente."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ro/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ro/values.xml
deleted file mode 100644
index 9d21e4537959677c067bcae18220877b4180a26b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ro/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-ro/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> întâmpină probleme privind serviciile Google Play. Încercați din nou."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ru/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ru/values.xml
deleted file mode 100644
index 7b83540f3443fbe1cccbd2e531f59299674962ac..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ru/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-ru/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"Приложению \"<xliff:g id="APP_NAME">%1$s</xliff:g>\" не удается подключиться к сервисам Google Play. Повторите попытку."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-si/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-si/values.xml
deleted file mode 100644
index 8902365ce7069464db74b7288c09baad370f5649..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-si/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-si/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> හට Google Play සේවා සමගින් ගැටලු ඇත. කරුණාකර නැවත උත්සාහ කරන්න."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sk/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sk/values.xml
deleted file mode 100644
index 77c24fc2893d7bcddd2839c9e7a0e7077f0cfed1..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sk/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-sk/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"Aplikácia <xliff:g id="APP_NAME">%1$s</xliff:g> má problémy so službami Google Play. Skúste to znova."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sl/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sl/values.xml
deleted file mode 100644
index d580621b6273a197c8e26ef6c954f3097af6481c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sl/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-sl/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"Aplikacija <xliff:g id="APP_NAME">%1$s</xliff:g> ima težave s storitvami Google Play. Poskusite znova."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sq/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sq/values.xml
deleted file mode 100644
index bfbeaa1a45a51491d86ffc1c23b369fe66f0fd50..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sq/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-sq/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> ka probleme me shërbimet e Google Play. Provo sërish."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sr/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sr/values.xml
deleted file mode 100644
index 2a79781fbe95fa928c64ff3bfcd216a5149209bb..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sr/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-sr/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> има проблема са Google Play услугама. Пробајте поново."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sv/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sv/values.xml
deleted file mode 100644
index 6a4dba3e278dac1d3dab48eac982802a2c045940..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sv/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-sv/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"Det har uppstått ett fel mellan <xliff:g id="APP_NAME">%1$s</xliff:g> och Google Play-tjänsterna. Försök igen."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sw/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sw/values.xml
deleted file mode 100644
index cdc9e1f34fb3f8ed40738ebb741ce2702181bb95..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sw/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-sw/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> inakumbwa na hitilafu ya huduma za Google Play. Tafadhali jaribu tena."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ta/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ta/values.xml
deleted file mode 100644
index 8ab91e6f65310e6236a1f2807b7c0f74b7fe2aba..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ta/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-ta/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"Google Play சேவைகளில் சிக்கல் ஏற்பட்டதால், <xliff:g id="APP_NAME">%1$s</xliff:g> பயன்பாட்டை அணுக முடியவில்லை. மீண்டும் முயலவும்."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-te/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-te/values.xml
deleted file mode 100644
index 3443bcd637d3f3f519c0cf2dad448bf6bf1479d4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-te/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-te/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> Google Play సేవలతో సమస్య కలిగి ఉంది. దయచేసి మళ్లీ ప్రయత్నించండి."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-th/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-th/values.xml
deleted file mode 100644
index 5193b232cdf48b989347af58a1093046368044eb..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-th/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-th/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> มีปัญหาเกี่ยวกับบริการของ Google Play โปรดลองอีกครั้ง"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-tl/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-tl/values.xml
deleted file mode 100644
index 86a308c19d1f114f2d911dd478af6bdc56bc72e9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-tl/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-tl/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"Nagkakaproblema ang <xliff:g id="APP_NAME">%1$s</xliff:g> sa mga serbisyo ng Google Play. Pakisubukang muli."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-tr/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-tr/values.xml
deleted file mode 100644
index 1e54c4410680ebcca94af0bf7180abb3b0a54763..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-tr/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-tr/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g>, Google Play hizmetleriyle ilgili sorun yaşıyor. Lütfen tekrar deneyin."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-uk/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-uk/values.xml
deleted file mode 100644
index 1b68adaa98a3f663d0bdcc3470d54a9d1fec2424..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-uk/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-uk/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"У додатку <xliff:g id="APP_NAME">%1$s</xliff:g> виникла проблема із сервісами Google Play. Повторіть спробу."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ur/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ur/values.xml
deleted file mode 100644
index 2391c992038c52faec68bababf16a1471aec77c4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ur/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-ur/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"‏<xliff:g id="APP_NAME">%1$s</xliff:g> کو Google Play سروسز کے ساتھ مسئلہ پیش آ رہا ہے۔ براہ کرم دوبارہ کوشش کریں۔"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-uz/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-uz/values.xml
deleted file mode 100644
index 1ed747ba451a017419f654309269e22c10ca3a7e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-uz/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-uz/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> ilovasini Google Play xizmatlariga ulab bo‘lmadi. Qaytadan urinib ko‘ring."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-vi/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-vi/values.xml
deleted file mode 100644
index 2bb54157b420f55b5d4536d0153936bea9da62af..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-vi/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-vi/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> đang gặp sự cố với các dịch vụ của Google Play. Hãy thử lại."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zh-rCN/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zh-rCN/values.xml
deleted file mode 100644
index 2486f9e92595eab1b60235476bf3d38de74aa38d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zh-rCN/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-zh-rCN/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g>无法访问 Google Play 服务,请重试。"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zh-rHK/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zh-rHK/values.xml
deleted file mode 100644
index 22dccf0ce5e167bbfd6772ac38509a2d48f96f57..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zh-rHK/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-zh-rHK/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"「<xliff:g id="APP_NAME">%1$s</xliff:g>」存取 Google Play 服務時發生問題。請稍後再試一次。"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zh-rTW/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zh-rTW/values.xml
deleted file mode 100644
index 6e0c850ba98be627024d76b43066bebdde713e6e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zh-rTW/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-zh-rTW/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"「<xliff:g id="APP_NAME">%1$s</xliff:g>」無法存取 Google Play 服務,請再試一次。"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zu/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zu/values.xml
deleted file mode 100644
index 95ffccd81dee72ab8f523c4188c29c45f7207582..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zu/values.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/client/common/res/values-zu/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue" msgid="2518680582564677258">"<xliff:g id="APP_NAME">%1$s</xliff:g> inenkinga ngamasevisi e-Google Play. Sicela uzame futhi."</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values/values.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values/values.xml
deleted file mode 100644
index 5ad0e7d2cfdb0681adba1d587ab6b1d14ae5c0a9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values/values.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-<!-- blaze-out/gcc-4.X.Y-crosstool-v18-hybrid-grtev4-k8-opt/genfiles/java/com/google/android/gmscore/integ/res/values/gmscore_version.xml -->
-<eat-comment/>
-<integer name="google_play_services_version">10298000</integer>
-<!-- java/com/google/android/gmscore/integ/client/common/res/values/strings.xml -->
-<eat-comment/>
-<string name="common_google_play_services_unknown_issue"><xliff:g id="app_name">%1$s</xliff:g> is having trouble with Google Play services. Please try again.</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/AndroidManifest.xml
deleted file mode 100644
index d7358beb589ed2248836a4704587329dab01a758..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0"?>
-<!-- Copyright (C) 2012 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.google.android.gms.gcm">
-    <uses-sdk android:minSdkVersion="14"/>
-
-    <!-- Permissions required for GCM -->
-    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>
-    <uses-permission android:name="android.permission.INTERNET"/>
-
-    <application/>
-</manifest>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/jars/classes.jar
deleted file mode 100644
index e93270dce456db925964ab26c1acd2a8ad917438..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/proguard.txt b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/proguard.txt
deleted file mode 100755
index 2240f47d89ae84681cdb2358504a187e87b4f625..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/proguard.txt
+++ /dev/null
@@ -1,47 +0,0 @@
-
-# Proguard flags for consumers of the Google Play services SDK
-# https://developers.google.com/android/guides/setup#add_google_play_services_to_your_project
-
-# Keep SafeParcelable value, needed for reflection. This is required to support backwards
-# compatibility of some classes.
--keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
-    public static final *** NULL;
-}
-
-# Needed for Parcelable/SafeParcelable classes & their creators to not get renamed, as they are
-# found via reflection.
--keep class com.google.android.gms.common.internal.ReflectedParcelable
--keepnames class * implements com.google.android.gms.common.internal.ReflectedParcelable
--keepclassmembers class * implements android.os.Parcelable {
-  public static final *** CREATOR;
-}
-
-# Keep the classes/members we need for client functionality.
--keep @interface android.support.annotation.Keep
--keep @android.support.annotation.Keep class *
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <fields>;
-}
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <methods>;
-}
-
-# Keep the names of classes/members we need for client functionality.
--keep @interface com.google.android.gms.common.annotation.KeepName
--keepnames @com.google.android.gms.common.annotation.KeepName class *
--keepclassmembernames class * {
-  @com.google.android.gms.common.annotation.KeepName *;
-}
-
-# Keep Dynamite API entry points
--keep @interface com.google.android.gms.common.util.DynamiteApi
--keep @com.google.android.gms.common.util.DynamiteApi public class * {
-  public <fields>;
-  public <methods>;
-}
-
-# Needed when building against pre-Marshmallow SDK.
--dontwarn android.security.NetworkSecurityPolicy
-
-# Needed when building against Marshmallow SDK.
--dontwarn android.app.Notification
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/AndroidManifest.xml
deleted file mode 100644
index 35dbfd7a56c29be0bca2169679a4883c7bd671c2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0"?>
-<!-- Copyright (C) 2012 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.google.android.gms.iid">
-    <uses-sdk android:minSdkVersion="14"/>
-
-    <!-- Permissions required for IID -->
-    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>
-    <uses-permission android:name="android.permission.INTERNET"/>
-
-    <application/>
-</manifest>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/jars/classes.jar
deleted file mode 100644
index 437868efac8b81027d69b7fa3cab134b42cb34ba..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/proguard.txt b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/proguard.txt
deleted file mode 100755
index 2240f47d89ae84681cdb2358504a187e87b4f625..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/proguard.txt
+++ /dev/null
@@ -1,47 +0,0 @@
-
-# Proguard flags for consumers of the Google Play services SDK
-# https://developers.google.com/android/guides/setup#add_google_play_services_to_your_project
-
-# Keep SafeParcelable value, needed for reflection. This is required to support backwards
-# compatibility of some classes.
--keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
-    public static final *** NULL;
-}
-
-# Needed for Parcelable/SafeParcelable classes & their creators to not get renamed, as they are
-# found via reflection.
--keep class com.google.android.gms.common.internal.ReflectedParcelable
--keepnames class * implements com.google.android.gms.common.internal.ReflectedParcelable
--keepclassmembers class * implements android.os.Parcelable {
-  public static final *** CREATOR;
-}
-
-# Keep the classes/members we need for client functionality.
--keep @interface android.support.annotation.Keep
--keep @android.support.annotation.Keep class *
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <fields>;
-}
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <methods>;
-}
-
-# Keep the names of classes/members we need for client functionality.
--keep @interface com.google.android.gms.common.annotation.KeepName
--keepnames @com.google.android.gms.common.annotation.KeepName class *
--keepclassmembernames class * {
-  @com.google.android.gms.common.annotation.KeepName *;
-}
-
-# Keep Dynamite API entry points
--keep @interface com.google.android.gms.common.util.DynamiteApi
--keep @com.google.android.gms.common.util.DynamiteApi public class * {
-  public <fields>;
-  public <methods>;
-}
-
-# Needed when building against pre-Marshmallow SDK.
--dontwarn android.security.NetworkSecurityPolicy
-
-# Needed when building against Marshmallow SDK.
--dontwarn android.app.Notification
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/10.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/10.2.0/AndroidManifest.xml
deleted file mode 100644
index 02bedbc8ccb346c14a5d12bd017873cce4bae73b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/10.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.google.android.gms.tasks">
-    <uses-sdk android:minSdkVersion="14"/>
-    <application/>
-</manifest>
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/10.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/10.2.0/jars/classes.jar
deleted file mode 100644
index d74a08a305cbfcc805c1b88f7132a89d8358c796..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/10.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/10.2.0/proguard.txt b/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/10.2.0/proguard.txt
deleted file mode 100755
index 2240f47d89ae84681cdb2358504a187e87b4f625..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/10.2.0/proguard.txt
+++ /dev/null
@@ -1,47 +0,0 @@
-
-# Proguard flags for consumers of the Google Play services SDK
-# https://developers.google.com/android/guides/setup#add_google_play_services_to_your_project
-
-# Keep SafeParcelable value, needed for reflection. This is required to support backwards
-# compatibility of some classes.
--keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
-    public static final *** NULL;
-}
-
-# Needed for Parcelable/SafeParcelable classes & their creators to not get renamed, as they are
-# found via reflection.
--keep class com.google.android.gms.common.internal.ReflectedParcelable
--keepnames class * implements com.google.android.gms.common.internal.ReflectedParcelable
--keepclassmembers class * implements android.os.Parcelable {
-  public static final *** CREATOR;
-}
-
-# Keep the classes/members we need for client functionality.
--keep @interface android.support.annotation.Keep
--keep @android.support.annotation.Keep class *
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <fields>;
-}
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <methods>;
-}
-
-# Keep the names of classes/members we need for client functionality.
--keep @interface com.google.android.gms.common.annotation.KeepName
--keepnames @com.google.android.gms.common.annotation.KeepName class *
--keepclassmembernames class * {
-  @com.google.android.gms.common.annotation.KeepName *;
-}
-
-# Keep Dynamite API entry points
--keep @interface com.google.android.gms.common.util.DynamiteApi
--keep @com.google.android.gms.common.util.DynamiteApi public class * {
-  public <fields>;
-  public <methods>;
-}
-
-# Needed when building against pre-Marshmallow SDK.
--dontwarn android.security.NetworkSecurityPolicy
-
-# Needed when building against Marshmallow SDK.
--dontwarn android.app.Notification
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/AndroidManifest.xml
deleted file mode 100644
index 13face1af406a6497e4fec19786e448bcb3b566b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0"?>
-<!-- Copyright (C) 2012 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.google.android.gms.measurement.impl">
-    <uses-sdk android:minSdkVersion="14"/>
-
-    <!-- Required permission for App measurement to run. -->
-    <uses-permission android:name="android.permission.INTERNET"/>
-    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
-    <uses-permission android:name="android.permission.WAKE_LOCK"/>
-
-    <application>
-      <receiver android:name="com.google.android.gms.measurement.AppMeasurementReceiver" android:enabled="true" android:exported="false">
-      </receiver>
-      <service android:name="com.google.android.gms.measurement.AppMeasurementService" android:enabled="true" android:exported="false"/>
-    </application>
-</manifest>
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/jars/classes.jar
deleted file mode 100644
index 74bac8895530844f22f7df4f4bf846312561dd5d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/proguard.txt b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/proguard.txt
deleted file mode 100755
index 2240f47d89ae84681cdb2358504a187e87b4f625..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/proguard.txt
+++ /dev/null
@@ -1,47 +0,0 @@
-
-# Proguard flags for consumers of the Google Play services SDK
-# https://developers.google.com/android/guides/setup#add_google_play_services_to_your_project
-
-# Keep SafeParcelable value, needed for reflection. This is required to support backwards
-# compatibility of some classes.
--keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
-    public static final *** NULL;
-}
-
-# Needed for Parcelable/SafeParcelable classes & their creators to not get renamed, as they are
-# found via reflection.
--keep class com.google.android.gms.common.internal.ReflectedParcelable
--keepnames class * implements com.google.android.gms.common.internal.ReflectedParcelable
--keepclassmembers class * implements android.os.Parcelable {
-  public static final *** CREATOR;
-}
-
-# Keep the classes/members we need for client functionality.
--keep @interface android.support.annotation.Keep
--keep @android.support.annotation.Keep class *
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <fields>;
-}
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <methods>;
-}
-
-# Keep the names of classes/members we need for client functionality.
--keep @interface com.google.android.gms.common.annotation.KeepName
--keepnames @com.google.android.gms.common.annotation.KeepName class *
--keepclassmembernames class * {
-  @com.google.android.gms.common.annotation.KeepName *;
-}
-
-# Keep Dynamite API entry points
--keep @interface com.google.android.gms.common.util.DynamiteApi
--keep @com.google.android.gms.common.util.DynamiteApi public class * {
-  public <fields>;
-  public <methods>;
-}
-
-# Needed when building against pre-Marshmallow SDK.
--dontwarn android.security.NetworkSecurityPolicy
-
-# Needed when building against Marshmallow SDK.
--dontwarn android.app.Notification
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml
deleted file mode 100644
index 23eae81a4883e5b0aad3032a1b195cf8431cc26d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0"?>
-<!-- Copyright (C) 2012 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.google.android.gms.measurement">
-    <uses-sdk android:minSdkVersion="14"/>
-
-    <!-- Required permission for App measurement to run. -->
-    <uses-permission android:name="android.permission.INTERNET"/>
-    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
-    <uses-permission android:name="android.permission.WAKE_LOCK"/>
-
-    <application>
-      <receiver android:name="com.google.android.gms.measurement.AppMeasurementReceiver" android:enabled="true" android:exported="false">
-      </receiver>
-      <receiver android:name="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver" android:permission="android.permission.INSTALL_PACKAGES" android:enabled="true">
-          <intent-filter>
-              <action android:name="com.android.vending.INSTALL_REFERRER"/>
-          </intent-filter>
-      </receiver>
-      <service android:name="com.google.android.gms.measurement.AppMeasurementService" android:enabled="true" android:exported="false"/>
-    </application>
-</manifest>
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/jars/classes.jar
deleted file mode 100644
index a83071516d7834d4b03846fe9cf7e7afb8a930a0..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/proguard.txt b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/proguard.txt
deleted file mode 100755
index 2240f47d89ae84681cdb2358504a187e87b4f625..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/proguard.txt
+++ /dev/null
@@ -1,47 +0,0 @@
-
-# Proguard flags for consumers of the Google Play services SDK
-# https://developers.google.com/android/guides/setup#add_google_play_services_to_your_project
-
-# Keep SafeParcelable value, needed for reflection. This is required to support backwards
-# compatibility of some classes.
--keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
-    public static final *** NULL;
-}
-
-# Needed for Parcelable/SafeParcelable classes & their creators to not get renamed, as they are
-# found via reflection.
--keep class com.google.android.gms.common.internal.ReflectedParcelable
--keepnames class * implements com.google.android.gms.common.internal.ReflectedParcelable
--keepclassmembers class * implements android.os.Parcelable {
-  public static final *** CREATOR;
-}
-
-# Keep the classes/members we need for client functionality.
--keep @interface android.support.annotation.Keep
--keep @android.support.annotation.Keep class *
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <fields>;
-}
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <methods>;
-}
-
-# Keep the names of classes/members we need for client functionality.
--keep @interface com.google.android.gms.common.annotation.KeepName
--keepnames @com.google.android.gms.common.annotation.KeepName class *
--keepclassmembernames class * {
-  @com.google.android.gms.common.annotation.KeepName *;
-}
-
-# Keep Dynamite API entry points
--keep @interface com.google.android.gms.common.util.DynamiteApi
--keep @com.google.android.gms.common.util.DynamiteApi public class * {
-  public <fields>;
-  public <methods>;
-}
-
-# Needed when building against pre-Marshmallow SDK.
--dontwarn android.security.NetworkSecurityPolicy
-
-# Needed when building against Marshmallow SDK.
--dontwarn android.app.Notification
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/AndroidManifest.xml
deleted file mode 100644
index 3090a4ad0f072adfebf2bcfa9b1cd2eb0ab89c7d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.google.firebase">
-    <uses-sdk android:minSdkVersion="14"/>
-    <application>
-
-        <provider android:authorities="${applicationId}.firebaseinitprovider" android:name="com.google.firebase.provider.FirebaseInitProvider" android:exported="false" android:initOrder="100"/>
-    </application>
-</manifest>
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/jars/classes.jar
deleted file mode 100644
index 2dc45244ccfaa55b32082a571883439e7c0c0a97..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/proguard.txt b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/proguard.txt
deleted file mode 100755
index 2240f47d89ae84681cdb2358504a187e87b4f625..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/proguard.txt
+++ /dev/null
@@ -1,47 +0,0 @@
-
-# Proguard flags for consumers of the Google Play services SDK
-# https://developers.google.com/android/guides/setup#add_google_play_services_to_your_project
-
-# Keep SafeParcelable value, needed for reflection. This is required to support backwards
-# compatibility of some classes.
--keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
-    public static final *** NULL;
-}
-
-# Needed for Parcelable/SafeParcelable classes & their creators to not get renamed, as they are
-# found via reflection.
--keep class com.google.android.gms.common.internal.ReflectedParcelable
--keepnames class * implements com.google.android.gms.common.internal.ReflectedParcelable
--keepclassmembers class * implements android.os.Parcelable {
-  public static final *** CREATOR;
-}
-
-# Keep the classes/members we need for client functionality.
--keep @interface android.support.annotation.Keep
--keep @android.support.annotation.Keep class *
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <fields>;
-}
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <methods>;
-}
-
-# Keep the names of classes/members we need for client functionality.
--keep @interface com.google.android.gms.common.annotation.KeepName
--keepnames @com.google.android.gms.common.annotation.KeepName class *
--keepclassmembernames class * {
-  @com.google.android.gms.common.annotation.KeepName *;
-}
-
-# Keep Dynamite API entry points
--keep @interface com.google.android.gms.common.util.DynamiteApi
--keep @com.google.android.gms.common.util.DynamiteApi public class * {
-  public <fields>;
-  public <methods>;
-}
-
-# Needed when building against pre-Marshmallow SDK.
--dontwarn android.security.NetworkSecurityPolicy
-
-# Needed when building against Marshmallow SDK.
--dontwarn android.app.Notification
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-core/10.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-core/10.2.0/AndroidManifest.xml
deleted file mode 100644
index eb15a8691f8a7320142ad07ef61ede2f84a164bd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-core/10.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-          package="com.google.firebase.firebase_core">
-    <uses-sdk android:minSdkVersion="14"/>
-    <application />
-</manifest>
-
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-core/10.2.0/R.txt b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-core/10.2.0/R.txt
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-core/10.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-core/10.2.0/jars/classes.jar
deleted file mode 100644
index 1646718d2467f0a71d3ac5abd0b8ac2b20876434..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-core/10.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/AndroidManifest.xml
deleted file mode 100644
index 39b6525456642acf2b3d2176aadd62cbf05e5b5a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/AndroidManifest.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0"?>
-<!-- Copyright (C) 2012 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.google.firebase.crash">
-
-    <uses-permission android:name="android.permission.INTERNET"/>
-
-    <uses-sdk android:minSdkVersion="9"/>
-
-    <application>
-    </application>
-
-</manifest>
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/jars/classes.jar
deleted file mode 100644
index c32130cc3c541ecb7fc6c41074a294ef5119523c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/proguard.txt b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/proguard.txt
deleted file mode 100755
index a94f04740a22de01aadc722ae46bd7712fec610a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/proguard.txt
+++ /dev/null
@@ -1,50 +0,0 @@
-
-# Proguard flags for consumers of the Google Play services SDK
-# https://developers.google.com/android/guides/setup#add_google_play_services_to_your_project
-
-# Keep SafeParcelable value, needed for reflection. This is required to support backwards
-# compatibility of some classes.
--keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
-    public static final *** NULL;
-}
-
-# Needed for Parcelable/SafeParcelable classes & their creators to not get renamed, as they are
-# found via reflection.
--keep class com.google.android.gms.common.internal.ReflectedParcelable
--keepnames class * implements com.google.android.gms.common.internal.ReflectedParcelable
--keepclassmembers class * implements android.os.Parcelable {
-  public static final *** CREATOR;
-}
-
-# Keep the classes/members we need for client functionality.
--keep @interface android.support.annotation.Keep
--keep @android.support.annotation.Keep class *
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <fields>;
-}
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <methods>;
-}
-
-# Keep the names of classes/members we need for client functionality.
--keep @interface com.google.android.gms.common.annotation.KeepName
--keepnames @com.google.android.gms.common.annotation.KeepName class *
--keepclassmembernames class * {
-  @com.google.android.gms.common.annotation.KeepName *;
-}
-
-# Keep Dynamite API entry points
--keep @interface com.google.android.gms.common.util.DynamiteApi
--keep @com.google.android.gms.common.util.DynamiteApi public class * {
-  public <fields>;
-  public <methods>;
-}
-
-# Needed when building against pre-Marshmallow SDK.
--dontwarn android.security.NetworkSecurityPolicy
-
-# Needed when building against Marshmallow SDK.
--dontwarn android.app.Notification
-
-# Needed for isDeviceProtectedStorage when building against a pre-Nougat SDK.
--dontwarn android.content.Context
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/res/values/values.xml b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/res/values/values.xml
deleted file mode 100644
index e159a8b071adf8f2c455a778558b68f516c9b28f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/res/values/values.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding='utf-8' standalone='no'?>
-<resources>
-<!-- java/com/google/android/gmscore/integ/client/crash/res/values/ids.xml -->
-<eat-comment/>
-
-<item name="crash_reporting_present" type="id"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml
deleted file mode 100644
index a8d05c821d11ac424daf3b2c2eefd28dfed03d7b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-<?xml version="1.0"?>
-<!-- Copyright (C) 2012 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.google.firebase.iid">
-    <uses-sdk android:minSdkVersion="14"/>
-
-    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
-    <uses-permission android:name="android.permission.INTERNET"/>
-    <uses-permission android:name="android.permission.WAKE_LOCK"/>
-    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>
-
-    <permission android:name="${applicationId}.permission.C2D_MESSAGE" android:protectionLevel="signature"/>
-
-    <uses-permission android:name="${applicationId}.permission.C2D_MESSAGE"/>
-
-    <application>
-
-        <receiver android:name="com.google.firebase.iid.FirebaseInstanceIdReceiver" android:exported="true" android:permission="com.google.android.c2dm.permission.SEND">
-            <intent-filter>
-                <action android:name="com.google.android.c2dm.intent.RECEIVE"/>
-                <action android:name="com.google.android.c2dm.intent.REGISTRATION"/>
-                <category android:name="${applicationId}"/>
-            </intent-filter>
-        </receiver>
-
-        <!-- Internal (not exported) receiver used by the app to start its own exported services
-             without risk of being spoofed. -->
-        <receiver android:name="com.google.firebase.iid.FirebaseInstanceIdInternalReceiver" android:exported="false"/>
-
-        <!-- FirebaseInstanceIdService performs security checks at runtime,
-             no need for explicit permissions despite exported="true" -->
-        <service android:name="com.google.firebase.iid.FirebaseInstanceIdService" android:exported="true">
-            <intent-filter android:priority="-500">
-                <action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
-            </intent-filter>
-        </service>
-
-    </application>
-</manifest>
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/jars/classes.jar b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/jars/classes.jar
deleted file mode 100644
index 36f8f94c0e385c5813fb69056617becaea9ebb5d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/proguard.txt b/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/proguard.txt
deleted file mode 100755
index 2240f47d89ae84681cdb2358504a187e87b4f625..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/proguard.txt
+++ /dev/null
@@ -1,47 +0,0 @@
-
-# Proguard flags for consumers of the Google Play services SDK
-# https://developers.google.com/android/guides/setup#add_google_play_services_to_your_project
-
-# Keep SafeParcelable value, needed for reflection. This is required to support backwards
-# compatibility of some classes.
--keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
-    public static final *** NULL;
-}
-
-# Needed for Parcelable/SafeParcelable classes & their creators to not get renamed, as they are
-# found via reflection.
--keep class com.google.android.gms.common.internal.ReflectedParcelable
--keepnames class * implements com.google.android.gms.common.internal.ReflectedParcelable
--keepclassmembers class * implements android.os.Parcelable {
-  public static final *** CREATOR;
-}
-
-# Keep the classes/members we need for client functionality.
--keep @interface android.support.annotation.Keep
--keep @android.support.annotation.Keep class *
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <fields>;
-}
--keepclasseswithmembers class * {
-  @android.support.annotation.Keep <methods>;
-}
-
-# Keep the names of classes/members we need for client functionality.
--keep @interface com.google.android.gms.common.annotation.KeepName
--keepnames @com.google.android.gms.common.annotation.KeepName class *
--keepclassmembernames class * {
-  @com.google.android.gms.common.annotation.KeepName *;
-}
-
-# Keep Dynamite API entry points
--keep @interface com.google.android.gms.common.util.DynamiteApi
--keep @com.google.android.gms.common.util.DynamiteApi public class * {
-  public <fields>;
-  public <methods>;
-}
-
-# Needed when building against pre-Marshmallow SDK.
--dontwarn android.security.NetworkSecurityPolicy
-
-# Needed when building against Marshmallow SDK.
--dontwarn android.app.Notification
diff --git a/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.15/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.15/AndroidManifest.xml
deleted file mode 100644
index d395c5a554b8d73ceae4a5475bb162064812d6ce..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.15/AndroidManifest.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ ATTRIBUTIONS:
-  ~
-  ~ QueueFile.class (Square Tape)
-  ~ https://raw.github.com/square/tape/master/LICENSE.txt
-  ~
-  ~ QueueFile.class is Copyright 2012 Square, Inc. Licensed under the Apache License, Version 2.0 (the "License");
-  ~ 
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
-  ~
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="io.fabric.sdk.android"
-    android:versionCode="1"
-    android:versionName="1.3.15" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.15/aapt/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.15/aapt/AndroidManifest.xml
deleted file mode 100644
index d395c5a554b8d73ceae4a5475bb162064812d6ce..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.15/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ ATTRIBUTIONS:
-  ~
-  ~ QueueFile.class (Square Tape)
-  ~ https://raw.github.com/square/tape/master/LICENSE.txt
-  ~
-  ~ QueueFile.class is Copyright 2012 Square, Inc. Licensed under the Apache License, Version 2.0 (the "License");
-  ~ 
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
-  ~
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="io.fabric.sdk.android"
-    android:versionCode="1"
-    android:versionName="1.3.15" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.15/jars/classes.jar b/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.15/jars/classes.jar
deleted file mode 100644
index 19820af088da105785bfb6b93ab37c2256e9ec8c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.15/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.15/proguard.txt b/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.15/proguard.txt
deleted file mode 100644
index 302d2248f99930c86c9ab6ff471bd415d5c8fd95..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.15/proguard.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-# Fabric Proguard Config
--keep class com.google.android.gms.common.GooglePlayServicesUtil {*;}
--keep class com.google.android.gms.ads.identifier.AdvertisingIdClient {*;}
--keep class com.google.android.gms.ads.identifier.AdvertisingIdClient$Info {*;}
diff --git a/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/AndroidManifest.xml
deleted file mode 100644
index 0e7b5547bd8fc41a8d12c7cc6ad4b040d64c11d4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/AndroidManifest.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ ATTRIBUTIONS:
-  ~
-  ~ QueueFile.class (Square Tape)
-  ~ https://raw.github.com/square/tape/master/LICENSE.txt
-  ~
-  ~ QueueFile.class is Copyright 2012 Square, Inc. Licensed under the Apache License, Version 2.0 (the "License");
-  ~ 
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
-  ~
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="io.fabric.sdk.android"
-    android:versionCode="1"
-    android:versionName="1.3.16" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/aapt/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/aapt/AndroidManifest.xml
deleted file mode 100644
index 0e7b5547bd8fc41a8d12c7cc6ad4b040d64c11d4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ ATTRIBUTIONS:
-  ~
-  ~ QueueFile.class (Square Tape)
-  ~ https://raw.github.com/square/tape/master/LICENSE.txt
-  ~
-  ~ QueueFile.class is Copyright 2012 Square, Inc. Licensed under the Apache License, Version 2.0 (the "License");
-  ~ 
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
-  ~
--->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="io.fabric.sdk.android"
-    android:versionCode="1"
-    android:versionName="1.3.16" >
-
-    <uses-sdk android:minSdkVersion="8" />
-
-    <uses-permission android:name="android.permission.INTERNET" />
-
-    <application />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/jars/classes.jar b/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/jars/classes.jar
deleted file mode 100644
index 2f01d6e4f44ae3416344fd677b42742ddfc91881..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/proguard.txt b/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/proguard.txt
deleted file mode 100644
index 302d2248f99930c86c9ab6ff471bd415d5c8fd95..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/proguard.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-# Fabric Proguard Config
--keep class com.google.android.gms.common.GooglePlayServicesUtil {*;}
--keep class com.google.android.gms.ads.identifier.AdvertisingIdClient {*;}
--keep class com.google.android.gms.ads.identifier.AdvertisingIdClient$Info {*;}
diff --git a/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml
deleted file mode 100644
index ef9b785b75da47ab9745f07f64632a1e5b0a9adb..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="me.leolin.shortcutbadger"
-    android:versionCode="1"
-    android:versionName="1.0" >
-
-    <uses-sdk
-        android:minSdkVersion="8"
-        android:targetSdkVersion="19" />
-
-    <!-- for android -->
-    <!-- <uses-permission android:name="com.android.launcher.permission.READ_SETTINGS"/> -->
-    <!-- <uses-permission android:name="com.android.launcher.permission.WRITE_SETTINGS"/> -->
-    <!-- <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" /> -->
-    <!-- <uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" /> -->
-
-
-    <!-- for Samsung -->
-    <uses-permission android:name="com.sec.android.provider.badge.permission.READ" />
-    <uses-permission android:name="com.sec.android.provider.badge.permission.WRITE" />
-
-    <!-- for htc -->
-    <uses-permission android:name="com.htc.launcher.permission.READ_SETTINGS" />
-    <uses-permission android:name="com.htc.launcher.permission.UPDATE_SHORTCUT" />
-
-    <!-- for sony -->
-    <uses-permission android:name="com.sonyericsson.home.permission.BROADCAST_BADGE" />
-    <uses-permission android:name="com.sonymobile.home.permission.PROVIDER_INSERT_BADGE" />
-
-    <!-- for apex -->
-    <uses-permission android:name="com.anddoes.launcher.permission.UPDATE_COUNT" />
-
-    <!-- for solid -->
-    <uses-permission android:name="com.majeur.launcher.permission.UPDATE_BADGE" />
-
-    <!-- for huawei -->
-    <uses-permission android:name="com.huawei.android.launcher.permission.CHANGE_BADGE" />
-    <uses-permission android:name="com.huawei.android.launcher.permission.READ_SETTINGS" />
-    <uses-permission android:name="com.huawei.android.launcher.permission.WRITE_SETTINGS" />
-
-    <!-- for ZUK -->
-    <uses-permission android:name="android.permission.READ_APP_BADGE" />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/aapt/AndroidManifest.xml b/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/aapt/AndroidManifest.xml
deleted file mode 100644
index ef9b785b75da47ab9745f07f64632a1e5b0a9adb..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/aapt/AndroidManifest.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="me.leolin.shortcutbadger"
-    android:versionCode="1"
-    android:versionName="1.0" >
-
-    <uses-sdk
-        android:minSdkVersion="8"
-        android:targetSdkVersion="19" />
-
-    <!-- for android -->
-    <!-- <uses-permission android:name="com.android.launcher.permission.READ_SETTINGS"/> -->
-    <!-- <uses-permission android:name="com.android.launcher.permission.WRITE_SETTINGS"/> -->
-    <!-- <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" /> -->
-    <!-- <uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" /> -->
-
-
-    <!-- for Samsung -->
-    <uses-permission android:name="com.sec.android.provider.badge.permission.READ" />
-    <uses-permission android:name="com.sec.android.provider.badge.permission.WRITE" />
-
-    <!-- for htc -->
-    <uses-permission android:name="com.htc.launcher.permission.READ_SETTINGS" />
-    <uses-permission android:name="com.htc.launcher.permission.UPDATE_SHORTCUT" />
-
-    <!-- for sony -->
-    <uses-permission android:name="com.sonyericsson.home.permission.BROADCAST_BADGE" />
-    <uses-permission android:name="com.sonymobile.home.permission.PROVIDER_INSERT_BADGE" />
-
-    <!-- for apex -->
-    <uses-permission android:name="com.anddoes.launcher.permission.UPDATE_COUNT" />
-
-    <!-- for solid -->
-    <uses-permission android:name="com.majeur.launcher.permission.UPDATE_BADGE" />
-
-    <!-- for huawei -->
-    <uses-permission android:name="com.huawei.android.launcher.permission.CHANGE_BADGE" />
-    <uses-permission android:name="com.huawei.android.launcher.permission.READ_SETTINGS" />
-    <uses-permission android:name="com.huawei.android.launcher.permission.WRITE_SETTINGS" />
-
-    <!-- for ZUK -->
-    <uses-permission android:name="android.permission.READ_APP_BADGE" />
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/jars/classes.jar b/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/jars/classes.jar
deleted file mode 100644
index af1093b2111659a557a4014272205fad1514610b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/jars/classes.jar and /dev/null differ
diff --git a/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/proguard.txt b/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/proguard.txt
deleted file mode 100644
index 7e2446d2fa0957def5696ca87787738b2783c3ee..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/proguard.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-#https://github.com/leolin310148/ShortcutBadger/issues/46
--keep class me.leolin.shortcutbadger.impl.AdwHomeBadger { <init>(...); }
--keep class me.leolin.shortcutbadger.impl.ApexHomeBadger { <init>(...); }
--keep class me.leolin.shortcutbadger.impl.AsusHomeLauncher { <init>(...); }
--keep class me.leolin.shortcutbadger.impl.DefaultBadger { <init>(...); }
--keep class me.leolin.shortcutbadger.impl.NewHtcHomeBadger { <init>(...); }
--keep class me.leolin.shortcutbadger.impl.NovaHomeBadger { <init>(...); }
--keep class me.leolin.shortcutbadger.impl.SolidHomeBadger { <init>(...); }
--keep class me.leolin.shortcutbadger.impl.SonyHomeBadger { <init>(...); }
--keep class me.leolin.shortcutbadger.impl.XiaomiHomeBadger { <init>(...); }
\ No newline at end of file
diff --git a/android/.build/intermediates/incremental/compileDebugAidl/dependency.store b/android/.build/intermediates/incremental/compileDebugAidl/dependency.store
deleted file mode 100644
index b2e74d8ed6f822322623d64dffbb3ecddcaed230..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/incremental/compileDebugAidl/dependency.store and /dev/null differ
diff --git a/android/.build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store b/android/.build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store
deleted file mode 100644
index 8b8400dcf9e65fb815794fe016943dc09d0e8a05..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store and /dev/null differ
diff --git a/android/.build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties b/android/.build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties
deleted file mode 100644
index 3bd9547879f6fe9b79837b042b02fbf108f10a3b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties
+++ /dev/null
@@ -1 +0,0 @@
-#Fri Mar 24 17:42:14 CET 2017
diff --git a/android/.build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml b/android/.build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml
deleted file mode 100644
index 97e5fae90a20f76af803689a8af0e66f8a2699ad..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<merger version="3"><dataSet config="main$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/src/androidTest/res"/><source path="/home/beij/code/RocketChatMobile/android/.build/generated/res/rs/androidTest/debug"/><source path="/home/beij/code/RocketChatMobile/android/.build/generated/res/resValues/androidTest/debug"/></dataSet><dataSet config="main" generated-set="main$Generated"><source path="/home/beij/code/RocketChatMobile/android/src/androidTest/res"/><source path="/home/beij/code/RocketChatMobile/android/.build/generated/res/rs/androidTest/debug"/><source path="/home/beij/code/RocketChatMobile/android/.build/generated/res/resValues/androidTest/debug"/></dataSet><mergedItems/></merger>
\ No newline at end of file
diff --git a/android/.build/intermediates/incremental/mergeDebugAssets/merger.xml b/android/.build/intermediates/incremental/mergeDebugAssets/merger.xml
deleted file mode 100644
index d39cbae17e5388687d06a9388e83eab81216eb96..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/incremental/mergeDebugAssets/merger.xml
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<merger version="3"><dataSet config="25.2.0"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/assets"/></dataSet><dataSet config="25.2.0"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/assets"/></dataSet><dataSet config="25.2.0"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/assets"/></dataSet><dataSet config="25.2.0"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/assets"/></dataSet><dataSet config="25.2.0"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/assets"/></dataSet><dataSet config="25.2.0"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-v4/25.2.0/assets"/></dataSet><dataSet config="1.3.15"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.15/assets"/></dataSet><dataSet config="1.3.11"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.11/assets"/></dataSet><dataSet config="2.3.15"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.15/assets"/></dataSet><dataSet config="1.1.6"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/assets"/></dataSet><dataSet config="1.2.3"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.3/assets"/></dataSet><dataSet config="2.6.6"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.6/assets"/></dataSet><dataSet config="1.1.10"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/assets"/></dataSet><dataSet config="25.2.0"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-vector-drawable/25.2.0/assets"/></dataSet><dataSet config="25.2.0"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/assets"/></dataSet><dataSet config="25.2.0"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/assets"/></dataSet><dataSet config="main"><source path="/home/beij/code/RocketChatMobile/android/assets"/><source path="/home/beij/code/RocketChatMobile/android/.build/generated/assets/shaders/debug"/></dataSet><dataSet config="debug"><source path="/home/beij/code/RocketChatMobile/android/src/debug/assets"/></dataSet></merger>
\ No newline at end of file
diff --git a/android/.build/intermediates/incremental/mergeDebugResources/compile-file-map.properties b/android/.build/intermediates/incremental/mergeDebugResources/compile-file-map.properties
deleted file mode 100644
index 8877bfab3732130c15c3ba3185a7756811c86ef2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/incremental/mergeDebugResources/compile-file-map.properties
+++ /dev/null
@@ -1,444 +0,0 @@
-#Fri Mar 31 21:59:21 CEST 2017
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_out_bottom.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_spinner_textfield_background_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_vector_test.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_vector_test.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_shrink_fade_out_from_bottom.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml
-/home/beij/code/RocketChatMobile/android/res/drawable-xhdpi/splash.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi/splash.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_low_pressed.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_focused_holo.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_colored_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png
-/home/beij/code/RocketChatMobile/android/res/drawable-xhdpi/icon.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi/icon.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_low_pressed.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_text_dark.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/common_google_signin_btn_text_dark.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_tick_mark_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_seekbar_tick_mark_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_edittext.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_edittext.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark_focused.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_dark_focused.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notify_panel_notification_icon_bg.png
-/home/beij/code/RocketChatMobile/android/res/drawable-mdpi/notification_icon.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi/notification_icon.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_radio.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_content_include.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_hint_foreground_material_light.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_hint_foreground_material_light.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png
-/home/beij/code/RocketChatMobile/android/res/drawable-xhdpi/ic_stat_name.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi/ic_stat_name.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_track_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_seekbar_track_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_action_tombstone.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v21/notification_action_tombstone.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_menu_item_layout.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_edittext.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_tint_edittext.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_disable_only_material_dark.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_16dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/res/drawable-hdpi/icon.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi/icon.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_toolbar.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_up_container.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_btn_colored_borderless_text_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_btn_colored_borderless_text_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_narrow_custom.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media_narrow_custom.xml
-/home/beij/code/RocketChatMobile/android/res/drawable-ldpi/icon.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldpi/icon.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_check_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_low_normal.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_default.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_default.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_secondary_text_material_light.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_edit_text_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notify_panel_notification_icon_bg.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_switch_track.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_switch_track.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_material_light.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_popup_menu_header_item_layout.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_popup_menu_header_item_layout.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_activity_chooser_view_list_item.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_normal.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_normal.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_48dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_btn_colored_text_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_btn_colored_text_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_item_background_holo_light.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_action_bar_item_background_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_search_url_text.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_search_url_text.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_simple_overlay_action_mode.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_mode_close_item_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_fade_in.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_fade_in.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_material_dark.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_switch_track.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_tint_switch_track.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/support_simple_spinner_dropdown_item.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_normal_pressed.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_search_dropdown_item_icons_2line.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_default.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_tint_default.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_media.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/notification_template_media.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_icon.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_custom.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media_custom.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_title_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_alert_dialog_title_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_dialog_material_background.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_dialog_material_background.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_media_cancel_action.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v11/notification_media_cancel_action.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
-/home/beij/code/RocketChatMobile/android/res/drawable-hdpi/ic_stat_name.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi/ic_stat_name.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/googleg_disabled_color_18.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/googleg_disabled_color_18.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_hint_foreground_material_dark.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_hint_foreground_material_dark.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_ab_back_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ic_ab_back_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/switch_thumb_material_dark.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
-/home/beij/code/RocketChatMobile/android/res/drawable-mdpi/splash.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi/splash.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_menu_layout.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/notification_action_background.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-v21/notification_action_background.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_text_light.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/common_google_signin_btn_text_light.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_dialog_title_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark_focused.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_dark_focused.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_36dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_dark.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_full_open_on_phone.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_full_open_on_phone.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_spinner.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_tint_spinner.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_seek_thumb.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_tint_seek_thumb.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_48dp.png
-/home/beij/code/RocketChatMobile/android/res/drawable-mdpi/icon.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi/icon.png
-/home/beij/code/RocketChatMobile/android/res/drawable-ldpi/splash.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldpi/splash.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_borderless_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_lines_media.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/notification_template_lines_media.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light_normal.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_light_normal.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_layout.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_clear_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ic_clear_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_title_item.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/res/drawable-xxhdpi/icon.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/icon.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png
-/home/beij/code/RocketChatMobile/android/res/drawable-xhdpi/notification_icon.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi/notification_icon.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_in_bottom.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_focused_holo.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_bg_low.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/notification_bg_low.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_switch_thumb_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_icon_background.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/notification_icon_background.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_light.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_media_action.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v11/notification_media_action.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_tile_bg.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/notification_tile_bg.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark_normal.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_dark_normal.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_tab_indicator_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_indicator_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ratingbar_indicator_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_holo_dark.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_small_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ratingbar_small_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/switch_thumb_material_light.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_secondary_text_material_dark.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_multichoice_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_part_chronometer.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_low_pressed.9.png
-/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/layout/splash.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/splash.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_disabled.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_disabled.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_spinner.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_spinner.xml
-/home/beij/code/RocketChatMobile/android/res/drawable-xxhdpi/ic_stat_name.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/ic_stat_name.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_in_top.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_item_background_holo_dark.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_48dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_search_api_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ic_search_api_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_color_highlight_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_menu_overflow_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ic_menu_overflow_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_activity_chooser_view.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_dark.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_item_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_icon_group.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/notification_template_icon_group.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_bg.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/notification_bg.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/res/drawable-xxxhdpi/icon.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi/icon.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_btn_checkable.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_btn_checkable.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v23/abc_control_background_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_template_custom_big.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v21/notification_template_custom_big.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_checkbox.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_simple.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_screen_simple.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_thumb_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_seekbar_thumb_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/googleg_standard_color_18.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/googleg_standard_color_18.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_normal.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_normal.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ratingbar_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_narrow.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media_narrow.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_edit_text_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-v21/abc_edit_text_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/googleg_standard_color_18.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/googleg_standard_color_18.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v16/notification_template_custom_big.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v16/notification_template_custom_big.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_switch_thumb.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_switch_thumb.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_go_search_api_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ic_go_search_api_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/googleg_disabled_color_18.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/googleg_disabled_color_18.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_background_transition_holo_light.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_fade_out.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_fade_out.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_mode_bar.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light_normal.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_light_normal.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_36dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_select_dialog_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
-/home/beij/code/RocketChatMobile/android/res/drawable-xxhdpi/notification_icon.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/notification_icon.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_expanded_menu_layout.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_textfield_search_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_singlechoice_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/googleg_standard_color_18.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/googleg_standard_color_18.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark_normal.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_dark_normal.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/googleg_disabled_color_18.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/googleg_disabled_color_18.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_switch_thumb.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_tint_switch_thumb.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_light.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_normal_pressed.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_popup_enter.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_popup_enter.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/googleg_disabled_color_18.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/googleg_disabled_color_18.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_action_tombstone.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/notification_action_tombstone.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_grow_fade_in_from_bottom.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_default_mtrl_shape.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_out_top.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_part_time.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/notification_template_part_time.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_disabled.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_disabled.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ic_arrow_drop_right_black_24dp.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_action.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/notification_action.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_popup_exit.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/anim/abc_popup_exit.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_36dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_view_list_nav_layout.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
-/home/beij/code/RocketChatMobile/android/res/drawable-mdpi/ic_stat_name.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi/ic_stat_name.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_text_light_normal_background.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_text_light_normal_background.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light_focused.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_light_focused.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_popup_menu_item_layout.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_btn_colored_borderless_text_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_btn_colored_borderless_text_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_btn_checkable.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_tint_btn_checkable.xml
-/home/beij/code/RocketChatMobile/android/res/drawable-hdpi/splash.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi/splash.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_holo_light.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_button_bar_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_alert_dialog_button_bar_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_seek_thumb.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_seek_thumb.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_cab_background_internal_bg.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_disable_only_material_light.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_btn_colored_text_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v23/abc_btn_colored_text_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_text_cursor_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_template_icon_group.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v21/notification_template_icon_group.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_search_view.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/abc_search_view.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_action.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout-v21/notification_action.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_tint.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color/common_google_signin_btn_tint.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_full_open_on_phone.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_full_open_on_phone.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_media_custom.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/notification_template_media_custom.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_16dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
-/home/beij/code/RocketChatMobile/android/res/drawable-hdpi/notification_icon.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi/notification_icon.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light_focused.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_light_focused.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_btn_colored_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_cab_background_top_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_text_light_normal_background.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_text_light_normal_background.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_voice_search_api_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_ic_voice_search_api_material.xml
-/home/beij/code/RocketChatMobile/android/res/drawable-xxhdpi/splash.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/splash.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_low_normal.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_low_normal.9.png
-/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/layout/activity_jits_call.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/layout/activity_jits_call.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_low_normal.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_low_normal.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_16dp.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_radio_material.xml=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/googleg_standard_color_18.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/googleg_standard_color_18.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_normal.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_normal.9.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
-/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png=/home/beij/code/RocketChatMobile/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png
diff --git a/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml b/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml
deleted file mode 100644
index 0ac11a9eb70c612639096caaae5a78253681ea3a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml
+++ /dev/null
@@ -1,1812 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="http://schemas.android.com/tools" xmlns:ns2="urn:oasis:names:tc:xliff:document:1.2">
-    <array name="bundled_in_assets">
-        
-    </array>
-    <array name="bundled_in_lib">
-        
-    </array>
-    <array name="bundled_libs">
-        
-    </array>
-    <array name="qt_libs">
-         
-     </array>
-    <array name="qt_sources">
-        <item>https://download.qt.io/ministro/android/qt5/qt-5.7</item>
-    </array>
-    <attr format="reference" name="drawerArrowStyle"/>
-    <attr format="dimension" name="height"/>
-    <attr format="boolean" name="isLightTheme"/>
-    <attr format="string" name="title"/>
-    <bool name="abc_action_bar_embed_tabs">true</bool>
-    <bool name="abc_allow_stacked_button_bar">true</bool>
-    <bool name="abc_config_actionMenuItemAllCaps">true</bool>
-    <bool name="abc_config_closeDialogWhenTouchOutside">true</bool>
-    <bool name="abc_config_showMenuShortcutsWhenKeyboardPresent">false</bool>
-    <color name="abc_input_method_navigation_guard">@android:color/black</color>
-    <color name="abc_search_url_text_normal">#7fa87f</color>
-    <color name="abc_search_url_text_pressed">@android:color/black</color>
-    <color name="abc_search_url_text_selected">@android:color/black</color>
-    <color name="accent_material_dark">@color/material_deep_teal_200</color>
-    <color name="accent_material_light">@color/material_deep_teal_500</color>
-    <color name="background_floating_material_dark">@color/material_grey_800</color>
-    <color name="background_floating_material_light">@android:color/white</color>
-    <color name="background_material_dark">@color/material_grey_850</color>
-    <color name="background_material_light">@color/material_grey_50</color>
-    <color name="bright_foreground_disabled_material_dark">#80ffffff</color>
-    <color name="bright_foreground_disabled_material_light">#80000000</color>
-    <color name="bright_foreground_inverse_material_dark">@color/bright_foreground_material_light</color>
-    <color name="bright_foreground_inverse_material_light">@color/bright_foreground_material_dark</color>
-    <color name="bright_foreground_material_dark">@android:color/white</color>
-    <color name="bright_foreground_material_light">@android:color/black</color>
-    <color name="button_material_dark">#ff5a595b</color>
-    <color name="button_material_light">#ffd6d7d7</color>
-    <color name="common_google_signin_btn_text_dark_default">@android:color/white</color>
-    <color name="common_google_signin_btn_text_dark_disabled">#1F000000</color>
-    <color name="common_google_signin_btn_text_dark_focused">@android:color/black</color>
-    <color name="common_google_signin_btn_text_dark_pressed">@android:color/white</color>
-    <color name="common_google_signin_btn_text_light_default">#90000000</color>
-    <color name="common_google_signin_btn_text_light_disabled">#1F000000</color>
-    <color name="common_google_signin_btn_text_light_focused">#90000000</color>
-    <color name="common_google_signin_btn_text_light_pressed">#DE000000</color>
-    <color name="dim_foreground_disabled_material_dark">#80bebebe</color>
-    <color name="dim_foreground_disabled_material_light">#80323232</color>
-    <color name="dim_foreground_material_dark">#ffbebebe</color>
-    <color name="dim_foreground_material_light">#ff323232</color>
-    <color name="foreground_material_dark">@android:color/white</color>
-    <color name="foreground_material_light">@android:color/black</color>
-    <color name="highlighted_text_material_dark">#6680cbc4</color>
-    <color name="highlighted_text_material_light">#66009688</color>
-    <color name="material_blue_grey_800">#ff37474f</color>
-    <color name="material_blue_grey_900">#ff263238</color>
-    <color name="material_blue_grey_950">#ff21272b</color>
-    <color name="material_deep_teal_200">#ff80cbc4</color>
-    <color name="material_deep_teal_500">#ff009688</color>
-    <color name="material_grey_100">#fff5f5f5</color>
-    <color name="material_grey_300">#ffe0e0e0</color>
-    <color name="material_grey_50">#fffafafa</color>
-    <color name="material_grey_600">#ff757575</color>
-    <color name="material_grey_800">#ff424242</color>
-    <color name="material_grey_850">#ff303030</color>
-    <color name="material_grey_900">#ff212121</color>
-    <color name="notification_action_color_filter">#ffffffff</color>
-    <color name="notification_icon_bg_color">#ff9e9e9e</color>
-    <color name="notification_material_background_media_default_color">#ff424242</color>
-    <color name="primary_dark_material_dark">@android:color/black</color>
-    <color name="primary_dark_material_light">@color/material_grey_600</color>
-    <color name="primary_material_dark">@color/material_grey_900</color>
-    <color name="primary_material_light">@color/material_grey_100</color>
-    <color name="primary_text_default_material_dark">#ffffffff</color>
-    <color name="primary_text_default_material_light">#de000000</color>
-    <color name="primary_text_disabled_material_dark">#4Dffffff</color>
-    <color name="primary_text_disabled_material_light">#39000000</color>
-    <color name="ripple_material_dark">#33ffffff</color>
-    <color name="ripple_material_light">#1f000000</color>
-    <color name="secondary_text_default_material_dark">#b3ffffff</color>
-    <color name="secondary_text_default_material_light">#8a000000</color>
-    <color name="secondary_text_disabled_material_dark">#36ffffff</color>
-    <color name="secondary_text_disabled_material_light">#24000000</color>
-    <color name="switch_thumb_disabled_material_dark">#ff616161</color>
-    <color name="switch_thumb_disabled_material_light">#ffbdbdbd</color>
-    <color name="switch_thumb_normal_material_dark">#ffbdbdbd</color>
-    <color name="switch_thumb_normal_material_light">#fff1f1f1</color>
-    <declare-styleable name="ActionBar"><attr name="navigationMode">
-            
-            <enum name="normal" value="0"/>
-            
-            <enum name="listMode" value="1"/>
-            
-            <enum name="tabMode" value="2"/>
-        </attr><attr name="displayOptions">
-            <flag name="none" value="0"/>
-            <flag name="useLogo" value="0x1"/>
-            <flag name="showHome" value="0x2"/>
-            <flag name="homeAsUp" value="0x4"/>
-            <flag name="showTitle" value="0x8"/>
-            <flag name="showCustom" value="0x10"/>
-            <flag name="disableHome" value="0x20"/>
-        </attr><attr name="title"/><attr format="string" name="subtitle"/><attr format="reference" name="titleTextStyle"/><attr format="reference" name="subtitleTextStyle"/><attr format="reference" name="icon"/><attr format="reference" name="logo"/><attr format="reference" name="divider"/><attr format="reference" name="background"/><attr format="reference|color" name="backgroundStacked"/><attr format="reference|color" name="backgroundSplit"/><attr format="reference" name="customNavigationLayout"/><attr name="height"/><attr format="reference" name="homeLayout"/><attr format="reference" name="progressBarStyle"/><attr format="reference" name="indeterminateProgressStyle"/><attr format="dimension" name="progressBarPadding"/><attr name="homeAsUpIndicator"/><attr format="dimension" name="itemPadding"/><attr format="boolean" name="hideOnContentScroll"/><attr format="dimension" name="contentInsetStart"/><attr format="dimension" name="contentInsetEnd"/><attr format="dimension" name="contentInsetLeft"/><attr format="dimension" name="contentInsetRight"/><attr format="dimension" name="contentInsetStartWithNavigation"/><attr format="dimension" name="contentInsetEndWithActions"/><attr format="dimension" name="elevation"/><attr format="reference" name="popupTheme"/></declare-styleable>
-    <declare-styleable name="ActionBarLayout"><attr name="android:layout_gravity"/></declare-styleable>
-    <declare-styleable name="ActionMenuItemView"><attr name="android:minWidth"/></declare-styleable>
-    <declare-styleable name="ActionMenuView"/>
-    <declare-styleable name="ActionMode"><attr name="titleTextStyle"/><attr name="subtitleTextStyle"/><attr name="background"/><attr name="backgroundSplit"/><attr name="height"/><attr format="reference" name="closeItemLayout"/></declare-styleable>
-    <declare-styleable name="ActivityChooserView"><attr format="string" name="initialActivityCount"/><attr format="reference" name="expandActivityOverflowButtonDrawable"/></declare-styleable>
-    <declare-styleable name="AlertDialog"><attr name="android:layout"/><attr format="reference" name="buttonPanelSideLayout"/><attr format="reference" name="listLayout"/><attr format="reference" name="multiChoiceItemLayout"/><attr format="reference" name="singleChoiceItemLayout"/><attr format="reference" name="listItemLayout"/><attr format="boolean" name="showTitle"/></declare-styleable>
-    <declare-styleable name="AppCompatImageView"><attr name="android:src"/><attr format="reference" name="srcCompat"/></declare-styleable>
-    <declare-styleable name="AppCompatSeekBar"><attr name="android:thumb"/><attr format="reference" name="tickMark"/><attr format="color" name="tickMarkTint"/><attr name="tickMarkTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-            
-            <enum name="add" value="16"/>
-        </attr></declare-styleable>
-    <declare-styleable name="AppCompatTextHelper"><attr name="android:drawableLeft"/><attr name="android:drawableTop"/><attr name="android:drawableRight"/><attr name="android:drawableBottom"/><attr name="android:drawableStart"/><attr name="android:drawableEnd"/><attr name="android:textAppearance"/></declare-styleable>
-    <declare-styleable name="AppCompatTextView"><attr format="reference|boolean" name="textAllCaps"/><attr name="android:textAppearance"/></declare-styleable>
-    <declare-styleable name="AppCompatTheme"><attr format="boolean" name="windowActionBar"/><attr format="boolean" name="windowNoTitle"/><attr format="boolean" name="windowActionBarOverlay"/><attr format="boolean" name="windowActionModeOverlay"/><attr format="dimension|fraction" name="windowFixedWidthMajor"/><attr format="dimension|fraction" name="windowFixedHeightMinor"/><attr format="dimension|fraction" name="windowFixedWidthMinor"/><attr format="dimension|fraction" name="windowFixedHeightMajor"/><attr format="dimension|fraction" name="windowMinWidthMajor"/><attr format="dimension|fraction" name="windowMinWidthMinor"/><attr name="android:windowIsFloating"/><attr name="android:windowAnimationStyle"/><attr format="reference" name="actionBarTabStyle"/><attr format="reference" name="actionBarTabBarStyle"/><attr format="reference" name="actionBarTabTextStyle"/><attr format="reference" name="actionOverflowButtonStyle"/><attr format="reference" name="actionOverflowMenuStyle"/><attr format="reference" name="actionBarPopupTheme"/><attr format="reference" name="actionBarStyle"/><attr format="reference" name="actionBarSplitStyle"/><attr format="reference" name="actionBarTheme"/><attr format="reference" name="actionBarWidgetTheme"/><attr format="dimension" name="actionBarSize">
-            <enum name="wrap_content" value="0"/>
-        </attr><attr format="reference" name="actionBarDivider"/><attr format="reference" name="actionBarItemBackground"/><attr format="reference" name="actionMenuTextAppearance"/><attr format="color|reference" name="actionMenuTextColor"/><attr format="reference" name="actionModeStyle"/><attr format="reference" name="actionModeCloseButtonStyle"/><attr format="reference" name="actionModeBackground"/><attr format="reference" name="actionModeSplitBackground"/><attr format="reference" name="actionModeCloseDrawable"/><attr format="reference" name="actionModeCutDrawable"/><attr format="reference" name="actionModeCopyDrawable"/><attr format="reference" name="actionModePasteDrawable"/><attr format="reference" name="actionModeSelectAllDrawable"/><attr format="reference" name="actionModeShareDrawable"/><attr format="reference" name="actionModeFindDrawable"/><attr format="reference" name="actionModeWebSearchDrawable"/><attr format="reference" name="actionModePopupWindowStyle"/><attr format="reference" name="textAppearanceLargePopupMenu"/><attr format="reference" name="textAppearanceSmallPopupMenu"/><attr format="reference" name="textAppearancePopupMenuHeader"/><attr format="reference" name="dialogTheme"/><attr format="dimension" name="dialogPreferredPadding"/><attr format="reference" name="listDividerAlertDialog"/><attr format="reference" name="actionDropDownStyle"/><attr format="dimension" name="dropdownListPreferredItemHeight"/><attr format="reference" name="spinnerDropDownItemStyle"/><attr format="reference" name="homeAsUpIndicator"/><attr format="reference" name="actionButtonStyle"/><attr format="reference" name="buttonBarStyle"/><attr format="reference" name="buttonBarButtonStyle"/><attr format="reference" name="selectableItemBackground"/><attr format="reference" name="selectableItemBackgroundBorderless"/><attr format="reference" name="borderlessButtonStyle"/><attr format="reference" name="dividerVertical"/><attr format="reference" name="dividerHorizontal"/><attr format="reference" name="activityChooserViewStyle"/><attr format="reference" name="toolbarStyle"/><attr format="reference" name="toolbarNavigationButtonStyle"/><attr format="reference" name="popupMenuStyle"/><attr format="reference" name="popupWindowStyle"/><attr format="reference|color" name="editTextColor"/><attr format="reference" name="editTextBackground"/><attr format="reference" name="imageButtonStyle"/><attr format="reference" name="textAppearanceSearchResultTitle"/><attr format="reference" name="textAppearanceSearchResultSubtitle"/><attr format="reference|color" name="textColorSearchUrl"/><attr format="reference" name="searchViewStyle"/><attr format="dimension" name="listPreferredItemHeight"/><attr format="dimension" name="listPreferredItemHeightSmall"/><attr format="dimension" name="listPreferredItemHeightLarge"/><attr format="dimension" name="listPreferredItemPaddingLeft"/><attr format="dimension" name="listPreferredItemPaddingRight"/><attr format="reference" name="dropDownListViewStyle"/><attr format="reference" name="listPopupWindowStyle"/><attr format="reference" name="textAppearanceListItem"/><attr format="reference" name="textAppearanceListItemSmall"/><attr format="reference" name="panelBackground"/><attr format="dimension" name="panelMenuListWidth"/><attr format="reference" name="panelMenuListTheme"/><attr format="reference" name="listChoiceBackgroundIndicator"/><attr format="color" name="colorPrimary"/><attr format="color" name="colorPrimaryDark"/><attr format="color" name="colorAccent"/><attr format="color" name="colorControlNormal"/><attr format="color" name="colorControlActivated"/><attr format="color" name="colorControlHighlight"/><attr format="color" name="colorButtonNormal"/><attr format="color" name="colorSwitchThumbNormal"/><attr format="reference" name="controlBackground"/><attr format="color" name="colorBackgroundFloating"/><attr format="reference" name="alertDialogStyle"/><attr format="reference" name="alertDialogButtonGroupStyle"/><attr format="boolean" name="alertDialogCenterButtons"/><attr format="reference" name="alertDialogTheme"/><attr format="reference|color" name="textColorAlertDialogListItem"/><attr format="reference" name="buttonBarPositiveButtonStyle"/><attr format="reference" name="buttonBarNegativeButtonStyle"/><attr format="reference" name="buttonBarNeutralButtonStyle"/><attr format="reference" name="autoCompleteTextViewStyle"/><attr format="reference" name="buttonStyle"/><attr format="reference" name="buttonStyleSmall"/><attr format="reference" name="checkboxStyle"/><attr format="reference" name="checkedTextViewStyle"/><attr format="reference" name="editTextStyle"/><attr format="reference" name="radioButtonStyle"/><attr format="reference" name="ratingBarStyle"/><attr format="reference" name="ratingBarStyleIndicator"/><attr format="reference" name="ratingBarStyleSmall"/><attr format="reference" name="seekBarStyle"/><attr format="reference" name="spinnerStyle"/><attr format="reference" name="switchStyle"/><attr format="reference" name="listMenuViewStyle"/></declare-styleable>
-    <declare-styleable name="ButtonBarLayout"><attr format="boolean" name="allowStacking"/></declare-styleable>
-    <declare-styleable name="ColorStateListItem"><attr name="android:color"/><attr format="float" name="alpha"/><attr name="android:alpha"/></declare-styleable>
-    <declare-styleable name="CompoundButton"><attr name="android:button"/><attr format="color" name="buttonTint"/><attr name="buttonTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-        </attr></declare-styleable>
-    <declare-styleable name="DrawerArrowToggle"><attr format="color" name="color"/><attr format="boolean" name="spinBars"/><attr format="dimension" name="drawableSize"/><attr format="dimension" name="gapBetweenBars"/><attr format="dimension" name="arrowHeadLength"/><attr format="dimension" name="arrowShaftLength"/><attr format="dimension" name="barLength"/><attr format="dimension" name="thickness"/></declare-styleable>
-    <declare-styleable name="LinearLayoutCompat"><attr name="android:orientation"/><attr name="android:gravity"/><attr name="android:baselineAligned"/><attr name="android:baselineAlignedChildIndex"/><attr name="android:weightSum"/><attr format="boolean" name="measureWithLargestChild"/><attr name="divider"/><attr name="showDividers">
-            <flag name="none" value="0"/>
-            <flag name="beginning" value="1"/>
-            <flag name="middle" value="2"/>
-            <flag name="end" value="4"/>
-        </attr><attr format="dimension" name="dividerPadding"/></declare-styleable>
-    <declare-styleable name="LinearLayoutCompat_Layout"><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_weight"/><attr name="android:layout_gravity"/></declare-styleable>
-    <declare-styleable name="ListPopupWindow"><attr name="android:dropDownVerticalOffset"/><attr name="android:dropDownHorizontalOffset"/></declare-styleable>
-    <declare-styleable name="LoadingImageView"><attr name="imageAspectRatioAdjust">
-<enum name="none" value="0"/>
-
-<enum name="adjust_width" value="1"/>
-
-<enum name="adjust_height" value="2"/>
-
-</attr><attr format="float" name="imageAspectRatio"/><attr format="boolean" name="circleCrop"/></declare-styleable>
-    <declare-styleable name="MenuGroup"><attr name="android:id"/><attr name="android:menuCategory"/><attr name="android:orderInCategory"/><attr name="android:checkableBehavior"/><attr name="android:visible"/><attr name="android:enabled"/></declare-styleable>
-    <declare-styleable name="MenuItem"><attr name="android:id"/><attr name="android:menuCategory"/><attr name="android:orderInCategory"/><attr name="android:title"/><attr name="android:titleCondensed"/><attr name="android:icon"/><attr name="android:alphabeticShortcut"/><attr name="android:numericShortcut"/><attr name="android:checkable"/><attr name="android:checked"/><attr name="android:visible"/><attr name="android:enabled"/><attr name="android:onClick"/><attr name="showAsAction">
-            
-            <flag name="never" value="0"/>
-            
-            <flag name="ifRoom" value="1"/>
-            
-            <flag name="always" value="2"/>
-            
-            <flag name="withText" value="4"/>
-            
-            <flag name="collapseActionView" value="8"/>
-        </attr><attr format="reference" name="actionLayout"/><attr format="string" name="actionViewClass"/><attr format="string" name="actionProviderClass"/></declare-styleable>
-    <declare-styleable name="MenuView"><attr name="android:itemTextAppearance"/><attr name="android:horizontalDivider"/><attr name="android:verticalDivider"/><attr name="android:headerBackground"/><attr name="android:itemBackground"/><attr name="android:windowAnimationStyle"/><attr name="android:itemIconDisabledAlpha"/><attr format="boolean" name="preserveIconSpacing"/><attr format="reference" name="subMenuArrow"/></declare-styleable>
-    <declare-styleable name="PopupWindow"><attr format="boolean" name="overlapAnchor"/><attr name="android:popupBackground"/><attr name="android:popupAnimationStyle"/></declare-styleable>
-    <declare-styleable name="PopupWindowBackgroundState"><attr format="boolean" name="state_above_anchor"/></declare-styleable>
-    <declare-styleable name="RecycleListView"><attr format="dimension" name="paddingBottomNoButtons"/><attr format="dimension" name="paddingTopNoTitle"/></declare-styleable>
-    <declare-styleable name="SearchView"><attr format="reference" name="layout"/><attr format="boolean" name="iconifiedByDefault"/><attr name="android:maxWidth"/><attr format="string" name="queryHint"/><attr format="string" name="defaultQueryHint"/><attr name="android:imeOptions"/><attr name="android:inputType"/><attr format="reference" name="closeIcon"/><attr format="reference" name="goIcon"/><attr format="reference" name="searchIcon"/><attr format="reference" name="searchHintIcon"/><attr format="reference" name="voiceIcon"/><attr format="reference" name="commitIcon"/><attr format="reference" name="suggestionRowLayout"/><attr format="reference" name="queryBackground"/><attr format="reference" name="submitBackground"/><attr name="android:focusable"/></declare-styleable>
-    <declare-styleable name="SignInButton"><attr format="reference" name="buttonSize">
-<enum name="standard" value="0"/>
-
-<enum name="wide" value="1"/>
-
-<enum name="icon_only" value="2"/>
-
-</attr><attr format="reference" name="colorScheme">
-<enum name="dark" value="0"/>
-
-<enum name="light" value="1"/>
-
-<enum name="auto" value="2"/>
-
-</attr><attr format="reference|string" name="scopeUris"/></declare-styleable>
-    <declare-styleable name="Spinner"><attr name="android:prompt"/><attr name="popupTheme"/><attr name="android:popupBackground"/><attr name="android:dropDownWidth"/><attr name="android:entries"/></declare-styleable>
-    <declare-styleable name="SwitchCompat"><attr name="android:thumb"/><attr format="color" name="thumbTint"/><attr name="thumbTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-            
-            <enum name="add" value="16"/>
-        </attr><attr format="reference" name="track"/><attr format="color" name="trackTint"/><attr name="trackTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-            
-            <enum name="add" value="16"/>
-        </attr><attr name="android:textOn"/><attr name="android:textOff"/><attr format="dimension" name="thumbTextPadding"/><attr format="reference" name="switchTextAppearance"/><attr format="dimension" name="switchMinWidth"/><attr format="dimension" name="switchPadding"/><attr format="boolean" name="splitTrack"/><attr format="boolean" name="showText"/></declare-styleable>
-    <declare-styleable name="TextAppearance"><attr name="android:textSize"/><attr name="android:textColor"/><attr name="android:textColorHint"/><attr name="android:textStyle"/><attr name="android:typeface"/><attr name="textAllCaps"/><attr name="android:shadowColor"/><attr name="android:shadowDy"/><attr name="android:shadowDx"/><attr name="android:shadowRadius"/></declare-styleable>
-    <declare-styleable name="Toolbar"><attr format="reference" name="titleTextAppearance"/><attr format="reference" name="subtitleTextAppearance"/><attr name="title"/><attr name="subtitle"/><attr name="android:gravity"/><attr format="dimension" name="titleMargin"/><attr format="dimension" name="titleMarginStart"/><attr format="dimension" name="titleMarginEnd"/><attr format="dimension" name="titleMarginTop"/><attr format="dimension" name="titleMarginBottom"/><attr format="dimension" name="titleMargins"/><attr name="contentInsetStart"/><attr name="contentInsetEnd"/><attr name="contentInsetLeft"/><attr name="contentInsetRight"/><attr name="contentInsetStartWithNavigation"/><attr name="contentInsetEndWithActions"/><attr format="dimension" name="maxButtonHeight"/><attr name="buttonGravity">
-            
-            <flag name="top" value="0x30"/>
-            
-            <flag name="bottom" value="0x50"/>
-        </attr><attr format="reference" name="collapseIcon"/><attr format="string" name="collapseContentDescription"/><attr name="popupTheme"/><attr format="reference" name="navigationIcon"/><attr format="string" name="navigationContentDescription"/><attr name="logo"/><attr format="string" name="logoDescription"/><attr format="color" name="titleTextColor"/><attr format="color" name="subtitleTextColor"/><attr name="android:minHeight"/></declare-styleable>
-    <declare-styleable name="View"><attr format="dimension" name="paddingStart"/><attr format="dimension" name="paddingEnd"/><attr name="android:focusable"/><attr format="reference" name="theme"/><attr name="android:theme"/></declare-styleable>
-    <declare-styleable name="ViewBackgroundHelper"><attr name="android:background"/><attr format="color" name="backgroundTint"/><attr name="backgroundTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-        </attr></declare-styleable>
-    <declare-styleable name="ViewStubCompat"><attr name="android:layout"/><attr name="android:inflatedId"/><attr name="android:id"/></declare-styleable>
-    <dimen name="abc_action_bar_content_inset_material">16dp</dimen>
-    <dimen name="abc_action_bar_content_inset_with_nav">72dp</dimen>
-    <dimen name="abc_action_bar_default_height_material">56dp</dimen>
-    <dimen name="abc_action_bar_default_padding_end_material">0dp</dimen>
-    <dimen name="abc_action_bar_default_padding_start_material">0dp</dimen>
-    <dimen name="abc_action_bar_elevation_material">4dp</dimen>
-    <dimen name="abc_action_bar_icon_vertical_padding_material">16dp</dimen>
-    <dimen name="abc_action_bar_overflow_padding_end_material">10dp</dimen>
-    <dimen name="abc_action_bar_overflow_padding_start_material">6dp</dimen>
-    <dimen name="abc_action_bar_progress_bar_size">40dp</dimen>
-    <dimen name="abc_action_bar_stacked_max_height">48dp</dimen>
-    <dimen name="abc_action_bar_stacked_tab_max_width">180dp</dimen>
-    <dimen name="abc_action_bar_subtitle_bottom_margin_material">5dp</dimen>
-    <dimen name="abc_action_bar_subtitle_top_margin_material">-3dp</dimen>
-    <dimen name="abc_action_button_min_height_material">48dp</dimen>
-    <dimen name="abc_action_button_min_width_material">48dp</dimen>
-    <dimen name="abc_action_button_min_width_overflow_material">36dp</dimen>
-    <dimen name="abc_alert_dialog_button_bar_height">48dp</dimen>
-    <dimen name="abc_button_inset_horizontal_material">@dimen/abc_control_inset_material</dimen>
-    <dimen name="abc_button_inset_vertical_material">6dp</dimen>
-    <dimen name="abc_button_padding_horizontal_material">8dp</dimen>
-    <dimen name="abc_button_padding_vertical_material">@dimen/abc_control_padding_material</dimen>
-    <dimen name="abc_cascading_menus_min_smallest_width">720dp</dimen>
-    <dimen name="abc_config_prefDialogWidth">320dp</dimen>
-    <dimen name="abc_control_corner_material">2dp</dimen>
-    <dimen name="abc_control_inset_material">4dp</dimen>
-    <dimen name="abc_control_padding_material">4dp</dimen>
-    <item name="abc_dialog_fixed_height_major" type="dimen">80%</item>
-    <item name="abc_dialog_fixed_height_minor" type="dimen">100%</item>
-    <item name="abc_dialog_fixed_width_major" type="dimen">320dp</item>
-    <item name="abc_dialog_fixed_width_minor" type="dimen">320dp</item>
-    <dimen name="abc_dialog_list_padding_bottom_no_buttons">8dp</dimen>
-    <dimen name="abc_dialog_list_padding_top_no_title">8dp</dimen>
-    <item name="abc_dialog_min_width_major" type="dimen">65%</item>
-    <item name="abc_dialog_min_width_minor" type="dimen">95%</item>
-    <dimen name="abc_dialog_padding_material">24dp</dimen>
-    <dimen name="abc_dialog_padding_top_material">18dp</dimen>
-    <dimen name="abc_dialog_title_divider_material">8dp</dimen>
-    <item format="float" name="abc_disabled_alpha_material_dark" type="dimen">0.30</item>
-    <item format="float" name="abc_disabled_alpha_material_light" type="dimen">0.26</item>
-    <dimen name="abc_dropdownitem_icon_width">32dip</dimen>
-    <dimen name="abc_dropdownitem_text_padding_left">8dip</dimen>
-    <dimen name="abc_dropdownitem_text_padding_right">8dip</dimen>
-    <dimen name="abc_edit_text_inset_bottom_material">7dp</dimen>
-    <dimen name="abc_edit_text_inset_horizontal_material">4dp</dimen>
-    <dimen name="abc_edit_text_inset_top_material">10dp</dimen>
-    <dimen name="abc_floating_window_z">16dp</dimen>
-    <dimen name="abc_list_item_padding_horizontal_material">@dimen/abc_action_bar_content_inset_material</dimen>
-    <dimen name="abc_panel_menu_list_width">296dp</dimen>
-    <dimen name="abc_progress_bar_height_material">4dp</dimen>
-    <dimen name="abc_search_view_preferred_height">48dip</dimen>
-    <dimen name="abc_search_view_preferred_width">320dip</dimen>
-    <dimen name="abc_seekbar_track_background_height_material">2dp</dimen>
-    <dimen name="abc_seekbar_track_progress_height_material">2dp</dimen>
-    <dimen name="abc_select_dialog_padding_start_material">20dp</dimen>
-    <dimen name="abc_switch_padding">3dp</dimen>
-    <dimen name="abc_text_size_body_1_material">14sp</dimen>
-    <dimen name="abc_text_size_body_2_material">14sp</dimen>
-    <dimen name="abc_text_size_button_material">14sp</dimen>
-    <dimen name="abc_text_size_caption_material">12sp</dimen>
-    <dimen name="abc_text_size_display_1_material">34sp</dimen>
-    <dimen name="abc_text_size_display_2_material">45sp</dimen>
-    <dimen name="abc_text_size_display_3_material">56sp</dimen>
-    <dimen name="abc_text_size_display_4_material">112sp</dimen>
-    <dimen name="abc_text_size_headline_material">24sp</dimen>
-    <dimen name="abc_text_size_large_material">22sp</dimen>
-    <dimen name="abc_text_size_medium_material">18sp</dimen>
-    <dimen name="abc_text_size_menu_header_material">14sp</dimen>
-    <dimen name="abc_text_size_menu_material">16sp</dimen>
-    <dimen name="abc_text_size_small_material">14sp</dimen>
-    <dimen name="abc_text_size_subhead_material">16sp</dimen>
-    <dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen>
-    <dimen name="abc_text_size_title_material">20sp</dimen>
-    <dimen name="abc_text_size_title_material_toolbar">20dp</dimen>
-    <dimen name="activity_horizontal_margin">16dp</dimen>
-    <dimen name="activity_vertical_margin">16dp</dimen>
-    <item format="float" name="disabled_alpha_material_dark" type="dimen">0.30</item>
-    <item format="float" name="disabled_alpha_material_light" type="dimen">0.26</item>
-    <item format="float" name="highlight_alpha_material_colored" type="dimen">0.26</item>
-    <item format="float" name="highlight_alpha_material_dark" type="dimen">0.20</item>
-    <item format="float" name="highlight_alpha_material_light" type="dimen">0.12</item>
-    <item format="float" name="hint_alpha_material_dark" type="dimen">0.50</item>
-    <item format="float" name="hint_alpha_material_light" type="dimen">0.38</item>
-    <item format="float" name="hint_pressed_alpha_material_dark" type="dimen">0.70</item>
-    <item format="float" name="hint_pressed_alpha_material_light" type="dimen">0.54</item>
-    <dimen name="notification_action_icon_size">32dp</dimen>
-    <dimen name="notification_action_text_size">13sp</dimen>
-    <dimen name="notification_big_circle_margin">12dp</dimen>
-    <dimen name="notification_content_margin_start">8dp</dimen>
-    <dimen name="notification_large_icon_height">64dp</dimen>
-    <dimen name="notification_large_icon_width">64dp</dimen>
-    <dimen name="notification_main_column_padding_top">10dp</dimen>
-    <dimen name="notification_media_narrow_margin">@dimen/notification_content_margin_start</dimen>
-    <dimen name="notification_right_icon_size">16dp</dimen>
-    <dimen name="notification_right_side_padding_top">2dp</dimen>
-    <dimen name="notification_small_icon_background_padding">3dp</dimen>
-    <dimen name="notification_small_icon_size_as_large">24dp</dimen>
-    <dimen name="notification_subtext_size">13sp</dimen>
-    <dimen name="notification_top_pad">10dp</dimen>
-    <dimen name="notification_top_pad_large_text">5dp</dimen>
-    <drawable name="notification_template_icon_bg">#3333B5E5</drawable>
-    <drawable name="notification_template_icon_low_bg">#0cffffff</drawable>
-    <item name="action_bar_activity_content" type="id"/>
-    <item name="action_bar_spinner" type="id"/>
-    <item name="action_menu_divider" type="id"/>
-    <item name="action_menu_presenter" type="id"/>
-    <item name="crash_reporting_present" type="id"/>
-    <item name="home" type="id"/>
-    <item name="progress_circular" type="id"/>
-    <item name="progress_horizontal" type="id"/>
-    <item name="split_action_bar" type="id"/>
-    <item name="up" type="id"/>
-    <integer name="abc_config_activityDefaultDur">220</integer>
-    <integer name="abc_config_activityShortDur">150</integer>
-    <integer name="cancel_button_image_alpha">127</integer>
-    <integer name="google_play_services_version">10298000</integer>
-    <integer name="status_bar_notification_info_maxnum">999</integer>
-    <string name="abc_action_bar_home_description">Navigate home</string>
-    <string name="abc_action_bar_home_description_format">%1$s, %2$s</string>
-    <string name="abc_action_bar_home_subtitle_description_format">%1$s, %2$s, %3$s</string>
-    <string name="abc_action_bar_up_description">Navigate up</string>
-    <string name="abc_action_menu_overflow_description">More options</string>
-    <string name="abc_action_mode_done">Done</string>
-    <string name="abc_activity_chooser_view_see_all">See all</string>
-    <string name="abc_activitychooserview_choose_application">Choose an app</string>
-    <string name="abc_capital_off">OFF</string>
-    <string name="abc_capital_on">ON</string>
-    <string name="abc_font_family_body_1_material">sans-serif</string>
-    <string name="abc_font_family_body_2_material">sans-serif-medium</string>
-    <string name="abc_font_family_button_material">sans-serif-medium</string>
-    <string name="abc_font_family_caption_material">sans-serif</string>
-    <string name="abc_font_family_display_1_material">sans-serif</string>
-    <string name="abc_font_family_display_2_material">sans-serif</string>
-    <string name="abc_font_family_display_3_material">sans-serif</string>
-    <string name="abc_font_family_display_4_material">sans-serif-light</string>
-    <string name="abc_font_family_headline_material">sans-serif</string>
-    <string name="abc_font_family_menu_material">sans-serif</string>
-    <string name="abc_font_family_subhead_material">sans-serif</string>
-    <string name="abc_font_family_title_material">sans-serif-medium</string>
-    <string name="abc_search_hint">Search…</string>
-    <string name="abc_searchview_description_clear">Clear query</string>
-    <string name="abc_searchview_description_query">Search query</string>
-    <string name="abc_searchview_description_search">Search</string>
-    <string name="abc_searchview_description_submit">Submit query</string>
-    <string name="abc_searchview_description_voice">Voice search</string>
-    <string name="abc_shareactionprovider_share_with">Share with</string>
-    <string name="abc_shareactionprovider_share_with_application">Share with %s</string>
-    <string name="abc_toolbar_collapse_description">Collapse</string>
-    <string name="com.crashlytics.android.build_id" ns1:ignore="UnusedResources,TypographyDashes" translatable="false">630ae148-5da2-464a-abf5-bd69b290d827</string>
-    <string msgid="2523291102206661146" name="common_google_play_services_enable_button">Enable</string>
-    <string msgid="227660514972886228" name="common_google_play_services_enable_text"><ns2:g id="app_name">%1$s</ns2:g> won\'t work unless you enable Google Play services.</string>
-    <string msgid="5122002158466380389" name="common_google_play_services_enable_title">Enable Google Play services</string>
-    <string msgid="7153882981874058840" name="common_google_play_services_install_button">Install</string>
-    <string name="common_google_play_services_install_text"><ns2:g id="app_name">%1$s</ns2:g> won\'t run without Google Play services, which are missing from your device.</string>
-    <string msgid="7215213145546190223" name="common_google_play_services_install_title">Get Google Play services</string>
-    <string name="common_google_play_services_notification_ticker">Google Play services error</string>
-    <string name="common_google_play_services_unknown_issue"><ns2:g id="app_name">%1$s</ns2:g> is having trouble with Google Play services. Please try again.</string>
-    <string name="common_google_play_services_unsupported_text"><ns2:g id="app_name">%1$s</ns2:g> won\'t run without Google Play services, which are not supported by your device.</string>
-    <string msgid="6556509956452265614" name="common_google_play_services_update_button">Update</string>
-    <string msgid="9053896323427875356" name="common_google_play_services_update_text"><ns2:g id="app_name">%1$s</ns2:g> won\'t run unless you update Google Play services.</string>
-    <string msgid="6006316683626838685" name="common_google_play_services_update_title">Update Google Play services</string>
-    <string name="common_google_play_services_updating_text"><ns2:g id="app_name">%1$s</ns2:g> won\'t run without Google Play services, which are currently updating.</string>
-    <string name="common_google_play_services_wear_update_text">New version of Google Play services needed. It will update itself shortly.</string>
-    <string name="common_open_on_phone">Open on phone</string>
-    <string name="common_signin_button_text">Sign in</string>
-    <string name="common_signin_button_text_long">Sign in with Google</string>
-    <string name="default_web_client_id" translatable="false">586069884887-l6b3b2irohs39s2atqa3b9be8c0a120f.apps.googleusercontent.com</string>
-    <string name="fatal_error_msg">Your application encountered a fatal error and cannot continue.</string>
-    <string name="firebase_database_url" translatable="false">https://ucom-1349.firebaseio.com</string>
-    <string name="gcm_defaultSenderId" translatable="false">586069884887</string>
-    <string name="google_api_key" translatable="false">AIzaSyASPowC1sMH_7wXsYTIlrDyrCoDtzm4TzY</string>
-    <string name="google_app_id" translatable="false">1:586069884887:android:10894ab106465b76</string>
-    <string name="google_crash_reporting_api_key" translatable="false">AIzaSyASPowC1sMH_7wXsYTIlrDyrCoDtzm4TzY</string>
-    <string name="google_storage_bucket" translatable="false">ucom-1349.appspot.com</string>
-    <string name="ministro_needed_msg">This application requires Ministro service. Would you like to install it?</string>
-    <string name="ministro_not_found_msg">Can\'t find Ministro service.\nThe application can\'t start.</string>
-    <string name="search_menu_title">Search</string>
-    <string name="status_bar_notification_info_overflow">999+</string>
-    <string name="unsupported_android_version">Unsupported Android version.</string>
-    <style name="AlertDialog.AppCompat" parent="Base.AlertDialog.AppCompat"/>
-    <style name="AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat.Light"/>
-    <style name="Animation.AppCompat.Dialog" parent="Base.Animation.AppCompat.Dialog"/>
-    <style name="Animation.AppCompat.DropDownUp" parent="Base.Animation.AppCompat.DropDownUp"/>
-    <style name="Base.AlertDialog.AppCompat" parent="android:Widget">
-        <item name="android:layout">@layout/abc_alert_dialog_material</item>
-        <item name="listLayout">@layout/abc_select_dialog_material</item>
-        <item name="listItemLayout">@layout/select_dialog_item_material</item>
-        <item name="multiChoiceItemLayout">@layout/select_dialog_multichoice_material</item>
-        <item name="singleChoiceItemLayout">@layout/select_dialog_singlechoice_material</item>
-    </style>
-    <style name="Base.AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat"/>
-    <style name="Base.Animation.AppCompat.Dialog" parent="android:Animation">
-        <item name="android:windowEnterAnimation">@anim/abc_popup_enter</item>
-        <item name="android:windowExitAnimation">@anim/abc_popup_exit</item>
-    </style>
-    <style name="Base.Animation.AppCompat.DropDownUp" parent="android:Animation">
-        <item name="android:windowEnterAnimation">@anim/abc_grow_fade_in_from_bottom</item>
-        <item name="android:windowExitAnimation">@anim/abc_shrink_fade_out_from_bottom</item>
-    </style>
-    <style name="Base.DialogWindowTitle.AppCompat" parent="android:Widget">
-        <item name="android:maxLines">1</item>
-        <item name="android:scrollHorizontally">true</item>
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Title</item>
-    </style>
-    <style name="Base.DialogWindowTitleBackground.AppCompat" parent="android:Widget">
-        <item name="android:background">@null</item>
-        <item name="android:paddingLeft">?attr/dialogPreferredPadding</item>
-        <item name="android:paddingRight">?attr/dialogPreferredPadding</item>
-        <item name="android:paddingTop">@dimen/abc_dialog_padding_top_material</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance">
-        <item name="android:textColor">?android:textColorPrimary</item>
-        <item name="android:textColorHint">?android:textColorHint</item>
-        <item name="android:textColorHighlight">?android:textColorHighlight</item>
-        <item name="android:textColorLink">?android:textColorLink</item>
-        <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Body1">
-        <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Body2">
-        <item name="android:textSize">@dimen/abc_text_size_body_2_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Button">
-        <item name="android:textSize">@dimen/abc_text_size_button_material</item>
-        <item name="textAllCaps">true</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Caption">
-        <item name="android:textSize">@dimen/abc_text_size_caption_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Display1">
-        <item name="android:textSize">@dimen/abc_text_size_display_1_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Display2">
-        <item name="android:textSize">@dimen/abc_text_size_display_2_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Display3">
-        <item name="android:textSize">@dimen/abc_text_size_display_3_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Display4">
-        <item name="android:textSize">@dimen/abc_text_size_display_4_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Headline">
-        <item name="android:textSize">@dimen/abc_text_size_headline_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Large">
-        <item name="android:textSize">@dimen/abc_text_size_large_material</item>
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Large.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Medium">
-        <item name="android:textSize">@dimen/abc_text_size_medium_material</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Medium.Inverse">
-        <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Menu">
-        <item name="android:textSize">@dimen/abc_text_size_menu_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.SearchResult" parent="">
-        <item name="android:textStyle">normal</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-        <item name="android:textColorHint">?android:textColorHint</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
-        <item name="android:textSize">14sp</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.SearchResult.Title">
-        <item name="android:textSize">18sp</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Small">
-        <item name="android:textSize">@dimen/abc_text_size_small_material</item>
-        <item name="android:textColor">?android:attr/textColorTertiary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Small.Inverse">
-        <item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Subhead">
-        <item name="android:textSize">@dimen/abc_text_size_subhead_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Subhead.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Title">
-        <item name="android:textSize">@dimen/abc_text_size_title_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Title.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="TextAppearance.AppCompat.Button">
-        <item name="android:textColor">?attr/actionMenuTextColor</item>
-        <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="TextAppearance.AppCompat.Subhead">
-        <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="TextAppearance.AppCompat.Subhead.Inverse">
-        <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
-        <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="TextAppearance.AppCompat.Title">
-        <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="TextAppearance.AppCompat.Title.Inverse">
-        <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button" parent="TextAppearance.AppCompat.Button"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button">
-        <item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button.Colored">
-        <item name="android:textColor">@color/abc_btn_colored_text_material</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="TextAppearance.AppCompat.Button">
-        <item name="android:textColor">?android:textColorPrimaryInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.DropDownItem" parent="android:TextAppearance.Small">
-        <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat">
-        <item name="android:textSize">@dimen/abc_text_size_menu_header_material</item>
-        <item name="android:textColor">?attr/colorAccent</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Menu"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Menu"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="TextAppearance.AppCompat.Button"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="TextAppearance.AppCompat.Menu"/>
-    <style name="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="android:TextAppearance.Medium">
-        <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
-    </style>
-    <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle">
-    </style>
-    <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title">
-    </style>
-    <style name="Base.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
-    </style>
-    <style name="Base.Theme.AppCompat.CompactMenu" parent="">
-        <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item>
-        <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
-        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog"/>
-    <style name="Base.Theme.AppCompat.Dialog.Alert">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Dialog.FixedSize">
-        <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
-        <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
-        <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
-        <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Dialog.MinWidth">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Theme.AppCompat"/>
-    <style name="Base.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
-    </style>
-    <style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light">
-        <item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Light</item>
-        <item name="actionBarWidgetTheme">@null</item>
-        <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
-
-        
-        <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
-
-        <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
-        <item name="colorPrimary">@color/primary_material_dark</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog"/>
-    <style name="Base.Theme.AppCompat.Light.Dialog.Alert">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Light.Dialog.FixedSize">
-        <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
-        <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
-        <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
-        <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Light.Dialog.MinWidth">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Theme.AppCompat.Light"/>
-    <style name="Base.ThemeOverlay.AppCompat" parent="Platform.ThemeOverlay.AppCompat"/>
-    <style name="Base.ThemeOverlay.AppCompat.ActionBar">
-        <item name="colorControlNormal">?android:attr/textColorPrimary</item>
-        <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
-    </style>
-    <style name="Base.ThemeOverlay.AppCompat.Dark" parent="Platform.ThemeOverlay.AppCompat.Dark">
-        <item name="android:windowBackground">@color/background_material_dark</item>
-        <item name="android:colorForeground">@color/foreground_material_dark</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
-        <item name="android:colorBackground">@color/background_material_dark</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
-        <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
-
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
-
-        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
-        <item name="colorControlHighlight">@color/ripple_material_dark</item>
-        <item name="colorButtonNormal">@color/button_material_dark</item>
-        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
-
-        
-        <item name="isLightTheme">false</item>
-    </style>
-    <style name="Base.ThemeOverlay.AppCompat.Dark.ActionBar">
-        <item name="colorControlNormal">?android:attr/textColorPrimary</item>
-        <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
-    </style>
-    <style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog"/>
-    <style name="Base.ThemeOverlay.AppCompat.Dialog.Alert">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.ThemeOverlay.AppCompat.Light" parent="Platform.ThemeOverlay.AppCompat.Light">
-        <item name="android:windowBackground">@color/background_material_light</item>
-        <item name="android:colorForeground">@color/foreground_material_light</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
-        <item name="android:colorBackground">@color/background_material_light</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
-        <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
-
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
-        <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
-
-        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
-        <item name="colorControlHighlight">@color/ripple_material_light</item>
-        <item name="colorButtonNormal">@color/button_material_light</item>
-        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
-
-        
-        <item name="isLightTheme">true</item>
-    </style>
-    <style name="Base.V7.Theme.AppCompat" parent="Platform.AppCompat">
-        <item name="windowNoTitle">false</item>
-        <item name="windowActionBar">true</item>
-        <item name="windowActionBarOverlay">false</item>
-        <item name="windowActionModeOverlay">false</item>
-        <item name="actionBarPopupTheme">@null</item>
-
-        <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
-
-        
-        <item name="isLightTheme">false</item>
-
-        <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
-        <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
-        <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
-
-        <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
-        <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
-
-        
-        <item name="actionBarTabStyle">@style/Widget.AppCompat.ActionBar.TabView</item>
-        <item name="actionBarTabBarStyle">@style/Widget.AppCompat.ActionBar.TabBar</item>
-        <item name="actionBarTabTextStyle">@style/Widget.AppCompat.ActionBar.TabText</item>
-        <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
-        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
-        <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.PopupMenu.Overflow</item>
-        <item name="actionBarStyle">@style/Widget.AppCompat.ActionBar.Solid</item>
-        <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
-        <item name="actionBarWidgetTheme">@null</item>
-        <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
-        <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
-        <item name="actionBarDivider">?attr/dividerVertical</item>
-        <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
-        <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
-        <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
-
-        
-        <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
-
-        
-        <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
-        <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
-        <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
-        <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
-        <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
-
-        <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
-        <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
-        <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
-        <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
-        <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
-
-        
-        <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
-        <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
-        <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
-        <item name="android:panelBackground">@android:color/transparent</item>
-        <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
-
-        
-        <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
-        <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
-        <item name="listPreferredItemHeight">64dp</item>
-        <item name="listPreferredItemHeightSmall">48dp</item>
-        <item name="listPreferredItemHeightLarge">80dp</item>
-        <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
-        <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
-
-        
-        <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
-        <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
-        <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
-
-        
-        <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-        <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
-
-        
-        <item name="popupMenuStyle">@style/Widget.AppCompat.PopupMenu</item>
-        <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item>
-        <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item>
-        <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
-        <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
-        <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
-        <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
-
-        
-        <item name="searchViewStyle">@style/Widget.AppCompat.SearchView</item>
-        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-        <item name="textColorSearchUrl">@color/abc_search_url_text</item>
-        <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
-        <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
-
-        
-        <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
-
-        
-        <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
-        <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
-
-        <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
-        <item name="editTextBackground">@drawable/abc_edit_text_material</item>
-        <item name="editTextColor">?android:attr/textColorPrimary</item>
-        <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
-
-        
-        <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
-        <item name="colorPrimary">@color/primary_material_dark</item>
-        <item name="colorAccent">@color/accent_material_dark</item>
-
-        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
-        <item name="colorControlActivated">?attr/colorAccent</item>
-        <item name="colorControlHighlight">@color/ripple_material_dark</item>
-        <item name="colorButtonNormal">@color/button_material_dark</item>
-        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
-        <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
-
-        <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
-
-        <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
-        <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
-        <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
-
-        <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
-        <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
-        <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
-        <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
-
-        
-        <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
-        <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
-        <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
-
-        <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
-
-        <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
-        <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
-        <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
-        <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
-        <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
-
-        
-        <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
-        <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
-
-        <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
-        <item name="alertDialogStyle">@style/AlertDialog.AppCompat</item>
-        <item name="alertDialogCenterButtons">false</item>
-        <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
-        <item name="listDividerAlertDialog">@null</item>
-
-        
-        <item name="windowFixedWidthMajor">@null</item>
-        <item name="windowFixedWidthMinor">@null</item>
-        <item name="windowFixedHeightMajor">@null</item>
-        <item name="windowFixedHeightMinor">@null</item>
-    </style>
-    <style name="Base.V7.Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat">
-        <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
-        <item name="android:colorBackgroundCacheHint">@null</item>
-
-        <item name="android:windowFrame">@null</item>
-        <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
-        <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
-        <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
-        <item name="android:windowIsFloating">true</item>
-        <item name="android:backgroundDimEnabled">true</item>
-        <item name="android:windowContentOverlay">@null</item>
-        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
-        <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
-
-        <item name="windowActionBar">false</item>
-        <item name="windowActionModeOverlay">true</item>
-
-        <item name="listPreferredItemPaddingLeft">24dip</item>
-        <item name="listPreferredItemPaddingRight">24dip</item>
-
-        <item name="android:listDivider">@null</item>
-    </style>
-    <style name="Base.V7.Theme.AppCompat.Light" parent="Platform.AppCompat.Light">
-        <item name="windowNoTitle">false</item>
-        <item name="windowActionBar">true</item>
-        <item name="windowActionBarOverlay">false</item>
-        <item name="windowActionModeOverlay">false</item>
-        <item name="actionBarPopupTheme">@null</item>
-
-        <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
-
-        
-        <item name="isLightTheme">true</item>
-
-        <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
-        <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
-        <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
-
-        <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
-        <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
-
-        
-        <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView</item>
-        <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar</item>
-        <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText</item>
-        <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
-        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
-        <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.Light.PopupMenu.Overflow</item>
-        <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid</item>
-        <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
-        <item name="actionBarWidgetTheme">@null</item>
-        <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
-        <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
-        <item name="actionBarDivider">?attr/dividerVertical</item>
-        <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
-        <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
-        <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
-
-        
-        <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
-        <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
-        <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
-        <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
-        <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
-
-        <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
-        <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
-        <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
-        <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
-        <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
-
-        
-        <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
-
-        
-        <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
-        <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
-        <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
-        <item name="android:panelBackground">@android:color/transparent</item>
-        <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item>
-
-        
-        <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
-        <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
-        <item name="listPreferredItemHeight">64dp</item>
-        <item name="listPreferredItemHeightSmall">48dp</item>
-        <item name="listPreferredItemHeightLarge">80dp</item>
-        <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
-        <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
-
-        
-        <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
-        <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
-        <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
-
-        
-        <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-        <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
-
-        
-        <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item>
-        <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item>
-        <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item>
-        <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
-        <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
-        <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
-        <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
-
-        
-        <item name="searchViewStyle">@style/Widget.AppCompat.Light.SearchView</item>
-        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-        <item name="textColorSearchUrl">@color/abc_search_url_text</item>
-        <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
-        <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
-
-        
-        <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
-
-        
-        <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
-        <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
-
-        <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
-        <item name="editTextBackground">@drawable/abc_edit_text_material</item>
-        <item name="editTextColor">?android:attr/textColorPrimary</item>
-        <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
-
-        
-        <item name="colorPrimaryDark">@color/primary_dark_material_light</item>
-        <item name="colorPrimary">@color/primary_material_light</item>
-        <item name="colorAccent">@color/accent_material_light</item>
-
-        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
-        <item name="colorControlActivated">?attr/colorAccent</item>
-        <item name="colorControlHighlight">@color/ripple_material_light</item>
-        <item name="colorButtonNormal">@color/button_material_light</item>
-        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
-        <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
-
-        <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
-
-        <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
-        <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
-        <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
-
-        <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
-        <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
-        <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
-        <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
-
-        
-        <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
-        <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
-        <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
-
-        <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
-
-        <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
-        <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
-        <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
-        <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
-        <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
-
-        
-        <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
-        <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
-
-        <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
-        <item name="alertDialogStyle">@style/AlertDialog.AppCompat.Light</item>
-        <item name="alertDialogCenterButtons">false</item>
-        <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
-        <item name="listDividerAlertDialog">@null</item>
-
-        
-        <item name="windowFixedWidthMajor">@null</item>
-        <item name="windowFixedWidthMinor">@null</item>
-        <item name="windowFixedHeightMajor">@null</item>
-        <item name="windowFixedHeightMinor">@null</item>
-    </style>
-    <style name="Base.V7.Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light">
-        <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
-        <item name="android:colorBackgroundCacheHint">@null</item>
-
-        <item name="android:windowFrame">@null</item>
-        <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
-        <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
-        <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
-        <item name="android:windowIsFloating">true</item>
-        <item name="android:backgroundDimEnabled">true</item>
-        <item name="android:windowContentOverlay">@null</item>
-        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
-        <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
-
-        <item name="windowActionBar">false</item>
-        <item name="windowActionModeOverlay">true</item>
-
-        <item name="listPreferredItemPaddingLeft">24dip</item>
-        <item name="listPreferredItemPaddingRight">24dip</item>
-
-        <item name="android:listDivider">@null</item>
-    </style>
-    <style name="Base.V7.ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat">
-        <item name="android:colorBackgroundCacheHint">@null</item>
-        <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
-
-        <item name="android:windowFrame">@null</item>
-        <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
-        <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
-        <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
-        <item name="android:windowIsFloating">true</item>
-        <item name="android:backgroundDimEnabled">true</item>
-        <item name="android:windowContentOverlay">@null</item>
-        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
-        <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
-
-        <item name="windowActionBar">false</item>
-        <item name="windowActionModeOverlay">true</item>
-
-        <item name="listPreferredItemPaddingLeft">24dip</item>
-        <item name="listPreferredItemPaddingRight">24dip</item>
-
-        <item name="android:listDivider">@null</item>
-
-        <item name="windowFixedWidthMajor">@null</item>
-        <item name="windowFixedWidthMinor">@null</item>
-        <item name="windowFixedHeightMajor">@null</item>
-        <item name="windowFixedHeightMinor">@null</item>
-    </style>
-    <style name="Base.V7.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.AutoCompleteTextView">
-        <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
-        <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
-        <item name="android:background">?attr/editTextBackground</item>
-        <item name="android:textColor">?attr/editTextColor</item>
-        <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
-    </style>
-    <style name="Base.V7.Widget.AppCompat.EditText" parent="android:Widget.EditText">
-        <item name="android:background">?attr/editTextBackground</item>
-        <item name="android:textColor">?attr/editTextColor</item>
-        <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar" parent="">
-        <item name="displayOptions">showTitle</item>
-        <item name="divider">?attr/dividerVertical</item>
-        <item name="height">?attr/actionBarSize</item>
-
-        <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item>
-        <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle</item>
-
-        <item name="background">@null</item>
-        <item name="backgroundStacked">@null</item>
-        <item name="backgroundSplit">@null</item>
-
-        <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
-        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
-
-        <item name="android:gravity">center_vertical</item>
-        <item name="contentInsetStart">@dimen/abc_action_bar_content_inset_material</item>
-        <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
-        <item name="contentInsetEnd">@dimen/abc_action_bar_content_inset_material</item>
-        <item name="elevation">@dimen/abc_action_bar_elevation_material</item>
-        <item name="popupTheme">?attr/actionBarPopupTheme</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar.Solid">
-        <item name="background">?attr/colorPrimary</item>
-        <item name="backgroundStacked">?attr/colorPrimary</item>
-        <item name="backgroundSplit">?attr/colorPrimary</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar.TabBar" parent="">
-        <item name="divider">?attr/actionBarDivider</item>
-        <item name="showDividers">middle</item>
-        <item name="dividerPadding">8dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar.TabText" parent="">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
-        <item name="android:textSize">12sp</item>
-        <item name="android:textStyle">bold</item>
-        <item name="android:ellipsize">marquee</item>
-        <item name="android:maxLines">2</item>
-        <item name="android:maxWidth">180dp</item>
-        <item name="textAllCaps">true</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar.TabView" parent="">
-        <item name="android:background">@drawable/abc_tab_indicator_material</item>
-        <item name="android:gravity">center_horizontal</item>
-        <item name="android:paddingLeft">16dip</item>
-        <item name="android:paddingRight">16dip</item>
-        <item name="android:layout_width">0dip</item>
-        <item name="android:layout_weight">1</item>
-        <item name="android:minWidth">80dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionButton" parent="RtlUnderlay.Widget.AppCompat.ActionButton">
-        <item name="android:background">?attr/actionBarItemBackground</item>
-        <item name="android:minWidth">@dimen/abc_action_button_min_width_material</item>
-        <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
-        <item name="android:scaleType">center</item>
-        <item name="android:gravity">center</item>
-        <item name="android:maxLines">2</item>
-        <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionButton.CloseMode">
-        <item name="android:background">?attr/controlBackground</item>
-        <item name="android:minWidth">56dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow">
-        <item name="srcCompat">@drawable/abc_ic_menu_overflow_material</item>
-        <item name="android:background">?attr/actionBarItemBackground</item>
-        <item name="android:contentDescription">@string/abc_action_menu_overflow_description</item>
-        <item name="android:minWidth">@dimen/abc_action_button_min_width_overflow_material</item>
-        <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionMode" parent="">
-        <item name="background">?attr/actionModeBackground</item>
-        <item name="backgroundSplit">?attr/actionModeSplitBackground</item>
-        <item name="height">?attr/actionBarSize</item>
-        <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Title</item>
-        <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle</item>
-        <item name="closeItemLayout">@layout/abc_action_mode_close_item_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActivityChooserView" parent="">
-        <item name="android:gravity">center</item>
-        <item name="android:background">@drawable/abc_ab_share_pack_mtrl_alpha</item>
-        <item name="divider">?attr/dividerVertical</item>
-        <item name="showDividers">middle</item>
-        <item name="dividerPadding">6dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="Base.V7.Widget.AppCompat.AutoCompleteTextView"/>
-    <style name="Base.Widget.AppCompat.Button" parent="android:Widget">
-        <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
-        <item name="android:textAppearance">?android:attr/textAppearanceButton</item>
-        <item name="android:minHeight">48dip</item>
-        <item name="android:minWidth">88dip</item>
-        <item name="android:focusable">true</item>
-        <item name="android:clickable">true</item>
-        <item name="android:gravity">center_vertical|center_horizontal</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.Borderless">
-        <item name="android:background">@drawable/abc_btn_borderless_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.Borderless.Colored">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Widget.AppCompat.Button.Borderless.Colored">
-        <item name="android:minWidth">64dp</item>
-        <item name="android:minHeight">@dimen/abc_alert_dialog_button_bar_height</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.Colored">
-        <item name="android:background">@drawable/abc_btn_colored_material</item>
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Colored</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.Small">
-        <item name="android:minHeight">48dip</item>
-        <item name="android:minWidth">48dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget">
-        <item name="android:background">@null</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ButtonBar.AlertDialog"/>
-    <style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.CompoundButton.CheckBox">
-        <item name="android:button">?android:attr/listChoiceIndicatorMultiple</item>
-        <item name="android:background">?attr/controlBackground</item>
-    </style>
-    <style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.CompoundButton.RadioButton">
-        <item name="android:button">?android:attr/listChoiceIndicatorSingle</item>
-        <item name="android:background">?attr/controlBackground</item>
-    </style>
-    <style name="Base.Widget.AppCompat.CompoundButton.Switch" parent="android:Widget.CompoundButton">
-        <item name="track">@drawable/abc_switch_track_mtrl_alpha</item>
-        <item name="android:thumb">@drawable/abc_switch_thumb_material</item>
-        <item name="switchTextAppearance">@style/TextAppearance.AppCompat.Widget.Switch</item>
-        <item name="android:background">?attr/controlBackground</item>
-        <item name="showText">false</item>
-        <item name="switchPadding">@dimen/abc_switch_padding</item>
-        <item name="android:textOn">@string/abc_capital_on</item>
-        <item name="android:textOff">@string/abc_capital_off</item>
-    </style>
-    <style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
-        <item name="barLength">18dp</item>
-        <item name="gapBetweenBars">3dp</item>
-        <item name="drawableSize">24dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.DrawerArrowToggle.Common" parent="">
-        <item name="color">?android:attr/textColorSecondary</item>
-        <item name="spinBars">true</item>
-        <item name="thickness">2dp</item>
-        <item name="arrowShaftLength">16dp</item>
-        <item name="arrowHeadLength">8dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.DropDownItem</item>
-        <item name="android:paddingLeft">8dp</item>
-        <item name="android:paddingRight">8dp</item>
-        <item name="android:gravity">center_vertical</item>
-    </style>
-    <style name="Base.Widget.AppCompat.EditText" parent="Base.V7.Widget.AppCompat.EditText"/>
-    <style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.ImageButton">
-        <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
-        <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
-        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.Solid">
-        <item name="background">?attr/colorPrimary</item>
-        <item name="backgroundStacked">?attr/colorPrimary</item>
-        <item name="backgroundSplit">?attr/colorPrimary</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
-        <item name="android:background">@drawable/abc_tab_indicator_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Light.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
-        <item name="overlapAnchor">true</item>
-        <item name="android:dropDownHorizontalOffset">-4dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListMenuView" parent="android:Widget">
-        <item name="subMenuArrow">@drawable/abc_ic_arrow_drop_right_black_24dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListPopupWindow" parent="">
-        <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
-        <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
-        <item name="android:dropDownVerticalOffset">0dip</item>
-        <item name="android:dropDownHorizontalOffset">0dip</item>
-        <item name="android:dropDownWidth">wrap_content</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListView" parent="android:Widget.ListView">
-        <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListView.DropDown">
-        <item name="android:divider">@null</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListView.Menu" parent="android:Widget.ListView.Menu">
-        <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
-        <item name="android:divider">?attr/dividerHorizontal</item>
-    </style>
-    <style name="Base.Widget.AppCompat.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
-    </style>
-    <style name="Base.Widget.AppCompat.PopupMenu.Overflow">
-        <item name="overlapAnchor">true</item>
-        <item name="android:dropDownHorizontalOffset">-4dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.PopupWindow" parent="android:Widget.PopupWindow">
-    </style>
-    <style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.ProgressBar">
-        <item name="android:minWidth">@dimen/abc_action_bar_progress_bar_size</item>
-        <item name="android:maxWidth">@dimen/abc_action_bar_progress_bar_size</item>
-        <item name="android:minHeight">@dimen/abc_action_bar_progress_bar_size</item>
-        <item name="android:maxHeight">@dimen/abc_action_bar_progress_bar_size</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.ProgressBar.Horizontal">
-    </style>
-    <style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.RatingBar">
-        <item name="android:progressDrawable">@drawable/abc_ratingbar_material</item>
-        <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.RatingBar">
-        <item name="android:progressDrawable">@drawable/abc_ratingbar_indicator_material</item>
-        <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_indicator_material</item>
-        <item name="android:minHeight">36dp</item>
-        <item name="android:maxHeight">36dp</item>
-        <item name="android:isIndicator">true</item>
-        <item name="android:thumb">@null</item>
-    </style>
-    <style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.RatingBar">
-        <item name="android:progressDrawable">@drawable/abc_ratingbar_small_material</item>
-        <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_small_material</item>
-        <item name="android:minHeight">16dp</item>
-        <item name="android:maxHeight">16dp</item>
-        <item name="android:isIndicator">true</item>
-        <item name="android:thumb">@null</item>
-    </style>
-    <style name="Base.Widget.AppCompat.SearchView" parent="android:Widget">
-        <item name="layout">@layout/abc_search_view</item>
-        <item name="queryBackground">@drawable/abc_textfield_search_material</item>
-        <item name="submitBackground">@drawable/abc_textfield_search_material</item>
-        <item name="closeIcon">@drawable/abc_ic_clear_material</item>
-        <item name="searchIcon">@drawable/abc_ic_search_api_material</item>
-        <item name="searchHintIcon">@drawable/abc_ic_search_api_material</item>
-        <item name="goIcon">@drawable/abc_ic_go_search_api_material</item>
-        <item name="voiceIcon">@drawable/abc_ic_voice_search_api_material</item>
-        <item name="commitIcon">@drawable/abc_ic_commit_search_api_mtrl_alpha</item>
-        <item name="suggestionRowLayout">@layout/abc_search_dropdown_item_icons_2line</item>
-    </style>
-    <style name="Base.Widget.AppCompat.SearchView.ActionBar">
-        <item name="queryBackground">@null</item>
-        <item name="submitBackground">@null</item>
-        <item name="searchHintIcon">@null</item>
-        <item name="defaultQueryHint">@string/abc_search_hint</item>
-    </style>
-    <style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget">
-        <item name="android:indeterminateOnly">false</item>
-        <item name="android:progressDrawable">@drawable/abc_seekbar_track_material</item>
-        <item name="android:indeterminateDrawable">@drawable/abc_seekbar_track_material</item>
-        <item name="android:thumb">@drawable/abc_seekbar_thumb_material</item>
-        <item name="android:focusable">true</item>
-        <item name="android:paddingLeft">16dip</item>
-        <item name="android:paddingRight">16dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.SeekBar.Discrete">
-        <item name="tickMark">@drawable/abc_seekbar_tick_mark_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Spinner" parent="Platform.Widget.AppCompat.Spinner">
-        <item name="android:background">@drawable/abc_spinner_mtrl_am_alpha</item>
-        <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
-        <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
-        <item name="android:dropDownVerticalOffset">0dip</item>
-        <item name="android:dropDownHorizontalOffset">0dip</item>
-        <item name="android:dropDownWidth">wrap_content</item>
-        <item name="android:clickable">true</item>
-        <item name="android:gravity">left|start|center_vertical</item>
-        <item name="overlapAnchor">true</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Spinner.Underlined">
-        <item name="android:background">@drawable/abc_spinner_textfield_background_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.TextView.SpinnerItem">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem</item>
-        <item name="android:paddingLeft">8dp</item>
-        <item name="android:paddingRight">8dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Toolbar" parent="android:Widget">
-        <item name="titleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Title</item>
-        <item name="subtitleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle</item>
-        <item name="android:minHeight">?attr/actionBarSize</item>
-        <item name="titleMargin">4dp</item>
-        <item name="maxButtonHeight">@dimen/abc_action_bar_default_height_material</item>
-        <item name="buttonGravity">top</item>
-        <item name="collapseIcon">?attr/homeAsUpIndicator</item>
-        <item name="collapseContentDescription">@string/abc_toolbar_collapse_description</item>
-        <item name="contentInsetStart">16dp</item>
-        <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
-        <item name="android:paddingLeft">@dimen/abc_action_bar_default_padding_start_material</item>
-        <item name="android:paddingRight">@dimen/abc_action_bar_default_padding_end_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget">
-        <item name="android:background">?attr/controlBackground</item>
-        <item name="android:minWidth">56dp</item>
-        <item name="android:scaleType">center</item>
-    </style>
-    <style name="Platform.AppCompat" parent="android:Theme">
-        <item name="android:windowNoTitle">true</item>
-
-        
-        <item name="android:colorForeground">@color/foreground_material_dark</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
-        <item name="android:colorBackground">@color/background_material_dark</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
-        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item>
-        <item name="android:backgroundDimAmount">0.6</item>
-        <item name="android:windowBackground">@color/background_material_dark</item>
-
-        
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
-        <item name="android:textColorLink">?attr/colorAccent</item>
-
-        
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
-        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
-        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
-        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
-        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
-        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
-
-        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
-        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
-
-        <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_dark</item>
-        <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_dark</item>
-        <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_dark</item>
-    </style>
-    <style name="Platform.AppCompat.Light" parent="android:Theme.Light">
-        <item name="android:windowNoTitle">true</item>
-
-        
-        <item name="android:colorForeground">@color/foreground_material_light</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
-        <item name="android:colorBackground">@color/background_material_light</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
-        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item>
-        <item name="android:backgroundDimAmount">0.6</item>
-        <item name="android:windowBackground">@color/background_material_light</item>
-
-        
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
-        <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
-        <item name="android:textColorLink">?attr/colorAccent</item>
-
-        
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
-        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
-        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
-        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
-        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
-        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
-
-        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
-        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
-
-        <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_light</item>
-        <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_light</item>
-        <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_light</item>
-    </style>
-    <style name="Platform.ThemeOverlay.AppCompat" parent=""/>
-    <style name="Platform.ThemeOverlay.AppCompat.Dark">
-        
-        <item name="actionBarItemBackground">@drawable/abc_item_background_holo_dark</item>
-        <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
-        <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
-
-        
-        <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
-        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-    </style>
-    <style name="Platform.ThemeOverlay.AppCompat.Light">
-        <item name="actionBarItemBackground">@drawable/abc_item_background_holo_light</item>
-        <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
-        <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
-
-        
-        <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.Light.AutoCompleteTextView</item>
-        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-    </style>
-    <style name="Platform.Widget.AppCompat.Spinner" parent="android:Widget.Spinner"/>
-    <style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
-        <item name="android:layout_gravity">center_vertical|left</item>
-        <item name="android:paddingRight">8dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
-        <item name="android:layout_marginRight">8dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
-        <item name="android:paddingRight">16dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
-        <item name="android:layout_marginLeft">16dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
-        <item name="android:layout_alignParentLeft">true</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
-        <item name="android:paddingLeft">@dimen/abc_dropdownitem_text_padding_left</item>
-        <item name="android:paddingRight">4dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
-        <item name="android:layout_alignParentLeft">true</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
-        <item name="android:layout_toLeftOf">@id/edit_query</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
-        <item name="android:layout_alignParentRight">true</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
-        <item name="android:layout_toLeftOf">@android:id/icon2</item>
-        <item name="android:layout_toRightOf">@android:id/icon1</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
-        <item name="android:layout_marginLeft">@dimen/abc_dropdownitem_text_padding_left</item>
-    </style>
-    <style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget">
-        <item name="android:paddingLeft">12dp</item>
-        <item name="android:paddingRight">12dp</item>
-    </style>
-    <style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton">
-        <item name="android:paddingLeft">@dimen/abc_action_bar_overflow_padding_start_material</item>
-        <item name="android:paddingRight">@dimen/abc_action_bar_overflow_padding_end_material</item>
-    </style>
-    <style name="TextAppearance.AppCompat" parent="Base.TextAppearance.AppCompat"/>
-    <style name="TextAppearance.AppCompat.Body1" parent="Base.TextAppearance.AppCompat.Body1"/>
-    <style name="TextAppearance.AppCompat.Body2" parent="Base.TextAppearance.AppCompat.Body2"/>
-    <style name="TextAppearance.AppCompat.Button" parent="Base.TextAppearance.AppCompat.Button"/>
-    <style name="TextAppearance.AppCompat.Caption" parent="Base.TextAppearance.AppCompat.Caption"/>
-    <style name="TextAppearance.AppCompat.Display1" parent="Base.TextAppearance.AppCompat.Display1"/>
-    <style name="TextAppearance.AppCompat.Display2" parent="Base.TextAppearance.AppCompat.Display2"/>
-    <style name="TextAppearance.AppCompat.Display3" parent="Base.TextAppearance.AppCompat.Display3"/>
-    <style name="TextAppearance.AppCompat.Display4" parent="Base.TextAppearance.AppCompat.Display4"/>
-    <style name="TextAppearance.AppCompat.Headline" parent="Base.TextAppearance.AppCompat.Headline"/>
-    <style name="TextAppearance.AppCompat.Inverse" parent="Base.TextAppearance.AppCompat.Inverse"/>
-    <style name="TextAppearance.AppCompat.Large" parent="Base.TextAppearance.AppCompat.Large"/>
-    <style name="TextAppearance.AppCompat.Large.Inverse" parent="Base.TextAppearance.AppCompat.Large.Inverse"/>
-    <style name="TextAppearance.AppCompat.Light.SearchResult.Subtitle" parent="TextAppearance.AppCompat.SearchResult.Subtitle"/>
-    <style name="TextAppearance.AppCompat.Light.SearchResult.Title" parent="TextAppearance.AppCompat.SearchResult.Title"/>
-    <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Widget.PopupMenu.Large"/>
-    <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Widget.PopupMenu.Small"/>
-    <style name="TextAppearance.AppCompat.Medium" parent="Base.TextAppearance.AppCompat.Medium"/>
-    <style name="TextAppearance.AppCompat.Medium.Inverse" parent="Base.TextAppearance.AppCompat.Medium.Inverse"/>
-    <style name="TextAppearance.AppCompat.Menu" parent="Base.TextAppearance.AppCompat.Menu"/>
-    <style name="TextAppearance.AppCompat.Notification">
-        <item name="android:textSize">14sp</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Info">
-        <item name="android:textSize">12sp</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Info.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Line2" parent="TextAppearance.AppCompat.Notification.Info"/>
-    <style name="TextAppearance.AppCompat.Notification.Line2.Media" parent="TextAppearance.AppCompat.Notification.Info.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Time">
-        <item name="android:textSize">12sp</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Time.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Title">
-        <item name="android:textSize">16sp</item>
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Title.Media"/>
-    <style name="TextAppearance.AppCompat.SearchResult.Subtitle" parent="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
-    </style>
-    <style name="TextAppearance.AppCompat.SearchResult.Title" parent="Base.TextAppearance.AppCompat.SearchResult.Title">
-    </style>
-    <style name="TextAppearance.AppCompat.Small" parent="Base.TextAppearance.AppCompat.Small"/>
-    <style name="TextAppearance.AppCompat.Small.Inverse" parent="Base.TextAppearance.AppCompat.Small.Inverse"/>
-    <style name="TextAppearance.AppCompat.Subhead" parent="Base.TextAppearance.AppCompat.Subhead"/>
-    <style name="TextAppearance.AppCompat.Subhead.Inverse" parent="Base.TextAppearance.AppCompat.Subhead.Inverse"/>
-    <style name="TextAppearance.AppCompat.Title" parent="Base.TextAppearance.AppCompat.Title"/>
-    <style name="TextAppearance.AppCompat.Title.Inverse" parent="Base.TextAppearance.AppCompat.Title.Inverse"/>
-    <style name="TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/>
-    <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.ActionBar.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title"/>
-    <style name="TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Subtitle"/>
-    <style name="TextAppearance.AppCompat.Widget.ActionMode.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Title">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Title"/>
-    <style name="TextAppearance.AppCompat.Widget.Button" parent="Base.TextAppearance.AppCompat.Widget.Button"/>
-    <style name="TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored"/>
-    <style name="TextAppearance.AppCompat.Widget.Button.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Colored"/>
-    <style name="TextAppearance.AppCompat.Widget.Button.Inverse" parent="Base.TextAppearance.AppCompat.Widget.Button.Inverse"/>
-    <style name="TextAppearance.AppCompat.Widget.DropDownItem" parent="Base.TextAppearance.AppCompat.Widget.DropDownItem">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header"/>
-    <style name="TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large"/>
-    <style name="TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small"/>
-    <style name="TextAppearance.AppCompat.Widget.Switch" parent="Base.TextAppearance.AppCompat.Widget.Switch"/>
-    <style name="TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem"/>
-    <style name="TextAppearance.StatusBar.EventContent" parent=""/>
-    <style name="TextAppearance.StatusBar.EventContent.Info" parent=""/>
-    <style name="TextAppearance.StatusBar.EventContent.Line2" parent=""/>
-    <style name="TextAppearance.StatusBar.EventContent.Time" parent=""/>
-    <style name="TextAppearance.StatusBar.EventContent.Title" parent=""/>
-    <style name="TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item">
-    </style>
-    <style name="TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle">
-    </style>
-    <style name="TextAppearance.Widget.AppCompat.Toolbar.Title" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Title">
-    </style>
-    <style name="Theme.AppCompat" parent="Base.Theme.AppCompat"/>
-    <style name="Theme.AppCompat.CompactMenu" parent="Base.Theme.AppCompat.CompactMenu"/>
-    <style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat.Light"/>
-    <style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat.Light.DarkActionBar"/>
-    <style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Light.Dialog"/>
-    <style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Light.Dialog.Alert"/>
-    <style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Light.Dialog.MinWidth"/>
-    <style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.Light.DialogWhenLarge"/>
-    <style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar"/>
-    <style name="Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat.Dialog"/>
-    <style name="Theme.AppCompat.Dialog.Alert" parent="Base.Theme.AppCompat.Dialog.Alert"/>
-    <style name="Theme.AppCompat.Dialog.MinWidth" parent="Base.Theme.AppCompat.Dialog.MinWidth"/>
-    <style name="Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.DialogWhenLarge">
-    </style>
-    <style name="Theme.AppCompat.Light" parent="Base.Theme.AppCompat.Light"/>
-    <style name="Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light.DarkActionBar"/>
-    <style name="Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light.Dialog"/>
-    <style name="Theme.AppCompat.Light.Dialog.Alert" parent="Base.Theme.AppCompat.Light.Dialog.Alert"/>
-    <style name="Theme.AppCompat.Light.Dialog.MinWidth" parent="Base.Theme.AppCompat.Light.Dialog.MinWidth"/>
-    <style name="Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.DialogWhenLarge">
-    </style>
-    <style name="Theme.AppCompat.Light.NoActionBar">
-        <item name="windowActionBar">false</item>
-        <item name="windowNoTitle">true</item>
-    </style>
-    <style name="Theme.AppCompat.NoActionBar">
-        <item name="windowActionBar">false</item>
-        <item name="windowNoTitle">true</item>
-    </style>
-    <style name="ThemeOverlay.AppCompat" parent="Base.ThemeOverlay.AppCompat"/>
-    <style name="ThemeOverlay.AppCompat.ActionBar" parent="Base.ThemeOverlay.AppCompat.ActionBar"/>
-    <style name="ThemeOverlay.AppCompat.Dark" parent="Base.ThemeOverlay.AppCompat.Dark"/>
-    <style name="ThemeOverlay.AppCompat.Dark.ActionBar" parent="Base.ThemeOverlay.AppCompat.Dark.ActionBar"/>
-    <style name="ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat.Dialog"/>
-    <style name="ThemeOverlay.AppCompat.Dialog.Alert" parent="Base.ThemeOverlay.AppCompat.Dialog.Alert"/>
-    <style name="ThemeOverlay.AppCompat.Light" parent="Base.ThemeOverlay.AppCompat.Light"/>
-    <style name="Widget.AppCompat.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
-    </style>
-    <style name="Widget.AppCompat.ActionBar.Solid" parent="Base.Widget.AppCompat.ActionBar.Solid">
-    </style>
-    <style name="Widget.AppCompat.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
-    </style>
-    <style name="Widget.AppCompat.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
-    </style>
-    <style name="Widget.AppCompat.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
-    </style>
-    <style name="Widget.AppCompat.ActionButton" parent="Base.Widget.AppCompat.ActionButton"/>
-    <style name="Widget.AppCompat.ActionButton.CloseMode" parent="Base.Widget.AppCompat.ActionButton.CloseMode"/>
-    <style name="Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton.Overflow"/>
-    <style name="Widget.AppCompat.ActionMode" parent="Base.Widget.AppCompat.ActionMode">
-    </style>
-    <style name="Widget.AppCompat.ActivityChooserView" parent="Base.Widget.AppCompat.ActivityChooserView">
-    </style>
-    <style name="Widget.AppCompat.AutoCompleteTextView" parent="Base.Widget.AppCompat.AutoCompleteTextView">
-    </style>
-    <style name="Widget.AppCompat.Button" parent="Base.Widget.AppCompat.Button"/>
-    <style name="Widget.AppCompat.Button.Borderless" parent="Base.Widget.AppCompat.Button.Borderless"/>
-    <style name="Widget.AppCompat.Button.Borderless.Colored" parent="Base.Widget.AppCompat.Button.Borderless.Colored"/>
-    <style name="Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog"/>
-    <style name="Widget.AppCompat.Button.Colored" parent="Base.Widget.AppCompat.Button.Colored"/>
-    <style name="Widget.AppCompat.Button.Small" parent="Base.Widget.AppCompat.Button.Small"/>
-    <style name="Widget.AppCompat.ButtonBar" parent="Base.Widget.AppCompat.ButtonBar"/>
-    <style name="Widget.AppCompat.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.ButtonBar.AlertDialog"/>
-    <style name="Widget.AppCompat.CompoundButton.CheckBox" parent="Base.Widget.AppCompat.CompoundButton.CheckBox"/>
-    <style name="Widget.AppCompat.CompoundButton.RadioButton" parent="Base.Widget.AppCompat.CompoundButton.RadioButton"/>
-    <style name="Widget.AppCompat.CompoundButton.Switch" parent="Base.Widget.AppCompat.CompoundButton.Switch"/>
-    <style name="Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle">
-        <item name="color">?attr/colorControlNormal</item>
-    </style>
-    <style name="Widget.AppCompat.DropDownItem.Spinner" parent="RtlOverlay.Widget.AppCompat.Search.DropDown.Text"/>
-    <style name="Widget.AppCompat.EditText" parent="Base.Widget.AppCompat.EditText"/>
-    <style name="Widget.AppCompat.ImageButton" parent="Base.Widget.AppCompat.ImageButton"/>
-    <style name="Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.Light.ActionBar">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.Solid" parent="Base.Widget.AppCompat.Light.ActionBar.Solid">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.Solid.Inverse"/>
-    <style name="Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.Light.ActionBar.TabBar">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.TabBar.Inverse"/>
-    <style name="Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.Light.ActionBar.TabView">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.TabView.Inverse"/>
-    <style name="Widget.AppCompat.Light.ActionButton" parent="Widget.AppCompat.ActionButton"/>
-    <style name="Widget.AppCompat.Light.ActionButton.CloseMode" parent="Widget.AppCompat.ActionButton.CloseMode"/>
-    <style name="Widget.AppCompat.Light.ActionButton.Overflow" parent="Widget.AppCompat.ActionButton.Overflow"/>
-    <style name="Widget.AppCompat.Light.ActionMode.Inverse" parent="Widget.AppCompat.ActionMode"/>
-    <style name="Widget.AppCompat.Light.ActivityChooserView" parent="Widget.AppCompat.ActivityChooserView"/>
-    <style name="Widget.AppCompat.Light.AutoCompleteTextView" parent="Widget.AppCompat.AutoCompleteTextView"/>
-    <style name="Widget.AppCompat.Light.DropDownItem.Spinner" parent="Widget.AppCompat.DropDownItem.Spinner"/>
-    <style name="Widget.AppCompat.Light.ListPopupWindow" parent="Widget.AppCompat.ListPopupWindow"/>
-    <style name="Widget.AppCompat.Light.ListView.DropDown" parent="Widget.AppCompat.ListView.DropDown"/>
-    <style name="Widget.AppCompat.Light.PopupMenu" parent="Base.Widget.AppCompat.Light.PopupMenu"/>
-    <style name="Widget.AppCompat.Light.PopupMenu.Overflow" parent="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
-    </style>
-    <style name="Widget.AppCompat.Light.SearchView" parent="Widget.AppCompat.SearchView"/>
-    <style name="Widget.AppCompat.Light.Spinner.DropDown.ActionBar" parent="Widget.AppCompat.Spinner.DropDown.ActionBar"/>
-    <style name="Widget.AppCompat.ListMenuView" parent="Base.Widget.AppCompat.ListMenuView"/>
-    <style name="Widget.AppCompat.ListPopupWindow" parent="Base.Widget.AppCompat.ListPopupWindow">
-    </style>
-    <style name="Widget.AppCompat.ListView" parent="Base.Widget.AppCompat.ListView"/>
-    <style name="Widget.AppCompat.ListView.DropDown" parent="Base.Widget.AppCompat.ListView.DropDown"/>
-    <style name="Widget.AppCompat.ListView.Menu" parent="Base.Widget.AppCompat.ListView.Menu"/>
-    <style name="Widget.AppCompat.NotificationActionContainer" parent=""/>
-    <style name="Widget.AppCompat.NotificationActionText" parent=""/>
-    <style name="Widget.AppCompat.PopupMenu" parent="Base.Widget.AppCompat.PopupMenu"/>
-    <style name="Widget.AppCompat.PopupMenu.Overflow" parent="Base.Widget.AppCompat.PopupMenu.Overflow">
-    </style>
-    <style name="Widget.AppCompat.PopupWindow" parent="Base.Widget.AppCompat.PopupWindow">
-    </style>
-    <style name="Widget.AppCompat.ProgressBar" parent="Base.Widget.AppCompat.ProgressBar">
-    </style>
-    <style name="Widget.AppCompat.ProgressBar.Horizontal" parent="Base.Widget.AppCompat.ProgressBar.Horizontal">
-    </style>
-    <style name="Widget.AppCompat.RatingBar" parent="Base.Widget.AppCompat.RatingBar"/>
-    <style name="Widget.AppCompat.RatingBar.Indicator" parent="Base.Widget.AppCompat.RatingBar.Indicator"/>
-    <style name="Widget.AppCompat.RatingBar.Small" parent="Base.Widget.AppCompat.RatingBar.Small"/>
-    <style name="Widget.AppCompat.SearchView" parent="Base.Widget.AppCompat.SearchView"/>
-    <style name="Widget.AppCompat.SearchView.ActionBar" parent="Base.Widget.AppCompat.SearchView.ActionBar"/>
-    <style name="Widget.AppCompat.SeekBar" parent="Base.Widget.AppCompat.SeekBar"/>
-    <style name="Widget.AppCompat.SeekBar.Discrete" parent="Base.Widget.AppCompat.SeekBar.Discrete"/>
-    <style name="Widget.AppCompat.Spinner" parent="Base.Widget.AppCompat.Spinner"/>
-    <style name="Widget.AppCompat.Spinner.DropDown"/>
-    <style name="Widget.AppCompat.Spinner.DropDown.ActionBar"/>
-    <style name="Widget.AppCompat.Spinner.Underlined" parent="Base.Widget.AppCompat.Spinner.Underlined"/>
-    <style name="Widget.AppCompat.TextView.SpinnerItem" parent="Base.Widget.AppCompat.TextView.SpinnerItem"/>
-    <style name="Widget.AppCompat.Toolbar" parent="Base.Widget.AppCompat.Toolbar"/>
-    <style name="Widget.AppCompat.Toolbar.Button.Navigation" parent="Base.Widget.AppCompat.Toolbar.Button.Navigation"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/incremental/mergeDebugResources/merger.xml b/android/.build/intermediates/incremental/mergeDebugResources/merger.xml
deleted file mode 100644
index 2a7354b068876b22d7302cde5c4ff8b364f19f1e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/incremental/mergeDebugResources/merger.xml
+++ /dev/null
@@ -1,1756 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<merger version="3" xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools"><dataSet config="25.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/res"/></dataSet><dataSet config="25.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/res"/></dataSet><dataSet config="25.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/res"/></dataSet><dataSet config="25.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/res"/></dataSet><dataSet config="25.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/res"/></dataSet><dataSet config="25.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-v4/25.2.0/res"/></dataSet><dataSet config="10.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res"/></dataSet><dataSet config="10.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/10.2.0/res"/></dataSet><dataSet config="10.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/res"/></dataSet><dataSet config="10.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/res"/></dataSet><dataSet config="10.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/res"/></dataSet><dataSet config="10.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/res"/></dataSet><dataSet config="1.3.16$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/res"/></dataSet><dataSet config="1.3.12$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/res"/></dataSet><dataSet config="2.3.16$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/res"/></dataSet><dataSet config="1.1.6$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/res"/></dataSet><dataSet config="1.2.4$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/res"/></dataSet><dataSet config="2.6.7$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/res"/></dataSet><dataSet config="1.1.10$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/res"/></dataSet><dataSet config="10.0.1$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/res"/></dataSet><dataSet config="10.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res"/></dataSet><dataSet config="10.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/res"/></dataSet><dataSet config="10.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/res"/></dataSet><dataSet config="25.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-vector-drawable/25.2.0/res"/></dataSet><dataSet config="25.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/res"/></dataSet><dataSet config="25.2.0$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res"/></dataSet><dataSet config="main$Generated" generated="true"><source path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res"/><source path="/home/beij/code/RocketChatMobile/android/res"/><source path="/home/beij/code/RocketChatMobile/android/.build/generated/res/rs/debug"/><source path="/home/beij/code/RocketChatMobile/android/.build/generated/res/resValues/debug"/><source path="/home/beij/code/RocketChatMobile/android/.build/generated/fabric/res/debug"/><source path="/home/beij/code/RocketChatMobile/android/.build/generated/res/google-services/debug"/></dataSet><dataSet config="debug$Generated" generated="true"><source path="/home/beij/code/RocketChatMobile/android/src/debug/res"/></dataSet><dataSet config="25.2.0" from-dependency="true" generated-set="25.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/res"/></dataSet><dataSet config="25.2.0" from-dependency="true" generated-set="25.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/res"/></dataSet><dataSet config="25.2.0" from-dependency="true" generated-set="25.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/res"/></dataSet><dataSet config="25.2.0" from-dependency="true" generated-set="25.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/res"/></dataSet><dataSet config="25.2.0" from-dependency="true" generated-set="25.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/res"/></dataSet><dataSet config="25.2.0" from-dependency="true" generated-set="25.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-v4/25.2.0/res"/></dataSet><dataSet config="10.2.0" from-dependency="true" generated-set="10.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res"><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hy/values.xml" qualifiers="hy"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> հավելվածը Google Play ծառայությունների հետ կապված խնդիր ունի: Փորձեք նորից:"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-eu/values.xml" qualifiers="eu"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> aplikazioak arazoak ditu Google Play zerbitzuekin. Saiatu berriro."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sw/values.xml" qualifiers="sw"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> inakumbwa na hitilafu ya huduma za Google Play. Tafadhali jaribu tena."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-am/values.xml" qualifiers="am"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> በGoogle Play አገልግሎቶች ላይ ችግሮች እያጋጠሙት ነው። እባክዎ እንደገና ይሞክሩ።"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fr/values.xml" qualifiers="fr"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"L\'application <ns1:g id="APP_NAME">%1$s</ns1:g> rencontre des problèmes avec les services Google Play. Veuillez réessayer."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-az/values.xml" qualifiers="az"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> tətbiqi ilə Google Play xidmətləri arasında problem var. Daha sonra yenidən cəhd edin."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ml/values.xml" qualifiers="ml"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Google Play സേവനങ്ങളുമായി ബന്ധപ്പെട്ട് <ns1:g id="APP_NAME">%1$s</ns1:g> ആപ്പിനെന്തോ പ്രശ്നമുണ്ട്. വീണ്ടും ശ്രമിക്കുക."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-el/values.xml" qualifiers="el"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Η εφαρμογή <ns1:g id="APP_NAME">%1$s</ns1:g> αντιμετωπίζει κάποιο πρόβλημα με τις υπηρεσίες Google Play. Προσπαθήστε ξανά."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-be/values.xml" qualifiers="be"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"У праграмы <ns1:g id="APP_NAME">%1$s</ns1:g> узніклі праблемы са службамі Google Play. Паўтарыце спробу."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fr-rCA/values.xml" qualifiers="fr-rCA"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"L\'application <ns1:g id="APP_NAME">%1$s</ns1:g> éprouve un problème avec les services Google Play. Veuillez réessayer."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-kn/values.xml" qualifiers="kn"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Google Play ಸೇವೆಗಳಲ್ಲಿ <ns1:g id="APP_NAME">%1$s</ns1:g> ಸಮಸ್ಯೆಯನ್ನು ಹೊಂದಿದೆ. ದಯವಿಟ್ಟು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-bg/values.xml" qualifiers="bg"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> има проблеми с услугите за Google Play. Моля, опитайте отново."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sq/values.xml" qualifiers="sq"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ka probleme me shërbimet e Google Play. Provo sërish."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zh-rCN/values.xml" qualifiers="zh-rCN"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g>无法访问 Google Play 服务,请重试。"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hu/values.xml" qualifiers="hu"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"A(z) <ns1:g id="APP_NAME">%1$s</ns1:g> alkalmazás problémába ütközött a Google Play-szolgáltatások használata során. Próbálkozzon újra."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ms/values.xml" qualifiers="ms"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> menghadapi masalah berhubung perkhidmatan Google Play. Sila cuba lagi."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zh-rHK/values.xml" qualifiers="zh-rHK"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"「<ns1:g id="APP_NAME">%1$s</ns1:g>」存取 Google Play 服務時發生問題。請稍後再試一次。"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ar/values.xml" qualifiers="ar"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"‏لدى <ns1:g id="APP_NAME">%1$s</ns1:g> مشكلة في خدمات Google Play. الرجاء إعادة المحاولة."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-mk/values.xml" qualifiers="mk"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> има проблеми со услугите на Google Play. Обидете се повторно."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zu/values.xml" qualifiers="zu"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> inenkinga ngamasevisi e-Google Play. Sicela uzame futhi."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ne/values.xml" qualifiers="ne"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> लाई Google Play services सँग सहकार्य गर्न समस्या भइरहेको छ। कृपया फेरि प्रयास गर्नुहोस्।"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-in/values.xml" qualifiers="in"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> mengalami masalah dengan layanan Google Play. Coba lagi."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-uk/values.xml" qualifiers="uk"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"У додатку <ns1:g id="APP_NAME">%1$s</ns1:g> виникла проблема із сервісами Google Play. Повторіть спробу."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-en-rGB/values.xml" qualifiers="en-rGB"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> is having trouble with Google Play services. Please try again."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-da/values.xml" qualifiers="da"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> har problemer med Google Play-tjenester. Prøv igen."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ky/values.xml" qualifiers="ky"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> колдонмосунун Google Play кызматтары менен иштөөдө көйгөй чыкты. Кайра аракет кылыңыз."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-de/values.xml" qualifiers="de"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> hat Probleme mit Google Play-Diensten. Bitte versuche es noch einmal."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-af/values.xml" qualifiers="af"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ondervind probleme met Google Play Dienste. Probeer asseblief weer."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ta/values.xml" qualifiers="ta"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Google Play சேவைகளில் சிக்கல் ஏற்பட்டதால், <ns1:g id="APP_NAME">%1$s</ns1:g> பயன்பாட்டை அணுக முடியவில்லை. மீண்டும் முயலவும்."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-nb/values.xml" qualifiers="nb"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> har problemer med Google Play-tjenester. Prøv på nytt."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-my/values.xml" qualifiers="my"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> သည် Google Play ဝန်ဆောင်မှုများနှင့် ပြဿနာအနည်းငယ် ရှိနေပါသည်။ ထပ်လုပ်ကြည့်ပါ။"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-te/values.xml" qualifiers="te"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play సేవలతో సమస్య కలిగి ఉంది. దయచేసి మళ్లీ ప్రయత్నించండి."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sk/values.xml" qualifiers="sk"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Aplikácia <ns1:g id="APP_NAME">%1$s</ns1:g> má problémy so službami Google Play. Skúste to znova."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-lv/values.xml" qualifiers="lv"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Lietotnē <ns1:g id="APP_NAME">%1$s</ns1:g> ir radusies problēma ar Google Play pakalpojumu darbību. Lūdzu, mēģiniet vēlreiz."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ko/values.xml" qualifiers="ko"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g>에서 Google Play 서비스를 사용하는 데 문제가 있습니다. 다시 시도하세요."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ca/values.xml" qualifiers="ca"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> té problemes amb els serveis de Google Play. Torna-ho a provar."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-iw/values.xml" qualifiers="iw"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> נתקלה בבעיה בשירותי Google Play. נסה שוב."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sv/values.xml" qualifiers="sv"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Det har uppstått ett fel mellan <ns1:g id="APP_NAME">%1$s</ns1:g> och Google Play-tjänsterna. Försök igen."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-gu/values.xml" qualifiers="gu"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ને Google Play સેવાઓમાં મુશ્કેલી આવી રહી છે. કૃપા કરીને ફરી પ્રયાસ કરો."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-gl/values.xml" qualifiers="gl"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ten problemas cos servizos de Google Play. Téntao de novo."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-is/values.xml" qualifiers="is"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> á í vandræðum með þjónustu Google Play. Reyndu aftur."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ro/values.xml" qualifiers="ro"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> întâmpină probleme privind serviciile Google Play. Încercați din nou."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-lo/values.xml" qualifiers="lo"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ກຳລັງມີບັນຫາກັບບໍລິການ Google Play. ກະລຸນາລອງໃໝ່ອີກຄັ້ງ."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ja/values.xml" qualifiers="ja"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"「<ns1:g id="APP_NAME">%1$s</ns1:g>」で Google Play 開発者サービスに問題が発生しています。もう一度お試しください。"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-kk/values.xml" qualifiers="kk"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> қолданбасында Google Play қызметіне байланысты белгісіз қате шықты. Әрекетті қайталаңыз."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-km/values.xml" qualifiers="km"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> កំពុងមានបញ្ហាជាមួយសេវាកម្មរបស់ Google Play ។ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ។"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sr/values.xml" qualifiers="sr"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> има проблема са Google Play услугама. Пробајте поново."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hi/values.xml" qualifiers="hi"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> को Google Play सेवाओं के साथ समस्या आ रही है. कृपया फिर से प्रयास करें."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-lt/values.xml" qualifiers="lt"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Naudojant programą „<ns1:g id="APP_NAME">%1$s</ns1:g>“ kilo problemų dėl „Google Play“ paslaugų. Bandykite dar kartą."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-mr/values.xml" qualifiers="mr"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ला Google Play सेवांमध्ये समस्या येत आहे. कृपया पुन्हा प्रयत्न करा."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-es/values.xml" qualifiers="es"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"La aplicación <ns1:g id="APP_NAME">%1$s</ns1:g> tiene problemas con los Servicios de Google Play. Vuelve a intentarlo."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-tl/values.xml" qualifiers="tl"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Nagkakaproblema ang <ns1:g id="APP_NAME">%1$s</ns1:g> sa mga serbisyo ng Google Play. Pakisubukang muli."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-nl/values.xml" qualifiers="nl"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ondervindt problemen met Google Play-services. Probeer het opnieuw."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-uz/values.xml" qualifiers="uz"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ilovasini Google Play xizmatlariga ulab bo‘lmadi. Qaytadan urinib ko‘ring."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-bs/values.xml" qualifiers="bs"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> ima problema s Google Play uslugama. Pokušajte ponovo."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-vi/values.xml" qualifiers="vi"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> đang gặp sự cố với các dịch vụ của Google Play. Hãy thử lại."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fa/values.xml" qualifiers="fa"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> برای استفاده از خدمات Google Play با مشکل روبرو است. لطفاً دوباره امتحان کنید."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-it/values.xml" qualifiers="it"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> sta riscontrando problemi con Google Play Services. Riprova."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ur/values.xml" qualifiers="ur"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> کو Google Play سروسز کے ساتھ مسئلہ پیش آ رہا ہے۔ براہ کرم دوبارہ کوشش کریں۔"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ru/values.xml" qualifiers="ru"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Приложению \"<ns1:g id="APP_NAME">%1$s</ns1:g>\" не удается подключиться к сервисам Google Play. Повторите попытку."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pt-rPT/values.xml" qualifiers="pt-rPT"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> está a ter problemas com os Serviços do Google Play. Tente novamente."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-zh-rTW/values.xml" qualifiers="zh-rTW"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"「<ns1:g id="APP_NAME">%1$s</ns1:g>」無法存取 Google Play 服務,請再試一次。"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-ka/values.xml" qualifiers="ka"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g>-ს Google Play Services-თან პრობლემა შეექმნა. გთხოვთ, ცადოთ ხელახლა."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-th/values.xml" qualifiers="th"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> มีปัญหาเกี่ยวกับบริการของ Google Play โปรดลองอีกครั้ง"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-hr/values.xml" qualifiers="hr"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ima poteškoća s uslugama Google Playa. Pokušajte ponovo."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-et/values.xml" qualifiers="et"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Rakendusel <ns1:g id="APP_NAME">%1$s</ns1:g> on probleeme Google Play teenustega. Proovige uuesti."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pl/values.xml" qualifiers="pl"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ma problem z dostępem do Usług Google Play. Spróbuj jeszcze raz."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-sl/values.xml" qualifiers="sl"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> ima težave s storitvami Google Play. Poskusite znova."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values/values.xml" qualifiers=""><integer name="google_play_services_version">10298000</integer><string name="common_google_play_services_unknown_issue"><ns1:g id="app_name">%1$s</ns1:g> is having trouble with Google Play services. Please try again.</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-cs/values.xml" qualifiers="cs"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Aplikace <ns1:g id="APP_NAME">%1$s</ns1:g> má potíže se službami Google Play. Zkuste to prosím znovu."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-es-rUS/values.xml" qualifiers="es-rUS"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> tiene problemas con los servicios de Google Play. Vuelve a intentarlo."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-bn/values.xml" qualifiers="bn"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Google Play পরিষেবাগুলির সাথে <ns1:g id="APP_NAME">%1$s</ns1:g> এর সমস্যা হচ্ছে৷ অনুগ্রহ করে আবার চেষ্টা করুন৷"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-si/values.xml" qualifiers="si"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> හට Google Play සේවා සමගින් ගැටලු ඇත. කරුණාකර නැවත උත්සාහ කරන්න."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pt-rBR/values.xml" qualifiers="pt-rBR"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"O app <ns1:g id="APP_NAME">%1$s</ns1:g> está com problemas com o Google Play Services. Tente novamente."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-fi/values.xml" qualifiers="fi"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Sovelluksella <ns1:g id="APP_NAME">%1$s</ns1:g> on ongelmia Google Play Palveluiden kanssa. Yritä uudelleen."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-pa/values.xml" qualifiers="pa"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ਨੂੰ Google Play ਸੇਵਾਵਾਂ ਨਾਲ ਸਮੱਸਿਆ ਆ ਰਹੀ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-tr/values.xml" qualifiers="tr"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g>, Google Play hizmetleriyle ilgili sorun yaşıyor. Lütfen tekrar deneyin."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res/values-mn/values.xml" qualifiers="mn"><string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g>-г Google Play-н үйлчилгээгээр ашиглахад асуудал гарлаа. Дахин оролдоно уу."</string></file></source></dataSet><dataSet config="10.2.0" from-dependency="true" generated-set="10.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/10.2.0/res"/></dataSet><dataSet config="10.2.0" from-dependency="true" generated-set="10.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/res"/></dataSet><dataSet config="10.2.0" from-dependency="true" generated-set="10.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/res"/></dataSet><dataSet config="10.2.0" from-dependency="true" generated-set="10.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/res"/></dataSet><dataSet config="10.2.0" from-dependency="true" generated-set="10.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/res"/></dataSet><dataSet config="1.3.16" from-dependency="true" generated-set="1.3.16$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/res"/></dataSet><dataSet config="1.3.12" from-dependency="true" generated-set="1.3.12$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/res"/></dataSet><dataSet config="2.3.16" from-dependency="true" generated-set="2.3.16$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/res"/></dataSet><dataSet config="1.1.6" from-dependency="true" generated-set="1.1.6$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/res"/></dataSet><dataSet config="1.2.4" from-dependency="true" generated-set="1.2.4$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/res"/></dataSet><dataSet config="2.6.7" from-dependency="true" generated-set="2.6.7$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/res"/></dataSet><dataSet config="1.1.10" from-dependency="true" generated-set="1.1.10$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/res"/></dataSet><dataSet config="10.0.1" from-dependency="true" generated-set="10.0.1$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/res"><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/res/values/values.xml" qualifiers=""><item name="crash_reporting_present" type="id"/></file></source></dataSet><dataSet config="10.2.0" from-dependency="true" generated-set="10.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res"><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hy/values.xml" qualifiers="hy"><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Միացնել Google Play ծառայությունները"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Թարմացնել"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Թարմացնել Google Play ծառայությունները"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Մուտք գործել"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play ծառայությունների սխալ կա"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Մուտք գործել Google-ով"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Տեղադրել Google Play ծառայությունները"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Բացել հեռախոսով"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Տեղադրել"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> հավելվածը չի աշխատի առանց Google Play ծառայությունների, որոնք ձեր սարքում չեն աջակցվում:"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> հավելվածը չի աշխատի առանց Google Play ծառայությունների, որոնք այս պահին թարմացվում են:"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> հավելվածը չի աշխատի առանց Google Play ծառայությունների, որոնք չկան ձեր սարքում:"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> հավելվածը չի աշխատի մինչև չմիացնեք Google Play ծառայությունները:"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Միացնել"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> հավելվածը չի աշխատի մինչև չթարմացնեք Google Play ծառայությունները:"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Անհրաժեշտ է Google Play ծառայությունների նոր տարբերակը: Այն շուտով կթարմացվի ավտոմատ կերպով:"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-eu/values.xml" qualifiers="eu"><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play zerbitzuen errorea"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> aplikazioak ez du funtzionatuko Google Play zerbitzuak gaitzen ez badituzu."</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> aplikazioa ezin da erabili Google Play zerbitzurik gabe, eta zure gailua ez da zerbitzuokin bateragarria."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ez da exekutatuko Google Play zerbitzurik gabe, baina ez dituzu gailuan."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play zerbitzuen bertsio berria behar da. Berehala eguneratuko da automatikoki."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Gaitu Google Play zerbitzuak"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Eguneratu"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ez da exekutatuko Google Play zerbitzuak eguneratzen ez badituzu."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Hasi saioa Google-n"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Gaitu"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalatu"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Lortu Google Play zerbitzuak"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Eguneratu Google Play zerbitzuak"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Ireki telefonoan"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Hasi saioa"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ez da exekutatuko Google Play zerbitzurik gabe; une honetan eguneratzen ari dira zerbitzuok."</string></file><file name="googleg_standard_color_18" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/googleg_standard_color_18.png" qualifiers="xhdpi-v4" type="drawable"/><file name="common_google_signin_btn_text_dark_normal_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="common_google_signin_btn_icon_light_normal_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="common_full_open_on_phone" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_full_open_on_phone.png" qualifiers="xhdpi-v4" type="drawable"/><file name="common_google_signin_btn_icon_dark_normal_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="common_google_signin_btn_text_light_normal_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="googleg_disabled_color_18" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xhdpi-v4/googleg_disabled_color_18.png" qualifiers="xhdpi-v4" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sw/values.xml" qualifiers="sw"><string msgid="3441753203274453993" name="common_signin_button_text">"Ingia katika akaunti"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> haitafanya kazi bila huduma za Google Play. Huduma hizi hazitumiki kwenye kifaa chako."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Hitilafu kwenye huduma za Google Play"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Fungua kwenye simu"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Sakinisha"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Ingia katika akaunti ukitumia Google"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> haitafanya kazi isipokuwa uwashe huduma za Google Play."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Sasisha"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Washa"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> haitafanya kazi hadi usasishe huduma za Google Play."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Sasisha huduma za Google Play"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Toleo jipya la huduma za Google Play linahitajika. Litajisasisha baada ya muda mfupi."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Washa huduma za Google Play"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> haitafanya kazi bila huduma za Google Play. Huduma hizi zinasasishwa sasa."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Pata huduma za Google Play"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> haitafanya kazi bila huduma za Google Play. Huduma hizi hazipatikani kwenye kifaa chako."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-am/values.xml" qualifiers="am"><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ያለ Google Play አገልግሎቶች አይሰራም፣ እነሱ ደግሞ በመሣሪያዎ ላይ የሉም።"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ያለGoogle Play አገልግሎቶች አይሄድም፣ እነዚህም በመሣሪያዎ አይደገፉም።"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"አንቃ"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"ያዘምኑ"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"በGoogle ይግቡ"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play አገልግሎቶችን ካላዘመኑ በስተቀር ድረስ <ns1:g id="APP_NAME">%1$s</ns1:g> አይሰራም።"</string><string msgid="3441753203274453993" name="common_signin_button_text">"ግባ"</string><string msgid="5201977337835724196" name="common_open_on_phone">"ስልክ ላይ ክፈት"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play አገልግሎቶችን ያዘምኑ"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ያለ Google Play አገልግሎቶች አይሰራም፣ እነሱ ደግሞ በአሁኑ ጊዜ በመዘመን ላይ ናቸው።"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"የGoogle Play አገልግሎቶች ስህተት"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"አዲስ የGoogle Play አገልግሎቶች ስሪት ያስፈልጋል። በቅርቡ እራሱን ያዘምናል።"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"ጫን"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play አገልግሎቶችን ያንቁ"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play አገልግሎቶችን ካላነቁ በስተቀር <ns1:g id="APP_NAME">%1$s</ns1:g> አይሰራም።"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play አገልግሎቶችን ያግኙ"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr/values.xml" qualifiers="fr"><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Mettre à jour"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Activer"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas tant que vous n\'aurez pas activé les services Google Play."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas sans les services Google Play, qui ne sont pas installés sur votre appareil."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"La nouvelle version des services Google Play est nécessaire. Elle sera bientôt installée automatiquement."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas tant que vous n\'aurez pas mis à jour les services Google Play."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installer"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Erreur liée aux services Google Play"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Se connecter avec Google"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Mettre à jour les services Google Play"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Activer les services Google Play"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Ouvrir sur le téléphone"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Installer les services Google Play"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas sans les services Google Play, qui sont en cours de mise à jour."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Se connecter"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas sans les services Google Play, qui ne sont pas compatibles avec votre appareil."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-az/values.xml" qualifiers="az"><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play xidmətlərini güncəlləşdirin"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play xidmətlərini aktiv edənə kimi işləməyəcək."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play xidmətlərini aktiv edin"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Güncəlləyin"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play xidmətləri yeniləmə halda çalışmaz."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Aktiv edin"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play xidmətləri xətası"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google ilə daxil olun"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Quraşdırın"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Telefonda açın"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Cihazınız tərəfindən dəstəklənməyən Google Play xidmətləri olmadan <ns1:g id="APP_NAME">%1$s</ns1:g> tətbiqi işləməyəcək."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Daxil olun"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play xidmətlərinin yeni versiyası lazımdır. Qısa müddətə özünü yeniləyəcək."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> cihazınızda mövcud olmayan Google Play xidmətləri olmadan çalışmayacaq."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play xidmətlərini əldə edin"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> hal-hazırda güncəllənən Google Play xidmətləri olmadan çalışmayacaq."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ml/values.xml" qualifiers="ml"><string msgid="9115728400623041681" name="common_google_play_services_install_button">"ഇന്‍സ്റ്റാള്‍ ചെയ്യുക"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play സേവനങ്ങളിലെ പിശക്"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"അപ്‌ഡേറ്റുചെയ്യുക"</string><string msgid="5201977337835724196" name="common_open_on_phone">"ഫോണിൽ തുറക്കുക"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"നിങ്ങൾ Google Play സേവനങ്ങൾ പ്രവർത്തനക്ഷമമാക്കുന്നില്ലെങ്കിൽ <ns1:g id="APP_NAME">%1$s</ns1:g> പ്രവർത്തിക്കില്ല."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play സേവനങ്ങൾ പ്രവർത്തനക്ഷമമാക്കുക"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"നിലവിൽ അപ്‌ഡേറ്റുചെയ്യുന്ന Google Play സേവനങ്ങൾ ഇല്ലാതെ <ns1:g id="APP_NAME">%1$s</ns1:g> പ്രവർത്തിക്കില്ല."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play സേവനങ്ങൾ അപ്‌ഡേറ്റുചെയ്യുക"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play സേവനങ്ങൾ നേടുക"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Google Play സേവനങ്ങളില്ലാതെ <ns1:g id="APP_NAME">%1$s</ns1:g> പ്രവർത്തിക്കില്ല, സേവനങ്ങളെയാകട്ടെ നിങ്ങളുടെ ഉപകരണം പിന്തുണയ്ക്കുന്നുമില്ല."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"പ്രവർത്തനക്ഷമമാക്കുക"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"നിങ്ങൾ Google Play സേവനങ്ങൾ അപ്‌ഡേറ്റുചെയ്‌തില്ലെങ്കിൽ <ns1:g id="APP_NAME">%1$s</ns1:g> പ്രവർത്തിക്കില്ല."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google ഉപയോഗിച്ച് സൈൻ ഇൻ ചെയ്യുക"</string><string msgid="3441753203274453993" name="common_signin_button_text">"സൈൻ ഇൻ ചെയ്യുക"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play സേവനങ്ങളുടെ പുതിയ പതിപ്പ് ആവശ്യമാണ്. താമസിയാതെ ഇത് സ്വയം അപ്‌ഡേറ്റുചെയ്യും."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Google Play സേവനങ്ങളില്ലാതെ <ns1:g id="APP_NAME">%1$s</ns1:g> പ്രവർത്തിക്കില്ല, ഈ സേവനങ്ങളാകട്ടെ നിങ്ങളുടെ ഉപകരണത്തിൽ ഇല്ല."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-el/values.xml" qualifiers="el"><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Εγκατάσταση"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Άνοιγμα σε τηλέφωνο"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Η εφαρμογή <ns1:g id="APP_NAME">%1$s</ns1:g> δεν μπορεί να εκτελεστεί χωρίς τις υπηρεσίες Google Play, οι οποίες λείπουν από τη συσκευή σας."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Η εφαρμογή <ns1:g id="APP_NAME">%1$s</ns1:g> δεν θα εκτελεστεί χωρίς τις υπηρεσίες Google Play, οι οποίες ενημερώνονται αυτήν τη στιγμή."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Απαιτείται νέα έκδοση των υπηρεσιών Google Play. Θα ενημερωθεί σύντομα."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Λήψη υπηρεσιών Google Play"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Ενεργοποίηση υπηρεσιών Google Play"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Η εφαρμογή <ns1:g id="APP_NAME">%1$s</ns1:g> δεν θα λειτουργήσει εάν δεν έχετε ενεργοποιήσει τις υπηρεσίες Google Play."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Σφάλμα Υπηρεσιών Google Play"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Ενημέρωση"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Ενημέρωση υπηρεσιών Google Play"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Η εφαρμογή <ns1:g id="APP_NAME">%1$s</ns1:g> δεν θα εκτελεστεί χωρίς τις υπηρεσίες Google Play, οι οποίες δεν υποστηρίζονται από τη συσκευή σας."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Η εφαρμογή <ns1:g id="APP_NAME">%1$s</ns1:g> θα εκτελεστεί αφού ενημερώσετε τις Υπηρεσίες Google Play."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Σύνδεση"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Ενεργοποίηση"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Συνδεθείτε με το Google"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-be/values.xml" qualifiers="be"><string msgid="5201977337835724196" name="common_open_on_phone">"Адкрыць на тэлефоне"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Абнаўленне службаў Google Play"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Абнавіць"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Атрымаць службы Google Play"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Патрабуецца новая версія служб Google Play. Яна абновіцца аўтаматычна ў бліжэйшы час."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не будзе працаваць без службаў Google Play, якія ў цяперашні час абнаўляюцца."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Уключыць службы Google Play"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не будзе працаваць, пакуль вы не абновіце службы Google Play."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Увайсці праз Google"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Уключыць"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Увайсцi"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не будзе працаваць без службаў Google Play, якія не падтрымліваюцца вашай прыладай."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не будзе працаваць, пакуль вы не ўключыце службы Google Play."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не будзе працаваць без службаў Google Play, якія адсутнічаюць на вашай прыладзе."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Памылка службаў Google Play"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Усталяваць"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fr-rCA/values.xml" qualifiers="fr-rCA"><string msgid="5201977337835724196" name="common_open_on_phone">"Ouvrir sur le téléphone"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas sans les services Google Play, qui ne sont pas installés sur votre appareil."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas tant que vous n\'aurez pas mis à jour les services Google Play."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas tant que vous n\'aurez pas activé les services Google Play."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Erreur liée aux services Google Play"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"L\'application <ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas sans les services Google Play, qui ne sont pas pris en charge par votre appareil."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Mettre à jour"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Activer"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Connexion"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Mettre à jour les services Google Play"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Se connecter avec Google"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Installer les services Google Play"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Activer les services Google Play"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas sans les services Google Play, qui sont actuellement mis à jour."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installer"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"La nouvelle version des services Google Play est nécessaire. Elle sera bientôt installée automatiquement."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kn/values.xml" qualifiers="kn"><string msgid="8172070149091615356" name="common_google_play_services_update_button">"ಅಪ್‌ಡೇಟ್‌ ಮಾಡು"</string><string msgid="3441753203274453993" name="common_signin_button_text">"ಸೈನ್ ಇನ್"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play ಸೇವೆಗಳ ದೋಷ"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"ಸಕ್ರಿಯಗೊಳಿಸು"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google ಮೂಲಕ ಸೈನ್ ಇನ್ ಮಾಡಿ"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play ಸೇವೆಗಳ ಹೊಸ ಆವೃತ್ತಿ ಅಗತ್ಯವಿದೆ. ಸದ್ಯದಲ್ಲೇ ಅದು ತಾನಾಗಿಯೇ ಅಪ್‌ಡೇಟ್ ಆಗುತ್ತದೆ."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play ಸೇವೆಗಳನ್ನು ನೀವು ಸಕ್ರಿಯಗೊಳಿಸದ ಹೊರತು <ns1:g id="APP_NAME">%1$s</ns1:g> ಕಾರ್ಯನಿರ್ವಹಿಸುವುದಿಲ್ಲ."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"ಸ್ಥಾಪಿಸು"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play ಸೇವೆಗಳನ್ನು ಪಡೆಯಿರಿ"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Google Play ಸೇವೆಗಳಿಲ್ಲದೆ ಪ್ರಸ್ತುತ ಅಪ್‌ಡೇಟ್ ಆಗುತ್ತಿರುವ <ns1:g id="APP_NAME">%1$s</ns1:g> ರನ್ ಆಗುವುದಿಲ್ಲ."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play ಸೇವೆಗಳನ್ನು ಅಪ್‌ಡೇಟ್‌ ಮಾಡಿ"</string><string msgid="5201977337835724196" name="common_open_on_phone">"ಫೋನ್‌ನಲ್ಲಿ ತೆರೆಯಿರಿ"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"ನಿಮ್ಮ ಸಾಧನದ ಮೂಲಕ ಬೆಂಬಲಿಸದಿರುವ Google Play ಸೇವೆಗಳಿಲ್ಲದೆ <ns1:g id="APP_NAME">%1$s</ns1:g> ರನ್‌ ಆಗುವುದಿಲ್ಲ."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"ನಿಮ್ಮ ಸಾಧನದಿಂದ ಕಾಣೆಯಾಗಿರುವ <ns1:g id="APP_NAME">%1$s</ns1:g>, Google Play ಸೇವೆಗಳಿಲ್ಲದೆ ರನ್ ಆಗುವುದಿಲ್ಲ."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play ಸೇವೆಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"ನೀವು Google Play ಸೇವೆಗಳನ್ನು ನವೀಕರಿಸದ ಹೊರತು <ns1:g id="APP_NAME">%1$s</ns1:g> ರನ್ ಆಗುವುದಿಲ್ಲ."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bg/values.xml" qualifiers="bg"><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Изтегляне на услугите за Google Play"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Активиране"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> няма да се изпълнява, тъй като услугите за Google Play не се поддържат от устройството ви."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Актуализиране"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Инсталиране"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Грешка в услугите за Google Play"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> няма да се изпълнява, освен ако не актуализирате услугите за Google Play."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Вход с Google"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Активиране на услугите за Google Play"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> няма да се изпълнява, тъй като услугите за Google Play не са инсталирани на устройството ви."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Вход"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Необходима е нова версия на услугите за Google Play. Скоро тя ще се актуализира автоматично."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Отваряне на телефона"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> няма да работи, освен ако не активирате услугите за Google Play."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Актуализиране на услугите за Google Play"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> няма да се изпълнява без услугите за Google Play. Понастоящем те се актуализират."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sq/values.xml" qualifiers="sq"><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalo"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Identifikohu"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nuk do të funksionojë pa shërbimet e Google Play, të cilat nuk mbështeten nga pajisja jote."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nuk do të funksionojë pa shërbimet e \"Luaj me Google\", të cilat po përditësohen aktualisht."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Merr shërbimet e \"Luaj me Google\""</string><string msgid="5201977337835724196" name="common_open_on_phone">"Hape në telefon"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Aktivizo"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nuk do të funksionojë nëse nuk aktivizon shërbimet e \"Luaj me Google\"."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Gabim në shërbimet e \"Luaj me Google\""</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Përditëso shërbimet e \"Luaj me Google\""</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Aktivizo shërbimet e \"Luaj me Google\""</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Përditëso"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Nevojitet një version i ri i shërbimeve të \"Luaj me Google\". Ai do të përditësohet automatikisht së shpejti."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nuk do të funksionojë nëse nuk përditëson shërbimet e \"Luaj me Google\"."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Identifikohu me Google"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nuk do të funksionojë pa shërbimet e Google Play, të cilat mungojnë në pajisjen tënde."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rCN/values.xml" qualifiers="zh-rCN"><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"必须使用新版 Google Play 服务。该服务很快就会自行更新。"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"启用"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"获取 Google Play 服务"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"更新"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"您必须先更新 Google Play 服务,然后才能运行<ns1:g id="APP_NAME">%1$s</ns1:g>。"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"更新 Google Play 服务"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"安装"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"您必须先启用 Google Play 服务,然后才能运行<ns1:g id="APP_NAME">%1$s</ns1:g>。"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Google Play 服务当前正在更新,因此您无法运行<ns1:g id="APP_NAME">%1$s</ns1:g>。"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"启用 Google Play 服务"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"您的设备没有安装 Google Play 服务,因此无法运行<ns1:g id="APP_NAME">%1$s</ns1:g>。"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"使用 Google 帐号登录"</string><string msgid="5201977337835724196" name="common_open_on_phone">"在手机上打开"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play服务出错"</string><string msgid="3441753203274453993" name="common_signin_button_text">"登录"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"您的设备不支持 Google Play 服务,因此无法运行<ns1:g id="APP_NAME">%1$s</ns1:g>。"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hu/values.xml" qualifiers="hu"><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"A Google Play-szolgáltatások új verziójára van szükség. A szolgáltatás hamarosan frissíti önmagát."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"A Google Play-szolgáltatások frissítése"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play-szolgáltatások engedélyezése"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"A(z) <ns1:g id="APP_NAME">%1$s</ns1:g> alkalmazás nem fut a Google Play-szolgáltatások nélkül, amelyek hiányoznak az eszközről."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Bejelentkezés"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Frissítés"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"A(z) <ns1:g id="APP_NAME">%1$s</ns1:g> alkalmazás nem fut a Google Play-szolgáltatások nélkül, amelyeket eszköze nem támogat."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"A(z) <ns1:g id="APP_NAME">%1$s</ns1:g> alkalmazás csak akkor fog működni, ha frissíti a Google Play-szolgáltatásokat."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"A(z) <ns1:g id="APP_NAME">%1$s</ns1:g> alkalmazás nem fut a Google Play-szolgáltatások nélkül, amelyek frissítése folyamatban van."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Megnyitás a telefonon"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"A(z) <ns1:g id="APP_NAME">%1$s</ns1:g> alkalmazás csak akkor működik, ha  engedélyezi a Google Play-szolgáltatásokat."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Bejelentkezés Google-fiókkal"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Telepítés"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Engedélyezés"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"A Google Play-szolgáltatások beszerzése"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play-szolgáltatások – hiba"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ms/values.xml" qualifiers="ms"><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Ralat perkhidmatan Google Play"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Kemas kini"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berfungsi tanpa perkhidmatan Google Play dan perkhidmatan ini tidak disokong oleh peranti anda."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Kemaskinikan perkhidmatan Google Play"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Dapatkan perkhidmatan Google Play"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Buka pada telefon"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Dayakan"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Pasang"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Log masuk dengan Google"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berfungsi tanpa perkhidmatan Google Play dan perkhidmatan ini tiada pada peranti anda."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berfungsi kecuali anda mengemas kini perkhidmatan Google Play."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berfungsi tanpa perkhidmatan Google Play dan perkhidmatan ini sedang dikemaskinikan."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berfungsi melainkan anda mendayakan perkhidmatan Google Play."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Dayakan perkhidmatan Google Play"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Log masuk"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Versi baharu perkhidmatan Google Play diperlukan. Kemas kini automatik akan dijalankan sebentar lagi."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rHK/values.xml" qualifiers="zh-rHK"><string msgid="7442193194585196676" name="common_google_play_services_install_title">"安裝 Google Play 服務"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"您的裝置不支援 Google Play 服務,因此無法執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」。"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"您必須更新「Google Play 服務」,才能執行 <ns1:g id="APP_NAME">%1$s</ns1:g>。"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"啟用"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"您必須啟用 Google Play 服務,方可執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」。"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"更新"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"啟用 Google Play 服務"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"安裝"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"您的裝置尚未安裝 Google Play 服務,因此無法執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」。"</string><string msgid="5201977337835724196" name="common_open_on_phone">"在手機開啟"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"透過 Google 登入"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"更新 Google Play 服務"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"需要使用新版本的 Google Play 服務。更新會即將自動開始。"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"正在更新 Google Play 服務,更新完成後方可執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」。"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play 服務錯誤"</string><string msgid="3441753203274453993" name="common_signin_button_text">"登入"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ar/values.xml" qualifiers="ar"><string msgid="669893613918351210" name="common_signin_button_text_long">"‏تسجيل الدخول عبر Google"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"تحديث"</string><string msgid="5201977337835724196" name="common_open_on_phone">"فتح على الهاتف"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"‏تمكين خدمات Google Play"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"تثبيت"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"‏لن يتم تشغيل <ns1:g id="APP_NAME">%1$s</ns1:g> بدون خدمات Google Play، والتي يتم تحديثها حاليًا."</string><string msgid="3441753203274453993" name="common_signin_button_text">"تسجل الدخول"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"‏الحصول على خدمات Google Play"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"‏لن يتم تشغيل <ns1:g id="APP_NAME">%1$s</ns1:g> بدون خدمات Google Play التي لا يوفرها جهازك."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"‏تحديث خدمات Google Play"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"‏خطأ في خدمات Google Play"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"‏لن يتم تشغيل <ns1:g id="APP_NAME">%1$s</ns1:g> ما لم يتم تحديث خدمات Google Play."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"تمكين"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"‏لن يعمل <ns1:g id="APP_NAME">%1$s</ns1:g> ما لم يتم تمكين خدمات Google Play."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"‏لن يتم تشغيل <ns1:g id="APP_NAME">%1$s</ns1:g> بدون خدمات Google Play، والتي لا تتوفر على جهازك."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"‏يجب توفر إصدار جديد من خدمات Google Play. سيتم تحديثها تلقائيًا قريبًا."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mk/values.xml" qualifiers="mk"><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> нема да се извршува без услугите на Google Play што ги нема на уредот."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Отвори на телефонот"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Најави се со Google"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Потребна е нова верзија на услугите на Google Play. Таа наскоро самата ќе се ажурира."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Најави се"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> нема да се извршува ако не овозможите услуги на Google Play."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Ажурирај"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Инсталирај"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> нема да се извршува без услугите на Google Play што се ажурираат во моментов."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Овозможи"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> нема да се извршува без услугите на Google Play, што не се подржани од уредов."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> нема да се извршува ако не ги ажурирате услугите на Google Play."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Ажурирај ги услугите на Google Play"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Овозможи ги услугите на Google Play"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Грешка на услугите на Google Play"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Преземи ги услугите на Google Play"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zu/values.xml" qualifiers="zu"><string msgid="7773943415006962566" name="common_google_play_services_update_text">"I-<ns1:g id="APP_NAME">%1$s</ns1:g> ngeke ize iqalise ngaphandle kokuthi ubuyekeze i-Google Play."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Ngena ngemvume"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"I-<ns1:g id="APP_NAME">%1$s</ns1:g> ngeke ize iqalise ngaphandle kwamasevisi we-Google Play, angekho kusukela kudivayisi yakho."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Iphutha lamasevisi we-Google Play"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Vula kufoni"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Kudingeka inguqulo entsha yamasevisi we-Google Play. Izozibuyekeza ngokwayo maduze."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Buyekeza amasevisi we-Google Play"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Ngena ngemvume nge-Google"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"I-<ns1:g id="APP_NAME">%1$s</ns1:g> ngeke isebenze ngaphandle kokuthi unike amandla amasevisi we-Google Play."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Thola amasevisi we-Google Play"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"I-<ns1:g id="APP_NAME">%1$s</ns1:g> ngeke ize iqalise ngaphandle kwamasevisi we-Google Play, okwamanje abuyekezwayo."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Nika amandla amasevisi we-Google Play"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Nika amandla"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ngeke isebenze ngaphandle kwamasevisi e-Google Play, angasekelwa idivayisi yakho."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Isibuyekezo"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Faka"</string></file><file name="googleg_standard_color_18" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/googleg_standard_color_18.png" qualifiers="mdpi-v4" type="drawable"/><file name="common_google_signin_btn_text_dark_normal_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="common_google_signin_btn_icon_light_normal_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="common_google_signin_btn_icon_dark_normal_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="common_google_signin_btn_text_light_normal_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/common_google_signin_btn_text_light_normal_background.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="googleg_disabled_color_18" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-mdpi-v4/googleg_disabled_color_18.png" qualifiers="mdpi-v4" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ne/values.xml" qualifiers="ne"><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play services बिना सञ्चालन हुने छैन र तपाईँको यन्त्रले Google Play services लाई समर्थन गर्दैन।"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ले तपाईँले Google Play सेवाहरू सक्षम नगरेसम्म काम गर्दैन।"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"स्थापना गर्नुहोस्"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play सेवाहरू सक्षम पार्नुहोस्"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"सक्रिय गर्नुहोस्"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google मार्फत साइन‍ इन गर्नुहोस्"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play सेवाहरू अद्यावधिक गर्नुहोस्"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"अद्यावधिक गर्नुहोस्"</string><string msgid="3441753203274453993" name="common_signin_button_text">"साइन इन गर्नुहोस्"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play सेवाहरूको नयाँ संस्करण आवश्यक छ। यो आफै छिट्टै नै अद्यावधिक हुनेछ।"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play सेवाहरूका त्रुटि"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play services बिना सञ्चालन हुने छैन र तपाईँको यन्त्रमा Google Play services उपलब्ध छैनन्।"</string><string msgid="5201977337835724196" name="common_open_on_phone">"फोनमा खोल्नुहोस्"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> तपाईंले Google प्ले सेवाहरू अद्यावधिक नगरेसम्म सञ्चालन हुँदैन।"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play सेवाहरू प्राप्त गर्नुहोस्"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Google Play सेवाहरू <ns1:g id="APP_NAME">%1$s</ns1:g> बिना सञ्‍चालन हुँदैन, जुन हाल अद्यावधिक भइरहेका छन्।"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-in/values.xml" qualifiers="in"><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Dapatkan layanan Google Play"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Aktifkan"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berjalan jika layanan Google Play tidak diperbarui."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Perbarui"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berjalan tanpa layanan Google Play, yang tidak didukung oleh perangkat Anda."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Pasang"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Perbarui layanan Google Play"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berjalan tanpa layanan Google Play, yang tidak ada di perangkat Anda."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Perlu versi baru layanan Google Play. Akan segera memperbarui sendiri."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Buka di ponsel"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Masuk dengan Google"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Kesalahan layanan Google Play"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berjalan tanpa layanan Google Play, yang saat ini sedang diperbarui."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Masuk"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berfungsi jika layanan Google Play tidak diaktifkan."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Aktifkan layanan Google Play"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uk/values.xml" qualifiers="uk"><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Установити сервіси Google Play"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Додаток <ns1:g id="APP_NAME">%1$s</ns1:g> не працюватиме без сервісів Google Play, які не підтримуються на вашому пристрої."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Відкрити на телефоні"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Увімкнути"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Оновити"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Увійти"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Додаток <ns1:g id="APP_NAME">%1$s</ns1:g> не працюватиме, якщо не ввімкнути сервіси Google Play."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Увімкнути сервіси Google Play"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Додаток <ns1:g id="APP_NAME">%1$s</ns1:g> не працюватиме без сервісів Google Play, яких немає на вашому пристрої."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Установити"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Увійти в облік. запис Google"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Помилка сервісів Google Play"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Оновіть сервіси Google Play"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Потрібна нова версія сервісів Google Play. Вони невдовзі оновляться."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Додаток <ns1:g id="APP_NAME">%1$s</ns1:g> не працюватиме, якщо не оновити сервіси Google Play."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Додаток <ns1:g id="APP_NAME">%1$s</ns1:g> не працюватиме без сервісів Google Play, які зараз оновлюються."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-en-rGB/values.xml" qualifiers="en-rGB"><string msgid="3441753203274453993" name="common_signin_button_text">"Sign In"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Enable Google Play services"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play services error"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> won\'t run without Google Play services, which are not supported by your device."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"New version of Google Play services needed. It will update itself shortly."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Enable"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Get Google Play services"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Install"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Open on phone"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> won\'t run without Google Play services, which are missing from your device."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> won\'t run without Google Play services, which are currently updating."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Sign in with Google"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> won\'t work unless you enable Google Play services."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> won\'t run unless you update Google Play services."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Update"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Update Google Play services"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-da/values.xml" qualifiers="da"><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> fungerer ikke uden Google Play-tjenester, som ikke understøttes på din enhed."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Du skal installere Google Play-tjenester, før <ns1:g id="APP_NAME">%1$s</ns1:g> kan køre på din enhed."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Fejl i Google Play-tjenester"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Opdater Google Play-tjenester"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan ikke køre, medmindre du opdaterer Google Play-tjenester."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Opdater"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Åbn på telefonen"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan ikke køre uden Google Play-tjenester, som i øjeblikket opdateres."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installer"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Du skal bruge en ny version af Google Play-tjenester. Opdateringen gennemføres automatisk om et øjeblik."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Log ind"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Du skal aktivere Google Play-tjenester, for at <ns1:g id="APP_NAME">%1$s</ns1:g> kan fungere."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Hent Google Play-tjenester"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Aktivér"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Aktivér Google Play-tjenester"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Log ind med Google"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ky/values.xml" qualifiers="ky"><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play кызматтары жаңыртылмайынча <ns1:g id="APP_NAME">%1$s</ns1:g> иштебейт."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play кызматтарын иштетүү"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play кызматтарын алуу"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play кызматтарынын катасы"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play кызматтарын жаңыртуу"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google менен кирүү"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Иштетүү"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> колдонмосу сиздин түзмөгүңүздө колдоого алынбаган Google Play кызматтары болбосо иштебейт."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play кызматтарын иштетмейиңизче <ns1:g id="APP_NAME">%1$s</ns1:g> иштебейт."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Орнотуу"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Google Play кызматтарысыз <ns1:g id="APP_NAME">%1$s</ns1:g> иштебейт. Алар түзмөгүңүздө жок болуп жатат."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Google Play кызматтарысыз <ns1:g id="APP_NAME">%1$s</ns1:g> иштебейт, алар учурда жаңыртылууда."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play кызматтарынын жаңы версиясы талап кылынат. Бир аздан кийин ал өзү эле жаңыртылат."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Кирүү"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Жаңыртуу"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Телефондо ачык"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-de/values.xml" qualifiers="de"><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play-Dienste aktivieren"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Auf Smartphone öffnen"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installieren"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Zur Nutzung von <ns1:g id="APP_NAME">%1$s</ns1:g> sind Google Play-Dienste erforderlich, die auf deinem Gerät nicht unterstützt werden."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Aktualisieren"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Aktivieren"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> wird nur ausgeführt, wenn du die Google Play-Dienste aktualisierst."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play-Dienste aktualisieren"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play-Dienste installieren"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Fehler bei Zugriff auf Google Play-Dienste"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Zur Nutzung von <ns1:g id="APP_NAME">%1$s</ns1:g> sind die Google Play-Dienste erforderlich, die auf deinem Gerät nicht installiert sind."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Zur Nutzung von <ns1:g id="APP_NAME">%1$s</ns1:g> sind Google Play-Dienste erforderlich, die gerade aktualisiert werden."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Anmelden"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Eine neue Version der Google Play-Dienste wird benötigt. Diese wird in Kürze automatisch aktualisiert."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Über Google anmelden"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> funktioniert erst nach der Aktivierung der Google Play-Dienste."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-af/values.xml" qualifiers="af"><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Nuwe weergawe van Google Play-dienste is nodig. Dit sal binnekort self opdateer."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Dateer Google Play-dienste op"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Aktiveer Google Play-dienste"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sal nie sonder Google Play Dienste werk nie, wat nie op jou toestel is nie."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Meld aan"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sal nie sonder Google Play-dienste werk nie, wat tans opdateer."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Maak oop op foon"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installeer"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Kry Google Play-dienste"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sal nie werk nie tensy jy Google Play-dienste aktiveer."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play Services-fout"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sal nie werk sonder Google Play Dienste nie, wat nie deur jou toestel gesteun word nie."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Meld aan met Google"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sal nie werk nie tensy jy Google Play Dienste opdateer."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Aktiveer"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Dateer op"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ta/values.xml" qualifiers="ta"><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play சேவைகளின் புதிய பதிப்பு தேவை. அது விரைவில் தானாகவே புதுப்பிக்கப்படும்."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"நிறுவு"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google மூலம் உள்நுழைக"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play சேவைகளைப் புதுப்பிக்கவும்"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"இயக்கு"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play சேவைகள் பிழை"</string><string msgid="5201977337835724196" name="common_open_on_phone">"மொபைலில் திற"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play சேவைகளை இயக்கவும்"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play சேவைகளைப் பெறவும்"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play சேவைகளை இயக்கினால் மட்டுமே, <ns1:g id="APP_NAME">%1$s</ns1:g> செயல்படும்."</string><string msgid="3441753203274453993" name="common_signin_button_text">"உள்நுழைக"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"புதுப்பி"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"தற்போது புதுப்பிக்கப்படும், Google Play சேவைகள் இருந்தால் மட்டுமே, <ns1:g id="APP_NAME">%1$s</ns1:g> செயல்படும்."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Google Play சேவைகள் இருந்தால் மட்டுமே, <ns1:g id="APP_NAME">%1$s</ns1:g> இயங்கும். அவை உங்கள் சாதனத்தில் இல்லை."</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Google Play சேவைகள் இருந்தால் மட்டுமே <ns1:g id="APP_NAME">%1$s</ns1:g> பயன்பாடு இயங்கும். ஆனால், உங்கள் சாதனத்தில் அவை ஆதரிக்கப்படவில்லை."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play சேவைகளை இயக்கினால் மட்டுமே, <ns1:g id="APP_NAME">%1$s</ns1:g> செயல்படும்."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nb/values.xml" qualifiers="nb"><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Oppdater"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play Tjenester-feil"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> fungerer ikke med mindre du slår på Google Play-tjenester."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Installer Google Play-tjenester"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kjører ikke uten Google Play-tjenester, som oppdateres akkurat nå."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installer"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan ikke kjøre uten Google Play-tjenester, som ikke støttes av enheten din."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Åpne på telefonen"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Slå på"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Oppdater Google Play-tjenester"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Logg på med Google"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Slå på Google Play-tjenester"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan ikke kjøre uten Google Play-tjenester, som ikke er installert på enheten din."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Logg på"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Du må installere en ny versjon av Google Play-tjenester. Appen oppdateres automatisk om en kort stund."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kjører ikke med mindre du oppdaterer Google Play Tjenester."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-my/values.xml" qualifiers="my"><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play ဝန်ဆောင်မှုများ ဖွင့်ရန်"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"အပ်ဒိတ်"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play ဝန်ဆောင်မှုများကို အပ်ဒိတ်လုပ်ရန်"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"ဖွင့်ရန်"</string><string msgid="5201977337835724196" name="common_open_on_phone">"ဖုန်းပေါ်မှာ ဖွင့်ပါ"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play ဝန်ဆောင်မှုဗားရှင်းအသစ်များ လိုအပ်နေသည်။ အချိန်အနည်းငယ်အကြာတွင် ၎င်းကိုယ်တိုင်အပ်ဒိတ်လုပ်ပါ လိမ့်မည်။"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google ဖြင့် လက်မှတ်ထိုးဝင်ရေ"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play ဝန်ဆောင်မှုများ အမှား"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Google Play ဝန်ဆောင်မှုများကို သင့်စက်ပစ္စည်းတွင် ပံ့ပိုးမထားသည့်အတွက် ၎င်းမရှိဘဲ <ns1:g id="APP_NAME">%1$s</ns1:g> ကို ဖွင့်၍မရပါ။"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"ထည့်သွင်းပါ"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play ဝန်ဆောင်မှုများအား အပ်ဒိတ်မလုပ်ပါက <ns1:g id="APP_NAME">%1$s</ns1:g> အလုပ်လုပ်မည် မဟုတ်ပါ။"</string><string msgid="3441753203274453993" name="common_signin_button_text">"လက်မှတ်ထိုး ဝင်ရန်"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"သင့်တက်ဘလက်တွင် Google Play ဝန်ဆောင်မှုများမရှိသောကြောင့် <ns1:g id="APP_NAME">%1$s</ns1:g> ကိုဖွင့်၍မရပါ။"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Google Play ဝန်ဆောင်မှုများကို လက်ရှိအပ်ဒိတ်လုပ်နေသောကြောင့် <ns1:g id="APP_NAME">%1$s</ns1:g> ကိုဖွင့်၍ရမည်မဟုတ်ပါ။"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play ဝန်ဆောင်မှုများရယူရန်"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play ဝန်ဆောင်မှုများကို မဖွင့်သ၍ <ns1:g id="APP_NAME">%1$s</ns1:g> သည်အလုပ်လုပ်မည်မဟုတ်ပါ။"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-te/values.xml" qualifiers="te"><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play సేవలు లేకుండా అమలు కాదు, ఆ సేవలు మీ పరికరంలో లేవు."</string><string msgid="5201977337835724196" name="common_open_on_phone">"ఫోన్‌లో తెరువు"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play సేవలను ప్రారంభించండి"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"నవీకరించు"</string><string msgid="3441753203274453993" name="common_signin_button_text">"సైన్ ఇన్ చేయి"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Googleతో సైన్ ఇన్ చేయి"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"ప్రారంభించు"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play సేవలను పొందండి"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play సేవల లోపం"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play సేవలు లేకుండా అమలు కాదు, ఈ సేవలకు మీ పరికరంలో మద్దతు లేదు."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"మీరు Google Play సేవలను నవీకరిస్తే మినహా <ns1:g id="APP_NAME">%1$s</ns1:g> అమలు కాదు."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"కొత్త Google Play సేవల సంస్కరణ అవసరం. అది కొద్ది సేపట్లో దానంతట అదే నవీకరించబడుతుంది."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"మీరు Google Play సేవలను ప్రారంభిస్తే మినహా <ns1:g id="APP_NAME">%1$s</ns1:g> పని చేయదు."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play సేవలు లేకుండా అమలు కాదు, ఆ సేవలు ప్రస్తుతం నవీకరించబడుతున్నాయి."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"ఇన్‌స్టాల్ చేయి"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play సేవలను నవీకరించండి"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sk/values.xml" qualifiers="sk"><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Na spustenie aplikácie <ns1:g id="APP_NAME">%1$s</ns1:g> sa vyžadujú služby Google Play, ktoré sa momentálne aktualizujú."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Prihlásiť sa"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Na spustenie aplikácie <ns1:g id="APP_NAME">%1$s</ns1:g> sa vyžadujú služby Google Play, ktoré na zariadení nemáte."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Prihlásiť sa do účtu Google"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Inštalovať služby Google Play"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Otvoriť v telefóne"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Aplikácia <ns1:g id="APP_NAME">%1$s</ns1:g> bude fungovať až po povolení služieb Google Play."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Aktualizovať"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Chyba služieb Google Play"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Vyžaduje sa nová verzia služieb Google Play. Aktualizujú sa automaticky v najbližšom čase."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Inštalovať"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Aplikáciu <ns1:g id="APP_NAME">%1$s</ns1:g> nebude možné spustiť bez služieb Google Play, ktoré vaše zariadenie nepodporuje."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Povoliť služby Google Play"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Aktualizácia služieb Google Play"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Povoliť"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Aplikáciu <ns1:g id="APP_NAME">%1$s</ns1:g> bude možné spustiť až po aktualizácii služieb Google Play."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lv/values.xml" qualifiers="lv"><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Ir nepieciešama jauna Google Play pakalpojumu versija. Drīzumā tā tiks instalēta."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Pierakstīties ar Google kontu"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Lai lietotne <ns1:g id="APP_NAME">%1$s</ns1:g> darbotos, ir jāiespējo Google Play pakalpojumi."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Lai lietotne <ns1:g id="APP_NAME">%1$s</ns1:g> darbotos, ierīcē ir jāinstalē Google Play pakalpojumi."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Lai lietotne <ns1:g id="APP_NAME">%1$s</ns1:g> darbotos, jums ir jāatjaunina Google Play pakalpojumi."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Atvērt tālrunī"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Lai lietotne <ns1:g id="APP_NAME">%1$s</ns1:g> darbotos, ir jāinstalē Google Play pakalpojumi. Pašlaik notiek to atjaunināšana."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalēt"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play pakalpojumu atjaunināšana"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play pakalpojumu iegūšana"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play pakalpojumu kļūda"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Iespējot"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Pierakstīties"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play pakalpojumu iespējošana"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Lai lietotne <ns1:g id="APP_NAME">%1$s</ns1:g> darbotos, ir nepieciešami Google Play pakalpojumi, taču jūsu ierīce tos neatbalsta."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Atjaunināt"</string></file><file name="googleg_standard_color_18" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/googleg_standard_color_18.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="common_google_signin_btn_text_dark_normal_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="common_google_signin_btn_icon_light_normal_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="common_google_signin_btn_icon_dark_normal_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="common_google_signin_btn_text_light_normal_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="googleg_disabled_color_18" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-xxhdpi-v4/googleg_disabled_color_18.png" qualifiers="xxhdpi-v4" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ko/values.xml" qualifiers="ko"><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play 서비스 업데이트"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"사용 설정"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"업데이트"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play 서비스 사용"</string><string msgid="5201977337835724196" name="common_open_on_phone">"스마트폰에서 열기"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"현재 업데이트 중인 Google Play 서비스가 있어야 <ns1:g id="APP_NAME">%1$s</ns1:g>이(가) 실행됩니다."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play 서비스를 사용하도록 설정해야 <ns1:g id="APP_NAME">%1$s</ns1:g>이(가) 작동합니다."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play 서비스 설치"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"새 버전의 Google Play 서비스가 필요합니다. 곧 자동으로 업데이트됩니다."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google 계정으로 로그인"</string><string msgid="3441753203274453993" name="common_signin_button_text">"로그인"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"기기에 Google Play 서비스가 설치되어 있어야 <ns1:g id="APP_NAME">%1$s</ns1:g>이(가) 실행됩니다."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play 서비스 오류"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>은(는) Google Play 서비스 없이는 실행되지 않으나, 기기에서 Google Play 서비스를 지원하지 않습니다."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play 서비스를 업데이트해야 <ns1:g id="APP_NAME">%1$s</ns1:g>이(가) 실행됩니다."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"설치"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ca/values.xml" qualifiers="ca"><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no funcionarà si no actives els Serveis de Google Play."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no s\'executarà si el dispositiu no té instal·lats els serveis de Google Play."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no s\'executarà sense els Serveis de Google Play, que s\'estan actualitzant en aquest moment."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Inicia sessió"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instal·la"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no s\'executarà si no actualitzes els Serveis de Google Play."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Activa"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no es pot executar sense els serveis de Google Play, però no són compatibles amb el teu dispositiu."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Actualitza"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Obtén els Serveis de Google Play"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Inicia la sessió amb Google"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Activa els Serveis de Google Play"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Actualitza els Serveis de Google Play"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Cal una nova versió dels Serveis de Google Play. S\'actualitzaran automàticament aviat."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Error dels Serveis de Google Play"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Obre al telèfon"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-iw/values.xml" qualifiers="iw"><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"‏האפליקציה <ns1:g id="APP_NAME">%1$s</ns1:g> לא תפעל ללא שירותי Google Play, שמתעדכנים כרגע."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"הפעל"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"‏קבל את שירותי Google Play"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"‏דרושה גרסה חדשה של שירותי Google Play. הגרסה תתעדכן בעצמה תוך זמן קצר."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"‏עדכון שירותי Google Play"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"‏הפעל את שירותי Google Play"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"‏האפליקציה <ns1:g id="APP_NAME">%1$s</ns1:g> לא תפעל אם לא תפעיל את שירותי Google Play."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"‏היכנס באמצעות Google"</string><string msgid="5201977337835724196" name="common_open_on_phone">"פתח בטלפון"</string><string msgid="3441753203274453993" name="common_signin_button_text">"היכנס"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"התקן"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"‏האפליקציה <ns1:g id="APP_NAME">%1$s</ns1:g> לא תפעל ללא שירותי Google Play, שאינם מותקנים במכשיר."</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> לא תפעל ללא שירותי Google Play, שאינם נתמכים במכשיר שלך."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"‏שגיאה בשירותי Google Play"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> לא יפעל אם לא תעדכן את שירותי Google Play."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"עדכן"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sv/values.xml" qualifiers="sv"><string msgid="669893613918351210" name="common_signin_button_text_long">"Logga in med Google"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> fungerar inte utan Google Play-tjänsterna, som inte stöds på enheten."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan inte köras utan Google Play-tjänsterna, som saknas på enheten."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Fel på Google Play-tjänster"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Uppdatera"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Aktivera Google Play-tjänster"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"En ny version av Google Play-tjänster krävs. Den uppdateras automatiskt inom kort."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> fungerar inte om du inte aktiverar Google Play-tjänster."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Uppdatera Google Play-tjänster"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Logga in"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan inte köras om du inte uppdaterar Google Play-tjänsterna."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Öppna på mobilen"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Aktivera"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Hämta Google Play-tjänster"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan inte köras utan Google Play-tjänster, och dessa uppdateras för närvarande."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installera"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gu/values.xml" qualifiers="gu"><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>, Google Play સેવાઓ વગર શરૂ થશે નહીં, જે વર્તમાનમાં અપડેટ થઈ રહી છે."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google માં સાઇન ઇન કરો"</string><string msgid="5201977337835724196" name="common_open_on_phone">"ફોનમાં ખોલો"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play સેવાઓ સક્ષમ કરો"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>, Google Play સેવાઓ વગર ચાલશે નહીં, જે તમારા ઉપકરણમાંથી ખૂટે છે."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play સેવાઓ મેળવો"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play સેવાઓના નવા સંસ્કરણની જરૂર છે. તે ટૂંક સમયમાં પોતાને અપડેટ કરશે."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"સક્ષમ કરો"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play સેવાઓની ભૂલ"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"અપડેટ કરો"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"તમે Google Play સેવાઓ અપડેટ કરશો નહીં ત્યાં સુધી <ns1:g id="APP_NAME">%1$s</ns1:g> શરૂ થશે નહીં."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"તમે Google Play સેવાઓ સક્ષમ કરશો નહીં ત્યાં સુધી <ns1:g id="APP_NAME">%1$s</ns1:g> કાર્ય કરશે નહીં."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"ઇન્સ્ટૉલ કરો"</string><string msgid="3441753203274453993" name="common_signin_button_text">"સાઇન ઇન કરો"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play સેવાઓ અપડેટ કરો"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>, Google Play સેવાઓ વગર ચાલશે નહીં, જે તમારા ઉપકરણ દ્વારા સમર્થિત નથી."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-gl/values.xml" qualifiers="gl"><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non se executará sen os servizos de Google Play, que se están actualizando neste momento."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Iniciar sesión con Google"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Abrir no teléfono"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Erro nos servizos de Google Play"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalar"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non se executará sen os servizos de Google Play, que non son compatibles co teu dispositivo."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Activar servizos de Google Play"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non se executará se o teu dispositivo non ten instalados os servizos de Google Play."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Actualizar"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non funcionará a menos que actives os servizos de Google Play."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non se executará a menos que actualices os servizos de Google Play."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Activar"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Iniciar sesión"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Actualizar os servizos de Google Play"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Necesítase a nova versión dos servizos de Google Play. Actualizarase en breve."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Descargar servizos de Google Play"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-is/values.xml" qualifiers="is"><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Setja upp"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> getur ekki keyrt án þjónustu Google Play, sem verið er að uppfæra."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Sækja þjónustu Google Play"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> getur ekki keyrt án þjónustu Google Play, sem er ekki studd af tækinu þínu."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Uppfæra"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Skrá inn með Google"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Nýja útgáfu af þjónustu Google Play vantar. Hún uppfærir sig sjálf innan skamms."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Virkja þjónustu Google Play"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Villa í þjónustu Google Play"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Opna í símanum"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> getur ekki keyrt án þjónustu Google Play, sem vantar í tækið þitt."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> virkar ekki nema þú gerir þjónustu Google Play virka."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> getur ekki keyrt nema þú uppfærir þjónustu Google Play."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Uppfæra þjónustu Google Play"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Skrá inn"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Kveikja"</string></file><file name="common_google_signin_btn_icon_dark_focused" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark_focused.xml" qualifiers="" type="drawable"/><file name="common_google_signin_btn_icon_dark_normal" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark_normal.xml" qualifiers="" type="drawable"/><file name="common_google_signin_btn_text_light_normal" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light_normal.xml" qualifiers="" type="drawable"/><file name="common_google_signin_btn_icon_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light.xml" qualifiers="" type="drawable"/><file name="common_google_signin_btn_icon_disabled" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_disabled.xml" qualifiers="" type="drawable"/><file name="common_google_signin_btn_icon_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_dark.xml" qualifiers="" type="drawable"/><file name="common_google_signin_btn_text_disabled" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_disabled.xml" qualifiers="" type="drawable"/><file name="common_google_signin_btn_text_light_focused" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light_focused.xml" qualifiers="" type="drawable"/><file name="common_google_signin_btn_text_dark_normal" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark_normal.xml" qualifiers="" type="drawable"/><file name="common_google_signin_btn_text_dark_focused" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark_focused.xml" qualifiers="" type="drawable"/><file name="common_google_signin_btn_text_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_light.xml" qualifiers="" type="drawable"/><file name="common_google_signin_btn_text_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_text_dark.xml" qualifiers="" type="drawable"/><file name="common_google_signin_btn_icon_light_normal" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light_normal.xml" qualifiers="" type="drawable"/><file name="common_google_signin_btn_icon_light_focused" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable/common_google_signin_btn_icon_light_focused.xml" qualifiers="" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ro/values.xml" qualifiers="ro"><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Actualizați"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Actualizați serviciile Google Play"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Activați serviciile Google Play"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nu va rula fără serviciile Google Play, care lipsesc de pe dispozitivul dvs."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalați"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Este necesară o nouă versiune a serviciilor Google Play. Se vor actualiza automat în curând."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Conectați-vă cu Google"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Conectați-vă"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Eroare a serviciilor Google Play"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Deschideți pe telefon"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nu va rula fără serviciile Google Play, care momentan se actualizează."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nu va funcționa decât dacă activați serviciile Google Play."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Descărcați serviciile Google Play"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nu va rula fără serviciile Google Play, care nu sunt acceptate de dispozitivul dvs."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Activați"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nu va rula decât dacă actualizați serviciile Google Play."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lo/values.xml" qualifiers="lo"><string msgid="8706675115216073244" name="common_google_play_services_update_title">"ອັບເດດການ​ບໍ​ລິ​ການ Google Play"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"ເປີດໃຊ້ການ​ບໍ​ລິ​ການ Google Play"</string><string msgid="3441753203274453993" name="common_signin_button_text">"ລົງຊື່ເຂົ້າໃຊ້"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ຈະບໍ່ສາມາດເປີດໃຊ້ໄດ້ຫາກບໍ່ມີການບໍລິການ Google Play ເຊິ່ງແທັບເລັດຂອງທ່ານບໍ່ມີ."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ຈະບໍ່ສາມາດໃຊ້ງານໄດ້ຈົນກວ່າທ່ານຈະເປີດໃຊ້ງານ​ການ​ບໍ​ລິ​ການ Google Play."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"ອັບເດດ"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ຈະບໍ່ສາມາດເຮັດວຽກໄດ້ຈົນກວ່າທ່ານຈະອັບເດດການ​ບໍ​ລິ​ການ Google Play"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"ເປີດນຳໃຊ້"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"ຈຳ​ເປັນ​ຕ້ອງ​ມີ​ກາ​ນ​ບໍ​ລິ​ການ Google Play ເວີ​ຊັນ​ໃໝ່. ມັນ​ຈະ​ອັບ​ເດດ​ຕົວ​ເອງ​ໄວໆ​ນີ້."</string><string msgid="5201977337835724196" name="common_open_on_phone">"​ເປີດ​ໃນ​ໂທ​ລະ​ສັບ"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"ຕິດຕັ້ງບໍລິການ Google Play"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"ຕິດຕັ້ງ"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"ລົງຊື່ເຂົ້າໃຊ້ດ້ວຍ Google"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play Services ​ເກີດ​ຄວາມ​ຜິດ​ພາດ"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ຈະບໍ່ສາມາດໃຊ້ງານໄດ້ໂດຍທີ່ບໍ່ມີການ​ບໍ​ລິ​ການ Google Play, ເຊິ່ງ​ກຳ​ລັງ​ອັບ​ເດດ​ຢູ່​ໃນ​ປະ​ຈຸ​ບັນ."</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ຈະບໍ່ສາມາດໃຊ້ໄດ້ຫາກບໍ່ມີບໍລິການ Google Play ເຊິ່ງອຸປະກອນຂອງທ່ານບໍ່ຮອງຮັບ."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ja/values.xml" qualifiers="ja"><string msgid="8179894293032530091" name="common_google_play_services_install_text">"「<ns1:g id="APP_NAME">%1$s</ns1:g>」の実行には Google Play 開発者サービスが必要ですが、お使いの端末にはインストールされていません。"</string><string msgid="3441753203274453993" name="common_signin_button_text">"ログイン"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play開発者サービスの入手"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>の実行にはGoogle Play開発者サービスが必要ですが、このサービスは現在更新中です。"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"「<ns1:g id="APP_NAME">%1$s</ns1:g>」の実行には Google Play 開発者サービスが必要ですが、お使いの端末ではサポートされていません。"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play開発者サービスの更新"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play開発者サービスの有効化"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Googleにログイン"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>の実行にはGoogle Play開発者サービスの更新が必要です。"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>の実行には、Google Play開発者サービスの有効化が必要です。"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"更新"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play開発者サービスの新しいバージョンが必要です。まもなく自動更新されます。"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play開発者サービスのエラー"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"有効にする"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"インストール"</string><string msgid="5201977337835724196" name="common_open_on_phone">"スマートフォンで開く"</string></file><file name="googleg_standard_color_18" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/googleg_standard_color_18.png" qualifiers="hdpi-v4" type="drawable"/><file name="common_google_signin_btn_text_dark_normal_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="common_google_signin_btn_icon_light_normal_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="common_full_open_on_phone" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_full_open_on_phone.png" qualifiers="hdpi-v4" type="drawable"/><file name="common_google_signin_btn_icon_dark_normal_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="common_google_signin_btn_text_light_normal_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/common_google_signin_btn_text_light_normal_background.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="googleg_disabled_color_18" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/drawable-hdpi-v4/googleg_disabled_color_18.png" qualifiers="hdpi-v4" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-kk/values.xml" qualifiers="kk"><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Жаңарту"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Қосу"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Google Play қызметтері құрылғыда болмағандықтан, <ns1:g id="APP_NAME">%1$s</ns1:g> іске қосылмайды."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play қызметтерін қосу"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play қызметтерінің жаңа нұсқасы қажет. Ол қысқа уақыттан кейін өзі жаңарады."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play қызметтерінің қатесі"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> қолданбасы құрылғыңызда қолдау көрсетілмейтін Google Play қызметінсіз жұмыс істемейді."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play қызметтерін алу"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Қазіргі уақытта жаңартылып жатқан Google Play қызметтерінсіз <ns1:g id="APP_NAME">%1$s</ns1:g> іске қосылмайды."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Кіру"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Орнату"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google арқылы кіру"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play қызметтерін қоспасаңыз, <ns1:g id="APP_NAME">%1$s</ns1:g> жұмыс істемейді."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play қызметтерін жаңарту"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play қызметтерін жаңартпасаңыз, <ns1:g id="APP_NAME">%1$s</ns1:g> іске қосылмайды."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Телефонда ашу"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-km/values.xml" qualifiers="km"><string msgid="8172070149091615356" name="common_google_play_services_update_button">"អាប់ដេត"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"បើក"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> នឹងមិនដំណើរការទេ លុះត្រាតែអ្នកបើកសេវាកម្ម Google Play។"</string><string msgid="5201977337835724196" name="common_open_on_phone">"បើកតាមទូរស័ព្ទ"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> នឹងមិនដំណើរការទេ បើមិនមានសេវាកម្ម Google Play ដោយសារតែវាកំពុងអាប់ដេត។"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"ទាញយកសេវាកម្ម Google Play"</string><string msgid="3441753203274453993" name="common_signin_button_text">"ចូល"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"ចូលដោយប្រើ Google"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"ដំឡើង"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"អាប់ដេតសេវាកម្ម Google Play"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> នឹងមិនដំណើរការដោយគ្មានសេវាកម្មរបស់ Google Play ដែលឧបករណ៍របស់អ្នកមិនគាំទ្រនោះទេ។"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"កំហុស​​សេវាកម្ម​ Google កម្សាន្ត"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"តម្រូវឲ្យមានកំណែថ្មីនៃសេវាកម្ម Google Play។ វានឹងអាប់ដេតដោយខ្លួនវានៅពេលបន្តិចទៀតនេះ។"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> នឹងមិនដំណើរការទេ លុះត្រាតែអ្នកធ្វើបច្ចុប្បន្នភាពសេវាកម្ម Google Play។"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"បើកសេវាកម្ម Google Play"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> នឹងមិនដំណើរការទេ ប្រសិនបើមិនមានសេវាកម្មនានារបស់ Google Play ដែលបានបាត់ពីឧបករណ៍របស់អ្នក។"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sr/values.xml" qualifiers="sr"><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Преузмите Google Play услуге"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не може да се покрене без Google Play услуга, које се тренутно ажурирају."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Пријави ме на Google"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Ажурирајте Google Play услуге"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Инсталирај"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Омогући"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> неће функционисати ако не омогућите Google Play услуге."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Потребна је нова верзија Google Play услуга. Ускоро ће се ажурирати."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Пријави ме"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Ажурирај"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Омогућите Google Play услуге"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не може да се покрене без Google Play услуга, које нису инсталиране на уређају."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Отвори на телефону"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Грешка Google Play услуга"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не може да се покрене ако не ажурирате Google Play услуге."</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не може да се покрене без Google Play услуга, које уређај не подржава."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hi/values.xml" qualifiers="hi"><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play सेवाओं के नए वर्शन की आवश्यकता है. यह स्वयं को जल्दी ही अपडेट करेगा."</string><string msgid="3441753203274453993" name="common_signin_button_text">"प्रवेश करें"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play सेवाएं सक्षम करना"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> तब तक कार्य नहीं करेगा जब तक आप Google Play सेवाओं को सक्षम नहीं करते."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"अपडेट करें"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> तब तक नहीं चलेगा जब तक आप Google Play सेवाओं को अपडेट नहीं करते."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play सेवाओं को अपडेट करें"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> उन Google Play सेवाओं के बिना नहीं चलेगा, जो आपके डिवाइस द्वारा समर्थित नहीं हैं."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play सेवाएं प्राप्त करना"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> उन Google Play सेवाओं के बिना नहीं चलेगा जो वर्तमान में अपडेट हो रही हैं."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"इंस्टॉल करें"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> उन Google Play सेवाओं के बिना नहीं चलेगा जो आपके डिवाइस में उपलब्ध नहीं हैं."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"सक्षम करें"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google के साथ प्रवेश करें"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play सेवाएं त्रुटि"</string><string msgid="5201977337835724196" name="common_open_on_phone">"फ़ोन पर खोलें"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-lt/values.xml" qualifiers="lt"><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Atnaujinkite „Google Play“ paslaugas"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"„Google Play“ paslaugų klaida"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Prisijungti naudojant „Google“"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"„<ns1:g id="APP_NAME">%1$s</ns1:g>“ neveiks, jei neįgalinsite „Google Play“ paslaugų."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Gaukite „Google Play“ paslaugas"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"„<ns1:g id="APP_NAME">%1$s</ns1:g>“ nebus paleidžiama, jei neatnaujinsite „Google Play“ paslaugų."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"„<ns1:g id="APP_NAME">%1$s</ns1:g>“ nebus paleidžiama be „Google Play“ paslaugų, kurios šiuo metu atnaujinamos."</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Programa „<ns1:g id="APP_NAME">%1$s</ns1:g>“ nebus paleidžiama be „Google Play“ paslaugų, kurių jūsų įrenginys nepalaiko."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Atnaujinti"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Įgalinti"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Reikia naujos versijos „Google Play“ paslaugų. Jos netrukus bus atnaujintos."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Įdiegti"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Atidaryti telefone"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Įgalinkite „Google Play“ paslaugas"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Programa „<ns1:g id="APP_NAME">%1$s</ns1:g>“ nebus paleidžiama be „Google Play“ paslaugų, kurių nėra įrenginyje."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Prisijungti"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mr/values.xml" qualifiers="mr"><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play सेवा त्रुटी"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play सेवांच्या नवीन आवृत्तीची आवश्यकता आहे. हे स्वत:ला लवकरच अद्यतनित करेल."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play सेवा मिळवा"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"सक्षम करा"</string><string msgid="3441753203274453993" name="common_signin_button_text">"साइन इन करा"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"आपण Google Play सेवा सक्षम केल्याशिवाय <ns1:g id="APP_NAME">%1$s</ns1:g> हा अॅप कार्य करणार नाही."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google सह साइन इन करा"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"आपण Google Play सेवा अद्यतनित करेपर्यंत <ns1:g id="APP_NAME">%1$s</ns1:g> चालणार नाही."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"सध्‍या अद्यतनित होत असलेल्‍या, Google Play सेवांशिवाय <ns1:g id="APP_NAME">%1$s</ns1:g> चालणार नाही."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play सेवा अद्यतनित करा"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play सेवा सक्षम करा"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Google Play सेवा आपल्या डिव्हाइसवर उपलब्ध नाही, त्याशिवाय <ns1:g id="APP_NAME">%1$s</ns1:g> चालणार नाही."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"स्‍थापित करा"</string><string msgid="5201977337835724196" name="common_open_on_phone">"फोनवर उघडा"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"आपले डिव्हाइस समर्थन देत नसलेल्या, Google Play सेवांशिवाय <ns1:g id="APP_NAME">%1$s</ns1:g> चालणार नाही."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"अद्यतनित करा"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es/values.xml" qualifiers="es"><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalar"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no funcionará hasta que no actualices Servicios de Google Play."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no funcionará hasta que no habilites Servicios de Google Play."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Se necesita una nueva versión de Servicios de Google Play. Se actualizará en breve."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Habilita Servicios de Google Play"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Actualiza Servicios de Google Play"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Error de Servicios de Google Play"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Habilitar"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"No es posible ejecutar la aplicación <ns1:g id="APP_NAME">%1$s</ns1:g> sin los Servicios de Google Play, que no son compatibles con tu dispositivo."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Descargar Servicios de Google Play"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Iniciar sesión con Google"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no se ejecutará si los Servicios de Google Play no están instalados en tu dispositivo."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Actualizar"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Abrir en teléfono"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no se ejecutará hasta que finalice la actualización en curso de Servicios de Google Play."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Iniciar sesión"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tl/values.xml" qualifiers="tl"><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Hindi gagana ang <ns1:g id="APP_NAME">%1$s</ns1:g> maliban kung ie-enable mo ang mga serbisyo ng Google Play."</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Hindi gagana ang <ns1:g id="APP_NAME">%1$s</ns1:g> nang wala ang mga serbisyo ng Google Play, na hindi nasusuportahan ng iyong device."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Hindi gagana ang <ns1:g id="APP_NAME">%1$s</ns1:g> maliban kung i-a-update mo ang mga serbisyo ng Google Play."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Hindi gagana ang <ns1:g id="APP_NAME">%1$s</ns1:g> nang wala ang mga serbisyo ng Google Play na wala sa iyong device."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Mag-sign in sa Google"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Buksan sa telepono"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"I-enable"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"I-install"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"I-enable ang mga serbisyo ng Google Play"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Mag-sign in"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Error sa Mga Serbisyo ng Google Play"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Kunin ang mga serbisyo ng Google Play"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"I-update ang mga serbisyo ng Google Play"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Hindi gagana ang <ns1:g id="APP_NAME">%1$s</ns1:g> nang wala ang mga serbisyo ng Google Play na kasalukuyang ina-update."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"I-update"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Kailangan ang bagong bersyon ng mga serbisyo ng Google Play. Mag-a-update itong mag-isa sa ilang sandali."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-nl/values.xml" qualifiers="nl"><string msgid="669893613918351210" name="common_signin_button_text_long">"Inloggen met Google"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installeren"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan niet worden uitgevoerd, tenzij je Google Play-services updatet."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Inschakelen"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan niet worden uitgevoerd zonder Google Play-services, die niet worden ondersteund op je apparaat."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> werkt niet, tenzij je Google Play-services inschakelt."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan niet worden uitgevoerd zonder Google Play-services, die momenteel worden geüpdatet."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Inloggen"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play-services ophalen"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play-services inschakelen"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Fout met Google Play-services"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play-services updaten"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Updaten"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan niet worden uitgevoerd zonder Google Play-services, die je nog niet op je apparaat hebt."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Er is een nieuwe versie van Google Play-services vereist. De update wordt binnenkort automatisch uitgevoerd."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Openen op telefoon"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-uz/values.xml" qualifiers="uz"><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ishlashi uchun qurilmangizda Google Play xizmatlarini o‘rnatish lozim."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ilovasining ishlashi uchun zarur Google Play xizmatlari hozirda yangilanmoqda."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play xizmatlarining yangi versiyasi zarur. U o‘zini qisqa vaqt ichida yangilaydi."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play xizmatlari yangilanmaguncha, <ns1:g id="APP_NAME">%1$s</ns1:g> ishga tushmaydi."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Yangilash"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play xizmatlarini yoqish"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"O‘rnatish"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google orqali kirish"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play xizmatlari xatosi"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ilovasi Google Play xizmatlarisiz ishlamaydi, biroq qurilmangiz ularni qo‘llab-quvvatlamaydi."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Telefonda ochish"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play xizmatlarini yangilash"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Yoqish"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Kirish"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play xizmatlari yoqilmaguncha, <ns1:g id="APP_NAME">%1$s</ns1:g> ishlamaydi."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play xizmatlarini o‘rnatish"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bs/values.xml" qualifiers="bs"><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> neće raditi bez Google Play usluga, koje se trenutno ažuriraju."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Nabavite Google Play usluge"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Omogući"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> neće raditi bez Google Play usluga, koje vaš uređaj ne podržava."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Potrebna je nova verzija Google Play usluga. Ubrzo će se samo ažurirati."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Ažuriranje Google Play usluga"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Prijavi se"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Greška Google Play usluge"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> neće raditi ako ne omogućite Google Play usluge."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Ažuriraj"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Prijavi se pomoću Googlea"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Omogućite Google Play usluge"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> neće raditi bez Google Play usluga, kojih na vašem uređaju nema."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instaliraj"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> neće raditi ako ne ažurirate Google Play usluge."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Otvori na telefonu"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-vi/values.xml" qualifiers="vi"><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Cập nhật dịch vụ của Google Play"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Bật dịch vụ của Google Play"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Đăng nhập bằng Google"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sẽ không chạy nếu không có dịch vụ của Google Play. Thiết bị của bạn bị thiếu dịch vụ này."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Cần phiên bản mới của dịch vụ Google Play. Dịch vụ sẽ sớm tự động cập nhật."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Cài đặt"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Bật"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sẽ không hoạt động nếu bạn không bật dịch vụ của Google Play."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Cập nhật"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Đăng nhập"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Lỗi dịch vụ của Google Play"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sẽ không chạy nếu không có các dịch vụ của Google Play. Thiết bị của bạn không hỗ trợ các dịch vụ này."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sẽ không chạy trừ khi bạn cập nhật Dịch vụ của Google Play."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sẽ không chạy nếu không có dịch vụ của Google Play. Dịch vụ này hiện đang cập nhật."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Mở trên điện thoại"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Cài đặt dịch vụ của Google Play"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fa/values.xml" qualifiers="fa"><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"‏خطا در خدمات Google Play"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"به‌روزرسانی"</string><string msgid="5201977337835724196" name="common_open_on_phone">"باز کردن در تلفن"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"فعال کردن"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"‏‫به‌روزرسانی سرویس‌های Google Play"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"‏نسخه جدید سرویس‌های Google Play نیاز است. به‌زودی به‌طور خودکار به‌روزرسانی می‌شود."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"‏ورود به سیستم با Google‎"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"‏دریافت سرویس‌های Google Play"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"‏تا وقتی سرویس‌های Google Play را فعال نکنید، <ns1:g id="APP_NAME">%1$s</ns1:g> کار نمی‌کند."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> بدون سرویس‌های Google Play که درحال حاضر درحال به‌روزرسانی هستند، کار نمی‌کند."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"نصب"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"‏تاز مانی که سرویس‌های Google Play را به‌روزرسانی نکنید، <ns1:g id="APP_NAME">%1$s</ns1:g> اجرا نمی‌شود."</string><string msgid="3441753203274453993" name="common_signin_button_text">"ورود به سیستم"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"‏‫فعال کردن سرویس‌های Google Play"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> بدون خدمات Google Play که در دستگاه شما وجود ندارد اجرا نمی‌شود."</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> بدون خدمات Google Play که در دستگاه شما پشتیبانی نمی‌شود، اجرا نخواهد شد."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-it/values.xml" qualifiers="it"><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Installa Google Play Services"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Aggiorna Google Play Services"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non funzionerà senza Google Play Services, attualmente in fase di aggiornamento."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Errore Google Play Services"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"È richiesta una nuova versione di Google Play Services. L\'aggiornamento automatico verrà eseguito a breve."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Attiva Google Play Services"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Accedi"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non funzionerà senza Google Play Services, non supportati dal tuo dispositivo."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installa"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non funzionerà se non attivi Google Play Services."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"L\'app <ns1:g id="APP_NAME">%1$s</ns1:g> non funzionerà senza Google Play Services, non presente sul tuo dispositivo."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Aggiorna"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Apri sul telefono"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Accedi con Google"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non funzionerà se non aggiorni Google Play Services."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Attiva"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ur/values.xml" qualifiers="ur"><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"‏Google Play سروسز کے نئے ورژن کی ضرورت ہے۔ یہ تھوڑی دیر میں خود ہی اپنے آپ کو اپ ڈیٹ کر لے گا۔"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"فعال کریں"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"‏جب تک آپ Google Play سروسز فعال نہیں کر لیتے، <ns1:g id="APP_NAME">%1$s</ns1:g> کام نہیں کرے گی۔"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"‏Google کے ساتھ سائن ان کریں"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"‏Google Play سروسز فعال کریں"</string><string msgid="3441753203274453993" name="common_signin_button_text">"سائن ان کریں"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"‏جب تک آپ Google Play سروسز اپ ڈیٹ نہیں کر لیتے ہیں <ns1:g id="APP_NAME">%1$s</ns1:g> تب تک نہیں چلے گی۔"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"‏Google Play سروسز حاصل کریں"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"‏Google Play سروسز کی خرابی"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play سروسز کے بغیر نہیں چلے گی، جو فی الحال اپ ڈیٹ ہو رہی ہیں۔"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play سروسز کے بغیر نہیں چلے گی، جو آپ کے آلہ سے غائب ہیں۔"</string><string msgid="5201977337835724196" name="common_open_on_phone">"فون پر کھولیں"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"انسٹال کریں"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play سروسز کے بغیر نہیں چلے گی، جن کی آپ کا آلہ معاونت نہیں کرتا۔"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"‏Google Play سروسز اپ ڈیٹ کریں"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"اپ ڈیٹ کریں"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ru/values.xml" qualifiers="ru"><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Для работы приложения \"<ns1:g id="APP_NAME">%1$s</ns1:g>\" требуется установить сервисы Google Play."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Обновить"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Версия сервисов Google Play устарела. Они автоматически обновятся в ближайшее время."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Включить"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Ошибка сервисов Google Play"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Включите сервисы Google Play"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Войти через аккаунт Google"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Установите сервисы Google Play"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Сервисы Google Play, необходимые для работы приложения \"<ns1:g id="APP_NAME">%1$s</ns1:g>\", в настоящий момент обновляются."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Открыть на телефоне"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Для работы приложения \"<ns1:g id="APP_NAME">%1$s</ns1:g>\" требуется включить сервисы Google Play."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Установить"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Войти"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Чтобы запустить приложение \"<ns1:g id="APP_NAME">%1$s</ns1:g>\", обновите сервисы Google Play."</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Для работы с приложением \"<ns1:g id="APP_NAME">%1$s</ns1:g>\" требуются сервисы Google Play. Они не поддерживаются на вашем устройстве."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Обновите сервисы Google Play"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rPT/values.xml" qualifiers="pt-rPT"><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"O <ns1:g id="APP_NAME">%1$s</ns1:g> não é executado sem os serviços do Google Play, os quais estão a ser atualizados."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Erro dos Serviços do Google Play"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Obter serviços do Google Play"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Ativar"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalar"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Não é possível executar o <ns1:g id="APP_NAME">%1$s</ns1:g> sem os Serviços do Google Play, os quais não são compatíveis com o seu dispositivo."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"O <ns1:g id="APP_NAME">%1$s</ns1:g> não é executado enquanto não atualizar os serviços do Google Play."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"O <ns1:g id="APP_NAME">%1$s</ns1:g> não funciona enquanto não ativar os serviços do Google Play."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Atualizar"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Atualizar serviços do Google Play"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Ativar serviços do Google Play"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"O <ns1:g id="APP_NAME">%1$s</ns1:g> não é executado sem os Serviços do Google Play, os quais estão em falta no seu dispositivo."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"É necessária uma nova versão dos serviços do Google Play. Esta será atualizada automaticamente em breve."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Abrir no telemóvel"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Iniciar sessão com o Google"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Iniciar sessão"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-zh-rTW/values.xml" qualifiers="zh-rTW"><string msgid="7773943415006962566" name="common_google_play_services_update_text">"您必須更新 Google Play 服務,才能執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」。"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」所需的 Google Play 服務正在更新。"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"您必須啟用 Google Play 服務,才能執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」。"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"更新 Google Play 服務"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"安裝"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"更新"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"您的裝置不支援 Google Play 服務,因此無法執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」。"</string><string msgid="3441753203274453993" name="common_signin_button_text">"登入"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"使用 Google 帳戶登入"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play 服務發生錯誤"</string><string msgid="5201977337835724196" name="common_open_on_phone">"在手機上開啟"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"必須使用新版 Google Play 服務。該服務稍後就會自動更新。"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"啟用"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"取得 Google Play 服務"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"啟用 Google Play 服務"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"您的裝置並未安裝 Google Play 服務,因此無法執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」。"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-ka/values.xml" qualifiers="ka"><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ვერ გაეშვება Google Play Services-ის გარეშე, რომელიც აკლია თქვენს მოწყობილობას."</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google-ით შესვლა"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"საჭიროა Google Play Services-ის ახალი ვერსია. ის მალე განახლდება."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play Services-ის ჩართვა"</string><string msgid="5201977337835724196" name="common_open_on_phone">"ტელეფონში გახსნა"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"ჩართვა"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play Services-ის ჩამოტვირთვა"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ვერ გაეშვება, თუ Google Play სერვისებს არ განაახლებთ."</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ვერ გაეშვება Google Play Services-ის გარეშე, რომლებიც მხარდაუჭერელია თქვენი მოწყობილობის მიერ."</string><string msgid="3441753203274453993" name="common_signin_button_text">"შესვლა"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ვერ იმუშავებს Google Play Services-ის ჩართვამდე."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play Services-ის შეცდომა"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ვერ გაეშვება Google Play Services-ის გარეშე, რომელთა განახლებაც ამჟამად მიმდინარეობს."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"განაახლეთ Google Play Services"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"ინსტალაცია"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"განახლება"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-th/values.xml" qualifiers="th"><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> จะไม่ทำงานหากไม่มีบริการ Google Play ซึ่งอุปกรณ์ของคุณไม่สนับสนุน"</string><string msgid="5201977337835724196" name="common_open_on_phone">"เปิดบนโทรศัพท์"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> จะไม่ทำงานจนกว่าคุณจะเปิดใช้บริการ Google Play"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"ลงชื่อเข้าใช้ด้วย Google"</string><string msgid="3441753203274453993" name="common_signin_button_text">"ลงชื่อเข้าใช้"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"อัปเดตบริการ Google Play"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> จะไม่ทำงานหากไม่มีบริการ Google Play ซี่งไม่มีในอุปกรณ์ของคุณ"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"ติดตั้งบริการ Google Play"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"จำเป็นต้องใช้บริการ Google Play เวอร์ชันใหม่ ซึ่งจะอัปเดตอัตโนมัติในอีกไม่ช้า"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"ข้อผิดพลาดของบริการ Google Play"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> จะไม่ทำงานหากไม่มีบริการ Google Play ซึ่งกำลังอัปเดตอยู่ในขณะนี้"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"อัปเดต"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"เปิดใช้"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"เปิดใช้บริการ Google Play"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"ติดตั้ง"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> จะไม่ทำงานจนกว่าคุณจะอัปเดตบริการ Google Play"</string></file><file name="common_google_signin_btn_tint" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_tint.xml" qualifiers="" type="color"/><file name="common_google_signin_btn_text_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_text_light.xml" qualifiers="" type="color"/><file name="common_google_signin_btn_text_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/color/common_google_signin_btn_text_dark.xml" qualifiers="" type="color"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-hr/values.xml" qualifiers="hr"><string msgid="669893613918351210" name="common_signin_button_text_long">"Prijava putem Googlea"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> neće funkcionirati bez usluga Google Playa koje vaš uređaj ne podržava."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Ažuriraj"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Omogući"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> neće funkcionirati bez usluga Google Playa koje nisu instalirane na vašem uređaju."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Otvori na telefonu"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Omogućivanje usluga Google Playa"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> neće se pokrenuti bez usluga Google Playa koje se trenutačno ažuriraju."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> neće funkcionirati ako ne omogućite usluge Google Playa."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instaliraj"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Preuzimanje usluga Google Playa"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Ažuriranje usluga Google Playa"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> neće funkcionirati ako ne ažurirate Google Play usluge."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Potrebna je nova verzija usluga Google Playa. Uskoro će se ažurirati."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Prijava"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Pogreška Usluga za Google Play"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-et/values.xml" qualifiers="et"><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Rakenduse <ns1:g id="APP_NAME">%1$s</ns1:g> töötamiseks peate värskendama Google Play teenuseid."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Vajalik on Google Play teenuste uus versioon. See värskendab end peagi."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Rakendus <ns1:g id="APP_NAME">%1$s</ns1:g> töötab ainult siis, kui lubate Google Play teenused."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play teenuste värskendamine"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Logi sisse Google\'i kontoga"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Rakendus <ns1:g id="APP_NAME">%1$s</ns1:g> töötab ainult koos Google Play teenustega, mida teie seadmes pole."</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Rakendus <ns1:g id="APP_NAME">%1$s</ns1:g> töötab ainult koos Google Play teenustega, mida teie seadmes ei toetata."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play teenuste lubamine"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installi"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Logi sisse"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Luba"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Värskenda"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Viga Google Play teenustes"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Rakendus <ns1:g id="APP_NAME">%1$s</ns1:g> töötab ainult koos Google Play teenustega, mida praegu värskendatakse."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Ava telefonis"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play teenuste hankimine"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pl/values.xml" qualifiers="pl"><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Aktualizuj"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Pobierz Usługi Google Play"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nie będzie działać bez Usług Google Play, które nie są obecnie obsługiwane przez urządzenie."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Zainstaluj"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nie będzie działać, jeśli nie zainstalujesz na urządzeniu Usług Google Play."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Aplikacja <ns1:g id="APP_NAME">%1$s</ns1:g> nie będzie działać bez Usług Google Play, które są obecnie aktualizowane."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Aplikacja <ns1:g id="APP_NAME">%1$s</ns1:g> nie będzie działać, jeśli nie zaktualizujesz Usług Google Play."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Zaloguj się"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Zaloguj się przez Google"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Zaktualizuj Usługi Google Play"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Wymagana jest nowa wersja Usług Google Play. Wkrótce nastąpi automatyczna aktualizacja."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Włącz Usługi Google Play"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Aplikacja <ns1:g id="APP_NAME">%1$s</ns1:g> nie będzie działać, jeśli nie włączysz Usług Google Play."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Błąd Usług Google Play"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Otwórz na telefonie"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Włącz"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-sl/values.xml" qualifiers="sl"><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> ne deluje brez storitev Google Play, ki se trenutno posodabljajo."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Namestitev storitev Google Play"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> ne bo delovala, če ne omogočite storitev Google Play."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> ne deluje brez storitev Google Play, vendar teh ni v napravi."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Namesti"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Omogočanje storitev Google Play"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Posodobitev storitev Google Play"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Prijava z Google Računom"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Posodobi"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Omogoči"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> ne deluje brez storitev Google Play, ki jih vaša naprava ne podpira."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Potrebujete novo različico storitev Google Play. V kratkem se bodo posodobile."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Odpiranje v telefonu"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> ne bo delovala, če ne posodobite storitev Google Play."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Napaka storitev Google Play"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Prijava"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values/values.xml" qualifiers=""><color name="common_google_signin_btn_text_light_default">#90000000</color><string msgid="6006316683626838685" name="common_google_play_services_update_title">Update Google Play services</string><string msgid="5122002158466380389" name="common_google_play_services_enable_title">Enable Google Play services</string><string name="common_google_play_services_install_text"><ns1:g id="app_name">%1$s</ns1:g> won\'t run without Google Play services, which are missing from your device.</string><string name="common_signin_button_text_long">Sign in with Google</string><string msgid="7153882981874058840" name="common_google_play_services_install_button">Install</string><string msgid="227660514972886228" name="common_google_play_services_enable_text"><ns1:g id="app_name">%1$s</ns1:g> won\'t work unless you enable Google Play services.</string><color name="common_google_signin_btn_text_light_pressed">#DE000000</color><color name="common_google_signin_btn_text_dark_default">@android:color/white</color><declare-styleable name="SignInButton"><attr format="reference" name="buttonSize">
-<enum name="standard" value="0"/>
-
-<enum name="wide" value="1"/>
-
-<enum name="icon_only" value="2"/>
-
-</attr>
-<attr format="reference" name="colorScheme">
-<enum name="dark" value="0"/>
-
-<enum name="light" value="1"/>
-
-<enum name="auto" value="2"/>
-
-</attr>
-
-<attr format="reference|string" name="scopeUris"/>
-</declare-styleable><string name="common_google_play_services_notification_ticker">Google Play services error</string><string msgid="2523291102206661146" name="common_google_play_services_enable_button">Enable</string><string msgid="7215213145546190223" name="common_google_play_services_install_title">Get Google Play services</string><color name="common_google_signin_btn_text_dark_disabled">#1F000000</color><declare-styleable name="LoadingImageView"><attr name="imageAspectRatioAdjust">
-<enum name="none" value="0"/>
-
-<enum name="adjust_width" value="1"/>
-
-<enum name="adjust_height" value="2"/>
-
-</attr>
-
-<attr format="float" name="imageAspectRatio"/>
-
-<attr format="boolean" name="circleCrop"/>
-</declare-styleable><color name="common_google_signin_btn_text_dark_pressed">@android:color/white</color><string name="common_google_play_services_unsupported_text"><ns1:g id="app_name">%1$s</ns1:g> won\'t run without Google Play services, which are not supported by your device.</string><color name="common_google_signin_btn_text_dark_focused">@android:color/black</color><string name="common_google_play_services_updating_text"><ns1:g id="app_name">%1$s</ns1:g> won\'t run without Google Play services, which are currently updating.</string><color name="common_google_signin_btn_text_light_disabled">#1F000000</color><string msgid="9053896323427875356" name="common_google_play_services_update_text"><ns1:g id="app_name">%1$s</ns1:g> won\'t run unless you update Google Play services.</string><string name="common_signin_button_text">Sign in</string><string name="common_google_play_services_wear_update_text">New version of Google Play services needed. It will update itself shortly.</string><color name="common_google_signin_btn_text_light_focused">#90000000</color><string name="common_open_on_phone">Open on phone</string><string msgid="6556509956452265614" name="common_google_play_services_update_button">Update</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-cs/values.xml" qualifiers="cs"><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Ke spuštění aplikace <ns1:g id="APP_NAME">%1$s</ns1:g> jsou potřeba služby Google Play, které v tomto zařízení nejsou podporovány."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Přihlásit se"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Přihlásit se k účtu Google"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Aktualizovat"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Je vyžadována nová verze služeb Google Play. Nová verze se brzy sama nainstaluje."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Aktualizace služeb Google Play"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Ke spuštění aplikace <ns1:g id="APP_NAME">%1$s</ns1:g> je třeba aktivovat služby Google Play."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Otevřít v telefonu"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Instalace služeb Google Play"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Ke spuštění aplikace <ns1:g id="APP_NAME">%1$s</ns1:g> je třeba aktualizovat služby Google Play."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Ke spuštění aplikace <ns1:g id="APP_NAME">%1$s</ns1:g> jsou potřeba služby Google Play, které jsou právě aktualizovány."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Ke spuštění aplikace <ns1:g id="APP_NAME">%1$s</ns1:g> jsou potřeba služby Google Play, které v zařízení nemáte."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Aktivace služeb Google Play"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Chyba služeb Google Play"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Povolit"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalovat"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-es-rUS/values.xml" qualifiers="es-rUS"><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no funcionará a menos que habilites los servicios de Google Play."</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Error de Google Play Services"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Actualizar servicios de Google Play"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no se ejecutará a menos que actualices los servicios de Google Play."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Se necesita una nueva versión de los servicios de Google Play. Se actualizarán automáticamente en breve."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no se ejecutará si los Servicios de Google Play no están instalados en tu dispositivo."</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Actualizar"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalar"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Habilitar servicios de Google Play"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no se ejecutará sin los servicios de Google Play, que no son compatibles con tu dispositivo."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Abrir en el teléfono"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Obtener servicios de Google Play"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Acceder"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Acceder con Google"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no se ejecutará sin los servicios de Google Play. La plataforma se está actualizando en este momento."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Habilitar"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-bn/values.xml" qualifiers="bn"><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play পরিষেবার নতুন সংস্করণ প্রয়োজন৷ খুব শীঘ্রই এটা নিজেই আপডেট হবে৷"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Google Play পরিষেবা ছাড়া <ns1:g id="APP_NAME">%1$s</ns1:g> চলবে না যা বর্তমানে আপডেট হচ্ছে।"</string><string msgid="3441753203274453993" name="common_signin_button_text">"প্রবেশ করুন"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play পরিষেবা পান"</string><string msgid="5201977337835724196" name="common_open_on_phone">"ফোনে খুলুন"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"ইনস্টল করুন"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play পরিষেবা সক্ষম করুন"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Google Play পরিষেবা ছাড়া <ns1:g id="APP_NAME">%1$s</ns1:g> চলবে না, যা আপনার ডিভাইসে অনুপস্থিত।"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"আপনি Google Play পরিষেবা আপডেট না করা পর্যন্ত <ns1:g id="APP_NAME">%1$s</ns1:g> চলবে না।"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google এর মাধ্যমে প্রবেশ করুন"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"আপনি Google Play পরিষেবা সক্ষম না করা পর্যন্ত <ns1:g id="APP_NAME">%1$s</ns1:g> কাজ করবে না।"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Google Play পরিষেবা ছাড়া <ns1:g id="APP_NAME">%1$s</ns1:g> চলবে না, যেটি আপনার ডিভাইসে সমর্থিত নয়৷"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play পরিষেবা আপডেট করুন"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"আপডেট করুন"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"সক্ষম করুন"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play পরিষেবার ত্রুটি"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-si/values.xml" qualifiers="si"><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play සේවා සබල කරන්න"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"දැනට යාවත්කාලීන කරමින් ඇති, Google Play සේවා නොමැතිව <ns1:g id="APP_NAME">%1$s</ns1:g> ධාවනය නොවනු ඇත."</string><string msgid="3441753203274453993" name="common_signin_button_text">"පුරන්න"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play සේවා යාවත්කාලීන කරන්න"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google සමගින් පුරන්න"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play සේවා යාවත්කාලීන කරන්නේ නොමැතිව <ns1:g id="APP_NAME">%1$s</ns1:g> ධාවනය නොවේ."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"ඔබ Google Play සේවා සබල කරන්නේ නම් මිස <ns1:g id="APP_NAME">%1$s</ns1:g> වැඩ නොකරනු ඇත."</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"ඔබගේ උපාංගය මගින් සහාය නොදක්වන, Google Play සේවා නොමැතිව <ns1:g id="APP_NAME">%1$s</ns1:g> ධාවනය නොවනු ඇත."</string><string msgid="5201977337835724196" name="common_open_on_phone">"දුරකථනය තුළ විවෘත කරන්න"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"යාවත්කාලීන කරන්න"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play සේවාවල නව අනුවාදයක් අවශ්‍යයි. එය මද වේලාවකින් එය විසින්ම යාවත්කාලීන වනු ඇත."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"ස්ථාපනය කරන්න"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"සබල කරන්න"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"ඔබගේ ටැබ්ලට් පරිගණකයේ නැති Google Play සේවා නොමැතිව <ns1:g id="APP_NAME">%1$s</ns1:g> ධාවනය නොවනු ඇත."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play සේවා ලබා ගන්න"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play සේවා දෝෂය"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pt-rBR/values.xml" qualifiers="pt-rBR"><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Atualizar o Google Play Services"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Ativar o Google Play Services"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Erro do Google Play Services"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Fazer login com o Google"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> não funciona sem o Google Play Services, o qual está sendo atualizado no momento."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Abrir no smartphone"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"É necessária uma nova versão do Google Play Services. Ele será atualizado em breve."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Instalar o Google Play Services"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Ativar"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Atualizar"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"O app <ns1:g id="APP_NAME">%1$s</ns1:g> não funciona sem o Google Play Services, o qual não é compatível com seu dispositivo."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Fazer login"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> só funciona com o Google Play Services ativado."</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"O app <ns1:g id="APP_NAME">%1$s</ns1:g> não funciona sem o Google Play Services, o qual não está instalado no seu dispositivo."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> só funciona com uma versão atualizada do Google Play Services."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalar"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-fi/values.xml" qualifiers="fi"><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Virhe Google Play -palveluissa"</string><string msgid="5201977337835724196" name="common_open_on_phone">"Avaa puhelimessa"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ei toimi ilman Google Play Palveluita, joita laitteesi ei tue."</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Päivitä Google Play Palvelut"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Kirjaudu Google-tilille"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Asenna"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ei toimi, ellet ota Google Play Palveluita käyttöön."</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Asenna Google Play Palvelut"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ei toimi ilman Google Play Palveluita, jotka puuttuvat laitteeltasi."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ei toimi ilman Google Play Palveluita, joita päivitetään tällä hetkellä."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ei toimi, ellet päivitä Google Play Palveluita."</string><string msgid="3441753203274453993" name="common_signin_button_text">"Kirjaudu sisään"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Ota käyttöön"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Ota Google Play Palvelut käyttöön"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Päivitä"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Uusi Google Play Palveluiden versio tarvitaan. Se päivittyy pian."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-pa/values.xml" qualifiers="pa"><string msgid="8172070149091615356" name="common_google_play_services_update_button">"ਅੱਪਡੇਟ ਕਰੋ"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play ਸੇਵਾਵਾਂ ਦੇ ਨਵਾਂ ਸੰਸਕਰਨ ਦੀ ਲੋੜ ਹੈ। ਇਹ ਛੇਤੀ ਹੀ ਆਪਣੇ ਆਪ ਅਪਡੇਟ ਕਰੇਗਾ।"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"ਯੋਗ ਬਣਾਓ"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play ਸੇਵਾਵਾਂ ਤੋਂ ਬਿਨਾਂ ਨਹੀਂ ਚੱਲੇਗੀ, ਜੋ ਤੁਹਾਡੀ ਡੀਵਾਈਸ ਤੋਂ ਗੁੰਮ ਹਨ।"</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"ਸਥਾਪਤ ਕਰੋ"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play ਸੇਵਾਵਾਂ ਪ੍ਰਾਪਤ ਕਰੋ"</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play ਸੇਵਾਵਾਂ ਤੋਂ ਬਿਨਾਂ ਨਹੀਂ ਚੱਲੇਗਾ, ਜੋ ਵਰਤਮਾਨ ਵਿੱਚ ਅਪਡੇਟ ਹੋ ਰਹੀਆਂ ਹਨ।"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play ਸੇਵਾਵਾਂ ਅਸ਼ੁੱਧੀ"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play ਸੇਵਾਵਾਂ ਤੋਂ ਬਿਨਾਂ ਨਹੀਂ ਚੱਲ ਸਕੇਗੀ, ਜੋ ਤੁਹਾਡੀ ਡੀਵਾਈਸ \'ਤੇ ਸਮਰਥਿਤ ਨਹੀਂ ਹਨ।"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ਕੰਮ ਨਹੀਂ ਕਰੇਗਾ ਜਦੋਂ ਤੱਕ ਤੁਸੀਂ Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਯੋਗ ਨਹੀਂ ਬਣਾਉਂਦੇ ਹੋ।"</string><string msgid="5201977337835724196" name="common_open_on_phone">"ਫ਼ੋਨ \'ਤੇ ਖੋਲ੍ਹੋ"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google ਨਾਲ ਸਾਈਨ ਇਨ ਕਰੋ"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਅੱਪਡੇਟ ਕਰੋ"</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਯੋਗ ਬਣਾਓ"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ਨਹੀਂ ਚੱਲੇਗਾ ਜਦੋਂ ਤੱਕ ਤੁਸੀਂ Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਅਪਡੇਟ ਨਹੀਂ ਕਰਦੇ।"</string><string msgid="3441753203274453993" name="common_signin_button_text">"ਸਾਈਨ ਇਨ ਕਰੇ"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-tr/values.xml" qualifiers="tr"><string msgid="5201977337835724196" name="common_open_on_phone">"Telefonda aç"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Oturum aç"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play Hizmetleri hatası"</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play hizmetlerini güncellemezseniz <ns1:g id="APP_NAME">%1$s</ns1:g> çalışmayacak."</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play hizmetlerinin yeni sürümü gerekiyor. Kendisini kısa süre içinde güncelleyecektir."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play hizmetlerini etkinleştirin"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play hizmetlerini güncelleyin"</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play hizmetlerini etkinleştirmezseniz <ns1:g id="APP_NAME">%1$s</ns1:g> çalışmaz."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Yükle"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Güncelle"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google\'da oturum aç"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>, şu anda cihazınızda bulunmayan Google Play hizmetleri olmadan çalışmaz."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>, şu anda güncellenmekte olan Google Play hizmetleri olmadan çalışmaz."</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Etkinleştir"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play hizmetlerini edinin"</string><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>, Google Play hizmetleri olmadan çalışmaz ve bu hizmetler cihazınız tarafından desteklenmiyor."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res/values-mn/values.xml" qualifiers="mn"><string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Таны төхөөрөмж Google Play үйлчилгээг дэмждэггүй учир <ns1:g id="APP_NAME">%1$s</ns1:g> ажиллахгүй."</string><string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play үйлчилгээг идэвхжүүлэх"</string><string msgid="8172070149091615356" name="common_google_play_services_update_button">"Шинэчлэх"</string><string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play үйлчилгээг шинэчлэх"</string><string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play үйлчилгээний шинэ хувилбар хэрэгтэй. Энэ нь удахгүй өөрөө өөрийгөө шинэчлэх болно."</string><string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> нь Google Play үйлчилгээг идэвхжүүлэх хүртэл ажиллахгүй."</string><string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> нь одоогоор шинэчилж буй Google Play үйлчилгээгүйгээр ажиллахгүй."</string><string msgid="5201977337835724196" name="common_open_on_phone">"Утсаар нээх"</string><string msgid="669893613918351210" name="common_signin_button_text_long">"Google-р нэвтрэх:"</string><string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play үйлчилгээг авах"</string><string msgid="8179894293032530091" name="common_google_play_services_install_text">"Таны төхөөрөмжид Google Play үйлчилгээ байхгүй тул <ns1:g id="APP_NAME">%1$s</ns1:g> ажиллахгүй."</string><string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> нь таныг Google Play үйлчилгээнүүдийг шинэчлэхээс нааш ажиллахгүй."</string><string msgid="9115728400623041681" name="common_google_play_services_install_button">"Суулгах"</string><string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Идэвхжүүлэх"</string><string msgid="3441753203274453993" name="common_signin_button_text">"Нэвтрэх"</string><string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Наадаан үйлчилгээний алдаа"</string></file></source></dataSet><dataSet config="10.2.0" from-dependency="true" generated-set="10.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/res"/></dataSet><dataSet config="10.2.0" from-dependency="true" generated-set="10.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/res"/></dataSet><dataSet config="25.2.0" from-dependency="true" generated-set="25.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-vector-drawable/25.2.0/res"/></dataSet><dataSet config="25.2.0" from-dependency="true" generated-set="25.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/res"/></dataSet><dataSet config="25.2.0" from-dependency="true" generated-set="25.2.0$Generated"><source path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res"><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v13/values-v13.xml" qualifiers="v13"><bool name="abc_allow_stacked_button_bar">false</bool></file><file name="abc_spinner_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" qualifiers="ldrtl-xxhdpi-v17" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="ldrtl-xxhdpi-v17" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="ldrtl-xxhdpi-v17" type="drawable"/><file name="notification_template_custom_big" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v16/notification_template_custom_big.xml" qualifiers="v16" type="layout"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sq-rAL/values-sq-rAL.xml" qualifiers="sq-rAL"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Orientohu për në shtëpi"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Shpërnda publikisht me %s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Dërgo pyetjen"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Kërkim me zë"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Shpalos"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"U krye!"</string><string msgid="7723749260725869598" name="abc_search_hint">"Kërko..."</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="121134116657445385" name="abc_capital_off">"JOAKTIV"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Zgjidh një aplikacion"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Opsione të tjera"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Kërko pyetjen"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Ngjitu lart"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Shikoji të gjitha"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Pastro pyetjen"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Kërko"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Shpërnda publikisht me"</string><string msgid="3405795526292276155" name="abc_capital_on">"AKTIV"</string><string msgid="146198913615257606" name="search_menu_title">"Kërko"</string></file><file name="notification_bg_low_normal" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_cab_background_top_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_menu_paste_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_menu_hardkey_panel_mtrl_mult" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_015" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ab_share_pack_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_textfield_default_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_menu_share_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_star_black_48dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_48dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_divider_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_focused_holo" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_star_black_36dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_scrubber_control_off_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_36dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_text_select_handle_middle_mtrl_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_16dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_015" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png" qualifiers="xhdpi-v4" type="drawable"/><file name="notification_bg_normal_pressed" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="notify_panel_notification_icon_bg" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_000" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_textfield_activated_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_scrubber_primary_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_switch_track_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_textfield_search_activated_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00001" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_menu_selectall_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_000" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_005" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" qualifiers="xhdpi-v4" type="drawable"/><file name="notification_bg_normal" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_normal.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_scrubber_track_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_commit_search_api_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_000" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_tab_indicator_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00012" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_star_black_16dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="notification_bg_low_pressed" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_popup_background_mtrl_mult" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_longpressed_holo" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_text_select_handle_middle_mtrl_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_textfield_search_default_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw/values-sw.xml" qualifiers="sw"><string msgid="8264924765203268293" name="abc_searchview_description_search">"Tafuta"</string><string msgid="146198913615257606" name="search_menu_title">"Tafuta"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Shiriki na:"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Shiriki na %s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Hoja ya utafutaji"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Chagua programu"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Futa hoja"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Nenda mwanzo"</string><string msgid="7723749260725869598" name="abc_search_hint">"Tafuta…"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Wasilisha hoja"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Tafuta kwa kutamka"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Nenda juu"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Nimemaliza"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Chaguo zaidi"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Kunja"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Angalia zote"</string><string msgid="121134116657445385" name="abc_capital_off">"IMEZIMWA"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3405795526292276155" name="abc_capital_on">"IMEWASHWA"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-am/values-am.xml" qualifiers="am"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"መጠይቅ ያስረክቡ"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"የድምፅ ፍለጋ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ከሚከተለው ጋር ያጋሩ"</string><string msgid="7723749260725869598" name="abc_search_hint">"ፈልግ…"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ወደ መነሻ ይዳስሱ"</string><string msgid="3405795526292276155" name="abc_capital_on">"በርቷል"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"መተግበሪያ ይምረጡ"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"መጠይቅ አጽዳ"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ተጨማሪ አማራጮች"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"የፍለጋ ጥያቄ"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s፣ %2$s"</string><string msgid="146198913615257606" name="search_menu_title">"ፈልግ"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ወደ ላይ ይዳስሱ"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"ከ%s ጋር ያጋሩ"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ተከናውኗል"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="121134116657445385" name="abc_capital_off">"ጠፍቷል"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s፣ %2$s፣ %3$s"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ፍለጋ"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ሰብስብ"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ሁሉንም ይመልከቱ"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-night-v8/values-night-v8.xml" qualifiers="night-v8"><style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Dialog.Alert"/><style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat"/><style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Dialog"/><style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat"/><style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.DialogWhenLarge"/><style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Dialog.MinWidth"/><style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.NoActionBar"/></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-xlarge-v4/values-xlarge-v4.xml" qualifiers="xlarge-v4"><item name="abc_dialog_fixed_width_major" type="dimen">50%</item><item name="abc_dialog_fixed_height_major" type="dimen">60%</item><item name="abc_dialog_fixed_width_minor" type="dimen">70%</item><item name="abc_dialog_fixed_height_minor" type="dimen">90%</item><item name="abc_dialog_min_width_major" type="dimen">45%</item><item name="abc_dialog_min_width_minor" type="dimen">72%</item></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v18/values-v18.xml" qualifiers="v18"><dimen name="abc_switch_padding">0px</dimen></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr/values-fr.xml" qualifiers="fr"><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tout afficher"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partager avec"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Rechercher"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Sélectionner une application"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envoyer la requête"</string><string msgid="121134116657445385" name="abc_capital_off">"DÉSACTIVÉ"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Plus d\'options"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"OK"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Requête de recherche"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Revenir en haut de la page"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partager avec %s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Effacer la requête"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Réduire"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string><string msgid="3405795526292276155" name="abc_capital_on">"ACTIVÉ"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Rechercher…"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Recherche vocale"</string><string msgid="146198913615257606" name="search_menu_title">"Rechercher"</string></file><file name="abc_edit_text_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_edit_text_material.xml" qualifiers="v21" type="drawable"/><file name="abc_action_bar_item_background_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_action_bar_item_background_material.xml" qualifiers="v21" type="drawable"/><file name="abc_btn_colored_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/abc_btn_colored_material.xml" qualifiers="v21" type="drawable"/><file name="notification_action_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v21/notification_action_background.xml" qualifiers="v21" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v24/values-v24.xml" qualifiers="v24"><style name="TextAppearance.AppCompat.Notification.Media"/><style name="Base.TextAppearance.AppCompat.Widget.Button.Colored" parent="android:TextAppearance.Material.Widget.Button.Colored"/><style name="TextAppearance.AppCompat.Notification.Time.Media"/><style name="TextAppearance.AppCompat.Notification.Title.Media"/><style name="TextAppearance.AppCompat.Notification.Info.Media"/><style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="android:TextAppearance.Material.Widget.Button.Borderless.Colored"/></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-el/values-el.xml" qualifiers="el"><string msgid="893419373245838918" name="abc_searchview_description_voice">"Φωνητική αναζήτηση"</string><string msgid="121134116657445385" name="abc_capital_off">"ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Κοινή χρήση με %s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Υποβολή ερωτήματος"</string><string msgid="7723749260725869598" name="abc_search_hint">"Αναζήτηση…"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Κοινή χρήση με"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Επιλέξτε κάποια εφαρμογή"</string><string msgid="3405795526292276155" name="abc_capital_on">"ΕΝΕΡΓΟΠΟΙΗΣΗ"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Διαγραφή ερωτήματος"</string><string msgid="146198913615257606" name="search_menu_title">"Αναζήτηση"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Πλοήγηση προς τα επάνω"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Σύμπτυξη"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Περισσότερες επιλογές"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Τέλος"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Πλοήγηση στην αρχική σελίδα"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Ερώτημα αναζήτησης"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Προβολή όλων"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Αναζήτηση"</string></file><file name="abc_spinner_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png" qualifiers="ldrtl-hdpi-v17" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="ldrtl-hdpi-v17" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="ldrtl-hdpi-v17" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fr-rCA/values-fr-rCA.xml" qualifiers="fr-rCA"><string msgid="3405795526292276155" name="abc_capital_on">"ACTIVÉ"</string><string msgid="7723749260725869598" name="abc_search_hint">"Recherche en cours..."</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partager avec %s"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Terminé"</string><string msgid="146198913615257606" name="search_menu_title">"Rechercher"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Sélectionnez une application"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Rechercher"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Recherche vocale"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partager"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Voir toutes les chaînes"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Réduire"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Effacer la requête"</string><string msgid="121134116657445385" name="abc_capital_off">"DÉSACTIVÉ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envoyer la requête"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Requête de recherche"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Plus d\'options"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Revenir en haut de la page"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-my-rMM/values-my-rMM.xml" qualifiers="my-rMM"><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s ၊ %2$s ၊ %3$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ပြီးဆုံးပါပြီ"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"အက်ပ်တစ်ခုခုကို ရွေးချယ်ပါ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ရှာဖွေစရာ အချက်အလက်ကို ပေးပို့ရန်"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"အားလုံးကို ကြည့်ရန်"</string><string msgid="7723749260725869598" name="abc_search_hint">"ရှာဖွေပါ..."</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"အပေါ်သို့သွားရန်"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ရှာစရာ အချက်အလက်များ ဖယ်ရှားရန်"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s၊ %2$s"</string><string msgid="121134116657445385" name="abc_capital_off">"ပိတ်"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ကို မျှဝေပါရန်"</string><string msgid="146198913615257606" name="search_menu_title">"ရှာဖွေပါ"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ပိုမိုရွေးချယ်စရာများ"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ရှာစရာ အချက်အလက်နေရာ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"မျှဝေဖို့ ရွေးပါ"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ရှာဖွေရန်"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"အသံဖြင့် ရှာဖွေခြင်း"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ခေါက်ရန်"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"မူလနေရာကို သွားရန်"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"၉၉၉+"</string><string msgid="3405795526292276155" name="abc_capital_on">"ဖွင့်"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bg/values-bg.xml" qualifiers="bg"><string msgid="8264924765203268293" name="abc_searchview_description_search">"Търсене"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"„%1$s“ – %2$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Търсете…"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Още опции"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Заявка за търсене"</string><string msgid="121134116657445385" name="abc_capital_off">"ИЗКЛ."</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Изчистване на заявката"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Споделяне със: %s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Изпращане на заявката"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"„%1$s“, „%2$s“ – %3$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Изберете приложение"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласово търсене"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Придвижване нагоре"</string><string msgid="3405795526292276155" name="abc_capital_on">"ВКЛ."</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Придвижване към „Начало“"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Вижте всички"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Споделяне със:"</string><string msgid="146198913615257606" name="search_menu_title">"Търсене"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Свиване"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rCN/values-zh-rCN.xml" qualifiers="zh-rCN"><string msgid="146198913615257606" name="search_menu_title">"搜索"</string><string msgid="121134116657445385" name="abc_capital_off">"关闭"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"提交查询"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"转到上一层级"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"更多选项"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"语音搜索"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"收起"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"转到主屏幕"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s:%2$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"分享方式"</string><string msgid="3405795526292276155" name="abc_capital_on">"开启"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"搜索"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"选择应用"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"查看全部"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s - %2$s:%3$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"搜索查询"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"完成"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"清除查询"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"通过%s分享"</string><string msgid="7723749260725869598" name="abc_search_hint">"搜索…"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hu/values-hu.xml" qualifiers="hu"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Lekérdezés küldése"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ugrás a főoldalra"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Lekérdezés törlése"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Összecsukás"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Megosztás a következővel: %s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Hangalapú keresés"</string><string msgid="121134116657445385" name="abc_capital_off">"KI"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="146198913615257606" name="search_menu_title">"Keresés"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Kész"</string><string msgid="3405795526292276155" name="abc_capital_on">"BE"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"További lehetőségek"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Megosztás a következővel:"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Összes megtekintése"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Felfelé mozgatás"</string><string msgid="7723749260725869598" name="abc_search_hint">"Keresés…"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Válasszon ki egy alkalmazást"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Keresés"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Keresési lekérdezés"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ldltr-v21/values-ldltr-v21.xml" qualifiers="ldltr-v21"><style name="Base.Widget.AppCompat.Spinner.Underlined" parent="android:Widget.Material.Spinner.Underlined"/></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-si-rLK/values-si-rLK.xml" qualifiers="si-rLK"><string msgid="4076576682505996667" name="abc_action_mode_done">"අවසාන වූ"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"සෙවුම් විමසුම"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ඉහලට සංචාලනය කරන්න"</string><string msgid="146198913615257606" name="search_menu_title">"සොයන්න"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"විමසුම යොමු කරන්න"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"යෙදුමක් තෝරන්න"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"සොයන්න..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"විමසුම හිස් කරන්න"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"සියල්ල බලන්න"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"සමඟ බෙදාගන්න"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s සමඟ බෙදාගන්න"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ගෙදරට සංචාලනය කරන්න"</string><string msgid="121134116657445385" name="abc_capital_off">"ක්‍රියාවිරහිතයි"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"සෙවීම"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"තවත් විකල්ප"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"හඬ සෙවීම"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"හකුළන්න"</string><string msgid="3405795526292276155" name="abc_capital_on">"ක්‍රියාත්මකයි"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gu-rIN/values-gu-rIN.xml" qualifiers="gu-rIN"><string msgid="893419373245838918" name="abc_searchview_description_voice">"વૉઇસ શોધ"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ઉપર નેવિગેટ કરો"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"આની સાથે શેર કરો"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"થઈ ગયું"</string><string msgid="121134116657445385" name="abc_capital_off">"બંધ"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"સંકુચિત કરો"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"શોધો"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"હોમ પર નેવિગેટ કરો"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"બધું જુઓ"</string><string msgid="7723749260725869598" name="abc_search_hint">"શોધો…"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s સાથે શેર કરો"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"એક ઍપ્લિકેશન પસંદ કરો"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"શોધ ક્વેરી"</string><string msgid="146198913615257606" name="search_menu_title">"શોધો"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ક્વેરી સાફ કરો"</string><string msgid="3405795526292276155" name="abc_capital_on">"ચાલુ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ક્વેરી સબમિટ કરો"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"વધુ વિકલ્પો"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rHK/values-zh-rHK.xml" qualifiers="zh-rHK"><string msgid="3691816814315814921" name="abc_searchview_description_clear">"清除查詢"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999 +"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"更多選項"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"提交查詢"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"收合"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"與「%s」分享"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"向上瀏覽"</string><string msgid="3405795526292276155" name="abc_capital_on">"開啟"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"語音搜尋"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"顯示全部"</string><string msgid="7723749260725869598" name="abc_search_hint">"搜尋…"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"選擇應用程式"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"搜尋"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s (%2$s):%3$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"完成"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s:%2$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"搜尋查詢"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"分享對象"</string><string msgid="146198913615257606" name="search_menu_title">"搜尋"</string><string msgid="121134116657445385" name="abc_capital_off">"關閉"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"瀏覽主頁"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ar/values-ar.xml" qualifiers="ar"><string msgid="146198913615257606" name="search_menu_title">"البحث"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"محو طلب البحث"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"خيارات إضافية"</string><string msgid="121134116657445385" name="abc_capital_off">"إيقاف"</string><string msgid="3405795526292276155" name="abc_capital_on">"تشغيل"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"تصغير"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"التنقل إلى أعلى"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"تم"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"إرسال طلب البحث"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"طلب البحث"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s، %2$s، %3$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"اختيار تطبيق"</string><string msgid="7723749260725869598" name="abc_search_hint">"بحث…"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"التنقل إلى الشاشة الرئيسية"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏مشاركة مع %s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"البحث الصوتي"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"بحث"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s، %2$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"مشاركة مع"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"عرض الكل"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-be-rBY/values-be-rBY.xml" qualifiers="be-rBY"><string msgid="4076576682505996667" name="abc_action_mode_done">"Гатова"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Адправіць запыт"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Абагуліць з"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"больш за 999"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Выдалiць запыт"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Перайсці ўверх"</string><string msgid="146198913615257606" name="search_menu_title">"Пошук"</string><string msgid="121134116657445385" name="abc_capital_off">"ВЫКЛ."</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Запыт на пошук"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Пошук"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Прагледзець усё"</string><string msgid="7723749260725869598" name="abc_search_hint">"Пошук..."</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Галасавы пошук"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Выбраць праграму"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Дадатковыя параметры"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3405795526292276155" name="abc_capital_on">"УКЛ."</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Згарнуць"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Абагуліць з %s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Перайсці на галоўную старонку"</string></file><file name="notification_action_tombstone" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_action_tombstone.xml" qualifiers="v21" type="layout"/><file name="notification_template_icon_group" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_template_icon_group.xml" qualifiers="v21" type="layout"/><file name="notification_action" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_action.xml" qualifiers="v21" type="layout"/><file name="notification_template_custom_big" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v21/notification_template_custom_big.xml" qualifiers="v21" type="layout"/><file name="abc_background_cache_hint_selector_material_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml" qualifiers="v11" type="color"/><file name="abc_background_cache_hint_selector_material_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml" qualifiers="v11" type="color"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sw600dp-v13/values-sw600dp-v13.xml" qualifiers="sw600dp-v13"><dimen name="abc_action_bar_content_inset_with_nav">80dp</dimen><dimen name="abc_action_bar_default_padding_start_material">8dp</dimen><dimen name="abc_config_prefDialogWidth">580dp</dimen><dimen name="abc_text_size_title_material_toolbar">20dp</dimen><dimen name="abc_action_bar_default_padding_end_material">8dp</dimen><dimen name="abc_action_bar_default_height_material">64dp</dimen><dimen name="abc_action_bar_content_inset_material">24dp</dimen><dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zu/values-zu.xml" qualifiers="zu"><string msgid="7723749260725869598" name="abc_search_hint">"Iyasesha..."</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Hambisa umbuzo"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Yabelana no-%s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Izinketho eziningi"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Kwenziwe"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Umbuzo wosesho"</string><string msgid="146198913615257606" name="search_menu_title">"Sesha"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Zulazulela phezulu"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sula inkinga"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Sesha"</string><string msgid="3405795526292276155" name="abc_capital_on">"VULIWE"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Yabelana no-"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Goqa"</string><string msgid="121134116657445385" name="abc_capital_off">"VALIWE"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Ukusesha ngezwi"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Khetha uhlelo lokusebenza"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Zulazulela ekhaya"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Buka konke"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mk-rMK/values-mk-rMK.xml" qualifiers="mk-rMK"><string msgid="2550479030709304392" name="abc_searchview_description_query">"Пребарај барање"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Движи се нагоре"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Избери апликација"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Пребарај"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Сподели со"</string><string msgid="7723749260725869598" name="abc_search_hint">"Пребарување…"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласовно пребарување"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Собери"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Движи се кон дома"</string><string msgid="3405795526292276155" name="abc_capital_on">"ВКЛУЧЕНО"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="121134116657445385" name="abc_capital_off">"ИСКЛУЧЕНО"</string><string msgid="146198913615257606" name="search_menu_title">"Пребарај"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Поднеси барање"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Види ги сите"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Повеќе опции"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Исчисти барање"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v22/values-v22.xml" qualifiers="v22"><style name="Base.V22.Theme.AppCompat" parent="Base.V21.Theme.AppCompat">
-        <item name="actionModeShareDrawable">?android:attr/actionModeShareDrawable</item>
-        
-        <item name="editTextBackground">?android:attr/editTextBackground</item>
-    </style><style name="Base.Theme.AppCompat" parent="Base.V22.Theme.AppCompat"/><style name="Base.V22.Theme.AppCompat.Light" parent="Base.V21.Theme.AppCompat.Light">
-        <item name="actionModeShareDrawable">?android:attr/actionModeShareDrawable</item>
-        
-        <item name="editTextBackground">?android:attr/editTextBackground</item>
-    </style><style name="Base.Theme.AppCompat.Light" parent="Base.V22.Theme.AppCompat.Light"/></file><file name="notification_bg_low_normal" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_low_normal.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_cab_background_top_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_menu_paste_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_menu_hardkey_panel_mtrl_mult" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_015" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ab_share_pack_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_textfield_default_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_menu_share_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_star_black_48dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_48dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_divider_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_focused_holo" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_focused_holo.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_star_black_36dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_scrubber_control_off_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_36dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_text_select_handle_middle_mtrl_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_16dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_015" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png" qualifiers="mdpi-v4" type="drawable"/><file name="notification_bg_normal_pressed" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="notify_panel_notification_icon_bg" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_000" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_textfield_activated_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_scrubber_primary_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_switch_track_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_textfield_search_activated_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00001" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_menu_selectall_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_000" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_005" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" qualifiers="mdpi-v4" type="drawable"/><file name="notification_bg_normal" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_normal.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_scrubber_track_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_commit_search_api_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_000" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_tab_indicator_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00012" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_star_black_16dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="notification_bg_low_pressed" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_popup_background_mtrl_mult" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_longpressed_holo" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_text_select_handle_middle_mtrl_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_textfield_search_default_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-in/values-in.xml" qualifiers="in"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigasi ke beranda"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Lihat semua"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Bagikan dengan %s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigasi naik"</string><string msgid="7723749260725869598" name="abc_search_hint">"Telusuri..."</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Ciutkan"</string><string msgid="121134116657445385" name="abc_capital_off">"NONAKTIF"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Telusuri"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bagikan dengan"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Opsi lain"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pilih aplikasi"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Penelusuran suara"</string><string msgid="146198913615257606" name="search_menu_title">"Telusuri"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Selesai"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Hapus kueri"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Kirim kueri"</string><string msgid="3405795526292276155" name="abc_capital_on">"AKTIF"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Kueri penelusuran"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uk/values-uk.xml" qualifiers="uk"><string msgid="2550479030709304392" name="abc_searchview_description_query">"Пошуковий запит"</string><string msgid="121134116657445385" name="abc_capital_off">"ВИМК."</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Вибрати програму"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Пошук"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Переглянути всі"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Голосовий пошук"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Надіслати через %s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Пошук…"</string><string msgid="3405795526292276155" name="abc_capital_on">"УВІМК."</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Перейти на головний"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Інші опції"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Згорнути"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Очистити запит"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string><string msgid="146198913615257606" name="search_menu_title">"Пошук"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Надіслати запит"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Надіслати через"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Перейти вгору"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rGB/values-en-rGB.xml" qualifiers="en-rGB"><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string><string msgid="121134116657445385" name="abc_capital_off">"OFF"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string><string msgid="146198913615257606" name="search_menu_title">"Search"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string><string msgid="3405795526292276155" name="abc_capital_on">"ON"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-da/values-da.xml" qualifiers="da"><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Vælg en app"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Indsend forespørgslen"</string><string msgid="121134116657445385" name="abc_capital_off">"FRA"</string><string msgid="3405795526292276155" name="abc_capital_on">"TIL"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ryd forespørgslen"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Søgeforespørgsel"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Naviger hjem"</string><string msgid="7723749260725869598" name="abc_search_hint">"Søg…"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Se alle"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Søg"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Del med"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Naviger op"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skjul"</string><string msgid="146198913615257606" name="search_menu_title">"Søg"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Luk"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Del med %s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Flere muligheder"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Talesøgning"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ta-rIN/values-ta-rIN.xml" qualifiers="ta-rIN"><string msgid="4076576682505996667" name="abc_action_mode_done">"முடிந்தது"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"தேடல் வினவல்"</string><string msgid="121134116657445385" name="abc_capital_off">"முடக்கு"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"மேலே வழிசெலுத்து"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s உடன் பகிர்"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"இதனுடன் பகிர்"</string><string msgid="7723749260725869598" name="abc_search_hint">"தேடு..."</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"முகப்பிற்கு வழிசெலுத்து"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"பயன்பாட்டைத் தேர்வுசெய்க"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="146198913615257606" name="search_menu_title">"தேடு"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"மேலும் விருப்பங்கள்"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"வினவலை அழி"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"வினவலைச் சமர்ப்பி"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"குரல் தேடல்"</string><string msgid="3405795526292276155" name="abc_capital_on">"இயக்கு"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"தேடு"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"எல்லாம் காட்டு"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"சுருக்கு"</string></file><file name="abc_control_background_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-v23/abc_control_background_material.xml" qualifiers="v23" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" qualifiers="ldrtl-xxxhdpi-v17" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="ldrtl-xxxhdpi-v17" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="ldrtl-xxxhdpi-v17" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-de/values-de.xml" qualifiers="de"><string msgid="893419373245838918" name="abc_searchview_description_voice">"Sprachsuche"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s: %2$s"</string><string msgid="3405795526292276155" name="abc_capital_on">"An"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Weitere Optionen"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Minimieren"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Suchanfrage löschen"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Suchanfrage"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Alle ansehen"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Fertig"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Zur Startseite"</string><string msgid="7723749260725869598" name="abc_search_hint">"Suchen…"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Freigeben für"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Suchen"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Freigeben für %s"</string><string msgid="146198913615257606" name="search_menu_title">"Suchen"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Nach oben"</string><string msgid="121134116657445385" name="abc_capital_off">"Aus"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"App auswählen"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Suchanfrage senden"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s: %3$s"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-af/values-af.xml" qualifiers="af"><string msgid="2550479030709304392" name="abc_searchview_description_query">"Soeknavraag"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Sien alles"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deel met"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Kies \'n program"</string><string msgid="121134116657445385" name="abc_capital_off">"AF"</string><string msgid="7723749260725869598" name="abc_search_hint">"Soek …"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Soek"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Stemsoektog"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deel met %s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeer tuis"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Nog opsies"</string><string msgid="146198913615257606" name="search_menu_title">"Soek"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Vou in"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Vee navraag uit"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Klaar"</string><string msgid="3405795526292276155" name="abc_capital_on">"AAN"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Dien navraag in"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigeer op"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nb/values-nb.xml" qualifiers="nb"><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s – %2$s – %3$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Flere alternativer"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Del med %s"</string><string msgid="3405795526292276155" name="abc_capital_on">"PÅ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Del med"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Se alle"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Slett søket"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Søk"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Søkeord"</string><string msgid="146198913615257606" name="search_menu_title">"Søk"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Velg en app"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Gå til startsiden"</string><string msgid="121134116657445385" name="abc_capital_off">"AV"</string><string msgid="7723749260725869598" name="abc_search_hint">"Søk …"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Ferdig"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skjul"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s – %2$s"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Gå opp"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Utfør søket"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Talesøk"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-is-rIS/values-is-rIS.xml" qualifiers="is-rIS"><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Leita"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Fara heim"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Leitarfyrirspurn"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deila með"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Leita…"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Raddleit"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Fleiri valkostir"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Hreinsa fyrirspurn"</string><string msgid="3405795526292276155" name="abc_capital_on">"KVEIKT"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deila með %s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Senda fyrirspurn"</string><string msgid="121134116657445385" name="abc_capital_off">"SLÖKKT"</string><string msgid="146198913615257606" name="search_menu_title">"Leita"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Sjá allt"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Minnka"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Lokið"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Fara upp"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Veldu forrit"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rAU/values-en-rAU.xml" qualifiers="en-rAU"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string><string msgid="3405795526292276155" name="abc_capital_on">"ON"</string><string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string><string msgid="121134116657445385" name="abc_capital_off">"OFF"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string><string msgid="146198913615257606" name="search_menu_title">"Search"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sk/values-sk.xml" qualifiers="sk"><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Vymazať dopyt"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Hľadať"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Prejsť na plochu"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobraziť všetko"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Zdieľať pomocou"</string><string msgid="3405795526292276155" name="abc_capital_on">"ZAP."</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Hlasové vyhľadávanie"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Zbaliť"</string><string msgid="7723749260725869598" name="abc_search_hint">"Vyhľadať…"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Vyhľadávací dopyt"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Zdieľať pomocou %s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Ďalšie možnosti"</string><string msgid="146198913615257606" name="search_menu_title">"Vyhľadávanie"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Prejsť hore"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="121134116657445385" name="abc_capital_off">"VYP."</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Odoslať dopyt"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Zvoľte aplikáciu"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Hotovo"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lv/values-lv.xml" qualifiers="lv"><string msgid="7723749260725869598" name="abc_search_hint">"Meklējiet…"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Skatīt visu"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Izvēlieties lietotni"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Pārvietoties uz sākuma ekrānu"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Meklēt"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Meklēšana ar balsi"</string><string msgid="146198913615257606" name="search_menu_title">"Meklēt"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Gatavs"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sakļaut"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Meklēšanas vaicājums"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Kopīgot ar:"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s: %3$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Iesniegt vaicājumu"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Vairāk opciju"</string><string msgid="121134116657445385" name="abc_capital_off">"IZSLĒGTS"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Pārvietoties augšup"</string><string msgid="3405795526292276155" name="abc_capital_on">"IESLĒGTS"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Notīrīt vaicājumu"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Kopīgot ar %s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s: %2$s"</string></file><file name="abc_cab_background_top_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_menu_paste_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_menu_hardkey_panel_mtrl_mult" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_015" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ab_share_pack_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_textfield_default_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_menu_share_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_star_black_48dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_48dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_divider_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_focused_holo" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_star_black_36dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_scrubber_control_off_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_36dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_middle_mtrl_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_16dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_015" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_000" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_textfield_activated_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_scrubber_primary_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_switch_track_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_textfield_search_activated_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00001" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_menu_selectall_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_000" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_005" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_scrubber_track_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_commit_search_api_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_000" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_tab_indicator_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00012" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_star_black_16dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_popup_background_mtrl_mult" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_longpressed_holo" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_middle_mtrl_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_textfield_search_default_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v11/values-v11.xml" qualifiers="v11"><style name="Base.TextAppearance.AppCompat.Subhead.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style><style name="Base.V11.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog">
-        <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
-        <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="android:windowCloseOnTouchOutside">@bool/abc_config_closeDialogWhenTouchOutside</item>
-    </style><style name="Base.TextAppearance.AppCompat.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style><style name="Platform.V11.AppCompat.Light" parent="android:Theme.Holo.Light">
-        <item name="android:windowNoTitle">true</item>
-        <item name="android:windowActionBar">false</item>
-
-        <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
-        <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
-
-        
-        <item name="android:colorForeground">@color/foreground_material_light</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
-        <item name="android:colorBackground">@color/background_material_light</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
-        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item>
-        <item name="android:backgroundDimAmount">0.6</item>
-        <item name="android:windowBackground">@color/background_material_light</item>
-
-        
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
-        <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
-        <item name="android:textColorHighlightInverse">@color/highlighted_text_material_dark</item>
-        <item name="android:textColorLink">?attr/colorAccent</item>
-        <item name="android:textColorLinkInverse">?attr/colorAccent</item>
-        <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
-
-        
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
-        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
-        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
-        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
-        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
-        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
-
-        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
-        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
-
-        <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
-        <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
-        <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
-
-        <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_light</item>
-        <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_light</item>
-        <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_light</item>
-    </style><style name="Base.V11.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog">
-        <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
-        <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="android:windowCloseOnTouchOutside">@bool/abc_config_closeDialogWhenTouchOutside</item>
-    </style><style name="Base.TextAppearance.AppCompat.Medium.Inverse">
-        <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style><style name="Base.TextAppearance.AppCompat.Title.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style><style name="Base.Theme.AppCompat.Dialog.Alert">
-        <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style><style name="Base.V11.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog">
-        <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
-        <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="android:windowCloseOnTouchOutside">@bool/abc_config_closeDialogWhenTouchOutside</item>
-    </style><style name="Base.Theme.AppCompat.Dialog" parent="Base.V11.Theme.AppCompat.Dialog"/><style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V11.Theme.AppCompat.Light.Dialog"/><style name="Base.TextAppearance.AppCompat.Large.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style><style name="Base.Theme.AppCompat.Light.Dialog.Alert">
-        <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style><style name="Platform.AppCompat" parent="Platform.V11.AppCompat"/><style name="Platform.Widget.AppCompat.Spinner" parent="android:Widget.Holo.Spinner"/><style name="Base.TextAppearance.AppCompat.Small.Inverse">
-        <item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style><style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V11.ThemeOverlay.AppCompat.Dialog"/><style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Holo.ProgressBar.Horizontal">
-    </style><style name="Base.Theme.AppCompat.Light.Dialog.MinWidth">
-        <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style><style name="Platform.V11.AppCompat" parent="android:Theme.Holo">
-        <item name="android:windowNoTitle">true</item>
-        <item name="android:windowActionBar">false</item>
-
-        <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
-        <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
-
-        
-        <item name="android:colorForeground">@color/foreground_material_dark</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
-        <item name="android:colorBackground">@color/background_material_dark</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
-        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item>
-        <item name="android:backgroundDimAmount">0.6</item>
-        <item name="android:windowBackground">@color/background_material_dark</item>
-
-        
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
-        <item name="android:textColorHighlightInverse">@color/highlighted_text_material_light</item>
-        <item name="android:textColorLink">?attr/colorAccent</item>
-        <item name="android:textColorLinkInverse">?attr/colorAccent</item>
-        <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
-
-        
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
-        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
-        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
-        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
-        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
-        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
-
-        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
-        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
-
-        <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
-        <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
-        <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
-
-        <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_dark</item>
-        <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_dark</item>
-        <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_dark</item>
-    </style><style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Holo.ProgressBar">
-    </style><style name="Base.Theme.AppCompat.Dialog.MinWidth">
-        <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style><style name="Base.ThemeOverlay.AppCompat.Dialog.Alert">
-        <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style><style name="Platform.AppCompat.Light" parent="Platform.V11.AppCompat.Light"/></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ko/values-ko.xml" qualifiers="ko"><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"옵션 더보기"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"검색"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s와(과) 공유"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"검색어"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"위로 탐색"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"검색어 삭제"</string><string msgid="7723749260725869598" name="abc_search_hint">"검색..."</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"음성 검색"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"검색어 보내기"</string><string msgid="121134116657445385" name="abc_capital_off">"사용 안함"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"접기"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"공유 대상"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"완료"</string><string msgid="3405795526292276155" name="abc_capital_on">"사용"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"홈 탐색"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"전체 보기"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"앱 선택"</string><string msgid="146198913615257606" name="search_menu_title">"검색"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bs-rBA/values-bs-rBA.xml" qualifiers="bs-rBA"><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skupi"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Vrati se na početnu stranicu"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Obriši upit"</string><string msgid="121134116657445385" name="abc_capital_off">"ISKLJUČI"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošalji upit"</string><string msgid="7723749260725869598" name="abc_search_hint">"Pretraži..."</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigiraj prema gore"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Završeno"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Vidi sve"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Pretraži upit"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Podijeli sa %s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Podijeli sa"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Više opcija"</string><string msgid="3405795526292276155" name="abc_capital_on">"UKLJUČI"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Odaberite aplikaciju"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Traži"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Pretraživanje glasom"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string><string msgid="146198913615257606" name="search_menu_title">"Pretraži"</string></file><file name="abc_tint_spinner" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_spinner.xml" qualifiers="v23" type="color"/><file name="abc_tint_seek_thumb" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_seek_thumb.xml" qualifiers="v23" type="color"/><file name="abc_tint_switch_track" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_switch_track.xml" qualifiers="v23" type="color"/><file name="abc_tint_btn_checkable" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_btn_checkable.xml" qualifiers="v23" type="color"/><file name="abc_btn_colored_text_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_btn_colored_text_material.xml" qualifiers="v23" type="color"/><file name="abc_btn_colored_borderless_text_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_btn_colored_borderless_text_material.xml" qualifiers="v23" type="color"/><file name="abc_tint_switch_thumb" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_switch_thumb.xml" qualifiers="v23" type="color"/><file name="abc_color_highlight_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_color_highlight_material.xml" qualifiers="v23" type="color"/><file name="abc_tint_default" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_default.xml" qualifiers="v23" type="color"/><file name="abc_tint_edittext" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color-v23/abc_tint_edittext.xml" qualifiers="v23" type="color"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hdpi-v4/values-hdpi-v4.xml" qualifiers="hdpi-v4"><style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
-          <item name="barLength">18.66dp</item>
-          <item name="gapBetweenBars">3.33dp</item>
-          <item name="drawableSize">24dp</item>
-     </style></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ky-rKG/values-ky-rKG.xml" qualifiers="ky-rKG"><string msgid="3405795526292276155" name="abc_capital_on">"КҮЙҮК"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Бөлүшүү"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Издөө талаптары"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s аркылуу бөлүшүү"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Колдонмо тандоо"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Издөө"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Үйгө багыттоо"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Үн аркылуу издөө"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Бардыгын көрүү"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Жыйнап коюу"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Талаптарды тазалоо"</string><string msgid="7723749260725869598" name="abc_search_hint">"Издөө…"</string><string msgid="121134116657445385" name="abc_capital_off">"ӨЧҮК"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Талап жөнөтүү"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Даяр"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Көбүрөөк мүмкүнчүлүктөр"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Жогору"</string><string msgid="146198913615257606" name="search_menu_title">"Издөө"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v25/values-v25.xml" qualifiers="v25"><style name="Platform.V25.AppCompat.Light" parent="android:Theme.Material.Light.NoActionBar">
-    </style><style name="Platform.AppCompat.Light" parent="Platform.V25.AppCompat.Light"/><style name="Platform.AppCompat" parent="Platform.V25.AppCompat"/><style name="Platform.V25.AppCompat" parent="android:Theme.Material.NoActionBar">
-    </style></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ca/values-ca.xml" qualifiers="ca"><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Selecciona una aplicació"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Replega"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Esborra la consulta"</string><string msgid="7723749260725869598" name="abc_search_hint">"Cerca..."</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envia la consulta"</string><string msgid="146198913615257606" name="search_menu_title">"Cerca"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navega cap a dalt"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Comparteix amb"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navega a la pàgina d\'inici"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Mostra\'ls tots"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Comparteix amb %s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de cerca"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Cerca"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Fet"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Cerca per veu"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string><string msgid="121134116657445385" name="abc_capital_off">"DESACTIVAT"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Més opcions"</string><string msgid="3405795526292276155" name="abc_capital_on">"ACTIVAT"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-eu-rES/values-eu-rES.xml" qualifiers="eu-rES"><string msgid="8264924765203268293" name="abc_searchview_description_search">"Bilatu"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Tolestu"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Joan orri nagusira"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Garbitu kontsulta"</string><string msgid="7723749260725869598" name="abc_search_hint">"Bilatu…"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partekatu hauekin"</string><string msgid="146198913615257606" name="search_menu_title">"Bilatu"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Aukera gehiago"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partekatu %s erabiltzailearekin"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Bilaketa-kontsulta"</string><string msgid="121134116657445385" name="abc_capital_off">"DESAKTIBATUTA"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Bidali kontsulta"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3405795526292276155" name="abc_capital_on">"AKTIBATUTA"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Ahots bidezko bilaketa"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Joan gora"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Eginda"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Aukeratu aplikazio bat"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ikusi guztiak"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-iw/values-iw.xml" qualifiers="iw"><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"‏%1$s‏, %2$s‏, %3$s"</string><string msgid="3405795526292276155" name="abc_capital_on">"פועל"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"מחק שאילתה"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"חפש"</string><string msgid="146198913615257606" name="search_menu_title">"חפש"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"בחר אפליקציה"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ראה הכל"</string><string msgid="121134116657445385" name="abc_capital_off">"כבוי"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏שתף עם %s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"עוד אפשרויות"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"בוצע"</string><string msgid="7723749260725869598" name="abc_search_hint">"חפש…"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"שלח שאילתה"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"‎999+‎"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"שאילתת חיפוש"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"נווט לדף הבית"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"‏%1$s‏, %2$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"חיפוש קולי"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"שתף עם"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"נווט למעלה"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"כווץ"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sv/values-sv.xml" qualifiers="sv"><string msgid="121134116657445385" name="abc_capital_off">"AV"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Dela med"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Visa alla"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Sök …"</string><string msgid="3405795526292276155" name="abc_capital_on">"PÅ"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Sök"</string><string msgid="146198913615257606" name="search_menu_title">"Sök"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ta bort frågan"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigera uppåt"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Fler alternativ"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Dela med %s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Klart"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Röstsökning"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Sökfråga"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Skicka fråga"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Välj en app"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Visa startsidan"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Komprimera"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-et-rEE/values-et-rEE.xml" qualifiers="et-rEE"><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Päringu tühistamine"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="146198913615257606" name="search_menu_title">"Otsing"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeerimine avaekraanile"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Valmis"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Jagamine kasutajaga %s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Ahendamine"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Päringu esitamine"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Jagamine:"</string><string msgid="3405795526292276155" name="abc_capital_on">"SEES"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Rohkem valikuid"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Otsingupäring"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Kuva kõik"</string><string msgid="7723749260725869598" name="abc_search_hint">"Otsige …"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Otsing"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Valige rakendus"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigeerimine üles"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Häälotsing"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="121134116657445385" name="abc_capital_off">"VÄLJAS"</string></file><file name="abc_cab_background_top_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_cab_background_top_material.xml" qualifiers="" type="drawable"/><file name="abc_btn_radio_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_radio_material.xml" qualifiers="" type="drawable"/><file name="abc_list_selector_holo_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_holo_dark.xml" qualifiers="" type="drawable"/><file name="abc_ratingbar_indicator_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_indicator_material.xml" qualifiers="" type="drawable"/><file name="notification_icon_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_icon_background.xml" qualifiers="" type="drawable"/><file name="abc_list_selector_holo_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_holo_light.xml" qualifiers="" type="drawable"/><file name="abc_ratingbar_small_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_small_material.xml" qualifiers="" type="drawable"/><file name="abc_btn_borderless_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_borderless_material.xml" qualifiers="" type="drawable"/><file name="abc_edit_text_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_edit_text_material.xml" qualifiers="" type="drawable"/><file name="abc_ic_arrow_drop_right_black_24dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml" qualifiers="" type="drawable"/><file name="abc_item_background_holo_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_item_background_holo_light.xml" qualifiers="" type="drawable"/><file name="abc_textfield_search_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_textfield_search_material.xml" qualifiers="" type="drawable"/><file name="abc_ic_menu_overflow_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_menu_overflow_material.xml" qualifiers="" type="drawable"/><file name="abc_seekbar_track_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_track_material.xml" qualifiers="" type="drawable"/><file name="abc_btn_check_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_check_material.xml" qualifiers="" type="drawable"/><file name="abc_ic_search_api_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_search_api_material.xml" qualifiers="" type="drawable"/><file name="abc_list_selector_background_transition_holo_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_background_transition_holo_light.xml" qualifiers="" type="drawable"/><file name="abc_ic_go_search_api_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_go_search_api_material.xml" qualifiers="" type="drawable"/><file name="abc_btn_colored_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_colored_material.xml" qualifiers="" type="drawable"/><file name="abc_switch_thumb_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_switch_thumb_material.xml" qualifiers="" type="drawable"/><file name="notification_tile_bg" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_tile_bg.xml" qualifiers="" type="drawable"/><file name="notification_bg" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_bg.xml" qualifiers="" type="drawable"/><file name="abc_dialog_material_background" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_dialog_material_background.xml" qualifiers="" type="drawable"/><file name="abc_text_cursor_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_text_cursor_material.xml" qualifiers="" type="drawable"/><file name="abc_ic_clear_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_clear_material.xml" qualifiers="" type="drawable"/><file name="abc_ic_voice_search_api_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_voice_search_api_material.xml" qualifiers="" type="drawable"/><file name="abc_ratingbar_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ratingbar_material.xml" qualifiers="" type="drawable"/><file name="abc_list_selector_background_transition_holo_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml" qualifiers="" type="drawable"/><file name="abc_spinner_textfield_background_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_spinner_textfield_background_material.xml" qualifiers="" type="drawable"/><file name="abc_seekbar_tick_mark_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_tick_mark_material.xml" qualifiers="" type="drawable"/><file name="notification_bg_low" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/notification_bg_low.xml" qualifiers="" type="drawable"/><file name="abc_btn_default_mtrl_shape" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_btn_default_mtrl_shape.xml" qualifiers="" type="drawable"/><file name="abc_cab_background_internal_bg" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_cab_background_internal_bg.xml" qualifiers="" type="drawable"/><file name="abc_seekbar_thumb_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_seekbar_thumb_material.xml" qualifiers="" type="drawable"/><file name="abc_item_background_holo_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_item_background_holo_dark.xml" qualifiers="" type="drawable"/><file name="abc_vector_test" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_vector_test.xml" qualifiers="" type="drawable"/><file name="abc_tab_indicator_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_tab_indicator_material.xml" qualifiers="" type="drawable"/><file name="abc_ic_ab_back_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable/abc_ic_ab_back_material.xml" qualifiers="" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ro/values-ro.xml" qualifiers="ro"><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mai multe opțiuni"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Căutați"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Afișați-le pe toate"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Interogare de căutare"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigați la ecranul de pornire"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Alegeți o aplicație"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"˃999"</string><string msgid="3405795526292276155" name="abc_capital_on">"ACTIVAȚI"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Terminat"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Restrângeți"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ștergeți interogarea"</string><string msgid="121134116657445385" name="abc_capital_off">"DEZACTIVAȚI"</string><string msgid="7723749260725869598" name="abc_search_hint">"Căutați…"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Trimiteți la"</string><string msgid="146198913615257606" name="search_menu_title">"Căutați"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Căutare vocală"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Trimiteți interogarea"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Trimiteți la %s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigați în sus"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mr-rIN/values-mr-rIN.xml" qualifiers="mr-rIN"><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"संक्षिप्त करा"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"क्‍वेरी स्‍पष्‍ट करा"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"शोध"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s सह सामायिक करा"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सर्व पहा"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"एक अ‍ॅप निवडा"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="121134116657445385" name="abc_capital_off">"बंद"</string><string msgid="146198913615257606" name="search_menu_title">"शोधा"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"वर नेव्‍हिगेट करा"</string><string msgid="3405795526292276155" name="abc_capital_on">"चालू"</string><string msgid="7723749260725869598" name="abc_search_hint">"शोधा…"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"पूर्ण झाले"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"क्वेरी सबमिट करा"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"शोध क्वेरी"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"यांच्यासह सामायिक करा"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"मुख्‍यपृष्‍ठ नेव्‍हिगेट करा"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"व्हॉइस शोध"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"अधिक पर्याय"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-en-rIN/values-en-rIN.xml" qualifiers="en-rIN"><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="146198913615257606" name="search_menu_title">"Search"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string><string msgid="3405795526292276155" name="abc_capital_on">"ON"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string><string msgid="121134116657445385" name="abc_capital_off">"OFF"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ka-rGE/values-ka-rGE.xml" qualifiers="ka-rGE"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"მოთხოვნის გადაგზავნა"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ხმოვანი ძიება"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"მოთხოვნის გასუფთავება"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"გაზიარება:"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"აკეცვა"</string><string msgid="146198913615257606" name="search_menu_title">"ძიება"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"მეტი ვარიანტები"</string><string msgid="3405795526292276155" name="abc_capital_on">"ჩართულია"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s-თან გაზიარება"</string><string msgid="121134116657445385" name="abc_capital_off">"გამორთულია"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"მთავარზე ნავიგაცია"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"დასრულდა"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ძიება"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ზემოთ ნავიგაცია"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ყველას ნახვა"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"აპის არჩევა"</string><string msgid="7723749260725869598" name="abc_search_hint">"ძიება..."</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ძიების მოთხოვნა"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ja/values-ja.xml" qualifiers="ja"><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s、%2$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"アプリの選択"</string><string msgid="7723749260725869598" name="abc_search_hint">"検索…"</string><string msgid="121134116657445385" name="abc_capital_off">"OFF"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"検索キーワードを削除"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"折りたたむ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"共有"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"検索キーワードを送信"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"上へ移動"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%sと共有"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"すべて表示"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"その他のオプション"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"検索キーワード"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"検索"</string><string msgid="3405795526292276155" name="abc_capital_on">"ON"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"完了"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"音声検索"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s、%2$s、%3$s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ホームへ移動"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="146198913615257606" name="search_menu_title">"検索"</string></file><file name="notification_bg_low_normal" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_low_normal.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_cab_background_top_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_paste_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_menu_hardkey_panel_mtrl_mult" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_015" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ab_share_pack_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_textfield_default_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_share_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_star_black_48dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_48dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_divider_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_focused_holo" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_focused_holo.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_star_black_36dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_scrubber_control_off_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_36dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_text_select_handle_middle_mtrl_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_16dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_015" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png" qualifiers="hdpi-v4" type="drawable"/><file name="notification_bg_normal_pressed" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="notify_panel_notification_icon_bg" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_000" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_textfield_activated_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_scrubber_primary_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_switch_track_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_textfield_search_activated_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00001" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_selectall_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_000" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_005" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" qualifiers="hdpi-v4" type="drawable"/><file name="notification_bg_normal" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_normal.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_scrubber_track_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_commit_search_api_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_000" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_tab_indicator_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00012" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_star_black_16dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="notification_bg_low_pressed" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_popup_background_mtrl_mult" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_longpressed_holo" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_text_select_handle_middle_mtrl_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_textfield_search_default_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v16/values-v16.xml" qualifiers="v16"><dimen name="notification_right_side_padding_top">4dp</dimen></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-uz-rUZ/values-uz-rUZ.xml" qualifiers="uz-rUZ"><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yuqoriga o‘tish"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"So‘rovni tozalash"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Tayyor"</string><string msgid="146198913615257606" name="search_menu_title">"Qidirish"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Dastur tanlang"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Boshiga o‘tish"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Qidirish"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Barchasini ko‘rish"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"So‘rovni izlash"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%sga ruxsat berish"</string><string msgid="7723749260725869598" name="abc_search_hint">"Qidirish…"</string><string msgid="121134116657445385" name="abc_capital_off">"O‘CHIQ"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Ovozli qidiruv"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"So‘rov yaratish"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Boshqa parametrlar"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Yig‘ish"</string><string msgid="3405795526292276155" name="abc_capital_on">"YONIQ"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Ruxsat berish"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sr/values-sr.xml" qualifiers="sr"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Одлазак на Почетну"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Избор апликације"</string><string msgid="7723749260725869598" name="abc_search_hint">"Претражите..."</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Дели са апликацијом %s"</string><string msgid="3405795526292276155" name="abc_capital_on">"УКЉУЧИ"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Још опција"</string><string msgid="121134116657445385" name="abc_capital_off">"ИСКЉУЧИ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Слање упита"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласовна претрага"</string><string msgid="146198913615257606" name="search_menu_title">"Претражи"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Кретање нагоре"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Скупи"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Брисање упита"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Претрага"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Дели са"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Упит за претрагу"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Прикажи све"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hi/values-hi.xml" qualifiers="hi"><string msgid="4076576682505996667" name="abc_action_mode_done">"पूर्ण"</string><string msgid="146198913615257606" name="search_menu_title">"खोज"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ध्वनि खोज"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"क्‍वेरी साफ़ करें"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s के साथ साझा करें"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"संक्षिप्त करें"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"अधिक विकल्प"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"कोई एप्‍लिकेशन चुनें"</string><string msgid="121134116657445385" name="abc_capital_off">"बंद"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सभी देखें"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"खोज क्वेरी"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"मुख्यपृष्ठ पर नेविगेट करें"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"खोजें"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3405795526292276155" name="abc_capital_on">"चालू"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"इसके द्वारा साझा करें"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ऊपर नेविगेट करें"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"खोजा जा रहा है…"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"क्वेरी सबमिट करें"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lt/values-lt.xml" qualifiers="lt"><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Išvalyti užklausą"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pasirinkti programą"</string><string msgid="121134116657445385" name="abc_capital_off">"IŠJUNGTA"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pateikti užklausą"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sutraukti"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Bendrinti naudojant „%s“"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Eiti į viršų"</string><string msgid="146198913615257606" name="search_menu_title">"Paieška"</string><string msgid="7723749260725869598" name="abc_search_hint">"Ieškoti..."</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bendrinti naudojant"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Paieška balsu"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Atlikta"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Paieškos užklausa"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Eiti į pagrindinį puslapį"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Paieška"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3405795526292276155" name="abc_capital_on">"ĮJUNGTI"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Daugiau parinkčių"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Peržiūrėti viską"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v14/values-v14.xml" qualifiers="v14"><style name="TextAppearance.StatusBar.EventContent.Line2">
-        <item name="android:textSize">@dimen/notification_subtext_size</item>
-    </style><style name="Base.TextAppearance.AppCompat.Button">
-        <item name="android:textSize">@dimen/abc_text_size_button_material</item>
-        <item name="android:textAllCaps">true</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style><style name="Platform.V14.AppCompat.Light" parent="Platform.V11.AppCompat.Light">
-        <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
-
-        <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
-        <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
-    </style><style name="TextAppearance.StatusBar.EventContent.Time"/><style name="Platform.AppCompat.Light" parent="Platform.V14.AppCompat.Light"/><style name="Platform.V14.AppCompat" parent="Platform.V11.AppCompat">
-        <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
-
-        <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
-        <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
-    </style><style name="TextAppearance.StatusBar.EventContent.Info"/><style name="TextAppearance.StatusBar.EventContent.Title" parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/><style name="Platform.AppCompat" parent="Platform.V14.AppCompat"/><style name="TextAppearance.AppCompat.Notification.Title" parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/><style name="TextAppearance.StatusBar.EventContent" parent="@android:style/TextAppearance.StatusBar.EventContent"/><style name="TextAppearance.AppCompat.Notification" parent="@android:style/TextAppearance.StatusBar.EventContent"/></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es/values-es.xml" qualifiers="es"><string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Buscar"</string><string msgid="121134116657445385" name="abc_capital_off">"NO"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todo"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Borrar consulta"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Seleccionar una aplicación"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="3405795526292276155" name="abc_capital_on">"SÍ"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ir a la pantalla de inicio"</string><string msgid="146198913615257606" name="search_menu_title">"Buscar"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Desplazarse hacia arriba"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Búsqueda por voz"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Listo"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Más opciones"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string></file><file name="abc_ic_menu_paste_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_015" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_menu_share_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_star_black_48dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_48dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_star_black_36dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_36dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_16dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_015" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_000" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_switch_track_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00001" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_menu_selectall_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_000" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_005" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_000" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_tab_indicator_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00012" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_star_black_16dp" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png" qualifiers="xxxhdpi-v4" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v21/values-v21.xml" qualifiers="v21"><style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget.Material.SeekBar"/><style name="Base.TextAppearance.AppCompat.Title" parent="android:TextAppearance.Material.Title"/><style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="android:TextAppearance.Material.Widget.ActionBar.Title">
-    </style><style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="android:Widget.Material.Light.ActionBar.TabText">
-    </style><style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V21.ThemeOverlay.AppCompat.Dialog"/><style name="Platform.V21.AppCompat" parent="android:Theme.Material.NoActionBar">
-        
-        <item name="android:textColorLink">?android:attr/colorAccent</item>
-        <item name="android:textColorLinkInverse">?android:attr/colorAccent</item>
-
-        
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
-
-        <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
-        <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
-    </style><style name="Platform.AppCompat" parent="Platform.V21.AppCompat"/><style name="TextAppearance.AppCompat.Notification.Title.Media">
-        <item name="android:textColor">@color/primary_text_default_material_dark</item>
-    </style><style name="Base.Theme.AppCompat.Light" parent="Base.V21.Theme.AppCompat.Light"/><color name="notification_action_color_filter">@color/secondary_text_default_material_light</color><style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V21.Theme.AppCompat.Light.Dialog"/><style name="Base.Widget.AppCompat.ActionButton" parent="android:Widget.Material.ActionButton">
-    </style><style name="Base.Widget.AppCompat.PopupMenu" parent="android:Widget.Material.PopupMenu">
-    </style><style name="Base.Theme.AppCompat" parent="Base.V21.Theme.AppCompat"/><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="android:TextAppearance.Material.Widget.ActionBar.Title">
-    </style><style name="TextAppearance.AppCompat.Notification.Title" parent="@android:style/TextAppearance.Material.Notification.Title"/><style name="Base.TextAppearance.AppCompat.Subhead" parent="android:TextAppearance.Material.Subhead"/><style name="Platform.ThemeOverlay.AppCompat.Dark"/><style name="Base.Widget.AppCompat.ListView.DropDown" parent="android:Widget.Material.ListView.DropDown"/><dimen name="notification_media_narrow_margin">12dp</dimen><style name="Base.Theme.AppCompat.Dialog" parent="Base.V21.Theme.AppCompat.Dialog"/><style name="Platform.V21.AppCompat.Light" parent="android:Theme.Material.Light.NoActionBar">
-        
-        <item name="android:textColorLink">?android:attr/colorAccent</item>
-        <item name="android:textColorLinkInverse">?android:attr/colorAccent</item>
-
-        
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
-
-        <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
-        <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
-    </style><style name="Base.TextAppearance.AppCompat.SearchResult.Title" parent="android:TextAppearance.Material.SearchResult.Title">
-    </style><style name="Base.V21.Theme.AppCompat.Light.Dialog" parent="Base.V11.Theme.AppCompat.Light.Dialog">
-        <item name="android:windowElevation">@dimen/abc_floating_window_z</item>
-    </style><style name="TextAppearance.AppCompat.Notification.Info" parent="@android:style/TextAppearance.Material.Notification.Info"/><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat">
-        <item name="android:fontFamily">@string/abc_font_family_title_material</item>
-        <item name="android:textSize">@dimen/abc_text_size_menu_header_material</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style><style name="Platform.ThemeOverlay.AppCompat" parent="">
-        
-        <item name="android:colorPrimary">?attr/colorPrimary</item>
-        <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
-        <item name="android:colorAccent">?attr/colorAccent</item>
-        <item name="android:colorControlNormal">?attr/colorControlNormal</item>
-        <item name="android:colorControlActivated">?attr/colorControlActivated</item>
-        <item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
-        <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
-    </style><style name="Base.Widget.AppCompat.Button.Borderless.Colored" parent="android:Widget.Material.Button.Borderless.Colored">
-        <item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item>
-    </style><style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget.Material.ButtonBar"/><style name="Base.TextAppearance.AppCompat.Caption" parent="android:TextAppearance.Material.Caption"/><style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance.Material"/><style name="Base.Widget.AppCompat.ListPopupWindow" parent="android:Widget.Material.ListPopupWindow">
-    </style><style name="Widget.AppCompat.NotificationActionText" parent="">
-        <item name="android:textAppearance">?android:attr/textAppearanceButton</item>
-        <item name="android:textColor">@color/secondary_text_default_material_light</item>
-        <item name="android:textSize">@dimen/notification_action_text_size</item>
-    </style><style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="android:TextAppearance.Material.Button"/><style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.Material.CompoundButton.RadioButton"/><style name="TextAppearance.AppCompat.Notification.Time" parent="@android:style/TextAppearance.Material.Notification.Time"/><dimen name="notification_content_margin_start">0dp</dimen><dimen name="notification_main_column_padding_top">0dp</dimen><style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle">
-    </style><style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
-        <item name="android:dropDownHorizontalOffset">-4dip</item>
-        <item name="android:overlapAnchor">true</item>
-    </style><style name="Base.Widget.AppCompat.EditText" parent="android:Widget.Material.EditText">
-        <item name="android:background">?attr/editTextBackground</item>
-    </style><style name="Base.TextAppearance.AppCompat.Inverse" parent="android:TextAppearance.Material.Inverse"/><style name="Base.TextAppearance.AppCompat.Widget.Button" parent="android:TextAppearance.Material.Widget.Button"/><style name="Base.Widget.AppCompat.Light.PopupMenu" parent="android:Widget.Material.Light.PopupMenu">
-    </style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="android:TextAppearance.Material.Widget.ActionBar.Title.Inverse">
-    </style><style name="Base.V21.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
-        
-        <item name="actionBarSize">?android:attr/actionBarSize</item>
-        <item name="actionBarDivider">?android:attr/actionBarDivider</item>
-        <item name="actionBarItemBackground">@drawable/abc_action_bar_item_background_material</item>
-        <item name="actionButtonStyle">?android:attr/actionButtonStyle</item>
-        <item name="actionModeBackground">?android:attr/actionModeBackground</item>
-        <item name="actionModeCloseDrawable">?android:attr/actionModeCloseDrawable</item>
-        <item name="actionOverflowButtonStyle">?android:attr/actionOverflowButtonStyle</item>
-        <item name="homeAsUpIndicator">?android:attr/homeAsUpIndicator</item>
-
-        
-        <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item>
-        <item name="textAppearanceLargePopupMenu">?android:attr/textAppearanceLargePopupMenu</item>
-        <item name="textAppearanceSmallPopupMenu">?android:attr/textAppearanceSmallPopupMenu</item>
-
-        
-        <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
-        <item name="selectableItemBackgroundBorderless">?android:attr/selectableItemBackgroundBorderless</item>
-        <item name="borderlessButtonStyle">?android:borderlessButtonStyle</item>
-        <item name="dividerHorizontal">?android:attr/dividerHorizontal</item>
-        <item name="dividerVertical">?android:attr/dividerVertical</item>
-        <item name="editTextBackground">@drawable/abc_edit_text_material</item>
-        <item name="editTextColor">?android:attr/editTextColor</item>
-        <item name="listChoiceBackgroundIndicator">?android:attr/listChoiceBackgroundIndicator</item>
-
-        
-        <item name="buttonStyle">?android:attr/buttonStyle</item>
-        <item name="buttonStyleSmall">?android:attr/buttonStyleSmall</item>
-        <item name="checkboxStyle">?android:attr/checkboxStyle</item>
-        <item name="checkedTextViewStyle">?android:attr/checkedTextViewStyle</item>
-        <item name="radioButtonStyle">?android:attr/radioButtonStyle</item>
-        <item name="ratingBarStyle">?android:attr/ratingBarStyle</item>
-        <item name="spinnerStyle">?android:attr/spinnerStyle</item>
-
-        
-        <item name="android:colorPrimary">?attr/colorPrimary</item>
-        <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
-        <item name="android:colorAccent">?attr/colorAccent</item>
-        <item name="android:colorControlNormal">?attr/colorControlNormal</item>
-        <item name="android:colorControlActivated">?attr/colorControlActivated</item>
-        <item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
-        <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
-    </style><style name="Platform.AppCompat.Light" parent="Platform.V21.AppCompat.Light"/><style name="Base.TextAppearance.AppCompat.Body1" parent="android:TextAppearance.Material.Body1"/><style name="Base.TextAppearance.AppCompat.Body2" parent="android:TextAppearance.Material.Body2"/><style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.Material.CompoundButton.CheckBox"/><style name="Base.Widget.AppCompat.ActionBar.TabText" parent="android:Widget.Material.ActionBar.TabText">
-    </style><style name="Base.Widget.AppCompat.Button" parent="android:Widget.Material.Button"/><style name="Base.TextAppearance.AppCompat.Small.Inverse" parent="android:TextAppearance.Material.Small.Inverse"/><style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="android:Widget.Material.Light.ActionBar.TabView">
-    </style><style name="Base.V21.ThemeOverlay.AppCompat.Dialog" parent="Base.V11.ThemeOverlay.AppCompat.Dialog">
-        <item name="android:windowElevation">@dimen/abc_floating_window_z</item>
-    </style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle">
-    </style><style name="Base.TextAppearance.AppCompat.Headline" parent="android:TextAppearance.Material.Headline"/><style name="Base.V21.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
-        
-        <item name="actionBarSize">?android:attr/actionBarSize</item>
-        <item name="actionBarDivider">?android:attr/actionBarDivider</item>
-        <item name="actionBarItemBackground">@drawable/abc_action_bar_item_background_material</item>
-        <item name="actionButtonStyle">?android:attr/actionButtonStyle</item>
-        <item name="actionModeBackground">?android:attr/actionModeBackground</item>
-        <item name="actionModeCloseDrawable">?android:attr/actionModeCloseDrawable</item>
-        <item name="actionOverflowButtonStyle">?android:attr/actionOverflowButtonStyle</item>
-        <item name="homeAsUpIndicator">?android:attr/homeAsUpIndicator</item>
-
-        
-        <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item>
-        <item name="textAppearanceLargePopupMenu">?android:attr/textAppearanceLargePopupMenu</item>
-        <item name="textAppearanceSmallPopupMenu">?android:attr/textAppearanceSmallPopupMenu</item>
-
-        
-        <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
-        <item name="selectableItemBackgroundBorderless">?android:attr/selectableItemBackgroundBorderless</item>
-        <item name="borderlessButtonStyle">?android:borderlessButtonStyle</item>
-        <item name="dividerHorizontal">?android:attr/dividerHorizontal</item>
-        <item name="dividerVertical">?android:attr/dividerVertical</item>
-        <item name="editTextBackground">@drawable/abc_edit_text_material</item>
-        <item name="editTextColor">?android:attr/editTextColor</item>
-        <item name="listChoiceBackgroundIndicator">?android:attr/listChoiceBackgroundIndicator</item>
-
-        
-        <item name="buttonStyle">?android:attr/buttonStyle</item>
-        <item name="buttonStyleSmall">?android:attr/buttonStyleSmall</item>
-        <item name="checkboxStyle">?android:attr/checkboxStyle</item>
-        <item name="checkedTextViewStyle">?android:attr/checkedTextViewStyle</item>
-        <item name="radioButtonStyle">?android:attr/radioButtonStyle</item>
-        <item name="ratingBarStyle">?android:attr/ratingBarStyle</item>
-        <item name="spinnerStyle">?android:attr/spinnerStyle</item>
-
-        
-        <item name="android:colorPrimary">?attr/colorPrimary</item>
-        <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
-        <item name="android:colorAccent">?attr/colorAccent</item>
-        <item name="android:colorControlNormal">?attr/colorControlNormal</item>
-        <item name="android:colorControlActivated">?attr/colorControlActivated</item>
-        <item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
-        <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
-    </style><style name="Base.TextAppearance.AppCompat.Medium" parent="android:TextAppearance.Material.Medium"/><style name="Base.Widget.AppCompat.ListView.Menu"/><style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="android:TextAppearance.Material.Widget.PopupMenu.Large">
-    </style><style name="Base.TextAppearance.AppCompat.Menu" parent="android:TextAppearance.Material.Menu"/><style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="android:TextAppearance.Material.Widget.ActionMode.Title">
-    </style><style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="android:Widget.Material.Light.ActionBar.TabText">
-    </style><style name="Base.Widget.AppCompat.ListView" parent="android:Widget.Material.ListView"/><style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.Material.AutoCompleteTextView">
-        <item name="android:background">?attr/editTextBackground</item>
-    </style><style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle" parent="android:TextAppearance.Material.SearchResult.Subtitle">
-    </style><style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.Material.TextView.SpinnerItem"/><style name="TextAppearance.AppCompat.Notification" parent="@android:style/TextAppearance.Material.Notification"/><style name="Base.TextAppearance.AppCompat.Large.Inverse" parent="android:TextAppearance.Material.Large.Inverse"/><style name="Base.V21.Theme.AppCompat.Dialog" parent="Base.V11.Theme.AppCompat.Dialog">
-        <item name="android:windowElevation">@dimen/abc_floating_window_z</item>
-    </style><style name="Base.Widget.AppCompat.Button.Borderless" parent="android:Widget.Material.Button.Borderless"/><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="android:TextAppearance.Material.Widget.PopupMenu.Large">
-    </style><style name="TextAppearance.AppCompat.Notification.Media">
-        <item name="android:textColor">@color/secondary_text_default_material_dark</item>
-    </style><style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="android:Widget.Material.ActionButton.Overflow">
-    </style><style name="Base.TextAppearance.AppCompat.Button" parent="android:TextAppearance.Material.Button"/><style name="Base.TextAppearance.AppCompat.Small" parent="android:TextAppearance.Material.Small"/><style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget.Material.Toolbar.Button.Navigation">
-    </style><style name="TextAppearance.AppCompat.Notification.Info.Media">
-        <item name="android:textColor">@color/secondary_text_default_material_dark</item>
-    </style><style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="android:TextAppearance.Material.Widget.TextView.SpinnerItem"/><style name="Base.Widget.AppCompat.Button.Small" parent="android:Widget.Material.Button.Small"/><style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.Material.RatingBar"/><style name="Base.TextAppearance.AppCompat.Display4" parent="android:TextAppearance.Material.Display4"/><style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Material.ProgressBar">
-    </style><style name="Base.TextAppearance.AppCompat.Display3" parent="android:TextAppearance.Material.Display3"/><style name="Base.TextAppearance.AppCompat.Display2" parent="android:TextAppearance.Material.Display2"/><style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="android:TextAppearance.Material.Widget.PopupMenu.Small">
-    </style><style name="Base.Widget.AppCompat.PopupMenu.Overflow">
-        <item name="android:dropDownHorizontalOffset">-4dip</item>
-        <item name="android:overlapAnchor">true</item>
-    </style><style name="Base.TextAppearance.AppCompat.Display1" parent="android:TextAppearance.Material.Display1"/><style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.Material.ImageButton"/><style name="Widget.AppCompat.NotificationActionContainer" parent="">
-        <item name="android:background">@drawable/notification_action_background</item>
-    </style><style name="Base.TextAppearance.AppCompat.Large" parent="android:TextAppearance.Material.Large"/><style name="Base.Widget.AppCompat.ActionButton.CloseMode" parent="android:Widget.Material.ActionButton.CloseMode">
-        <item name="android:minWidth">56dp</item>
-    </style><style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="android:TextAppearance.Material.Widget.ActionMode.Subtitle">
-    </style><style name="Base.Widget.AppCompat.Spinner" parent="android:Widget.Material.Spinner"/><style name="Base.Widget.AppCompat.ActionBar.TabView" parent="android:Widget.Material.ActionBar.TabView">
-    </style><style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="android:Widget.Material.DropDownItem.Spinner"/><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle.Inverse">
-    </style><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="android:TextAppearance.Material.Widget.PopupMenu.Small">
-    </style><style name="TextAppearance.AppCompat.Notification.Time.Media">
-        <item name="android:textColor">@color/secondary_text_default_material_dark</item>
-    </style><style name="Base.TextAppearance.AppCompat.Medium.Inverse" parent="android:TextAppearance.Material.Medium.Inverse"/><style name="Platform.ThemeOverlay.AppCompat.Light"/><style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Material.ProgressBar.Horizontal">
-    </style></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tl/values-tl.xml" qualifiers="tl"><string msgid="7723749260725869598" name="abc_search_hint">"Maghanap…"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"I-collapse"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Ibahagi sa/kay %s"</string><string msgid="146198913615257606" name="search_menu_title">"Maghanap"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Tapos na"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Mag-navigate patungo sa home"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3405795526292276155" name="abc_capital_on">"I-ON"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Paghahanap gamit ang boses"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Ibahagi sa/kay"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pumili ng isang app"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Mag-navigate pataas"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Isumite ang query"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="121134116657445385" name="abc_capital_off">"I-OFF"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Maghanap"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tingnan lahat"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"I-clear ang query"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Higit pang mga opsyon"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Query sa paghahanap"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-bn-rBD/values-bn-rBD.xml" qualifiers="bn-rBD"><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"সঙ্কুচিত করুন"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"হোম এ নেভিগেট করুন"</string><string msgid="121134116657445385" name="abc_capital_off">"বন্ধ"</string><string msgid="3405795526292276155" name="abc_capital_on">"চালু"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"৯৯৯+"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"একটি অ্যাপ্লিকেশান বেছে নিন"</string><string msgid="7723749260725869598" name="abc_search_hint">"অনুসন্ধান..."</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"উপরের দিকে নেভিগেট করুন"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ক্যোয়ারী সাফ করুন"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"এর সাথে শেয়ার করুন"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ক্যোয়ারী জমা দিন"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s এর সাথে শেয়ার করুন"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ক্যোয়ারী অনুসন্ধান করুন"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"আরো বিকল্প"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"সবগুলো দেখুন"</string><string msgid="146198913615257606" name="search_menu_title">"অনুসন্ধান করুন"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"সম্পন্ন হয়েছে"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"অনুসন্ধান করুন"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ভয়েস অনুসন্ধান"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-nl/values-nl.xml" qualifiers="nl"><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Meer opties"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Gereed"</string><string msgid="121134116657445385" name="abc_capital_off">"UIT"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeren naar startpositie"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Alles weergeven"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Gesproken zoekopdracht"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Samenvouwen"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3405795526292276155" name="abc_capital_on">"AAN"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Zoeken"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Een app selecteren"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Delen met %s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Zoeken…"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Zoekopdracht"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Delen met"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Zoekopdracht wissen"</string><string msgid="146198913615257606" name="search_menu_title">"Zoeken"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Zoekopdracht verzenden"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Omhoog navigeren"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kn-rIN/values-kn-rIN.xml" qualifiers="kn-rIN"><string msgid="2550479030709304392" name="abc_searchview_description_query">"ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ಹುಡುಕಿ"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ಮುಗಿದಿದೆ"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ಎಲ್ಲವನ್ನೂ ನೋಡಿ"</string><string msgid="7723749260725869598" name="abc_search_hint">"ಹುಡುಕಿ…"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ಸಂಕುಚಿಸು"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"</string><string msgid="3405795526292276155" name="abc_capital_on">"ಆನ್"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ಧ್ವನಿ ಹುಡುಕಾಟ"</string><string msgid="121134116657445385" name="abc_capital_off">"ಆಫ್"</string><string msgid="146198913615257606" name="search_menu_title">"ಹುಡುಕಿ"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt/values-pt.xml" qualifiers="pt"><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Limpar consulta"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mais opções"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartilhar com %s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Recolher"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3405795526292276155" name="abc_capital_on">"ATIVAR"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar para cima"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Concluído"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de pesquisa"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="121134116657445385" name="abc_capital_off">"DESATIVAR"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar para a página inicial"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver tudo"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartilhar com"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Pesquisar"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Pesquisa por voz"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Selecione um app"</string><string msgid="146198913615257606" name="search_menu_title">"Pesquisar"</string><string msgid="7723749260725869598" name="abc_search_hint">"Pesquisar..."</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-vi/values-vi.xml" qualifiers="vi"><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="121134116657445385" name="abc_capital_off">"TẮT"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Gửi truy vấn"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Xóa truy vấn"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Chọn một ứng dụng"</string><string msgid="7723749260725869598" name="abc_search_hint">"Tìm kiếm…"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Chia sẻ với %s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Thêm tùy chọn"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Xong"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Tìm kiếm bằng giọng nói"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Xem tất cả"</string><string msgid="3405795526292276155" name="abc_capital_on">"BẬT"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Tìm kiếm"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Tìm kiếm truy vấn"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Chia sẻ với"</string><string msgid="146198913615257606" name="search_menu_title">"Tìm kiếm"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Điều hướng lên trên"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Điều hướng về trang chủ"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Thu gọn"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fa/values-fa.xml" qualifiers="fa"><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"اشتراک‌گذاری با"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"انتخاب برنامه"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"‏%1$s‏، %2$s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"‏%1$s‏، %2$s‏، %3$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ارسال عبارت جستجو"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"کوچک کردن"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"پیمایش به صفحه اصلی"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"گزینه‌های بیشتر"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"جستجو"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"جستجوی شفاهی"</string><string msgid="146198913615257606" name="search_menu_title">"جستجو"</string><string msgid="121134116657445385" name="abc_capital_off">"خاموش"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"۹۹۹+"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"عبارت جستجو"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏اشتراک‌گذاری با %s"</string><string msgid="7723749260725869598" name="abc_search_hint">"جستجو…"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"پیمایش به بالا"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"مشاهده همه"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"تمام"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"پاک کردن عبارت جستجو"</string><string msgid="3405795526292276155" name="abc_capital_on">"روشن"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ms-rMY/values-ms-rMY.xml" qualifiers="ms-rMY"><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Runtuhkan"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pilih apl"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Selesai"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Lagi pilihan"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Lihat semua"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Carian suara"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Kongsi dengan %s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigasi skrin utama"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigasi ke atas"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Cari"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="121134116657445385" name="abc_capital_off">"MATI"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Kongsi dengan"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Pertanyaan carian"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Serah pertanyaan"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Kosongkan pertanyaan"</string><string msgid="3405795526292276155" name="abc_capital_on">"HIDUP"</string><string msgid="7723749260725869598" name="abc_search_hint">"Cari…"</string><string msgid="146198913615257606" name="search_menu_title">"Cari"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-km-rKH/values-km-rKH.xml" qualifiers="km-rKH"><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ជម្រើស​ច្រើន​ទៀត"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"រួចរាល់"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"សម្អាត​សំណួរ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ដាក់​​​ស្នើ​សំណួរ"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ស្វែងរក​សំណួរ"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"ចែករំលែក​ជាមួយ %s"</string><string msgid="146198913615257606" name="search_menu_title">"ស្វែងរក"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"មើល​ទាំងអស់"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ការស្វែងរក​សំឡេង"</string><string msgid="3405795526292276155" name="abc_capital_on">"បើក"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"រកមើល​ឡើងលើ"</string><string msgid="121134116657445385" name="abc_capital_off">"បិទ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ចែករំលែក​ជាមួយ"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"រកមើល​ទៅ​ដើម"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ស្វែងរក"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"បង្រួម"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ជ្រើស​កម្មវិធី​​"</string><string msgid="7723749260725869598" name="abc_search_hint">"ស្វែងរក…"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-it/values-it.xml" qualifiers="it"><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Scegli un\'applicazione"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Comprimi"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Ricerca vocale"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Cancella query"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Altre opzioni"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Fine"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Condividi con %s"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Visualizza tutte"</string><string msgid="121134116657445385" name="abc_capital_off">"OFF"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Vai in alto"</string><string msgid="7723749260725869598" name="abc_search_hint">"Cerca…"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Cerca"</string><string msgid="146198913615257606" name="search_menu_title">"Ricerca"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Invia query"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Condividi con"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Query di ricerca"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Vai alla home page"</string><string msgid="3405795526292276155" name="abc_capital_on">"ON"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ru/values-ru.xml" qualifiers="ru"><string msgid="2550479030709304392" name="abc_searchview_description_query">"Поисковый запрос"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Отправить запрос"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Открыть доступ пользователю %s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string><string msgid="121134116657445385" name="abc_capital_off">"ОТКЛ."</string><string msgid="7723749260725869598" name="abc_search_hint">"Поиск"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Перейти на главный экран"</string><string msgid="3405795526292276155" name="abc_capital_on">"ВКЛ."</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Показать все"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Голосовой поиск"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Открыть доступ"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Выбрать приложение"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Поиск"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Удалить запрос"</string><string msgid="146198913615257606" name="search_menu_title">"Поиск"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Перейти вверх"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Свернуть"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Другие параметры"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rPT/values-pt-rPT.xml" qualifiers="pt-rPT"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de pesquisa"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partilhar com %s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mais opções"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partilhar com"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Escolher uma aplicação"</string><string msgid="121134116657445385" name="abc_capital_off">"DESATIVADO"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Concluído"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar para a página inicial"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Pesquisar"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Reduzir"</string><string msgid="7723749260725869598" name="abc_search_hint">"Pesquisar..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Limpar consulta"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver tudo"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Pesquisa por voz"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar para cima"</string><string msgid="3405795526292276155" name="abc_capital_on">"ATIVADO"</string><string msgid="146198913615257606" name="search_menu_title">"Pesquisar"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-zh-rTW/values-zh-rTW.xml" qualifiers="zh-rTW"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"提交查詢"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s - %2$s:%3$s"</string><string msgid="146198913615257606" name="search_menu_title">"搜尋"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"選擇分享對象"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s:%2$s"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"查看全部"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"選擇應用程式"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"清除查詢"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"更多選項"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"與「%s」分享"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"搜尋"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"搜尋查詢"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"語音搜尋"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"向上瀏覽"</string><string msgid="121134116657445385" name="abc_capital_off">"關閉"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"瀏覽首頁"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"完成"</string><string msgid="3405795526292276155" name="abc_capital_on">"開啟"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"收合"</string><string msgid="7723749260725869598" name="abc_search_hint">"搜尋…"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-land/values-land.xml" qualifiers="land"><dimen name="abc_action_bar_progress_bar_size">32dp</dimen><dimen name="abc_text_size_title_material_toolbar">14dp</dimen><dimen name="abc_action_bar_default_height_material">48dp</dimen><dimen name="abc_text_size_subtitle_material_toolbar">12dp</dimen></file><file name="abc_spinner_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png" qualifiers="ldrtl-mdpi-v17" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="ldrtl-mdpi-v17" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="ldrtl-mdpi-v17" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-th/values-th.xml" qualifiers="th"><string msgid="893419373245838918" name="abc_searchview_description_voice">"ค้นหาด้วยเสียง"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"เสร็จสิ้น"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"นำทางไปหน้าแรก"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"แชร์กับ"</string><string msgid="3405795526292276155" name="abc_capital_on">"เปิด"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ยุบ"</string><string msgid="121134116657445385" name="abc_capital_off">"ปิด"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"แชร์กับ %s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ส่งข้อความค้นหา"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"นำทางขึ้น"</string><string msgid="146198913615257606" name="search_menu_title">"ค้นหา"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ตัวเลือกอื่น"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ดูทั้งหมด"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ข้อความค้นหา"</string><string msgid="7723749260725869598" name="abc_search_hint">"ค้นหา…"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ค้นหา"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"เลือกแอป"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ล้างข้อความค้นหา"</string></file><file name="abc_hint_foreground_material_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_hint_foreground_material_dark.xml" qualifiers="" type="color"/><file name="abc_tint_spinner" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_spinner.xml" qualifiers="" type="color"/><file name="abc_tint_seek_thumb" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_seek_thumb.xml" qualifiers="" type="color"/><file name="abc_primary_text_disable_only_material_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_disable_only_material_dark.xml" qualifiers="" type="color"/><file name="abc_tint_switch_track" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_switch_track.xml" qualifiers="" type="color"/><file name="abc_tint_btn_checkable" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_btn_checkable.xml" qualifiers="" type="color"/><file name="abc_primary_text_material_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_material_light.xml" qualifiers="" type="color"/><file name="abc_btn_colored_text_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_btn_colored_text_material.xml" qualifiers="" type="color"/><file name="switch_thumb_material_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/switch_thumb_material_light.xml" qualifiers="" type="color"/><file name="abc_btn_colored_borderless_text_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_btn_colored_borderless_text_material.xml" qualifiers="" type="color"/><file name="abc_search_url_text" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_search_url_text.xml" qualifiers="" type="color"/><file name="abc_background_cache_hint_selector_material_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_background_cache_hint_selector_material_light.xml" qualifiers="" type="color"/><file name="abc_background_cache_hint_selector_material_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_background_cache_hint_selector_material_dark.xml" qualifiers="" type="color"/><file name="abc_secondary_text_material_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_secondary_text_material_dark.xml" qualifiers="" type="color"/><file name="abc_tint_switch_thumb" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_switch_thumb.xml" qualifiers="" type="color"/><file name="abc_primary_text_material_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_material_dark.xml" qualifiers="" type="color"/><file name="abc_secondary_text_material_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_secondary_text_material_light.xml" qualifiers="" type="color"/><file name="abc_tint_default" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_default.xml" qualifiers="" type="color"/><file name="switch_thumb_material_dark" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/switch_thumb_material_dark.xml" qualifiers="" type="color"/><file name="abc_tint_edittext" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_tint_edittext.xml" qualifiers="" type="color"/><file name="abc_primary_text_disable_only_material_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_primary_text_disable_only_material_light.xml" qualifiers="" type="color"/><file name="abc_hint_foreground_material_light" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/color/abc_hint_foreground_material_light.xml" qualifiers="" type="color"/><file name="select_dialog_item_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_item_material.xml" qualifiers="" type="layout"/><file name="abc_list_menu_item_radio" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_radio.xml" qualifiers="" type="layout"/><file name="abc_select_dialog_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_select_dialog_material.xml" qualifiers="" type="layout"/><file name="abc_list_menu_item_icon" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_icon.xml" qualifiers="" type="layout"/><file name="select_dialog_multichoice_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_multichoice_material.xml" qualifiers="" type="layout"/><file name="abc_activity_chooser_view_list_item" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_activity_chooser_view_list_item.xml" qualifiers="" type="layout"/><file name="abc_list_menu_item_checkbox" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_checkbox.xml" qualifiers="" type="layout"/><file name="abc_screen_content_include" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_content_include.xml" qualifiers="" type="layout"/><file name="abc_screen_simple" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_simple.xml" qualifiers="" type="layout"/><file name="notification_template_media_custom" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_media_custom.xml" qualifiers="" type="layout"/><file name="abc_action_bar_title_item" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_title_item.xml" qualifiers="" type="layout"/><file name="notification_template_media" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_media.xml" qualifiers="" type="layout"/><file name="abc_alert_dialog_title_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_title_material.xml" qualifiers="" type="layout"/><file name="abc_screen_simple_overlay_action_mode" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_simple_overlay_action_mode.xml" qualifiers="" type="layout"/><file name="notification_template_part_time" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_part_time.xml" qualifiers="" type="layout"/><file name="abc_action_mode_bar" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_mode_bar.xml" qualifiers="" type="layout"/><file name="abc_dialog_title_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_dialog_title_material.xml" qualifiers="" type="layout"/><file name="abc_screen_toolbar" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_screen_toolbar.xml" qualifiers="" type="layout"/><file name="abc_action_mode_close_item_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_mode_close_item_material.xml" qualifiers="" type="layout"/><file name="abc_action_menu_layout" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_menu_layout.xml" qualifiers="" type="layout"/><file name="abc_search_dropdown_item_icons_2line" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_search_dropdown_item_icons_2line.xml" qualifiers="" type="layout"/><file name="support_simple_spinner_dropdown_item" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/support_simple_spinner_dropdown_item.xml" qualifiers="" type="layout"/><file name="notification_action_tombstone" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_action_tombstone.xml" qualifiers="" type="layout"/><file name="abc_alert_dialog_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_material.xml" qualifiers="" type="layout"/><file name="abc_popup_menu_item_layout" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_popup_menu_item_layout.xml" qualifiers="" type="layout"/><file name="abc_action_bar_up_container" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_up_container.xml" qualifiers="" type="layout"/><file name="notification_template_icon_group" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_icon_group.xml" qualifiers="" type="layout"/><file name="notification_action" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_action.xml" qualifiers="" type="layout"/><file name="notification_template_custom_big" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_custom_big.xml" qualifiers="" type="layout"/><file name="notification_template_lines_media" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_lines_media.xml" qualifiers="" type="layout"/><file name="abc_expanded_menu_layout" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_expanded_menu_layout.xml" qualifiers="" type="layout"/><file name="abc_search_view" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_search_view.xml" qualifiers="" type="layout"/><file name="abc_list_menu_item_layout" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_list_menu_item_layout.xml" qualifiers="" type="layout"/><file name="abc_activity_chooser_view" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_activity_chooser_view.xml" qualifiers="" type="layout"/><file name="abc_alert_dialog_button_bar_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_alert_dialog_button_bar_material.xml" qualifiers="" type="layout"/><file name="abc_action_menu_item_layout" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_menu_item_layout.xml" qualifiers="" type="layout"/><file name="select_dialog_singlechoice_material" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/select_dialog_singlechoice_material.xml" qualifiers="" type="layout"/><file name="abc_action_bar_view_list_nav_layout" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_action_bar_view_list_nav_layout.xml" qualifiers="" type="layout"/><file name="notification_template_part_chronometer" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/notification_template_part_chronometer.xml" qualifiers="" type="layout"/><file name="abc_popup_menu_header_item_layout" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout/abc_popup_menu_header_item_layout.xml" qualifiers="" type="layout"/><file name="notification_template_big_media" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media.xml" qualifiers="v11" type="layout"/><file name="notification_media_action" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_media_action.xml" qualifiers="v11" type="layout"/><file name="notification_template_big_media_custom" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_custom.xml" qualifiers="v11" type="layout"/><file name="notification_media_cancel_action" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_media_cancel_action.xml" qualifiers="v11" type="layout"/><file name="notification_template_big_media_narrow" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_narrow.xml" qualifiers="v11" type="layout"/><file name="notification_template_big_media_narrow_custom" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/layout-v11/notification_template_big_media_narrow_custom.xml" qualifiers="v11" type="layout"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hr/values-hr.xml" qualifiers="hr"><string msgid="4076576682505996667" name="abc_action_mode_done">"Gotovo"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Odabir aplikacije"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Idi na početnu"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Pretraživanje"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Dodatne opcije"</string><string msgid="3405795526292276155" name="abc_capital_on">"UKLJUČENO"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sažmi"</string><string msgid="121134116657445385" name="abc_capital_off">"ISKLJUČENO"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovno pretraživanje"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Dijeljenje sa: %s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Pretražite…"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Upit za pretraživanje"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Dijeljenje sa"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošalji upit"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Idi gore"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Izbriši upit"</string><string msgid="146198913615257606" name="search_menu_title">"Pretraživanje"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v23/values-v23.xml" qualifiers="v23"><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="android:TextAppearance.Material.Widget.ActionBar.Menu"/><style name="Base.V23.Theme.AppCompat.Light" parent="Base.V22.Theme.AppCompat.Light">
-        
-        <item name="ratingBarStyleIndicator">?android:attr/ratingBarStyleIndicator</item>
-        <item name="ratingBarStyleSmall">?android:attr/ratingBarStyleSmall</item>
-
-        
-        <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item>
-        
-        <item name="actionMenuTextColor">?android:attr/actionMenuTextColor</item>
-        <item name="actionMenuTextAppearance">?android:attr/actionMenuTextAppearance</item>
-
-        <item name="controlBackground">@drawable/abc_control_background_material</item>
-    </style><style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.Material.RatingBar.Small"/><style name="Base.Theme.AppCompat.Light" parent="Base.V23.Theme.AppCompat.Light"/><style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.Material.RatingBar.Indicator"/><style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="android:TextAppearance.Material.Widget.Button.Inverse"/><style name="Base.V23.Theme.AppCompat" parent="Base.V22.Theme.AppCompat">
-        
-        <item name="ratingBarStyleIndicator">?android:attr/ratingBarStyleIndicator</item>
-        <item name="ratingBarStyleSmall">?android:attr/ratingBarStyleSmall</item>
-
-        
-        <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item>
-        
-        <item name="actionMenuTextColor">?android:attr/actionMenuTextColor</item>
-        <item name="actionMenuTextAppearance">?android:attr/actionMenuTextAppearance</item>
-
-        <item name="controlBackground">@drawable/abc_control_background_material</item>
-    </style><style name="Base.Theme.AppCompat" parent="Base.V23.Theme.AppCompat"/><style name="Base.Widget.AppCompat.Button.Colored" parent="android:Widget.Material.Button.Colored"/><style name="Base.Widget.AppCompat.Spinner.Underlined" parent="android:Widget.Material.Spinner.Underlined"/><style name="Base.Widget.AppCompat.Button.Borderless.Colored" parent="android:Widget.Material.Button.Borderless.Colored"/></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pl/values-pl.xml" qualifiers="pl"><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Udostępnij dla %s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Wyczyść zapytanie"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Wyszukiwanie głosowe"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Więcej opcji"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Udostępnij dla"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Gotowe"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Szukaj"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Przejdź do strony głównej"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Wybierz aplikację"</string><string msgid="3405795526292276155" name="abc_capital_on">"WŁ."</string><string msgid="146198913615257606" name="search_menu_title">"Szukaj"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobacz wszystkie"</string><string msgid="121134116657445385" name="abc_capital_off">"WYŁ."</string><string msgid="7723749260725869598" name="abc_search_hint">"Szukaj…"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Wyszukiwane hasło"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Wyślij zapytanie"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Zwiń"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Przejdź wyżej"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-h720dp-v13/values-h720dp-v13.xml" qualifiers="h720dp-v13"><dimen name="abc_alert_dialog_button_bar_height">54dip</dimen></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-sl/values-sl.xml" qualifiers="sl"><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Krmarjenje navzgor"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deljenje z:"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Iskanje"</string><string msgid="121134116657445385" name="abc_capital_off">"IZKLOPLJENO"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deljenje z"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Krmarjenje domov"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovno iskanje"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Strni"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Izbira aplikacije"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Iskalna poizvedba"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Končano"</string><string msgid="7723749260725869598" name="abc_search_hint">"Iskanje …"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošiljanje poizvedbe"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Pokaži vse"</string><string msgid="3405795526292276155" name="abc_capital_on">"VKLOPLJENO"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="146198913615257606" name="search_menu_title">"Iskanje"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Izbris poizvedbe"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Več možnosti"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v17/values-v17.xml" qualifiers="v17"><style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
-        <item name="android:layout_marginEnd">8dp</item>
-    </style><style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
-        <item name="android:layout_gravity">center_vertical|start</item>
-        <item name="android:paddingEnd">8dp</item>
-    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
-        <item name="android:layout_toStartOf">@android:id/icon2</item>
-        <item name="android:layout_toEndOf">@android:id/icon1</item>
-    </style><style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
-        <item name="android:layout_marginStart">@dimen/abc_dropdownitem_text_padding_left</item>
-    </style><style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget">
-        <item name="android:paddingStart">12dp</item>
-        <item name="android:paddingEnd">12dp</item>
-    </style><style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
-        <item name="android:textAlignment">viewStart</item>
-    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
-        <item name="android:paddingStart">@dimen/abc_dropdownitem_text_padding_left</item>
-        <item name="android:paddingEnd">4dp</item>
-    </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
-        <item name="android:layout_alignParentStart">true</item>
-        <item name="android:textAlignment">viewStart</item>
-    </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
-        <item name="android:paddingEnd">16dp</item>
-    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
-        <item name="android:layout_toStartOf">@id/edit_query</item>
-    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
-        <item name="android:layout_alignParentStart">true</item>
-    </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
-        <item name="android:layout_marginStart">16dp</item>
-    </style><style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton">
-        <item name="android:paddingStart">@dimen/abc_action_bar_overflow_padding_start_material</item>
-        <item name="android:paddingEnd">@dimen/abc_action_bar_overflow_padding_end_material</item>
-    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
-        <item name="android:layout_alignParentEnd">true</item>
-    </style></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-te-rIN/values-te-rIN.xml" qualifiers="te-rIN"><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ప్రశ్నను క్లియర్ చేయి"</string><string msgid="121134116657445385" name="abc_capital_off">"ఆఫ్ చేయి"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"వీరితో భాగస్వామ్యం చేయి"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"పైకి నావిగేట్ చేయండి"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"అనువర్తనాన్ని ఎంచుకోండి"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"కుదించండి"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"వాయిస్ శోధన"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"శోధించు"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%sతో భాగస్వామ్యం చేయి"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="146198913615257606" name="search_menu_title">"శోధించు"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"అన్నీ చూడండి"</string><string msgid="3405795526292276155" name="abc_capital_on">"ఆన్ చేయి"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"పూర్తయింది"</string><string msgid="7723749260725869598" name="abc_search_hint">"శోధించు..."</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"మరిన్ని ఎంపికలు"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"హోమ్‌కు నావిగేట్ చేయండి"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ప్రశ్నని సమర్పించు"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ప్రశ్న శోధించండి"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values/values.xml" qualifiers=""><style name="Base.ThemeOverlay.AppCompat.Dialog.Alert">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style><style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
-        <item name="android:layout_marginRight">8dp</item>
-    </style><style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Subtitle"/><color name="abc_search_url_text_pressed">@android:color/black</color><declare-styleable name="MenuView"><attr name="android:itemTextAppearance"/><attr name="android:horizontalDivider"/><attr name="android:verticalDivider"/><attr name="android:headerBackground"/><attr name="android:itemBackground"/><attr name="android:windowAnimationStyle"/><attr name="android:itemIconDisabledAlpha"/><attr format="boolean" name="preserveIconSpacing"/><attr format="reference" name="subMenuArrow"/></declare-styleable><dimen name="abc_button_padding_horizontal_material">8dp</dimen><color name="material_blue_grey_900">#ff263238</color><dimen name="abc_control_corner_material">2dp</dimen><style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/><style name="Widget.AppCompat.Light.ListPopupWindow" parent="Widget.AppCompat.ListPopupWindow"/><string name="abc_activity_chooser_view_see_all">See all</string><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
-        <item name="android:layout_marginLeft">16dp</item>
-    </style><style name="Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.DialogWhenLarge">
-    </style><string name="abc_shareactionprovider_share_with_application">Share with %s</string><style name="Base.TextAppearance.AppCompat.Medium.Inverse">
-        <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style><dimen name="abc_action_button_min_height_material">48dp</dimen><style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog"/><style name="ThemeOverlay.AppCompat.ActionBar" parent="Base.ThemeOverlay.AppCompat.ActionBar"/><style name="TextAppearance.AppCompat.Notification.Media"/><string name="search_menu_title">Search</string><style name="Base.TextAppearance.AppCompat.Large.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style><integer name="status_bar_notification_info_maxnum">999</integer><style name="TextAppearance.AppCompat.Widget.DropDownItem" parent="Base.TextAppearance.AppCompat.Widget.DropDownItem">
-    </style><color name="secondary_text_disabled_material_dark">#36ffffff</color><style name="Base.Widget.AppCompat.Light.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
-    </style><style name="Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light.Dialog"/><declare-styleable name="MenuItem"><attr name="android:id"/><attr name="android:menuCategory"/><attr name="android:orderInCategory"/><attr name="android:title"/><attr name="android:titleCondensed"/><attr name="android:icon"/><attr name="android:alphabeticShortcut"/><attr name="android:numericShortcut"/><attr name="android:checkable"/><attr name="android:checked"/><attr name="android:visible"/><attr name="android:enabled"/><attr name="android:onClick"/><attr name="showAsAction">
-            
-            <flag name="never" value="0"/>
-            
-            <flag name="ifRoom" value="1"/>
-            
-            <flag name="always" value="2"/>
-            
-            <flag name="withText" value="4"/>
-            
-            <flag name="collapseActionView" value="8"/>
-        </attr><attr format="reference" name="actionLayout"/><attr format="string" name="actionViewClass"/><attr format="string" name="actionProviderClass"/></declare-styleable><style name="Base.Widget.AppCompat.ListView" parent="android:Widget.ListView">
-        <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
-    </style><style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Light.Dialog.Alert"/><style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
-    </style><style name="TextAppearance.AppCompat.Light.SearchResult.Title" parent="TextAppearance.AppCompat.SearchResult.Title"/><style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget">
-        <item name="android:paddingLeft">12dp</item>
-        <item name="android:paddingRight">12dp</item>
-    </style><color name="material_grey_100">#fff5f5f5</color><declare-styleable name="AppCompatSeekBar"><attr name="android:thumb"/><attr format="reference" name="tickMark"/><attr format="color" name="tickMarkTint"/><attr name="tickMarkTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-            
-            <enum name="add" value="16"/>
-        </attr></declare-styleable><style name="TextAppearance.AppCompat.Small" parent="Base.TextAppearance.AppCompat.Small"/><style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget">
-        <item name="android:indeterminateOnly">false</item>
-        <item name="android:progressDrawable">@drawable/abc_seekbar_track_material</item>
-        <item name="android:indeterminateDrawable">@drawable/abc_seekbar_track_material</item>
-        <item name="android:thumb">@drawable/abc_seekbar_thumb_material</item>
-        <item name="android:focusable">true</item>
-        <item name="android:paddingLeft">16dip</item>
-        <item name="android:paddingRight">16dip</item>
-    </style><declare-styleable name="ActionBar"><attr name="navigationMode">
-            
-            <enum name="normal" value="0"/>
-            
-            <enum name="listMode" value="1"/>
-            
-            <enum name="tabMode" value="2"/>
-        </attr><attr name="displayOptions">
-            <flag name="none" value="0"/>
-            <flag name="useLogo" value="0x1"/>
-            <flag name="showHome" value="0x2"/>
-            <flag name="homeAsUp" value="0x4"/>
-            <flag name="showTitle" value="0x8"/>
-            <flag name="showCustom" value="0x10"/>
-            <flag name="disableHome" value="0x20"/>
-        </attr><attr name="title"/><attr format="string" name="subtitle"/><attr format="reference" name="titleTextStyle"/><attr format="reference" name="subtitleTextStyle"/><attr format="reference" name="icon"/><attr format="reference" name="logo"/><attr format="reference" name="divider"/><attr format="reference" name="background"/><attr format="reference|color" name="backgroundStacked"/><attr format="reference|color" name="backgroundSplit"/><attr format="reference" name="customNavigationLayout"/><attr name="height"/><attr format="reference" name="homeLayout"/><attr format="reference" name="progressBarStyle"/><attr format="reference" name="indeterminateProgressStyle"/><attr format="dimension" name="progressBarPadding"/><attr name="homeAsUpIndicator"/><attr format="dimension" name="itemPadding"/><attr format="boolean" name="hideOnContentScroll"/><attr format="dimension" name="contentInsetStart"/><attr format="dimension" name="contentInsetEnd"/><attr format="dimension" name="contentInsetLeft"/><attr format="dimension" name="contentInsetRight"/><attr format="dimension" name="contentInsetStartWithNavigation"/><attr format="dimension" name="contentInsetEndWithActions"/><attr format="dimension" name="elevation"/><attr format="reference" name="popupTheme"/></declare-styleable><color name="button_material_dark">#ff5a595b</color><style name="Base.TextAppearance.AppCompat.Caption">
-        <item name="android:textSize">@dimen/abc_text_size_caption_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style><string name="abc_font_family_display_4_material">sans-serif-light</string><dimen name="notification_main_column_padding_top">10dp</dimen><style name="Base.Widget.AppCompat.Light.ActionBar.Solid">
-        <item name="background">?attr/colorPrimary</item>
-        <item name="backgroundStacked">?attr/colorPrimary</item>
-        <item name="backgroundSplit">?attr/colorPrimary</item>
-    </style><style name="Widget.AppCompat.RatingBar" parent="Base.Widget.AppCompat.RatingBar"/><style name="Base.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
-    </style><style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
-        <item name="overlapAnchor">true</item>
-        <item name="android:dropDownHorizontalOffset">-4dip</item>
-    </style><style name="Widget.AppCompat.ListPopupWindow" parent="Base.Widget.AppCompat.ListPopupWindow">
-    </style><declare-styleable name="ActionMode"><attr name="titleTextStyle"/><attr name="subtitleTextStyle"/><attr name="background"/><attr name="backgroundSplit"/><attr name="height"/><attr format="reference" name="closeItemLayout"/></declare-styleable><dimen name="abc_button_padding_vertical_material">@dimen/abc_control_padding_material</dimen><bool name="abc_action_bar_embed_tabs">true</bool><style name="Base.V7.Theme.AppCompat.Light" parent="Platform.AppCompat.Light">
-        <item name="windowNoTitle">false</item>
-        <item name="windowActionBar">true</item>
-        <item name="windowActionBarOverlay">false</item>
-        <item name="windowActionModeOverlay">false</item>
-        <item name="actionBarPopupTheme">@null</item>
-
-        <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
-
-        
-        <item name="isLightTheme">true</item>
-
-        <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
-        <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
-        <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
-
-        <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
-        <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
-
-        
-        <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView</item>
-        <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar</item>
-        <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText</item>
-        <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
-        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
-        <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.Light.PopupMenu.Overflow</item>
-        <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid</item>
-        <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
-        <item name="actionBarWidgetTheme">@null</item>
-        <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
-        <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
-        <item name="actionBarDivider">?attr/dividerVertical</item>
-        <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
-        <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
-        <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
-
-        
-        <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
-        <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
-        <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
-        <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
-        <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
-
-        <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
-        <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
-        <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
-        <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
-        <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
-
-        
-        <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
-
-        
-        <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
-        <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
-        <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
-        <item name="android:panelBackground">@android:color/transparent</item>
-        <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item>
-
-        
-        <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
-        <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
-        <item name="listPreferredItemHeight">64dp</item>
-        <item name="listPreferredItemHeightSmall">48dp</item>
-        <item name="listPreferredItemHeightLarge">80dp</item>
-        <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
-        <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
-
-        
-        <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
-        <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
-        <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
-
-        
-        <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-        <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
-
-        
-        <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item>
-        <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item>
-        <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item>
-        <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
-        <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
-        <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
-        <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
-
-        
-        <item name="searchViewStyle">@style/Widget.AppCompat.Light.SearchView</item>
-        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-        <item name="textColorSearchUrl">@color/abc_search_url_text</item>
-        <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
-        <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
-
-        
-        <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
-
-        
-        <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
-        <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
-
-        <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
-        <item name="editTextBackground">@drawable/abc_edit_text_material</item>
-        <item name="editTextColor">?android:attr/textColorPrimary</item>
-        <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
-
-        
-        <item name="colorPrimaryDark">@color/primary_dark_material_light</item>
-        <item name="colorPrimary">@color/primary_material_light</item>
-        <item name="colorAccent">@color/accent_material_light</item>
-
-        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
-        <item name="colorControlActivated">?attr/colorAccent</item>
-        <item name="colorControlHighlight">@color/ripple_material_light</item>
-        <item name="colorButtonNormal">@color/button_material_light</item>
-        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
-        <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
-
-        <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
-
-        <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
-        <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
-        <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
-
-        <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
-        <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
-        <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
-        <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
-
-        
-        <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
-        <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
-        <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
-
-        <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
-
-        <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
-        <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
-        <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
-        <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
-        <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
-
-        
-        <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
-        <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
-
-        <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
-        <item name="alertDialogStyle">@style/AlertDialog.AppCompat.Light</item>
-        <item name="alertDialogCenterButtons">false</item>
-        <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
-        <item name="listDividerAlertDialog">@null</item>
-
-        
-        <item name="windowFixedWidthMajor">@null</item>
-        <item name="windowFixedWidthMinor">@null</item>
-        <item name="windowFixedHeightMajor">@null</item>
-        <item name="windowFixedHeightMinor">@null</item>
-    </style><declare-styleable name="ActionMenuItemView"><attr name="android:minWidth"/></declare-styleable><color name="foreground_material_dark">@android:color/white</color><dimen name="abc_action_bar_overflow_padding_end_material">10dp</dimen><style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog"/><string name="abc_action_mode_done">Done</string><style name="Base.Widget.AppCompat.Spinner.Underlined">
-        <item name="android:background">@drawable/abc_spinner_textfield_background_material</item>
-    </style><style name="Base.V7.ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat">
-        <item name="android:colorBackgroundCacheHint">@null</item>
-        <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
-
-        <item name="android:windowFrame">@null</item>
-        <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
-        <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
-        <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
-        <item name="android:windowIsFloating">true</item>
-        <item name="android:backgroundDimEnabled">true</item>
-        <item name="android:windowContentOverlay">@null</item>
-        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
-        <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
-
-        <item name="windowActionBar">false</item>
-        <item name="windowActionModeOverlay">true</item>
-
-        <item name="listPreferredItemPaddingLeft">24dip</item>
-        <item name="listPreferredItemPaddingRight">24dip</item>
-
-        <item name="android:listDivider">@null</item>
-
-        <item name="windowFixedWidthMajor">@null</item>
-        <item name="windowFixedWidthMinor">@null</item>
-        <item name="windowFixedHeightMajor">@null</item>
-        <item name="windowFixedHeightMinor">@null</item>
-    </style><color name="material_grey_300">#ffe0e0e0</color><style name="TextAppearance.AppCompat.Notification.Info.Media"/><style name="Widget.AppCompat.Button.Small" parent="Base.Widget.AppCompat.Button.Small"/><style name="Base.Widget.AppCompat.SearchView" parent="android:Widget">
-        <item name="layout">@layout/abc_search_view</item>
-        <item name="queryBackground">@drawable/abc_textfield_search_material</item>
-        <item name="submitBackground">@drawable/abc_textfield_search_material</item>
-        <item name="closeIcon">@drawable/abc_ic_clear_material</item>
-        <item name="searchIcon">@drawable/abc_ic_search_api_material</item>
-        <item name="searchHintIcon">@drawable/abc_ic_search_api_material</item>
-        <item name="goIcon">@drawable/abc_ic_go_search_api_material</item>
-        <item name="voiceIcon">@drawable/abc_ic_voice_search_api_material</item>
-        <item name="commitIcon">@drawable/abc_ic_commit_search_api_mtrl_alpha</item>
-        <item name="suggestionRowLayout">@layout/abc_search_dropdown_item_icons_2line</item>
-    </style><declare-styleable name="DrawerArrowToggle"><attr format="color" name="color"/><attr format="boolean" name="spinBars"/><attr format="dimension" name="drawableSize"/><attr format="dimension" name="gapBetweenBars"/><attr format="dimension" name="arrowHeadLength"/><attr format="dimension" name="arrowShaftLength"/><attr format="dimension" name="barLength"/><attr format="dimension" name="thickness"/></declare-styleable><style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="TextAppearance.AppCompat.Menu"/><style name="ThemeOverlay.AppCompat.Light" parent="Base.ThemeOverlay.AppCompat.Light"/><style name="Theme.AppCompat.Light.Dialog.MinWidth" parent="Base.Theme.AppCompat.Light.Dialog.MinWidth"/><declare-styleable name="Toolbar"><attr format="reference" name="titleTextAppearance"/><attr format="reference" name="subtitleTextAppearance"/><attr name="title"/><attr name="subtitle"/><attr name="android:gravity"/><attr format="dimension" name="titleMargin"/><attr format="dimension" name="titleMarginStart"/><attr format="dimension" name="titleMarginEnd"/><attr format="dimension" name="titleMarginTop"/><attr format="dimension" name="titleMarginBottom"/><attr format="dimension" name="titleMargins"/><attr name="contentInsetStart"/><attr name="contentInsetEnd"/><attr name="contentInsetLeft"/><attr name="contentInsetRight"/><attr name="contentInsetStartWithNavigation"/><attr name="contentInsetEndWithActions"/><attr format="dimension" name="maxButtonHeight"/><attr name="buttonGravity">
-            
-            <flag name="top" value="0x30"/>
-            
-            <flag name="bottom" value="0x50"/>
-        </attr><attr format="reference" name="collapseIcon"/><attr format="string" name="collapseContentDescription"/><attr name="popupTheme"/><attr format="reference" name="navigationIcon"/><attr format="string" name="navigationContentDescription"/><attr name="logo"/><attr format="string" name="logoDescription"/><attr format="color" name="titleTextColor"/><attr format="color" name="subtitleTextColor"/><attr name="android:minHeight"/></declare-styleable><style name="Widget.AppCompat.ListView.DropDown" parent="Base.Widget.AppCompat.ListView.DropDown"/><color name="switch_thumb_disabled_material_dark">#ff616161</color><color name="primary_text_disabled_material_light">#39000000</color><style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Light.Dialog.MinWidth"/><style name="Base.Widget.AppCompat.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
-    </style><style name="Base.AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat"/><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="TextAppearance.AppCompat.Subhead">
-        <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style><style name="Base.Theme.AppCompat.Dialog.MinWidth">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style><style name="TextAppearance.AppCompat.Subhead.Inverse" parent="Base.TextAppearance.AppCompat.Subhead.Inverse"/><style name="Widget.AppCompat.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
-    </style><style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="TextAppearance.AppCompat.Button"/><style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
-    </style><style name="TextAppearance.AppCompat.Title.Inverse" parent="Base.TextAppearance.AppCompat.Title.Inverse"/><color name="highlighted_text_material_light">#66009688</color><style name="Base.ThemeOverlay.AppCompat" parent="Platform.ThemeOverlay.AppCompat"/><color name="primary_text_default_material_light">#de000000</color><declare-styleable name="SearchView"><attr format="reference" name="layout"/><attr format="boolean" name="iconifiedByDefault"/><attr name="android:maxWidth"/><attr format="string" name="queryHint"/><attr format="string" name="defaultQueryHint"/><attr name="android:imeOptions"/><attr name="android:inputType"/><attr format="reference" name="closeIcon"/><attr format="reference" name="goIcon"/><attr format="reference" name="searchIcon"/><attr format="reference" name="searchHintIcon"/><attr format="reference" name="voiceIcon"/><attr format="reference" name="commitIcon"/><attr format="reference" name="suggestionRowLayout"/><attr format="reference" name="queryBackground"/><attr format="reference" name="submitBackground"/><attr name="android:focusable"/></declare-styleable><item name="action_bar_spinner" type="id"/><dimen name="abc_text_size_caption_material">12sp</dimen><style name="Widget.AppCompat.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
-    </style><color name="accent_material_dark">@color/material_deep_teal_200</color><dimen name="abc_action_button_min_width_material">48dp</dimen><style name="TextAppearance.AppCompat.Notification.Line2" parent="TextAppearance.AppCompat.Notification.Info"/><declare-styleable name="ColorStateListItem"><attr name="android:color"/><attr format="float" name="alpha"/><attr name="android:alpha"/></declare-styleable><style name="TextAppearance.AppCompat.Large" parent="Base.TextAppearance.AppCompat.Large"/><dimen name="notification_right_side_padding_top">2dp</dimen><declare-styleable name="AppCompatImageView"><attr name="android:src"/><attr format="reference" name="srcCompat"/></declare-styleable><dimen name="notification_small_icon_background_padding">3dp</dimen><style name="TextAppearance.AppCompat.Small.Inverse" parent="Base.TextAppearance.AppCompat.Small.Inverse"/><style name="Base.Widget.AppCompat.ActionBar.Solid">
-        <item name="background">?attr/colorPrimary</item>
-        <item name="backgroundStacked">?attr/colorPrimary</item>
-        <item name="backgroundSplit">?attr/colorPrimary</item>
-    </style><dimen name="abc_dialog_list_padding_bottom_no_buttons">8dp</dimen><style name="TextAppearance.AppCompat.Menu" parent="Base.TextAppearance.AppCompat.Menu"/><color name="material_deep_teal_200">#ff80cbc4</color><style name="Base.DialogWindowTitle.AppCompat" parent="android:Widget">
-        <item name="android:maxLines">1</item>
-        <item name="android:scrollHorizontally">true</item>
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Title</item>
-    </style><style name="Widget.AppCompat.CompoundButton.CheckBox" parent="Base.Widget.AppCompat.CompoundButton.CheckBox"/><style name="Base.Widget.AppCompat.ActivityChooserView" parent="">
-        <item name="android:gravity">center</item>
-        <item name="android:background">@drawable/abc_ab_share_pack_mtrl_alpha</item>
-        <item name="divider">?attr/dividerVertical</item>
-        <item name="showDividers">middle</item>
-        <item name="dividerPadding">6dip</item>
-    </style><dimen name="abc_search_view_preferred_width">320dip</dimen><item name="action_menu_divider" type="id"/><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="TextAppearance.AppCompat.Button">
-        <item name="android:textColor">?attr/actionMenuTextColor</item>
-        <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
-    </style><declare-styleable name="SwitchCompat"><attr name="android:thumb"/><attr format="color" name="thumbTint"/><attr name="thumbTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-            
-            <enum name="add" value="16"/>
-        </attr><attr format="reference" name="track"/><attr format="color" name="trackTint"/><attr name="trackTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-            
-            <enum name="add" value="16"/>
-        </attr><attr name="android:textOn"/><attr name="android:textOff"/><attr format="dimension" name="thumbTextPadding"/><attr format="reference" name="switchTextAppearance"/><attr format="dimension" name="switchMinWidth"/><attr format="dimension" name="switchPadding"/><attr format="boolean" name="splitTrack"/><attr format="boolean" name="showText"/></declare-styleable><style name="Animation.AppCompat.DropDownUp" parent="Base.Animation.AppCompat.DropDownUp"/><style name="Widget.AppCompat.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
-    </style><style name="Base.Widget.AppCompat.ActionMode" parent="">
-        <item name="background">?attr/actionModeBackground</item>
-        <item name="backgroundSplit">?attr/actionModeSplitBackground</item>
-        <item name="height">?attr/actionBarSize</item>
-        <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Title</item>
-        <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle</item>
-        <item name="closeItemLayout">@layout/abc_action_mode_close_item_material</item>
-    </style><style name="Platform.Widget.AppCompat.Spinner" parent="android:Widget.Spinner"/><style name="TextAppearance.AppCompat.Subhead" parent="Base.TextAppearance.AppCompat.Subhead"/><style name="Widget.AppCompat.Light.Spinner.DropDown.ActionBar" parent="Widget.AppCompat.Spinner.DropDown.ActionBar"/><color name="notification_material_background_media_default_color">#ff424242</color><color name="background_material_light">@color/material_grey_50</color><style name="ThemeOverlay.AppCompat.Dark.ActionBar" parent="Base.ThemeOverlay.AppCompat.Dark.ActionBar"/><declare-styleable name="AppCompatTheme"><attr format="boolean" name="windowActionBar"/><attr format="boolean" name="windowNoTitle"/><attr format="boolean" name="windowActionBarOverlay"/><attr format="boolean" name="windowActionModeOverlay"/><attr format="dimension|fraction" name="windowFixedWidthMajor"/><attr format="dimension|fraction" name="windowFixedHeightMinor"/><attr format="dimension|fraction" name="windowFixedWidthMinor"/><attr format="dimension|fraction" name="windowFixedHeightMajor"/><attr format="dimension|fraction" name="windowMinWidthMajor"/><attr format="dimension|fraction" name="windowMinWidthMinor"/><attr name="android:windowIsFloating"/><attr name="android:windowAnimationStyle"/><attr format="reference" name="actionBarTabStyle"/><attr format="reference" name="actionBarTabBarStyle"/><attr format="reference" name="actionBarTabTextStyle"/><attr format="reference" name="actionOverflowButtonStyle"/><attr format="reference" name="actionOverflowMenuStyle"/><attr format="reference" name="actionBarPopupTheme"/><attr format="reference" name="actionBarStyle"/><attr format="reference" name="actionBarSplitStyle"/><attr format="reference" name="actionBarTheme"/><attr format="reference" name="actionBarWidgetTheme"/><attr format="dimension" name="actionBarSize">
-            <enum name="wrap_content" value="0"/>
-        </attr><attr format="reference" name="actionBarDivider"/><attr format="reference" name="actionBarItemBackground"/><attr format="reference" name="actionMenuTextAppearance"/><attr format="color|reference" name="actionMenuTextColor"/><attr format="reference" name="actionModeStyle"/><attr format="reference" name="actionModeCloseButtonStyle"/><attr format="reference" name="actionModeBackground"/><attr format="reference" name="actionModeSplitBackground"/><attr format="reference" name="actionModeCloseDrawable"/><attr format="reference" name="actionModeCutDrawable"/><attr format="reference" name="actionModeCopyDrawable"/><attr format="reference" name="actionModePasteDrawable"/><attr format="reference" name="actionModeSelectAllDrawable"/><attr format="reference" name="actionModeShareDrawable"/><attr format="reference" name="actionModeFindDrawable"/><attr format="reference" name="actionModeWebSearchDrawable"/><attr format="reference" name="actionModePopupWindowStyle"/><attr format="reference" name="textAppearanceLargePopupMenu"/><attr format="reference" name="textAppearanceSmallPopupMenu"/><attr format="reference" name="textAppearancePopupMenuHeader"/><attr format="reference" name="dialogTheme"/><attr format="dimension" name="dialogPreferredPadding"/><attr format="reference" name="listDividerAlertDialog"/><attr format="reference" name="actionDropDownStyle"/><attr format="dimension" name="dropdownListPreferredItemHeight"/><attr format="reference" name="spinnerDropDownItemStyle"/><attr format="reference" name="homeAsUpIndicator"/><attr format="reference" name="actionButtonStyle"/><attr format="reference" name="buttonBarStyle"/><attr format="reference" name="buttonBarButtonStyle"/><attr format="reference" name="selectableItemBackground"/><attr format="reference" name="selectableItemBackgroundBorderless"/><attr format="reference" name="borderlessButtonStyle"/><attr format="reference" name="dividerVertical"/><attr format="reference" name="dividerHorizontal"/><attr format="reference" name="activityChooserViewStyle"/><attr format="reference" name="toolbarStyle"/><attr format="reference" name="toolbarNavigationButtonStyle"/><attr format="reference" name="popupMenuStyle"/><attr format="reference" name="popupWindowStyle"/><attr format="reference|color" name="editTextColor"/><attr format="reference" name="editTextBackground"/><attr format="reference" name="imageButtonStyle"/><attr format="reference" name="textAppearanceSearchResultTitle"/><attr format="reference" name="textAppearanceSearchResultSubtitle"/><attr format="reference|color" name="textColorSearchUrl"/><attr format="reference" name="searchViewStyle"/><attr format="dimension" name="listPreferredItemHeight"/><attr format="dimension" name="listPreferredItemHeightSmall"/><attr format="dimension" name="listPreferredItemHeightLarge"/><attr format="dimension" name="listPreferredItemPaddingLeft"/><attr format="dimension" name="listPreferredItemPaddingRight"/><attr format="reference" name="dropDownListViewStyle"/><attr format="reference" name="listPopupWindowStyle"/><attr format="reference" name="textAppearanceListItem"/><attr format="reference" name="textAppearanceListItemSmall"/><attr format="reference" name="panelBackground"/><attr format="dimension" name="panelMenuListWidth"/><attr format="reference" name="panelMenuListTheme"/><attr format="reference" name="listChoiceBackgroundIndicator"/><attr format="color" name="colorPrimary"/><attr format="color" name="colorPrimaryDark"/><attr format="color" name="colorAccent"/><attr format="color" name="colorControlNormal"/><attr format="color" name="colorControlActivated"/><attr format="color" name="colorControlHighlight"/><attr format="color" name="colorButtonNormal"/><attr format="color" name="colorSwitchThumbNormal"/><attr format="reference" name="controlBackground"/><attr format="color" name="colorBackgroundFloating"/><attr format="reference" name="alertDialogStyle"/><attr format="reference" name="alertDialogButtonGroupStyle"/><attr format="boolean" name="alertDialogCenterButtons"/><attr format="reference" name="alertDialogTheme"/><attr format="reference|color" name="textColorAlertDialogListItem"/><attr format="reference" name="buttonBarPositiveButtonStyle"/><attr format="reference" name="buttonBarNegativeButtonStyle"/><attr format="reference" name="buttonBarNeutralButtonStyle"/><attr format="reference" name="autoCompleteTextViewStyle"/><attr format="reference" name="buttonStyle"/><attr format="reference" name="buttonStyleSmall"/><attr format="reference" name="checkboxStyle"/><attr format="reference" name="checkedTextViewStyle"/><attr format="reference" name="editTextStyle"/><attr format="reference" name="radioButtonStyle"/><attr format="reference" name="ratingBarStyle"/><attr format="reference" name="ratingBarStyleIndicator"/><attr format="reference" name="ratingBarStyleSmall"/><attr format="reference" name="seekBarStyle"/><attr format="reference" name="spinnerStyle"/><attr format="reference" name="switchStyle"/><attr format="reference" name="listMenuViewStyle"/></declare-styleable><dimen name="abc_select_dialog_padding_start_material">20dp</dimen><item format="float" name="hint_alpha_material_light" type="dimen">0.38</item><style name="Widget.AppCompat.Toolbar" parent="Base.Widget.AppCompat.Toolbar"/><color name="primary_dark_material_dark">@android:color/black</color><dimen name="abc_text_size_display_3_material">56sp</dimen><item name="abc_dialog_fixed_height_minor" type="dimen">100%</item><style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance">
-        <item name="android:textColor">?android:textColorPrimary</item>
-        <item name="android:textColorHint">?android:textColorHint</item>
-        <item name="android:textColorHighlight">?android:textColorHighlight</item>
-        <item name="android:textColorLink">?android:textColorLink</item>
-        <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
-    </style><dimen name="abc_text_size_menu_material">16sp</dimen><style name="Base.Widget.AppCompat.ActionButton" parent="RtlUnderlay.Widget.AppCompat.ActionButton">
-        <item name="android:background">?attr/actionBarItemBackground</item>
-        <item name="android:minWidth">@dimen/abc_action_button_min_width_material</item>
-        <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
-        <item name="android:scaleType">center</item>
-        <item name="android:gravity">center</item>
-        <item name="android:maxLines">2</item>
-        <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
-    </style><style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget">
-        <item name="android:background">?attr/controlBackground</item>
-        <item name="android:minWidth">56dp</item>
-        <item name="android:scaleType">center</item>
-    </style><style name="Widget.AppCompat.CompoundButton.RadioButton" parent="Base.Widget.AppCompat.CompoundButton.RadioButton"/><style name="Widget.AppCompat.ActionButton" parent="Base.Widget.AppCompat.ActionButton"/><style name="Base.TextAppearance.AppCompat.Medium">
-        <item name="android:textSize">@dimen/abc_text_size_medium_material</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style><dimen name="abc_action_bar_subtitle_top_margin_material">-3dp</dimen><style name="Base.V7.Widget.AppCompat.EditText" parent="android:Widget.EditText">
-        <item name="android:background">?attr/editTextBackground</item>
-        <item name="android:textColor">?attr/editTextColor</item>
-        <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
-    </style><style name="Base.Widget.AppCompat.Button" parent="android:Widget">
-        <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
-        <item name="android:textAppearance">?android:attr/textAppearanceButton</item>
-        <item name="android:minHeight">48dip</item>
-        <item name="android:minWidth">88dip</item>
-        <item name="android:focusable">true</item>
-        <item name="android:clickable">true</item>
-        <item name="android:gravity">center_vertical|center_horizontal</item>
-    </style><color name="material_grey_50">#fffafafa</color><item format="float" name="disabled_alpha_material_dark" type="dimen">0.30</item><style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle">
-    </style><item format="float" name="hint_alpha_material_dark" type="dimen">0.50</item><style name="Widget.AppCompat.Light.ActionMode.Inverse" parent="Widget.AppCompat.ActionMode"/><style name="Widget.AppCompat.EditText" parent="Base.Widget.AppCompat.EditText"/><color name="background_material_dark">@color/material_grey_850</color><style name="Animation.AppCompat.Dialog" parent="Base.Animation.AppCompat.Dialog"/><style name="TextAppearance.AppCompat.Caption" parent="Base.TextAppearance.AppCompat.Caption"/><style name="Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse">
-    </style><style name="Base.ThemeOverlay.AppCompat.Dark" parent="Platform.ThemeOverlay.AppCompat.Dark">
-        <item name="android:windowBackground">@color/background_material_dark</item>
-        <item name="android:colorForeground">@color/foreground_material_dark</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
-        <item name="android:colorBackground">@color/background_material_dark</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
-        <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
-
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
-
-        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
-        <item name="colorControlHighlight">@color/ripple_material_dark</item>
-        <item name="colorButtonNormal">@color/button_material_dark</item>
-        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
-
-        
-        <item name="isLightTheme">false</item>
-    </style><style name="TextAppearance.AppCompat.Button" parent="Base.TextAppearance.AppCompat.Button"/><style name="Widget.AppCompat.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
-    </style><color name="bright_foreground_inverse_material_dark">@color/bright_foreground_material_light</color><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="TextAppearance.AppCompat.Title">
-        <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
-    </style><color name="secondary_text_disabled_material_light">#24000000</color><style name="Base.TextAppearance.AppCompat.SearchResult" parent="">
-        <item name="android:textStyle">normal</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-        <item name="android:textColorHint">?android:textColorHint</item>
-    </style><style name="Base.V7.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.AutoCompleteTextView">
-        <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
-        <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
-        <item name="android:background">?attr/editTextBackground</item>
-        <item name="android:textColor">?attr/editTextColor</item>
-        <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
-    </style><color name="dim_foreground_disabled_material_dark">#80bebebe</color><color name="background_floating_material_light">@android:color/white</color><declare-styleable name="AlertDialog"><attr name="android:layout"/><attr format="reference" name="buttonPanelSideLayout"/><attr format="reference" name="listLayout"/><attr format="reference" name="multiChoiceItemLayout"/><attr format="reference" name="singleChoiceItemLayout"/><attr format="reference" name="listItemLayout"/><attr format="boolean" name="showTitle"/></declare-styleable><style name="Widget.AppCompat.Button.Borderless.Colored" parent="Base.Widget.AppCompat.Button.Borderless.Colored"/><dimen name="notification_big_circle_margin">12dp</dimen><style name="TextAppearance.AppCompat.Notification.Title">
-        <item name="android:textSize">16sp</item>
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
-    </style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="TextAppearance.AppCompat.Title.Inverse">
-        <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
-        <item name="android:layout_alignParentRight">true</item>
-    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
-        <item name="android:layout_toLeftOf">@android:id/icon2</item>
-        <item name="android:layout_toRightOf">@android:id/icon1</item>
-    </style><style name="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="android:TextAppearance.Medium">
-        <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
-    </style><string name="abc_font_family_display_2_material">sans-serif</string><style name="Base.DialogWindowTitleBackground.AppCompat" parent="android:Widget">
-        <item name="android:background">@null</item>
-        <item name="android:paddingLeft">?attr/dialogPreferredPadding</item>
-        <item name="android:paddingRight">?attr/dialogPreferredPadding</item>
-        <item name="android:paddingTop">@dimen/abc_dialog_padding_top_material</item>
-    </style><dimen name="abc_list_item_padding_horizontal_material">@dimen/abc_action_bar_content_inset_material</dimen><color name="primary_material_dark">@color/material_grey_900</color><style name="Platform.AppCompat.Light" parent="android:Theme.Light">
-        <item name="android:windowNoTitle">true</item>
-
-        
-        <item name="android:colorForeground">@color/foreground_material_light</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
-        <item name="android:colorBackground">@color/background_material_light</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
-        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item>
-        <item name="android:backgroundDimAmount">0.6</item>
-        <item name="android:windowBackground">@color/background_material_light</item>
-
-        
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
-        <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
-        <item name="android:textColorLink">?attr/colorAccent</item>
-
-        
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
-        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
-        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
-        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
-        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
-        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
-
-        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
-        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
-
-        <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_light</item>
-        <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_light</item>
-        <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_light</item>
-    </style><color name="abc_search_url_text_selected">@android:color/black</color><style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
-        <item name="android:layout_marginLeft">@dimen/abc_dropdownitem_text_padding_left</item>
-    </style><color name="primary_material_light">@color/material_grey_100</color><style name="ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat.Dialog"/><style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Light.Dialog"/><style name="Base.V7.Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat">
-        <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
-        <item name="android:colorBackgroundCacheHint">@null</item>
-
-        <item name="android:windowFrame">@null</item>
-        <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
-        <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
-        <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
-        <item name="android:windowIsFloating">true</item>
-        <item name="android:backgroundDimEnabled">true</item>
-        <item name="android:windowContentOverlay">@null</item>
-        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
-        <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
-
-        <item name="windowActionBar">false</item>
-        <item name="windowActionModeOverlay">true</item>
-
-        <item name="listPreferredItemPaddingLeft">24dip</item>
-        <item name="listPreferredItemPaddingRight">24dip</item>
-
-        <item name="android:listDivider">@null</item>
-    </style><style name="Base.TextAppearance.AppCompat.Widget.DropDownItem" parent="android:TextAppearance.Small">
-        <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
-    </style><dimen name="abc_text_size_subhead_material">16sp</dimen><dimen name="abc_text_size_headline_material">24sp</dimen><style name="Widget.AppCompat.AutoCompleteTextView" parent="Base.Widget.AppCompat.AutoCompleteTextView">
-    </style><string name="abc_searchview_description_query">Search query</string><style name="Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.Light.ActionBar.TabBar">
-    </style><style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton">
-        <item name="android:paddingLeft">@dimen/abc_action_bar_overflow_padding_start_material</item>
-        <item name="android:paddingRight">@dimen/abc_action_bar_overflow_padding_end_material</item>
-    </style><string name="abc_font_family_menu_material">sans-serif</string><style name="Base.Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
-    </style><string name="abc_action_bar_up_description">Navigate up</string><dimen name="abc_switch_padding">3dp</dimen><item format="float" name="highlight_alpha_material_colored" type="dimen">0.26</item><item name="action_menu_presenter" type="id"/><style name="Base.ThemeOverlay.AppCompat.ActionBar">
-        <item name="colorControlNormal">?android:attr/textColorPrimary</item>
-        <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
-    </style><style name="Base.Widget.AppCompat.ListPopupWindow" parent="">
-        <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
-        <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
-        <item name="android:dropDownVerticalOffset">0dip</item>
-        <item name="android:dropDownHorizontalOffset">0dip</item>
-        <item name="android:dropDownWidth">wrap_content</item>
-    </style><color name="switch_thumb_disabled_material_light">#ffbdbdbd</color><string name="abc_action_menu_overflow_description">More options</string><declare-styleable name="LinearLayoutCompat_Layout"><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_weight"/><attr name="android:layout_gravity"/></declare-styleable><string name="abc_capital_off">OFF</string><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Menu"/><declare-styleable name="ViewStubCompat"><attr name="android:layout"/><attr name="android:inflatedId"/><attr name="android:id"/></declare-styleable><style name="Base.Widget.AppCompat.SeekBar.Discrete">
-        <item name="tickMark">@drawable/abc_seekbar_tick_mark_material</item>
-    </style><style name="Base.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog"/><dimen name="abc_config_prefDialogWidth">320dp</dimen><dimen name="abc_text_size_title_material">20sp</dimen><integer name="abc_config_activityShortDur">150</integer><style name="Base.Widget.AppCompat.ListView.Menu" parent="android:Widget.ListView.Menu">
-        <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
-        <item name="android:divider">?attr/dividerHorizontal</item>
-    </style><dimen name="abc_dialog_padding_material">24dp</dimen><style name="Base.Widget.AppCompat.ListView.DropDown">
-        <item name="android:divider">@null</item>
-    </style><color name="primary_text_disabled_material_dark">#4Dffffff</color><style name="Widget.AppCompat.ActionButton.CloseMode" parent="Base.Widget.AppCompat.ActionButton.CloseMode"/><style name="Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog"/><color name="bright_foreground_inverse_material_light">@color/bright_foreground_material_dark</color><dimen name="abc_dropdownitem_icon_width">32dip</dimen><item format="float" name="abc_disabled_alpha_material_dark" type="dimen">0.30</item><style name="TextAppearance.AppCompat.Headline" parent="Base.TextAppearance.AppCompat.Headline"/><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
-        <item name="android:layout_alignParentLeft">true</item>
-    </style><style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.ProgressBar.Horizontal">
-    </style><style name="Widget.AppCompat.PopupMenu.Overflow" parent="Base.Widget.AppCompat.PopupMenu.Overflow">
-    </style><style name="Base.Widget.AppCompat.SearchView.ActionBar">
-        <item name="queryBackground">@null</item>
-        <item name="submitBackground">@null</item>
-        <item name="searchHintIcon">@null</item>
-        <item name="defaultQueryHint">@string/abc_search_hint</item>
-    </style><style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle">
-    </style><dimen name="abc_action_bar_icon_vertical_padding_material">16dp</dimen><color name="dim_foreground_material_light">#ff323232</color><dimen name="notification_right_icon_size">16dp</dimen><style name="AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat.Light"/><style name="Widget.AppCompat.Light.AutoCompleteTextView" parent="Widget.AppCompat.AutoCompleteTextView"/><style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Theme.AppCompat.Light"/><color name="material_grey_850">#ff303030</color><style name="Base.Theme.AppCompat.Light.Dialog.FixedSize">
-        <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
-        <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
-        <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
-        <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
-    </style><style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat.Light"/><style name="Base.Animation.AppCompat.Dialog" parent="android:Animation">
-        <item name="android:windowEnterAnimation">@anim/abc_popup_enter</item>
-        <item name="android:windowExitAnimation">@anim/abc_popup_exit</item>
-    </style><dimen name="abc_action_bar_default_padding_end_material">0dp</dimen><style name="Widget.AppCompat.ProgressBar" parent="Base.Widget.AppCompat.ProgressBar">
-    </style><color name="material_grey_600">#ff757575</color><style name="Theme.AppCompat.NoActionBar">
-        <item name="windowActionBar">false</item>
-        <item name="windowNoTitle">true</item>
-    </style><dimen name="abc_control_inset_material">4dp</dimen><style name="Platform.ThemeOverlay.AppCompat.Light">
-        <item name="actionBarItemBackground">@drawable/abc_item_background_holo_light</item>
-        <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
-        <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
-
-        
-        <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.Light.AutoCompleteTextView</item>
-        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-    </style><style name="Platform.ThemeOverlay.AppCompat" parent=""/><dimen name="abc_action_bar_content_inset_material">16dp</dimen><style name="Widget.AppCompat.Spinner.DropDown.ActionBar"/><string name="abc_action_bar_home_description_format">%1$s, %2$s</string><style name="Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
-    </style><dimen name="abc_text_size_display_2_material">45sp</dimen><style name="Base.Widget.AppCompat.ActionBar.TabView" parent="">
-        <item name="android:background">@drawable/abc_tab_indicator_material</item>
-        <item name="android:gravity">center_horizontal</item>
-        <item name="android:paddingLeft">16dip</item>
-        <item name="android:paddingRight">16dip</item>
-        <item name="android:layout_width">0dip</item>
-        <item name="android:layout_weight">1</item>
-        <item name="android:minWidth">80dip</item>
-    </style><attr format="boolean" name="isLightTheme"/><style name="Widget.AppCompat.Button" parent="Base.Widget.AppCompat.Button"/><style name="Base.TextAppearance.AppCompat.SearchResult.Title">
-        <item name="android:textSize">18sp</item>
-    </style><style name="Widget.AppCompat.ImageButton" parent="Base.Widget.AppCompat.ImageButton"/><style name="Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light.DarkActionBar"/><style name="TextAppearance.AppCompat.Notification.Title.Media"/><style name="Widget.AppCompat.ProgressBar.Horizontal" parent="Base.Widget.AppCompat.ProgressBar.Horizontal">
-    </style><style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.CompoundButton.CheckBox">
-        <item name="android:button">?android:attr/listChoiceIndicatorMultiple</item>
-        <item name="android:background">?attr/controlBackground</item>
-    </style><dimen name="notification_action_icon_size">32dp</dimen><style name="Base.Widget.AppCompat.ListMenuView" parent="android:Widget">
-        <item name="subMenuArrow">@drawable/abc_ic_arrow_drop_right_black_24dp</item>
-    </style><style name="Theme.AppCompat" parent="Base.Theme.AppCompat"/><color name="abc_input_method_navigation_guard">@android:color/black</color><style name="TextAppearance.AppCompat.Medium.Inverse" parent="Base.TextAppearance.AppCompat.Medium.Inverse"/><style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Theme.AppCompat"/><style name="Widget.AppCompat.TextView.SpinnerItem" parent="Base.Widget.AppCompat.TextView.SpinnerItem"/><style name="TextAppearance.AppCompat.Widget.Switch" parent="Base.TextAppearance.AppCompat.Widget.Switch"/><string name="abc_searchview_description_voice">Voice search</string><style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button">
-        <item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item>
-    </style><bool name="abc_config_showMenuShortcutsWhenKeyboardPresent">false</bool><style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-    </style><style name="Widget.AppCompat.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.ButtonBar.AlertDialog"/><style name="Base.Widget.AppCompat.PopupWindow" parent="android:Widget.PopupWindow">
-    </style><style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title"/><style name="Widget.AppCompat.SeekBar.Discrete" parent="Base.Widget.AppCompat.SeekBar.Discrete"/><dimen name="abc_dialog_padding_top_material">18dp</dimen><style name="Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat.Dialog"/><style name="Base.TextAppearance.AppCompat.Widget.Button" parent="TextAppearance.AppCompat.Button"/><style name="ThemeOverlay.AppCompat.Dark" parent="Base.ThemeOverlay.AppCompat.Dark"/><style name="Base.Widget.AppCompat.DrawerArrowToggle.Common" parent="">
-        <item name="color">?android:attr/textColorSecondary</item>
-        <item name="spinBars">true</item>
-        <item name="thickness">2dp</item>
-        <item name="arrowShaftLength">16dp</item>
-        <item name="arrowHeadLength">8dp</item>
-    </style><style name="Base.Widget.AppCompat.ActionButton.CloseMode">
-        <item name="android:background">?attr/controlBackground</item>
-        <item name="android:minWidth">56dp</item>
-    </style><style name="Base.Widget.AppCompat.CompoundButton.Switch" parent="android:Widget.CompoundButton">
-        <item name="track">@drawable/abc_switch_track_mtrl_alpha</item>
-        <item name="android:thumb">@drawable/abc_switch_thumb_material</item>
-        <item name="switchTextAppearance">@style/TextAppearance.AppCompat.Widget.Switch</item>
-        <item name="android:background">?attr/controlBackground</item>
-        <item name="showText">false</item>
-        <item name="switchPadding">@dimen/abc_switch_padding</item>
-        <item name="android:textOn">@string/abc_capital_on</item>
-        <item name="android:textOff">@string/abc_capital_off</item>
-    </style><style name="TextAppearance.StatusBar.EventContent.Title" parent=""/><color name="switch_thumb_normal_material_dark">#ffbdbdbd</color><color name="material_grey_800">#ff424242</color><style name="Widget.AppCompat.SearchView" parent="Base.Widget.AppCompat.SearchView"/><style name="Base.TextAppearance.AppCompat.Headline">
-        <item name="android:textSize">@dimen/abc_text_size_headline_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style><style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/><dimen name="abc_button_inset_horizontal_material">@dimen/abc_control_inset_material</dimen><color name="material_blue_grey_800">#ff37474f</color><style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow">
-        <item name="srcCompat">@drawable/abc_ic_menu_overflow_material</item>
-        <item name="android:background">?attr/actionBarItemBackground</item>
-        <item name="android:contentDescription">@string/abc_action_menu_overflow_description</item>
-        <item name="android:minWidth">@dimen/abc_action_button_min_width_overflow_material</item>
-        <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
-    </style><style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
-        <item name="android:textSize">14sp</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style><style name="TextAppearance.AppCompat.Widget.ActionMode.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Title">
-    </style><item name="split_action_bar" type="id"/><string name="abc_capital_on">ON</string><style name="Platform.ThemeOverlay.AppCompat.Dark">
-        
-        <item name="actionBarItemBackground">@drawable/abc_item_background_holo_dark</item>
-        <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
-        <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
-
-        
-        <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
-        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-    </style><declare-styleable name="ListPopupWindow"><attr name="android:dropDownVerticalOffset"/><attr name="android:dropDownHorizontalOffset"/></declare-styleable><style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.Light.DialogWhenLarge"/><string name="abc_search_hint">Search…</string><style name="Base.TextAppearance.AppCompat.Small.Inverse">
-        <item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style><style name="Widget.AppCompat.Light.ActionBar.Solid.Inverse"/><dimen name="abc_text_size_title_material_toolbar">20dp</dimen><dimen name="abc_text_size_button_material">14sp</dimen><bool name="abc_config_closeDialogWhenTouchOutside">true</bool><dimen name="abc_action_bar_default_height_material">56dp</dimen><attr format="reference" name="drawerArrowStyle"/><style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.CompoundButton.RadioButton">
-        <item name="android:button">?android:attr/listChoiceIndicatorSingle</item>
-        <item name="android:background">?attr/controlBackground</item>
-    </style><dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen><style name="TextAppearance.Widget.AppCompat.Toolbar.Title" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Title">
-    </style><style name="Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.Light.ActionBar">
-    </style><dimen name="notification_small_icon_size_as_large">24dp</dimen><dimen name="abc_cascading_menus_min_smallest_width">720dp</dimen><color name="secondary_text_default_material_light">#8a000000</color><style name="Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle">
-        <item name="color">?attr/colorControlNormal</item>
-    </style><style name="TextAppearance.AppCompat.Medium" parent="Base.TextAppearance.AppCompat.Medium"/><dimen name="abc_action_bar_content_inset_with_nav">72dp</dimen><color name="ripple_material_light">#1f000000</color><string name="abc_activitychooserview_choose_application">Choose an app</string><style name="Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.DialogWhenLarge">
-    </style><style name="Widget.AppCompat.CompoundButton.Switch" parent="Base.Widget.AppCompat.CompoundButton.Switch"/><style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.RatingBar">
-        <item name="android:progressDrawable">@drawable/abc_ratingbar_indicator_material</item>
-        <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_indicator_material</item>
-        <item name="android:minHeight">36dp</item>
-        <item name="android:maxHeight">36dp</item>
-        <item name="android:isIndicator">true</item>
-        <item name="android:thumb">@null</item>
-    </style><style name="TextAppearance.AppCompat.SearchResult.Subtitle" parent="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
-    </style><style name="Widget.AppCompat.Light.ActivityChooserView" parent="Widget.AppCompat.ActivityChooserView"/><style name="Base.TextAppearance.AppCompat.Widget.Button.Colored">
-        <item name="android:textColor">@color/abc_btn_colored_text_material</item>
-    </style><style name="Base.TextAppearance.AppCompat.Small">
-        <item name="android:textSize">@dimen/abc_text_size_small_material</item>
-        <item name="android:textColor">?android:attr/textColorTertiary</item>
-    </style><style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="TextAppearance.AppCompat.Button">
-        <item name="android:textColor">?android:textColorPrimaryInverse</item>
-    </style><style name="Widget.AppCompat.Light.SearchView" parent="Widget.AppCompat.SearchView"/><color name="highlighted_text_material_dark">#6680cbc4</color><style name="Widget.AppCompat.Light.ActionButton" parent="Widget.AppCompat.ActionButton"/><style name="TextAppearance.AppCompat.Widget.Button" parent="Base.TextAppearance.AppCompat.Widget.Button"/><color name="notification_action_color_filter">#ffffffff</color><item name="action_bar_activity_content" type="id"/><item name="abc_dialog_fixed_width_major" type="dimen">320dp</item><dimen name="notification_content_margin_start">8dp</dimen><style name="Widget.AppCompat.ActionMode" parent="Base.Widget.AppCompat.ActionMode">
-    </style><style name="Widget.AppCompat.Toolbar.Button.Navigation" parent="Base.Widget.AppCompat.Toolbar.Button.Navigation"/><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Menu"/><dimen name="notification_top_pad_large_text">5dp</dimen><style name="Widget.AppCompat.ListView" parent="Base.Widget.AppCompat.ListView"/><style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Widget.PopupMenu.Small"/><style name="ThemeOverlay.AppCompat" parent="Base.ThemeOverlay.AppCompat"/><color name="bright_foreground_material_light">@android:color/black</color><style name="Base.Widget.AppCompat.ActionBar" parent="">
-        <item name="displayOptions">showTitle</item>
-        <item name="divider">?attr/dividerVertical</item>
-        <item name="height">?attr/actionBarSize</item>
-
-        <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item>
-        <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle</item>
-
-        <item name="background">@null</item>
-        <item name="backgroundStacked">@null</item>
-        <item name="backgroundSplit">@null</item>
-
-        <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
-        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
-
-        <item name="android:gravity">center_vertical</item>
-        <item name="contentInsetStart">@dimen/abc_action_bar_content_inset_material</item>
-        <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
-        <item name="contentInsetEnd">@dimen/abc_action_bar_content_inset_material</item>
-        <item name="elevation">@dimen/abc_action_bar_elevation_material</item>
-        <item name="popupTheme">?attr/actionBarPopupTheme</item>
-    </style><color name="bright_foreground_disabled_material_dark">#80ffffff</color><style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
-        <item name="barLength">18dp</item>
-        <item name="gapBetweenBars">3dp</item>
-        <item name="drawableSize">24dp</item>
-    </style><style name="TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem"/><style name="Widget.AppCompat.PopupMenu" parent="Base.Widget.AppCompat.PopupMenu"/><color name="primary_text_default_material_dark">#ffffffff</color><style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Widget.PopupMenu.Large"/><dimen name="abc_text_size_menu_header_material">14sp</dimen><style name="Base.Theme.AppCompat.Light.Dialog.MinWidth">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style><dimen name="abc_action_bar_default_padding_start_material">0dp</dimen><dimen name="abc_edit_text_inset_horizontal_material">4dp</dimen><style name="Widget.AppCompat.PopupWindow" parent="Base.Widget.AppCompat.PopupWindow">
-    </style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="TextAppearance.AppCompat.Subhead.Inverse">
-        <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
-        <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
-    </style><style name="TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse">
-    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
-        <item name="android:layout_toLeftOf">@id/edit_query</item>
-    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
-        <item name="android:layout_alignParentLeft">true</item>
-    </style><style name="Widget.AppCompat.Spinner.DropDown"/><style name="TextAppearance.StatusBar.EventContent.Time" parent=""/><style name="Base.TextAppearance.AppCompat.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style><style name="Widget.AppCompat.Light.DropDownItem.Spinner" parent="Widget.AppCompat.DropDownItem.Spinner"/><dimen name="abc_dropdownitem_text_padding_left">8dip</dimen><string name="abc_searchview_description_search">Search</string><declare-styleable name="AppCompatTextHelper"><attr name="android:drawableLeft"/><attr name="android:drawableTop"/><attr name="android:drawableRight"/><attr name="android:drawableBottom"/><attr name="android:drawableStart"/><attr name="android:drawableEnd"/><attr name="android:textAppearance"/></declare-styleable><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
-        <item name="android:paddingRight">16dp</item>
-    </style><item name="progress_horizontal" type="id"/><dimen name="notification_large_icon_height">64dp</dimen><style name="TextAppearance.AppCompat.Notification.Line2.Media" parent="TextAppearance.AppCompat.Notification.Info.Media"/><declare-styleable name="ActionBarLayout"><attr name="android:layout_gravity"/></declare-styleable><style name="Widget.AppCompat.ListView.Menu" parent="Base.Widget.AppCompat.ListView.Menu"/><style name="Base.ThemeOverlay.AppCompat.Dark.ActionBar">
-        <item name="colorControlNormal">?android:attr/textColorPrimary</item>
-        <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
-    </style><style name="TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle">
-    </style><style name="Widget.AppCompat.Light.PopupMenu.Overflow" parent="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
-    </style><color name="bright_foreground_material_dark">@android:color/white</color><dimen name="abc_edit_text_inset_bottom_material">7dp</dimen><style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.RatingBar">
-        <item name="android:progressDrawable">@drawable/abc_ratingbar_material</item>
-        <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_material</item>
-    </style><style name="Widget.AppCompat.SeekBar" parent="Base.Widget.AppCompat.SeekBar"/><dimen name="notification_large_icon_width">64dp</dimen><item format="float" name="disabled_alpha_material_light" type="dimen">0.26</item><declare-styleable name="MenuGroup"><attr name="android:id"/><attr name="android:menuCategory"/><attr name="android:orderInCategory"/><attr name="android:checkableBehavior"/><attr name="android:visible"/><attr name="android:enabled"/></declare-styleable><declare-styleable name="TextAppearance"><attr name="android:textSize"/><attr name="android:textColor"/><attr name="android:textColorHint"/><attr name="android:textStyle"/><attr name="android:typeface"/><attr name="textAllCaps"/><attr name="android:shadowColor"/><attr name="android:shadowDy"/><attr name="android:shadowDx"/><attr name="android:shadowRadius"/></declare-styleable><style name="Widget.AppCompat.Spinner.Underlined" parent="Base.Widget.AppCompat.Spinner.Underlined"/><style name="Base.TextAppearance.AppCompat.Display2">
-        <item name="android:textSize">@dimen/abc_text_size_display_2_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style><style name="Base.TextAppearance.AppCompat.Display1">
-        <item name="android:textSize">@dimen/abc_text_size_display_1_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style><style name="Base.TextAppearance.AppCompat.Display4">
-        <item name="android:textSize">@dimen/abc_text_size_display_4_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style><style name="Base.TextAppearance.AppCompat.Display3">
-        <item name="android:textSize">@dimen/abc_text_size_display_3_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style><declare-styleable name="ViewBackgroundHelper"><attr name="android:background"/><attr format="color" name="backgroundTint"/><attr name="backgroundTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-        </attr></declare-styleable><style name="Widget.AppCompat.DropDownItem.Spinner" parent="RtlOverlay.Widget.AppCompat.Search.DropDown.Text"/><dimen name="abc_action_bar_elevation_material">4dp</dimen><declare-styleable name="LinearLayoutCompat"><attr name="android:orientation"/><attr name="android:gravity"/><attr name="android:baselineAligned"/><attr name="android:baselineAlignedChildIndex"/><attr name="android:weightSum"/><attr format="boolean" name="measureWithLargestChild"/><attr name="divider"/><attr name="showDividers">
-            <flag name="none" value="0"/>
-            <flag name="beginning" value="1"/>
-            <flag name="middle" value="2"/>
-            <flag name="end" value="4"/>
-        </attr><attr format="dimension" name="dividerPadding"/></declare-styleable><style name="TextAppearance.StatusBar.EventContent" parent=""/><style name="Base.TextAppearance.AppCompat.Body2">
-        <item name="android:textSize">@dimen/abc_text_size_body_2_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style><style name="Base.TextAppearance.AppCompat.Body1">
-        <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style><style name="Widget.AppCompat.ActivityChooserView" parent="Base.Widget.AppCompat.ActivityChooserView">
-    </style><style name="Theme.AppCompat.Light" parent="Base.Theme.AppCompat.Light"/><dimen name="abc_action_button_min_width_overflow_material">36dp</dimen><style name="Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.Light.ActionBar.TabView">
-    </style><style name="TextAppearance.AppCompat.Notification.Info">
-        <item name="android:textSize">12sp</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style><style name="Base.Widget.AppCompat.ActionBar.TabBar" parent="">
-        <item name="divider">?attr/actionBarDivider</item>
-        <item name="showDividers">middle</item>
-        <item name="dividerPadding">8dip</item>
-    </style><style name="TextAppearance.AppCompat.Inverse" parent="Base.TextAppearance.AppCompat.Inverse"/><style name="Theme.AppCompat.Dialog.MinWidth" parent="Base.Theme.AppCompat.Dialog.MinWidth"/><style name="TextAppearance.AppCompat.Notification">
-        <item name="android:textSize">14sp</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style><string name="abc_searchview_description_submit">Submit query</string><string name="abc_font_family_button_material">sans-serif-medium</string><dimen name="abc_text_size_body_1_material">14sp</dimen><style name="TextAppearance.AppCompat.SearchResult.Title" parent="Base.TextAppearance.AppCompat.SearchResult.Title">
-    </style><style name="Theme.AppCompat.Dialog.Alert" parent="Base.Theme.AppCompat.Dialog.Alert"/><style name="Widget.AppCompat.ActionBar.Solid" parent="Base.Widget.AppCompat.ActionBar.Solid">
-    </style><item format="float" name="highlight_alpha_material_dark" type="dimen">0.20</item><dimen name="abc_search_view_preferred_height">48dip</dimen><attr format="dimension" name="height"/><style name="Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton.Overflow"/><dimen name="abc_alert_dialog_button_bar_height">48dp</dimen><dimen name="abc_seekbar_track_progress_height_material">2dp</dimen><style name="Base.AlertDialog.AppCompat" parent="android:Widget">
-        <item name="android:layout">@layout/abc_alert_dialog_material</item>
-        <item name="listLayout">@layout/abc_select_dialog_material</item>
-        <item name="listItemLayout">@layout/select_dialog_item_material</item>
-        <item name="multiChoiceItemLayout">@layout/select_dialog_multichoice_material</item>
-        <item name="singleChoiceItemLayout">@layout/select_dialog_singlechoice_material</item>
-    </style><style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.ImageButton">
-        <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
-    </style><style name="TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large"/><dimen name="abc_text_size_small_material">14sp</dimen><style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.RatingBar">
-        <item name="android:progressDrawable">@drawable/abc_ratingbar_small_material</item>
-        <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_small_material</item>
-        <item name="android:minHeight">16dp</item>
-        <item name="android:maxHeight">16dp</item>
-        <item name="android:isIndicator">true</item>
-        <item name="android:thumb">@null</item>
-    </style><item name="abc_dialog_min_width_minor" type="dimen">95%</item><string name="abc_font_family_body_1_material">sans-serif</string><string name="abc_font_family_display_3_material">sans-serif</string><style name="Widget.AppCompat.RatingBar.Small" parent="Base.Widget.AppCompat.RatingBar.Small"/><style name="Base.Widget.AppCompat.EditText" parent="Base.V7.Widget.AppCompat.EditText"/><declare-styleable name="RecycleListView"><attr format="dimension" name="paddingBottomNoButtons"/><attr format="dimension" name="paddingTopNoTitle"/></declare-styleable><style name="Base.Widget.AppCompat.ButtonBar.AlertDialog"/><style name="Widget.AppCompat.NotificationActionText" parent=""/><string name="status_bar_notification_info_overflow">999+</string><string name="abc_toolbar_collapse_description">Collapse</string><style name="Base.Widget.AppCompat.Spinner" parent="Platform.Widget.AppCompat.Spinner">
-        <item name="android:background">@drawable/abc_spinner_mtrl_am_alpha</item>
-        <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
-        <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
-        <item name="android:dropDownVerticalOffset">0dip</item>
-        <item name="android:dropDownHorizontalOffset">0dip</item>
-        <item name="android:dropDownWidth">wrap_content</item>
-        <item name="android:clickable">true</item>
-        <item name="android:gravity">left|start|center_vertical</item>
-        <item name="overlapAnchor">true</item>
-    </style><item name="progress_circular" type="id"/><string name="abc_font_family_headline_material">sans-serif</string><style name="Widget.AppCompat.Button.Colored" parent="Base.Widget.AppCompat.Button.Colored"/><color name="button_material_light">#ffd6d7d7</color><string name="abc_action_bar_home_subtitle_description_format">%1$s, %2$s, %3$s</string><dimen name="abc_dropdownitem_text_padding_right">8dip</dimen><dimen name="abc_control_padding_material">4dp</dimen><item name="up" type="id"/><color name="abc_search_url_text_normal">#7fa87f</color><item format="float" name="highlight_alpha_material_light" type="dimen">0.12</item><style name="Base.TextAppearance.AppCompat.Subhead">
-        <item name="android:textSize">@dimen/abc_text_size_subhead_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style><dimen name="abc_dialog_title_divider_material">8dp</dimen><dimen name="abc_action_bar_subtitle_bottom_margin_material">5dp</dimen><style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light">
-        <item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Light</item>
-        <item name="actionBarWidgetTheme">@null</item>
-        <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
-
-        
-        <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
-
-        <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
-        <item name="colorPrimary">@color/primary_material_dark</item>
-    </style><color name="foreground_material_light">@android:color/black</color><bool name="abc_allow_stacked_button_bar">true</bool><style name="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Widget.AppCompat.Button.Borderless.Colored">
-        <item name="android:minWidth">64dp</item>
-        <item name="android:minHeight">@dimen/abc_alert_dialog_button_bar_height</item>
-    </style><declare-styleable name="AppCompatTextView"><attr format="reference|boolean" name="textAllCaps"/><attr name="android:textAppearance"/></declare-styleable><style name="Theme.AppCompat.Light.NoActionBar">
-        <item name="windowActionBar">false</item>
-        <item name="windowNoTitle">true</item>
-    </style><color name="ripple_material_dark">#33ffffff</color><dimen name="abc_panel_menu_list_width">296dp</dimen><style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.DropDownItem</item>
-        <item name="android:paddingLeft">8dp</item>
-        <item name="android:paddingRight">8dp</item>
-        <item name="android:gravity">center_vertical</item>
-    </style><style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="Base.V7.Widget.AppCompat.AutoCompleteTextView"/><dimen name="abc_action_bar_stacked_tab_max_width">180dp</dimen><dimen name="abc_edit_text_inset_top_material">10dp</dimen><style name="Base.Widget.AppCompat.PopupMenu.Overflow">
-        <item name="overlapAnchor">true</item>
-        <item name="android:dropDownHorizontalOffset">-4dip</item>
-    </style><integer name="cancel_button_image_alpha">127</integer><string name="abc_font_family_caption_material">sans-serif</string><style name="TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu">
-    </style><style name="Widget.AppCompat.Spinner" parent="Base.Widget.AppCompat.Spinner"/><style name="Widget.AppCompat.ButtonBar" parent="Base.Widget.AppCompat.ButtonBar"/><style name="Base.Widget.AppCompat.Button.Borderless">
-        <item name="android:background">@drawable/abc_btn_borderless_material</item>
-    </style><dimen name="abc_text_size_body_2_material">14sp</dimen><style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.TextView.SpinnerItem">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem</item>
-        <item name="android:paddingLeft">8dp</item>
-        <item name="android:paddingRight">8dp</item>
-    </style><dimen name="abc_action_bar_progress_bar_size">40dp</dimen><style name="AlertDialog.AppCompat" parent="Base.AlertDialog.AppCompat"/><item format="float" name="hint_pressed_alpha_material_light" type="dimen">0.54</item><style name="Widget.AppCompat.Light.ActionBar.TabBar.Inverse"/><style name="Base.Widget.AppCompat.Button.Colored">
-        <item name="android:background">@drawable/abc_btn_colored_material</item>
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Colored</item>
-    </style><style name="Base.TextAppearance.AppCompat.Title.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style><item name="home" type="id"/><style name="Base.TextAppearance.AppCompat.Menu">
-        <item name="android:textSize">@dimen/abc_text_size_menu_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style><dimen name="abc_text_size_large_material">22sp</dimen><item name="abc_dialog_fixed_width_minor" type="dimen">320dp</item><style name="Base.Theme.AppCompat.CompactMenu" parent="">
-        <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item>
-        <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
-        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item>
-    </style><style name="TextAppearance.AppCompat.Display4" parent="Base.TextAppearance.AppCompat.Display4"/><color name="notification_icon_bg_color">#ff9e9e9e</color><style name="TextAppearance.AppCompat.Display1" parent="Base.TextAppearance.AppCompat.Display1"/><attr format="string" name="title"/><declare-styleable name="PopupWindow"><attr format="boolean" name="overlapAnchor"/><attr name="android:popupBackground"/><attr name="android:popupAnimationStyle"/></declare-styleable><style name="TextAppearance.AppCompat.Display2" parent="Base.TextAppearance.AppCompat.Display2"/><style name="TextAppearance.AppCompat.Title" parent="Base.TextAppearance.AppCompat.Title"/><style name="TextAppearance.AppCompat.Display3" parent="Base.TextAppearance.AppCompat.Display3"/><dimen name="abc_text_size_display_1_material">34sp</dimen><dimen name="notification_media_narrow_margin">@dimen/notification_content_margin_start</dimen><style name="TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item">
-    </style><dimen name="notification_subtext_size">13sp</dimen><color name="material_deep_teal_500">#ff009688</color><drawable name="notification_template_icon_bg">#3333B5E5</drawable><dimen name="notification_action_text_size">13sp</dimen><style name="TextAppearance.AppCompat.Large.Inverse" parent="Base.TextAppearance.AppCompat.Large.Inverse"/><style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.ProgressBar">
-        <item name="android:minWidth">@dimen/abc_action_bar_progress_bar_size</item>
-        <item name="android:maxWidth">@dimen/abc_action_bar_progress_bar_size</item>
-        <item name="android:minHeight">@dimen/abc_action_bar_progress_bar_size</item>
-        <item name="android:maxHeight">@dimen/abc_action_bar_progress_bar_size</item>
-    </style><style name="TextAppearance.AppCompat.Light.SearchResult.Subtitle" parent="TextAppearance.AppCompat.SearchResult.Subtitle"/><style name="Widget.AppCompat.Light.ListView.DropDown" parent="Widget.AppCompat.ListView.DropDown"/><dimen name="abc_seekbar_track_background_height_material">2dp</dimen><style name="Base.Widget.AppCompat.Button.Small">
-        <item name="android:minHeight">48dip</item>
-        <item name="android:minWidth">48dip</item>
-    </style><dimen name="abc_action_bar_overflow_padding_start_material">6dp</dimen><style name="Base.Theme.AppCompat.Dialog.Alert">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style><style name="TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored"/><color name="dim_foreground_disabled_material_light">#80323232</color><style name="Base.TextAppearance.AppCompat.Title">
-        <item name="android:textSize">@dimen/abc_text_size_title_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style><style name="Widget.AppCompat.NotificationActionContainer" parent=""/><integer name="abc_config_activityDefaultDur">220</integer><style name="Base.Widget.AppCompat.Toolbar" parent="android:Widget">
-        <item name="titleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Title</item>
-        <item name="subtitleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle</item>
-        <item name="android:minHeight">?attr/actionBarSize</item>
-        <item name="titleMargin">4dp</item>
-        <item name="maxButtonHeight">@dimen/abc_action_bar_default_height_material</item>
-        <item name="buttonGravity">top</item>
-        <item name="collapseIcon">?attr/homeAsUpIndicator</item>
-        <item name="collapseContentDescription">@string/abc_toolbar_collapse_description</item>
-        <item name="contentInsetStart">16dp</item>
-        <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
-        <item name="android:paddingLeft">@dimen/abc_action_bar_default_padding_start_material</item>
-        <item name="android:paddingRight">@dimen/abc_action_bar_default_padding_end_material</item>
-    </style><style name="Base.Widget.AppCompat.ActionBar.TabText" parent="">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
-        <item name="android:textSize">12sp</item>
-        <item name="android:textStyle">bold</item>
-        <item name="android:ellipsize">marquee</item>
-        <item name="android:maxLines">2</item>
-        <item name="android:maxWidth">180dp</item>
-        <item name="textAllCaps">true</item>
-    </style><style name="TextAppearance.AppCompat" parent="Base.TextAppearance.AppCompat"/><style name="Base.Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
-        <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
-        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
-    </style><declare-styleable name="PopupWindowBackgroundState"><attr format="boolean" name="state_above_anchor"/></declare-styleable><style name="Widget.AppCompat.Button.Borderless" parent="Base.Widget.AppCompat.Button.Borderless"/><style name="Base.TextAppearance.AppCompat.Large">
-        <item name="android:textSize">@dimen/abc_text_size_large_material</item>
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
-    </style><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat">
-        <item name="android:textSize">@dimen/abc_text_size_menu_header_material</item>
-        <item name="android:textColor">?attr/colorAccent</item>
-    </style><style name="Base.Theme.AppCompat.Dialog.FixedSize">
-        <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
-        <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
-        <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
-        <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
-    </style><string name="abc_font_family_display_1_material">sans-serif</string><dimen name="notification_top_pad">10dp</dimen><style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget">
-        <item name="android:background">@null</item>
-    </style><style name="Widget.AppCompat.Light.ActionBar.TabView.Inverse"/><style name="Widget.AppCompat.ListMenuView" parent="Base.Widget.AppCompat.ListMenuView"/><style name="Widget.AppCompat.Light.ActionButton.Overflow" parent="Widget.AppCompat.ActionButton.Overflow"/><style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title">
-    </style><style name="TextAppearance.AppCompat.Body1" parent="Base.TextAppearance.AppCompat.Body1"/><style name="TextAppearance.StatusBar.EventContent.Info" parent=""/><style name="TextAppearance.AppCompat.Body2" parent="Base.TextAppearance.AppCompat.Body2"/><style name="Widget.AppCompat.Light.PopupMenu" parent="Base.Widget.AppCompat.Light.PopupMenu"/><string name="abc_action_bar_home_description">Navigate home</string><dimen name="abc_text_size_display_4_material">112sp</dimen><style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
-        <item name="android:layout_gravity">center_vertical|left</item>
-        <item name="android:paddingRight">8dp</item>
-    </style><dimen name="abc_floating_window_z">16dp</dimen><style name="Base.V7.Theme.AppCompat" parent="Platform.AppCompat">
-        <item name="windowNoTitle">false</item>
-        <item name="windowActionBar">true</item>
-        <item name="windowActionBarOverlay">false</item>
-        <item name="windowActionModeOverlay">false</item>
-        <item name="actionBarPopupTheme">@null</item>
-
-        <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
-
-        
-        <item name="isLightTheme">false</item>
-
-        <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
-        <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
-        <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
-
-        <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
-        <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
-
-        
-        <item name="actionBarTabStyle">@style/Widget.AppCompat.ActionBar.TabView</item>
-        <item name="actionBarTabBarStyle">@style/Widget.AppCompat.ActionBar.TabBar</item>
-        <item name="actionBarTabTextStyle">@style/Widget.AppCompat.ActionBar.TabText</item>
-        <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
-        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
-        <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.PopupMenu.Overflow</item>
-        <item name="actionBarStyle">@style/Widget.AppCompat.ActionBar.Solid</item>
-        <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
-        <item name="actionBarWidgetTheme">@null</item>
-        <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
-        <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
-        <item name="actionBarDivider">?attr/dividerVertical</item>
-        <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
-        <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
-        <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
-
-        
-        <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
-
-        
-        <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
-        <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
-        <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
-        <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
-        <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
-
-        <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
-        <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
-        <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
-        <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
-        <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
-
-        
-        <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
-        <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
-        <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
-        <item name="android:panelBackground">@android:color/transparent</item>
-        <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
-
-        
-        <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
-        <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
-        <item name="listPreferredItemHeight">64dp</item>
-        <item name="listPreferredItemHeightSmall">48dp</item>
-        <item name="listPreferredItemHeightLarge">80dp</item>
-        <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
-        <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
-
-        
-        <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
-        <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
-        <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
-
-        
-        <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-        <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
-
-        
-        <item name="popupMenuStyle">@style/Widget.AppCompat.PopupMenu</item>
-        <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item>
-        <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item>
-        <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
-        <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
-        <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
-        <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
-
-        
-        <item name="searchViewStyle">@style/Widget.AppCompat.SearchView</item>
-        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-        <item name="textColorSearchUrl">@color/abc_search_url_text</item>
-        <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
-        <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
-
-        
-        <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
-
-        
-        <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
-        <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
-
-        <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
-        <item name="editTextBackground">@drawable/abc_edit_text_material</item>
-        <item name="editTextColor">?android:attr/textColorPrimary</item>
-        <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
-
-        
-        <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
-        <item name="colorPrimary">@color/primary_material_dark</item>
-        <item name="colorAccent">@color/accent_material_dark</item>
-
-        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
-        <item name="colorControlActivated">?attr/colorAccent</item>
-        <item name="colorControlHighlight">@color/ripple_material_dark</item>
-        <item name="colorButtonNormal">@color/button_material_dark</item>
-        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
-        <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
-
-        <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
-
-        <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
-        <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
-        <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
-
-        <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
-        <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
-        <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
-        <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
-
-        
-        <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
-        <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
-        <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
-
-        <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
-
-        <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
-        <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
-        <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
-        <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
-        <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
-
-        
-        <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
-        <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
-
-        <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
-        <item name="alertDialogStyle">@style/AlertDialog.AppCompat</item>
-        <item name="alertDialogCenterButtons">false</item>
-        <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
-        <item name="listDividerAlertDialog">@null</item>
-
-        
-        <item name="windowFixedWidthMajor">@null</item>
-        <item name="windowFixedWidthMinor">@null</item>
-        <item name="windowFixedHeightMajor">@null</item>
-        <item name="windowFixedHeightMinor">@null</item>
-    </style><item format="float" name="abc_disabled_alpha_material_light" type="dimen">0.26</item><style name="Widget.AppCompat.Light.ActionBar.Solid" parent="Base.Widget.AppCompat.Light.ActionBar.Solid">
-    </style><color name="switch_thumb_normal_material_light">#fff1f1f1</color><style name="Base.Theme.AppCompat.Light.Dialog.Alert">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style><declare-styleable name="View"><attr format="dimension" name="paddingStart"/><attr format="dimension" name="paddingEnd"/><attr name="android:focusable"/><attr format="reference" name="theme"/><attr name="android:theme"/></declare-styleable><color name="secondary_text_default_material_dark">#b3ffffff</color><style name="Base.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
-    </style><style name="TextAppearance.AppCompat.Widget.ActionBar.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title"/><string name="abc_font_family_subhead_material">sans-serif</string><string name="abc_font_family_body_2_material">sans-serif-medium</string><color name="material_blue_grey_950">#ff21272b</color><string name="abc_shareactionprovider_share_with">Share with</string><style name="TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small"/><color name="accent_material_light">@color/material_deep_teal_500</color><style name="Platform.AppCompat" parent="android:Theme">
-        <item name="android:windowNoTitle">true</item>
-
-        
-        <item name="android:colorForeground">@color/foreground_material_dark</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
-        <item name="android:colorBackground">@color/background_material_dark</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
-        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item>
-        <item name="android:backgroundDimAmount">0.6</item>
-        <item name="android:windowBackground">@color/background_material_dark</item>
-
-        
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
-        <item name="android:textColorLink">?attr/colorAccent</item>
-
-        
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
-        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
-        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
-        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
-        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
-        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
-
-        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
-        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
-
-        <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_dark</item>
-        <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_dark</item>
-        <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_dark</item>
-    </style><item format="float" name="hint_pressed_alpha_material_dark" type="dimen">0.70</item><dimen name="abc_dialog_list_padding_top_no_title">8dp</dimen><style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat.Light.DarkActionBar"/><color name="dim_foreground_material_dark">#ffbebebe</color><color name="primary_dark_material_light">@color/material_grey_600</color><color name="material_grey_900">#ff212121</color><style name="TextAppearance.StatusBar.EventContent.Line2" parent=""/><style name="Base.Widget.AppCompat.Button.Borderless.Colored">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored</item>
-    </style><style name="TextAppearance.AppCompat.Notification.Time.Media"/><declare-styleable name="Spinner"><attr name="android:prompt"/><attr name="popupTheme"/><attr name="android:popupBackground"/><attr name="android:dropDownWidth"/><attr name="android:entries"/></declare-styleable><style name="Base.V7.Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light">
-        <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
-        <item name="android:colorBackgroundCacheHint">@null</item>
-
-        <item name="android:windowFrame">@null</item>
-        <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
-        <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
-        <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
-        <item name="android:windowIsFloating">true</item>
-        <item name="android:backgroundDimEnabled">true</item>
-        <item name="android:windowContentOverlay">@null</item>
-        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
-        <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
-
-        <item name="windowActionBar">false</item>
-        <item name="windowActionModeOverlay">true</item>
-
-        <item name="listPreferredItemPaddingLeft">24dip</item>
-        <item name="listPreferredItemPaddingRight">24dip</item>
-
-        <item name="android:listDivider">@null</item>
-    </style><color name="bright_foreground_disabled_material_light">#80000000</color><style name="Theme.AppCompat.CompactMenu" parent="Base.Theme.AppCompat.CompactMenu"/><dimen name="abc_progress_bar_height_material">4dp</dimen><style name="TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header"/><style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar"/><declare-styleable name="ButtonBarLayout"><attr format="boolean" name="allowStacking"/></declare-styleable><style name="Base.ThemeOverlay.AppCompat.Light" parent="Platform.ThemeOverlay.AppCompat.Light">
-        <item name="android:windowBackground">@color/background_material_light</item>
-        <item name="android:colorForeground">@color/foreground_material_light</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
-        <item name="android:colorBackground">@color/background_material_light</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
-        <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
-
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
-        <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
-
-        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
-        <item name="colorControlHighlight">@color/ripple_material_light</item>
-        <item name="colorButtonNormal">@color/button_material_light</item>
-        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
-
-        
-        <item name="isLightTheme">true</item>
-    </style><style name="TextAppearance.AppCompat.Notification.Time">
-        <item name="android:textSize">12sp</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style><dimen name="abc_text_size_medium_material">18sp</dimen><style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
-        <item name="android:background">@drawable/abc_tab_indicator_material</item>
-    </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
-        <item name="android:paddingLeft">@dimen/abc_dropdownitem_text_padding_left</item>
-        <item name="android:paddingRight">4dp</item>
-    </style><style name="Widget.AppCompat.SearchView.ActionBar" parent="Base.Widget.AppCompat.SearchView.ActionBar"/><color name="background_floating_material_dark">@color/material_grey_800</color><style name="Widget.AppCompat.RatingBar.Indicator" parent="Base.Widget.AppCompat.RatingBar.Indicator"/><style name="Base.TextAppearance.AppCompat.Button">
-        <item name="android:textSize">@dimen/abc_text_size_button_material</item>
-        <item name="textAllCaps">true</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style><dimen name="abc_action_bar_stacked_max_height">48dp</dimen><item name="abc_dialog_min_width_major" type="dimen">65%</item><style name="Widget.AppCompat.Light.ActionButton.CloseMode" parent="Widget.AppCompat.ActionButton.CloseMode"/><string name="abc_searchview_description_clear">Clear query</string><declare-styleable name="ActivityChooserView"><attr format="string" name="initialActivityCount"/><attr format="reference" name="expandActivityOverflowButtonDrawable"/></declare-styleable><style name="TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Title"/><style name="TextAppearance.AppCompat.Widget.Button.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Colored"/><declare-styleable name="ActionMenuView"/><declare-styleable name="CompoundButton"><attr name="android:button"/><attr format="color" name="buttonTint"/><attr name="buttonTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-        </attr></declare-styleable><style name="Base.Animation.AppCompat.DropDownUp" parent="android:Animation">
-        <item name="android:windowEnterAnimation">@anim/abc_grow_fade_in_from_bottom</item>
-        <item name="android:windowExitAnimation">@anim/abc_shrink_fade_out_from_bottom</item>
-    </style><style name="TextAppearance.AppCompat.Widget.Button.Inverse" parent="Base.TextAppearance.AppCompat.Widget.Button.Inverse"/><style name="ThemeOverlay.AppCompat.Dialog.Alert" parent="Base.ThemeOverlay.AppCompat.Dialog.Alert"/><style name="Theme.AppCompat.Light.Dialog.Alert" parent="Base.Theme.AppCompat.Light.Dialog.Alert"/><drawable name="notification_template_icon_low_bg">#0cffffff</drawable><style name="Base.TextAppearance.AppCompat.Subhead.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style><style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse">
-    </style><dimen name="abc_button_inset_vertical_material">6dp</dimen><string name="abc_font_family_title_material">sans-serif-medium</string><item name="abc_dialog_fixed_height_major" type="dimen">80%</item><bool name="abc_config_actionMenuItemAllCaps">true</bool></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-cs/values-cs.xml" qualifiers="cs"><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s – %3$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Vyhledat…"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Sdílet pomocí %s"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Hledat"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobrazit vše"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Hlasové vyhledávání"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Přejít na plochu"</string><string msgid="3405795526292276155" name="abc_capital_on">"ZAPNUTO"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Odeslat dotaz"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Sdílet pomocí"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Hotovo"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sbalit"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Více možností"</string><string msgid="121134116657445385" name="abc_capital_off">"VYPNUTO"</string><string msgid="146198913615257606" name="search_menu_title">"Hledat"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s – %2$s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Smazat dotaz"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Přejít nahoru"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Vyhledávací dotaz"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Vybrat aplikaci"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-hy-rAM/values-hy-rAM.xml" qualifiers="hy-rAM"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Ուղարկել հարցումը"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Կիսվել"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="146198913615257606" name="search_menu_title">"Որոնել"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Տեսնել բոլորը"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Այլ ընտրանքներ"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ուղղվել տուն"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Պատրաստ է"</string><string msgid="3405795526292276155" name="abc_capital_on">"ՄԻԱՑՎԱԾ"</string><string msgid="121134116657445385" name="abc_capital_off">"ԱՆՋԱՏՎԱԾ"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Որոնել"</string><string msgid="7723749260725869598" name="abc_search_hint">"Որոնում..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Մաքրել հարցումը"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Ձայնային որոնում"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Ուղղվել վերև"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Որոնման հարցում"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Թաքցնել"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Ընտրել ծրագիր"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Կիսվել %s-ի միջոցով"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ne-rNP/values-ne-rNP.xml" qualifiers="ne-rNP"><string msgid="893419373245838918" name="abc_searchview_description_voice">"भ्वाइस खोजी"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"एउटा अनुप्रयोग छान्नुहोस्"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"जिज्ञासा पेस गर्नुहोस्"</string><string msgid="146198913615257606" name="search_menu_title">"खोज्नुहोस्"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"प्रश्‍न हटाउनुहोस्"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"जिज्ञासाको खोज गर्नुहोस्"</string><string msgid="121134116657445385" name="abc_capital_off">"निष्क्रिय पार्नुहोस्"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"साझेदारी गर्नुहोस्..."</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s सँग साझेदारी गर्नुहोस्"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सबै हेर्नुहोस्"</string><string msgid="3405795526292276155" name="abc_capital_on">"सक्रिय गर्नुहोस्"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"सम्पन्न भयो"</string><string msgid="7723749260725869598" name="abc_search_hint">"खोज्नुहोस्..."</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"खोज्नुहोस्"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"गृह खोज्नुहोस्"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"९९९+"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"माथि खोज्नुहोस्"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"संक्षिप्त पार्नुहोस्"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"थप विकल्पहरू"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-es-rUS/values-es-rUS.xml" qualifiers="es-rUS"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar a la página principal"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Elige una aplicación."</string><string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar hacia arriba"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Búsqueda por voz"</string><string msgid="3405795526292276155" name="abc_capital_on">"ACTIVADO"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de búsqueda"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="121134116657445385" name="abc_capital_off">"DESACTIVADO"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Listo"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Más opciones"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Eliminar la consulta"</string><string msgid="146198913615257606" name="search_menu_title">"Buscar"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todo"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Búsqueda"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-kk-rKZ/values-kk-rKZ.xml" qualifiers="kk-rKZ"><string msgid="121134116657445385" name="abc_capital_off">"ӨШІРУЛІ"</string><string msgid="3405795526292276155" name="abc_capital_on">"ҚОСУЛЫ"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Сұрақты іздеу"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Іздеу"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Дайын"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s бөлісу"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Дауыс арқылы іздеу"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Жоғары қозғалу"</string><string msgid="7723749260725869598" name="abc_search_hint">"Іздеу…"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Тасалау"</string><string msgid="146198913615257606" name="search_menu_title">"Іздеу"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Сұрақты жіберу"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Бөлісу"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Сұрақты жою"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Басқа опциялар"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Қолданбаны таңдау"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Барлығын көру"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Негізгі бетте қозғалу"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-lo-rLA/values-lo-rLA.xml" qualifiers="lo-rLA"><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ສົ່ງການຊອກຫາ"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ໂຕເລືອກອື່ນ"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"ແບ່ງ​ປັນ​ກັບ​ %s"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ຫຍໍ້"</string><string msgid="121134116657445385" name="abc_capital_off">"ປິດ"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ລຶບຂໍ້ຄວາມຊອກຫາ"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ຊອກຫາດ້ວຍສຽງ"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ຂຶ້ນເທິງ"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ເລືອກແອັບຯ"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"ຊອກຫາ"</string><string msgid="146198913615257606" name="search_menu_title">"ຊອກຫາ"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ຊອກຫາ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ແບ່ງປັນກັບ"</string><string msgid="3405795526292276155" name="abc_capital_on">"ເປີດ"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ກັບໄປໜ້າຫຼັກ"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ເບິ່ງທັງຫມົດ"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ແລ້ວໆ"</string><string msgid="7723749260725869598" name="abc_search_hint">"ຊອກຫາ"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ur-rPK/values-ur-rPK.xml" qualifiers="ur-rPK"><string msgid="146198913615257606" name="search_menu_title">"تلاش"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"سکیڑیں"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"استفسار صاف کریں"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"استفسار جمع کرائیں"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"اشتراک کریں مع"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"اوپر نیویگیٹ کریں"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ہوم پر نیویگیٹ کریں"</string><string msgid="121134116657445385" name="abc_capital_off">"آف"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"صوتی تلاش"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"مزید اختیارات"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏%s کے ساتھ اشتراک کریں"</string><string msgid="7723749260725869598" name="abc_search_hint">"تلاش کریں…"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"استفسار تلاش کریں"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ایک ایپ منتخب کریں"</string><string msgid="3405795526292276155" name="abc_capital_on">"آن"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"سبھی دیکھیں"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"تلاش کریں"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"‎999+‎"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ہو گیا"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-az-rAZ/values-az-rAZ.xml" qualifiers="az-rAZ"><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bununla paylaşın"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sorğunu təmizlə"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Axtarış"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yuxarı get"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Hamısına baxın"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Axtarış sorğusu"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Tətbiq seçin"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Səsli axtarış"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Evə naviqasiya et"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Axtarış..."</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Digər variantlar"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Hazırdır"</string><string msgid="121134116657445385" name="abc_capital_off">"DEAKTİV"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Dağıt"</string><string msgid="146198913615257606" name="search_menu_title">"Axtarış"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Sorğunu göndərin"</string><string msgid="3405795526292276155" name="abc_capital_on">"AKTİV"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-ml-rIN/values-ml-rIN.xml" qualifiers="ml-rIN"><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ഇവരുമായി പങ്കിടുക"</string><string msgid="7723749260725869598" name="abc_search_hint">"തിരയുക…"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"തിരയൽ"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3405795526292276155" name="abc_capital_on">"ഓൺ"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"തിരയൽ അന്വേഷണം"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s എന്നതുമായി പങ്കിടുക"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"എല്ലാം കാണുക"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"കൂടുതൽ‍ ഓപ്‌ഷനുകള്‍"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"പൂർത്തിയാക്കി"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ശബ്ദതിരയൽ"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="146198913615257606" name="search_menu_title">"തിരയുക"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ചുരുക്കുക"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"അന്വേഷണം മായ്‌ക്കുക"</string><string msgid="121134116657445385" name="abc_capital_off">"ഓഫ്"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"അന്വേഷണം സമർപ്പിക്കുക"</string></file><file name="abc_fade_in" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_fade_in.xml" qualifiers="" type="anim"/><file name="abc_slide_in_top" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_in_top.xml" qualifiers="" type="anim"/><file name="abc_fade_out" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_fade_out.xml" qualifiers="" type="anim"/><file name="abc_shrink_fade_out_from_bottom" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_shrink_fade_out_from_bottom.xml" qualifiers="" type="anim"/><file name="abc_popup_exit" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_popup_exit.xml" qualifiers="" type="anim"/><file name="abc_slide_out_bottom" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_out_bottom.xml" qualifiers="" type="anim"/><file name="abc_grow_fade_in_from_bottom" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_grow_fade_in_from_bottom.xml" qualifiers="" type="anim"/><file name="abc_slide_in_bottom" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_in_bottom.xml" qualifiers="" type="anim"/><file name="abc_slide_out_top" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_slide_out_top.xml" qualifiers="" type="anim"/><file name="abc_popup_enter" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/anim/abc_popup_enter.xml" qualifiers="" type="anim"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-gl-rES/values-gl-rES.xml" qualifiers="gl-rES"><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de busca"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Buscar"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Desprazarse cara arriba"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Borrar consulta"</string><string msgid="146198913615257606" name="search_menu_title">"Buscar"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Feito"</string><string msgid="121134116657445385" name="abc_capital_off">"DESACTIVAR"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Máis opcións"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todas"</string><string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string><string msgid="3405795526292276155" name="abc_capital_on">"ACTIVAR"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ir á páxina de inicio"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Busca de voz"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Escoller unha aplicación"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pt-rBR/values-pt-rBR.xml" qualifiers="pt-rBR"><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Selecione um app"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Pesquisar"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar para a página inicial"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Concluído"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartilhar com"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Pesquisa por voz"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Recolher"</string><string msgid="121134116657445385" name="abc_capital_off">"DESATIVAR"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mais opções"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de pesquisa"</string><string msgid="146198913615257606" name="search_menu_title">"Pesquisar"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver tudo"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar para cima"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="3405795526292276155" name="abc_capital_on">"ATIVAR"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartilhar com %s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Pesquisar..."</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Limpar consulta"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-v12/values-v12.xml" qualifiers="v12"><style name="Base.V12.Widget.AppCompat.EditText" parent="Base.V7.Widget.AppCompat.EditText">
-        <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
-    </style><style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="Base.V12.Widget.AppCompat.AutoCompleteTextView"/><style name="Base.Widget.AppCompat.EditText" parent="Base.V12.Widget.AppCompat.EditText"/><style name="Base.V12.Widget.AppCompat.AutoCompleteTextView" parent="Base.V7.Widget.AppCompat.AutoCompleteTextView">
-        <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
-    </style></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-fi/values-fi.xml" qualifiers="fi"><string msgid="4076576682505996667" name="abc_action_mode_done">"Valmis"</string><string msgid="3405795526292276155" name="abc_capital_on">"KÄYTÖSSÄ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Lähetä kysely"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Jakaminen:"</string><string msgid="146198913615257606" name="search_menu_title">"Haku"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Siirry ylös"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Siirry etusivulle"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Valitse sovellus"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Lisää"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Näytä kaikki"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Haku"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Kutista"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="121134116657445385" name="abc_capital_off">"POIS KÄYTÖSTÄ"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Tyhjennä kysely"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Puhehaku"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Hakulauseke"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Jakaminen: %s"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="7723749260725869598" name="abc_search_hint">"Haku…"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-pa-rIN/values-pa-rIN.xml" qualifiers="pa-rIN"><string msgid="2550479030709304392" name="abc_searchview_description_query">"ਸਵਾਲ ਖੋਜੋ"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"ਹੋ ਗਿਆ"</string><string msgid="121134116657445385" name="abc_capital_off">"ਬੰਦ"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ਨਾਲ ਸਾਂਝਾ ਕਰੋ"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ਸਭ ਦੇਖੋ"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ਇਸ ਨਾਲ ਸਾਂਝਾ ਕਰੋ"</string><string msgid="146198913615257606" name="search_menu_title">"ਖੋਜ"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"ਖੋਜੋ"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ਇੱਕ ਐਪ ਚੁਣੋ"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"ਸਵਾਲ ਹਟਾਓ"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ਨਸ਼ਟ ਕਰੋ"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3405795526292276155" name="abc_capital_on">"ਤੇ"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ਹੋਰ ਚੋਣਾਂ"</string><string msgid="7723749260725869598" name="abc_search_hint">"ਖੋਜ…"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"ਵੌਇਸ ਖੋਜ"</string></file><file name="abc_spinner_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" qualifiers="ldrtl-xhdpi-v17" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="ldrtl-xhdpi-v17" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" qualifiers="ldrtl-xhdpi-v17" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-b+sr+Latn/values-b+sr+Latn.xml" qualifiers="b+sr+Latn"><string msgid="146198913615257606" name="search_menu_title">"Pretraži"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Kretanje nagore"</string><string msgid="7723749260725869598" name="abc_search_hint">"Pretražite..."</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Još opcija"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deli sa"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Pretraga"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skupi"</string><string msgid="3405795526292276155" name="abc_capital_on">"UKLJUČI"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovna pretraga"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Upit za pretragu"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Odlazak na Početnu"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Slanje upita"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deli sa aplikacijom %s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Gotovo"</string><string msgid="121134116657445385" name="abc_capital_off">"ISKLJUČI"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Brisanje upita"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Izbor aplikacije"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-port/values-port.xml" qualifiers="port"><bool name="abc_action_bar_embed_tabs">false</bool></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-mn-rMN/values-mn-rMN.xml" qualifiers="mn-rMN"><string msgid="146198913615257606" name="search_menu_title">"Хайлт"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Хайх"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Нүүр хуудас руу шилжих"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Нэмэлт сонголтууд"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Бүгдийг харах"</string><string msgid="7723749260725869598" name="abc_search_hint">"Хайх..."</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Хайх асуулга"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Хуваалцах"</string><string msgid="121134116657445385" name="abc_capital_off">"ИДЭВХГҮЙ"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s-тай хуваалцах"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Асуулгыг цэвэрлэх"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Апп сонгох"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Дууссан"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Дуут хайлт"</string><string msgid="3405795526292276155" name="abc_capital_on">"ИДЭВХТЭЙ"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Дээш шилжих"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Асуулгыг илгээх"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Хумих"</string></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-large-v4/values-large-v4.xml" qualifiers="large-v4"><item name="abc_dialog_fixed_height_minor" type="dimen">90%</item><item name="abc_dialog_min_width_minor" type="dimen">80%</item><style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.Dialog.FixedSize"/><dimen name="abc_config_prefDialogWidth">440dp</dimen><item name="abc_dialog_fixed_width_major" type="dimen">60%</item><item name="abc_dialog_fixed_width_minor" type="dimen">90%</item><style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.Dialog.FixedSize"/><item name="abc_dialog_min_width_major" type="dimen">55%</item><item name="abc_dialog_fixed_height_major" type="dimen">60%</item></file><file path="/home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res/values-tr/values-tr.xml" qualifiers="tr"><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Bir uygulama seçin"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Daralt"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sorguyu temizle"</string><string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Şununla paylaş"</string><string msgid="3405795526292276155" name="abc_capital_on">"AÇ"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yukarı git"</string><string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Diğer seçenekler"</string><string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Bitti"</string><string msgid="7723749260725869598" name="abc_search_hint">"Ara…"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Sorguyu gönder"</string><string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ile paylaş"</string><string msgid="121134116657445385" name="abc_capital_off">"KAPAT"</string><string msgid="146198913615257606" name="search_menu_title">"Ara"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Arama sorgusu"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Sesli arama"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tümünü göster"</string><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ana ekrana git"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Ara"</string></file></source></dataSet><dataSet config="main" generated-set="main$Generated"><source path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res"><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-fr/strings.xml" qualifiers="fr"><string name="ministro_not_found_msg">Le service Ministro est introuvable.\nL\'application ne peut pas démarrer.</string><string name="ministro_needed_msg">Cette application requiert le service Ministro. Voulez-vous l\'installer?</string><string name="fatal_error_msg">Votre application a rencontré une erreur fatale et ne peut pas continuer.</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-el/strings.xml" qualifiers="el"><string name="ministro_not_found_msg">Δεν ήταν δυνατή η εύρεση της υπηρεσίας Ministro. Δεν είναι δυνατή η εκκίνηση της εφαρμογής.</string><string name="fatal_error_msg">Παρουσιάστηκε ένα κρίσιμο σφάλμα και η εφαρμογή δεν μπορεί να συνεχίσει.</string><string name="ministro_needed_msg">Η εφαρμογή απαιτεί την υπηρεσία Ministro. Να εγκατασταθεί η υπηρεσία?</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-zh-rCN/strings.xml" qualifiers="zh-rCN"><string name="ministro_not_found_msg">无法找到Ministro服务。\n应用程序无法启动。</string><string name="ministro_needed_msg">此应用程序需要Ministro服务。您想安装它吗?</string><string name="fatal_error_msg">您的应用程序遇到一个致命错误导致它无法继续。</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ms/strings.xml" qualifiers="ms"><string name="ministro_not_found_msg">Tidak jumpa servis Ministro.\nAplikasi tidak boleh dimulakan.</string><string name="fatal_error_msg">Aplikasi anda menemui ralat muat dan tidak boleh diteruskan.</string><string name="ministro_needed_msg">Aplikasi ini memerlukan servis Ministro. Adakah anda ingin pasang servis itu?</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-w820dp/dimens.xml" qualifiers="w820dp-v13"><dimen name="activity_horizontal_margin">64dp</dimen></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-rs/strings.xml" qualifiers="rs"><string name="fatal_error_msg">Vaša aplikacija je naišla na fatalnu grešku i ne može nastaviti sa radom.</string><string name="ministro_needed_msg">Ova aplikacija zahteva Ministro servis. Želite li da ga instalirate?</string><string name="ministro_not_found_msg">Ministro servise nije pronađen. Aplikacija ne može biti pokrenuta.</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-de/strings.xml" qualifiers="de"><string name="ministro_not_found_msg">Ministro-Dienst wurde nicht gefunden.\nAnwendung kann nicht gestartet werden</string><string name="ministro_needed_msg">Diese Anwendung benötigt den Ministro-Dienst. Möchten Sie ihn installieren?</string><string name="fatal_error_msg">In Ihrer Anwendung ist ein schwerwiegender Fehler aufgetreten, sie kann nicht fortgesetzt werden</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-nb/strings.xml" qualifiers="nb"><string name="fatal_error_msg">Applikasjonen fikk en kritisk feil og kan ikke fortsette</string><string name="ministro_needed_msg">Denne applikasjonen krever tjenesten Ministro. Vil du installere denne?</string><string name="ministro_not_found_msg">Kan ikke finne tjenesten Ministro. Applikasjonen kan ikke starte.</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ro/strings.xml" qualifiers="ro"><string name="unsupported_android_version">Versiune Android nesuportată.</string><string name="ministro_not_found_msg">Serviciul Ministro nu poate fi găsit.\nAplicaţia nu poate porni.</string><string name="ministro_needed_msg">Această aplicaţie necesită serviciul Ministro.\nDoriţi să-l instalaţi?</string><string name="fatal_error_msg">Aplicaţia dumneavoastră a întâmpinat o eroare fatală şi nu poate continua.</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ja/strings.xml" qualifiers="ja"><string name="fatal_error_msg">アプリケーションで致命的なエラーが発生したため続行できません。</string><string name="ministro_not_found_msg">Ministroサービスが見つかりません。\nアプリケーションが起動できません。</string><string name="ministro_needed_msg">このアプリケーションにはMinistroサービスが必要です。 インストールしてもよろしいですか?</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-es/strings.xml" qualifiers="es"><string name="ministro_needed_msg">Esta aplicación requiere el servicio Ministro. Instalarlo?</string><string name="fatal_error_msg">La aplicación ha causado un error grave y no es posible continuar.</string><string name="ministro_not_found_msg">Servicio Ministro inesistente. Imposible ejecutar la aplicación.</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-nl/strings.xml" qualifiers="nl"><string name="fatal_error_msg">Er is een fatale fout in de applicatie opgetreden. De applicatie kan niet verder gaan.</string><string name="ministro_not_found_msg">De Ministro service is niet gevonden.\nDe applicatie kan niet starten.</string><string name="ministro_needed_msg">Deze applicatie maakt gebruik van de Ministro service. Wilt u deze installeren?</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-fa/strings.xml" qualifiers="fa"><string name="fatal_error_msg">خطایی اساسی در برنامه‌تان رخ داد و اجرای برنامه نمی‌تواند ادامه یابد.</string><string name="ministro_needed_msg">این نرم‌افزار به سرویس Ministro احتیاج دارد. آیا دوست دارید آن را نصب کنید؟</string><string name="ministro_not_found_msg">سرویس Ministro را پیدا نمی‌کند. برنامه نمی‌تواند آغاز شود.</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-it/strings.xml" qualifiers="it"><string name="ministro_needed_msg">Questa applicazione richiede il servizio Ministro.Installarlo?</string><string name="fatal_error_msg">L\'applicazione ha provocato un errore grave e non puo\' continuare.</string><string name="ministro_not_found_msg">Servizio Ministro inesistente. Impossibile eseguire \nl\'applicazione.</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-ru/strings.xml" qualifiers="ru"><string name="ministro_not_found_msg">Сервис Ministro не найден.\nПриложение нельзя запустить.</string><string name="fatal_error_msg">Ваше приложение столкнулось с фатальной ошибкой и не может более работать.</string><string name="ministro_needed_msg">Этому приложению необходим сервис Ministro. Вы хотите его установить?</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-zh-rTW/strings.xml" qualifiers="zh-rTW"><string name="ministro_needed_msg">此應用程序需要Ministro服務。您想安裝它嗎?</string><string name="ministro_not_found_msg">無法找到Ministro服務。\n應用程序無法啟動。</string><string name="fatal_error_msg">您的應用程序遇到一個致命錯誤導致它無法繼續。</string></file><file name="activity_jits_call" path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/layout/activity_jits_call.xml" qualifiers="" type="layout"/><file name="splash" path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/layout/splash.xml" qualifiers="" type="layout"/><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-et/strings.xml" qualifiers="et"><string name="fatal_error_msg">Programmiga juhtus fataalne viga.\nKahjuks ei saa jätkata.</string><string name="ministro_needed_msg">See programm vajab Ministro teenust.\nKas soovite paigaldada?</string><string name="ministro_not_found_msg">Ei suuda leida Ministro teenust.\nProgrammi ei saa käivitada.</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-pl/strings.xml" qualifiers="pl"><string name="ministro_not_found_msg">Usługa Ministro nie została znaleziona.\nAplikacja nie może zostać uruchomiona.</string><string name="ministro_needed_msg">Aplikacja wymaga usługi Ministro. Czy chcesz ją zainstalować?</string><string name="fatal_error_msg">Wystąpił błąd krytyczny. Aplikacja zostanie zamknięta.</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values/strings.xml" qualifiers=""><string name="ministro_not_found_msg">Can\'t find Ministro service.\nThe application can\'t start.</string><string name="ministro_needed_msg">This application requires Ministro service. Would you like to install it?</string><string name="unsupported_android_version">Unsupported Android version.</string><string name="fatal_error_msg">Your application encountered a fatal error and cannot continue.</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values/dimens.xml" qualifiers=""><dimen name="activity_vertical_margin">16dp</dimen><dimen name="activity_horizontal_margin">16dp</dimen></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-pt-rBR/strings.xml" qualifiers="pt-rBR"><string name="ministro_needed_msg">Essa aplicação requer o serviço Ministro. Gostaria de instalá-lo?</string><string name="ministro_not_found_msg">Não foi possível encontrar o serviço Ministro.\nA aplicação não pode iniciar.</string><string name="fatal_error_msg">Sua aplicação encontrou um erro fatal e não pode continuar.</string></file><file path="/home/beij/Qt5.8.0/5.8/android_armv7/src/android/java/res/values-id/strings.xml" qualifiers="id"><string name="ministro_not_found_msg">Layanan Ministro tidak bisa ditemukan.\nAplikasi tidak bisa dimulai.</string><string name="ministro_needed_msg">Aplikasi ini membutuhkan layanan Ministro. Apakah Anda ingin menginstalnya?</string><string name="fatal_error_msg">Aplikasi Anda mengalami kesalahan fatal dan tidak dapat melanjutkan.</string></file></source><source path="/home/beij/code/RocketChatMobile/android/res"><file name="notification_icon" path="/home/beij/code/RocketChatMobile/android/res/drawable-mdpi/notification_icon.png" qualifiers="mdpi-v4" type="drawable"/><file name="ic_stat_name" path="/home/beij/code/RocketChatMobile/android/res/drawable-mdpi/ic_stat_name.png" qualifiers="mdpi-v4" type="drawable"/><file name="splash" path="/home/beij/code/RocketChatMobile/android/res/drawable-mdpi/splash.png" qualifiers="mdpi-v4" type="drawable"/><file name="icon" path="/home/beij/code/RocketChatMobile/android/res/drawable-mdpi/icon.png" qualifiers="mdpi-v4" type="drawable"/><file name="notification_icon" path="/home/beij/code/RocketChatMobile/android/res/drawable-xxhdpi/notification_icon.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ic_stat_name" path="/home/beij/code/RocketChatMobile/android/res/drawable-xxhdpi/ic_stat_name.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="splash" path="/home/beij/code/RocketChatMobile/android/res/drawable-xxhdpi/splash.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="icon" path="/home/beij/code/RocketChatMobile/android/res/drawable-xxhdpi/icon.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="notification_icon" path="/home/beij/code/RocketChatMobile/android/res/drawable-hdpi/notification_icon.png" qualifiers="hdpi-v4" type="drawable"/><file name="ic_stat_name" path="/home/beij/code/RocketChatMobile/android/res/drawable-hdpi/ic_stat_name.png" qualifiers="hdpi-v4" type="drawable"/><file name="splash" path="/home/beij/code/RocketChatMobile/android/res/drawable-hdpi/splash.png" qualifiers="hdpi-v4" type="drawable"/><file name="icon" path="/home/beij/code/RocketChatMobile/android/res/drawable-hdpi/icon.png" qualifiers="hdpi-v4" type="drawable"/><file name="splash" path="/home/beij/code/RocketChatMobile/android/res/drawable-ldpi/splash.png" qualifiers="ldpi-v4" type="drawable"/><file name="icon" path="/home/beij/code/RocketChatMobile/android/res/drawable-ldpi/icon.png" qualifiers="ldpi-v4" type="drawable"/><file name="icon" path="/home/beij/code/RocketChatMobile/android/res/drawable-xxxhdpi/icon.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="notification_icon" path="/home/beij/code/RocketChatMobile/android/res/drawable-xhdpi/notification_icon.png" qualifiers="xhdpi-v4" type="drawable"/><file name="ic_stat_name" path="/home/beij/code/RocketChatMobile/android/res/drawable-xhdpi/ic_stat_name.png" qualifiers="xhdpi-v4" type="drawable"/><file name="splash" path="/home/beij/code/RocketChatMobile/android/res/drawable-xhdpi/splash.png" qualifiers="xhdpi-v4" type="drawable"/><file name="icon" path="/home/beij/code/RocketChatMobile/android/res/drawable-xhdpi/icon.png" qualifiers="xhdpi-v4" type="drawable"/><file path="/home/beij/code/RocketChatMobile/android/res/values/libs.xml" qualifiers=""><array name="bundled_in_assets">
-        
-    </array><array name="bundled_in_lib">
-        
-    </array><array name="qt_sources">
-        <item>https://download.qt.io/ministro/android/qt5/qt-5.7</item>
-    </array><array name="bundled_libs">
-        
-    </array><array name="qt_libs">
-         
-     </array></file></source><source path="/home/beij/code/RocketChatMobile/android/.build/generated/res/rs/debug"/><source path="/home/beij/code/RocketChatMobile/android/.build/generated/res/resValues/debug"/><source path="/home/beij/code/RocketChatMobile/android/.build/generated/fabric/res/debug"><file path="/home/beij/code/RocketChatMobile/android/.build/generated/fabric/res/debug/values/com_crashlytics_build_id.xml" qualifiers=""><string name="com.crashlytics.android.build_id" ns2:ignore="UnusedResources,TypographyDashes" translatable="false">630ae148-5da2-464a-abf5-bd69b290d827</string></file></source><source path="/home/beij/code/RocketChatMobile/android/.build/generated/res/google-services/debug"><file path="/home/beij/code/RocketChatMobile/android/.build/generated/res/google-services/debug/values/values.xml" qualifiers=""><string name="default_web_client_id" translatable="false">586069884887-l6b3b2irohs39s2atqa3b9be8c0a120f.apps.googleusercontent.com</string><string name="google_app_id" translatable="false">1:586069884887:android:10894ab106465b76</string><string name="firebase_database_url" translatable="false">https://ucom-1349.firebaseio.com</string><string name="google_api_key" translatable="false">AIzaSyASPowC1sMH_7wXsYTIlrDyrCoDtzm4TzY</string><string name="google_crash_reporting_api_key" translatable="false">AIzaSyASPowC1sMH_7wXsYTIlrDyrCoDtzm4TzY</string><string name="google_storage_bucket" translatable="false">ucom-1349.appspot.com</string><string name="gcm_defaultSenderId" translatable="false">586069884887</string></file></source></dataSet><dataSet config="debug" generated-set="debug$Generated"><source path="/home/beij/code/RocketChatMobile/android/src/debug/res"/></dataSet><mergedItems><configuration qualifiers=""><declare-styleable name="AlertDialog"><attr name="android:layout"/><attr format="reference" name="buttonPanelSideLayout"/><attr format="reference" name="listLayout"/><attr format="reference" name="multiChoiceItemLayout"/><attr format="reference" name="singleChoiceItemLayout"/><attr format="reference" name="listItemLayout"/><attr format="boolean" name="showTitle"/></declare-styleable><declare-styleable name="AppCompatSeekBar"><attr name="android:thumb"/><attr format="reference" name="tickMark"/><attr format="color" name="tickMarkTint"/><attr name="tickMarkTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-            
-            <enum name="add" value="16"/>
-        </attr></declare-styleable><declare-styleable name="ColorStateListItem"><attr name="android:color"/><attr format="float" name="alpha"/><attr name="android:alpha"/></declare-styleable><declare-styleable name="Spinner"><attr name="android:prompt"/><attr name="popupTheme"/><attr name="android:popupBackground"/><attr name="android:dropDownWidth"/><attr name="android:entries"/></declare-styleable><declare-styleable name="PopupWindow"><attr format="boolean" name="overlapAnchor"/><attr name="android:popupBackground"/><attr name="android:popupAnimationStyle"/></declare-styleable><declare-styleable name="DrawerArrowToggle"><attr format="color" name="color"/><attr format="boolean" name="spinBars"/><attr format="dimension" name="drawableSize"/><attr format="dimension" name="gapBetweenBars"/><attr format="dimension" name="arrowHeadLength"/><attr format="dimension" name="arrowShaftLength"/><attr format="dimension" name="barLength"/><attr format="dimension" name="thickness"/></declare-styleable><declare-styleable name="ActionBarLayout"><attr name="android:layout_gravity"/></declare-styleable><declare-styleable name="ActivityChooserView"><attr format="string" name="initialActivityCount"/><attr format="reference" name="expandActivityOverflowButtonDrawable"/></declare-styleable><declare-styleable name="ViewStubCompat"><attr name="android:layout"/><attr name="android:inflatedId"/><attr name="android:id"/></declare-styleable><declare-styleable name="AppCompatTheme"><attr format="boolean" name="windowActionBar"/><attr format="boolean" name="windowNoTitle"/><attr format="boolean" name="windowActionBarOverlay"/><attr format="boolean" name="windowActionModeOverlay"/><attr format="dimension|fraction" name="windowFixedWidthMajor"/><attr format="dimension|fraction" name="windowFixedHeightMinor"/><attr format="dimension|fraction" name="windowFixedWidthMinor"/><attr format="dimension|fraction" name="windowFixedHeightMajor"/><attr format="dimension|fraction" name="windowMinWidthMajor"/><attr format="dimension|fraction" name="windowMinWidthMinor"/><attr name="android:windowIsFloating"/><attr name="android:windowAnimationStyle"/><attr format="reference" name="actionBarTabStyle"/><attr format="reference" name="actionBarTabBarStyle"/><attr format="reference" name="actionBarTabTextStyle"/><attr format="reference" name="actionOverflowButtonStyle"/><attr format="reference" name="actionOverflowMenuStyle"/><attr format="reference" name="actionBarPopupTheme"/><attr format="reference" name="actionBarStyle"/><attr format="reference" name="actionBarSplitStyle"/><attr format="reference" name="actionBarTheme"/><attr format="reference" name="actionBarWidgetTheme"/><attr format="dimension" name="actionBarSize">
-            <enum name="wrap_content" value="0"/>
-        </attr><attr format="reference" name="actionBarDivider"/><attr format="reference" name="actionBarItemBackground"/><attr format="reference" name="actionMenuTextAppearance"/><attr format="color|reference" name="actionMenuTextColor"/><attr format="reference" name="actionModeStyle"/><attr format="reference" name="actionModeCloseButtonStyle"/><attr format="reference" name="actionModeBackground"/><attr format="reference" name="actionModeSplitBackground"/><attr format="reference" name="actionModeCloseDrawable"/><attr format="reference" name="actionModeCutDrawable"/><attr format="reference" name="actionModeCopyDrawable"/><attr format="reference" name="actionModePasteDrawable"/><attr format="reference" name="actionModeSelectAllDrawable"/><attr format="reference" name="actionModeShareDrawable"/><attr format="reference" name="actionModeFindDrawable"/><attr format="reference" name="actionModeWebSearchDrawable"/><attr format="reference" name="actionModePopupWindowStyle"/><attr format="reference" name="textAppearanceLargePopupMenu"/><attr format="reference" name="textAppearanceSmallPopupMenu"/><attr format="reference" name="textAppearancePopupMenuHeader"/><attr format="reference" name="dialogTheme"/><attr format="dimension" name="dialogPreferredPadding"/><attr format="reference" name="listDividerAlertDialog"/><attr format="reference" name="actionDropDownStyle"/><attr format="dimension" name="dropdownListPreferredItemHeight"/><attr format="reference" name="spinnerDropDownItemStyle"/><attr format="reference" name="homeAsUpIndicator"/><attr format="reference" name="actionButtonStyle"/><attr format="reference" name="buttonBarStyle"/><attr format="reference" name="buttonBarButtonStyle"/><attr format="reference" name="selectableItemBackground"/><attr format="reference" name="selectableItemBackgroundBorderless"/><attr format="reference" name="borderlessButtonStyle"/><attr format="reference" name="dividerVertical"/><attr format="reference" name="dividerHorizontal"/><attr format="reference" name="activityChooserViewStyle"/><attr format="reference" name="toolbarStyle"/><attr format="reference" name="toolbarNavigationButtonStyle"/><attr format="reference" name="popupMenuStyle"/><attr format="reference" name="popupWindowStyle"/><attr format="reference|color" name="editTextColor"/><attr format="reference" name="editTextBackground"/><attr format="reference" name="imageButtonStyle"/><attr format="reference" name="textAppearanceSearchResultTitle"/><attr format="reference" name="textAppearanceSearchResultSubtitle"/><attr format="reference|color" name="textColorSearchUrl"/><attr format="reference" name="searchViewStyle"/><attr format="dimension" name="listPreferredItemHeight"/><attr format="dimension" name="listPreferredItemHeightSmall"/><attr format="dimension" name="listPreferredItemHeightLarge"/><attr format="dimension" name="listPreferredItemPaddingLeft"/><attr format="dimension" name="listPreferredItemPaddingRight"/><attr format="reference" name="dropDownListViewStyle"/><attr format="reference" name="listPopupWindowStyle"/><attr format="reference" name="textAppearanceListItem"/><attr format="reference" name="textAppearanceListItemSmall"/><attr format="reference" name="panelBackground"/><attr format="dimension" name="panelMenuListWidth"/><attr format="reference" name="panelMenuListTheme"/><attr format="reference" name="listChoiceBackgroundIndicator"/><attr format="color" name="colorPrimary"/><attr format="color" name="colorPrimaryDark"/><attr format="color" name="colorAccent"/><attr format="color" name="colorControlNormal"/><attr format="color" name="colorControlActivated"/><attr format="color" name="colorControlHighlight"/><attr format="color" name="colorButtonNormal"/><attr format="color" name="colorSwitchThumbNormal"/><attr format="reference" name="controlBackground"/><attr format="color" name="colorBackgroundFloating"/><attr format="reference" name="alertDialogStyle"/><attr format="reference" name="alertDialogButtonGroupStyle"/><attr format="boolean" name="alertDialogCenterButtons"/><attr format="reference" name="alertDialogTheme"/><attr format="reference|color" name="textColorAlertDialogListItem"/><attr format="reference" name="buttonBarPositiveButtonStyle"/><attr format="reference" name="buttonBarNegativeButtonStyle"/><attr format="reference" name="buttonBarNeutralButtonStyle"/><attr format="reference" name="autoCompleteTextViewStyle"/><attr format="reference" name="buttonStyle"/><attr format="reference" name="buttonStyleSmall"/><attr format="reference" name="checkboxStyle"/><attr format="reference" name="checkedTextViewStyle"/><attr format="reference" name="editTextStyle"/><attr format="reference" name="radioButtonStyle"/><attr format="reference" name="ratingBarStyle"/><attr format="reference" name="ratingBarStyleIndicator"/><attr format="reference" name="ratingBarStyleSmall"/><attr format="reference" name="seekBarStyle"/><attr format="reference" name="spinnerStyle"/><attr format="reference" name="switchStyle"/><attr format="reference" name="listMenuViewStyle"/></declare-styleable><declare-styleable name="ListPopupWindow"><attr name="android:dropDownVerticalOffset"/><attr name="android:dropDownHorizontalOffset"/></declare-styleable><declare-styleable name="LoadingImageView"><attr name="imageAspectRatioAdjust">
-<enum name="none" value="0"/>
-
-<enum name="adjust_width" value="1"/>
-
-<enum name="adjust_height" value="2"/>
-
-</attr><attr format="float" name="imageAspectRatio"/><attr format="boolean" name="circleCrop"/></declare-styleable><declare-styleable name="TextAppearance"><attr name="android:textSize"/><attr name="android:textColor"/><attr name="android:textColorHint"/><attr name="android:textStyle"/><attr name="android:typeface"/><attr name="textAllCaps"/><attr name="android:shadowColor"/><attr name="android:shadowDy"/><attr name="android:shadowDx"/><attr name="android:shadowRadius"/></declare-styleable><declare-styleable name="MenuView"><attr name="android:itemTextAppearance"/><attr name="android:horizontalDivider"/><attr name="android:verticalDivider"/><attr name="android:headerBackground"/><attr name="android:itemBackground"/><attr name="android:windowAnimationStyle"/><attr name="android:itemIconDisabledAlpha"/><attr format="boolean" name="preserveIconSpacing"/><attr format="reference" name="subMenuArrow"/></declare-styleable><declare-styleable name="ActionBar"><attr name="navigationMode">
-            
-            <enum name="normal" value="0"/>
-            
-            <enum name="listMode" value="1"/>
-            
-            <enum name="tabMode" value="2"/>
-        </attr><attr name="displayOptions">
-            <flag name="none" value="0"/>
-            <flag name="useLogo" value="0x1"/>
-            <flag name="showHome" value="0x2"/>
-            <flag name="homeAsUp" value="0x4"/>
-            <flag name="showTitle" value="0x8"/>
-            <flag name="showCustom" value="0x10"/>
-            <flag name="disableHome" value="0x20"/>
-        </attr><attr name="title"/><attr format="string" name="subtitle"/><attr format="reference" name="titleTextStyle"/><attr format="reference" name="subtitleTextStyle"/><attr format="reference" name="icon"/><attr format="reference" name="logo"/><attr format="reference" name="divider"/><attr format="reference" name="background"/><attr format="reference|color" name="backgroundStacked"/><attr format="reference|color" name="backgroundSplit"/><attr format="reference" name="customNavigationLayout"/><attr name="height"/><attr format="reference" name="homeLayout"/><attr format="reference" name="progressBarStyle"/><attr format="reference" name="indeterminateProgressStyle"/><attr format="dimension" name="progressBarPadding"/><attr name="homeAsUpIndicator"/><attr format="dimension" name="itemPadding"/><attr format="boolean" name="hideOnContentScroll"/><attr format="dimension" name="contentInsetStart"/><attr format="dimension" name="contentInsetEnd"/><attr format="dimension" name="contentInsetLeft"/><attr format="dimension" name="contentInsetRight"/><attr format="dimension" name="contentInsetStartWithNavigation"/><attr format="dimension" name="contentInsetEndWithActions"/><attr format="dimension" name="elevation"/><attr format="reference" name="popupTheme"/></declare-styleable><declare-styleable name="ActionMenuItemView"><attr name="android:minWidth"/></declare-styleable><declare-styleable name="RecycleListView"><attr format="dimension" name="paddingBottomNoButtons"/><attr format="dimension" name="paddingTopNoTitle"/></declare-styleable><declare-styleable name="MenuGroup"><attr name="android:id"/><attr name="android:menuCategory"/><attr name="android:orderInCategory"/><attr name="android:checkableBehavior"/><attr name="android:visible"/><attr name="android:enabled"/></declare-styleable><declare-styleable name="Toolbar"><attr format="reference" name="titleTextAppearance"/><attr format="reference" name="subtitleTextAppearance"/><attr name="title"/><attr name="subtitle"/><attr name="android:gravity"/><attr format="dimension" name="titleMargin"/><attr format="dimension" name="titleMarginStart"/><attr format="dimension" name="titleMarginEnd"/><attr format="dimension" name="titleMarginTop"/><attr format="dimension" name="titleMarginBottom"/><attr format="dimension" name="titleMargins"/><attr name="contentInsetStart"/><attr name="contentInsetEnd"/><attr name="contentInsetLeft"/><attr name="contentInsetRight"/><attr name="contentInsetStartWithNavigation"/><attr name="contentInsetEndWithActions"/><attr format="dimension" name="maxButtonHeight"/><attr name="buttonGravity">
-            
-            <flag name="top" value="0x30"/>
-            
-            <flag name="bottom" value="0x50"/>
-        </attr><attr format="reference" name="collapseIcon"/><attr format="string" name="collapseContentDescription"/><attr name="popupTheme"/><attr format="reference" name="navigationIcon"/><attr format="string" name="navigationContentDescription"/><attr name="logo"/><attr format="string" name="logoDescription"/><attr format="color" name="titleTextColor"/><attr format="color" name="subtitleTextColor"/><attr name="android:minHeight"/></declare-styleable><declare-styleable name="LinearLayoutCompat_Layout"><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_weight"/><attr name="android:layout_gravity"/></declare-styleable><declare-styleable name="AppCompatTextView"><attr format="reference|boolean" name="textAllCaps"/><attr name="android:textAppearance"/></declare-styleable><declare-styleable name="MenuItem"><attr name="android:id"/><attr name="android:menuCategory"/><attr name="android:orderInCategory"/><attr name="android:title"/><attr name="android:titleCondensed"/><attr name="android:icon"/><attr name="android:alphabeticShortcut"/><attr name="android:numericShortcut"/><attr name="android:checkable"/><attr name="android:checked"/><attr name="android:visible"/><attr name="android:enabled"/><attr name="android:onClick"/><attr name="showAsAction">
-            
-            <flag name="never" value="0"/>
-            
-            <flag name="ifRoom" value="1"/>
-            
-            <flag name="always" value="2"/>
-            
-            <flag name="withText" value="4"/>
-            
-            <flag name="collapseActionView" value="8"/>
-        </attr><attr format="reference" name="actionLayout"/><attr format="string" name="actionViewClass"/><attr format="string" name="actionProviderClass"/></declare-styleable><declare-styleable name="ButtonBarLayout"><attr format="boolean" name="allowStacking"/></declare-styleable><declare-styleable name="ViewBackgroundHelper"><attr name="android:background"/><attr format="color" name="backgroundTint"/><attr name="backgroundTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-        </attr></declare-styleable><declare-styleable name="View"><attr format="dimension" name="paddingStart"/><attr format="dimension" name="paddingEnd"/><attr name="android:focusable"/><attr format="reference" name="theme"/><attr name="android:theme"/></declare-styleable><declare-styleable name="AppCompatImageView"><attr name="android:src"/><attr format="reference" name="srcCompat"/></declare-styleable><declare-styleable name="PopupWindowBackgroundState"><attr format="boolean" name="state_above_anchor"/></declare-styleable><declare-styleable name="SignInButton"><attr format="reference" name="buttonSize">
-<enum name="standard" value="0"/>
-
-<enum name="wide" value="1"/>
-
-<enum name="icon_only" value="2"/>
-
-</attr><attr format="reference" name="colorScheme">
-<enum name="dark" value="0"/>
-
-<enum name="light" value="1"/>
-
-<enum name="auto" value="2"/>
-
-</attr><attr format="reference|string" name="scopeUris"/></declare-styleable><declare-styleable name="LinearLayoutCompat"><attr name="android:orientation"/><attr name="android:gravity"/><attr name="android:baselineAligned"/><attr name="android:baselineAlignedChildIndex"/><attr name="android:weightSum"/><attr format="boolean" name="measureWithLargestChild"/><attr name="divider"/><attr name="showDividers">
-            <flag name="none" value="0"/>
-            <flag name="beginning" value="1"/>
-            <flag name="middle" value="2"/>
-            <flag name="end" value="4"/>
-        </attr><attr format="dimension" name="dividerPadding"/></declare-styleable><declare-styleable name="SearchView"><attr format="reference" name="layout"/><attr format="boolean" name="iconifiedByDefault"/><attr name="android:maxWidth"/><attr format="string" name="queryHint"/><attr format="string" name="defaultQueryHint"/><attr name="android:imeOptions"/><attr name="android:inputType"/><attr format="reference" name="closeIcon"/><attr format="reference" name="goIcon"/><attr format="reference" name="searchIcon"/><attr format="reference" name="searchHintIcon"/><attr format="reference" name="voiceIcon"/><attr format="reference" name="commitIcon"/><attr format="reference" name="suggestionRowLayout"/><attr format="reference" name="queryBackground"/><attr format="reference" name="submitBackground"/><attr name="android:focusable"/></declare-styleable><declare-styleable name="ActionMode"><attr name="titleTextStyle"/><attr name="subtitleTextStyle"/><attr name="background"/><attr name="backgroundSplit"/><attr name="height"/><attr format="reference" name="closeItemLayout"/></declare-styleable><declare-styleable name="ActionMenuView"/><declare-styleable name="CompoundButton"><attr name="android:button"/><attr format="color" name="buttonTint"/><attr name="buttonTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-        </attr></declare-styleable><declare-styleable name="AppCompatTextHelper"><attr name="android:drawableLeft"/><attr name="android:drawableTop"/><attr name="android:drawableRight"/><attr name="android:drawableBottom"/><attr name="android:drawableStart"/><attr name="android:drawableEnd"/><attr name="android:textAppearance"/></declare-styleable><declare-styleable name="SwitchCompat"><attr name="android:thumb"/><attr format="color" name="thumbTint"/><attr name="thumbTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-            
-            <enum name="add" value="16"/>
-        </attr><attr format="reference" name="track"/><attr format="color" name="trackTint"/><attr name="trackTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-            
-            <enum name="add" value="16"/>
-        </attr><attr name="android:textOn"/><attr name="android:textOff"/><attr format="dimension" name="thumbTextPadding"/><attr format="reference" name="switchTextAppearance"/><attr format="dimension" name="switchMinWidth"/><attr format="dimension" name="switchPadding"/><attr format="boolean" name="splitTrack"/><attr format="boolean" name="showText"/></declare-styleable></configuration></mergedItems></merger>
\ No newline at end of file
diff --git a/android/.build/intermediates/incremental/mergeDebugShaders/merger.xml b/android/.build/intermediates/incremental/mergeDebugShaders/merger.xml
deleted file mode 100644
index 6080fe25d63e6a2605f127e07d9d978846684712..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/incremental/mergeDebugShaders/merger.xml
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<merger version="3"><dataSet config="main"><source path="/home/beij/code/RocketChatMobile/android/src/main/shaders"/></dataSet><dataSet config="debug"><source path="/home/beij/code/RocketChatMobile/android/src/debug/shaders"/></dataSet></merger>
\ No newline at end of file
diff --git a/android/.build/intermediates/manifest/androidTest/debug/AndroidManifest.xml b/android/.build/intermediates/manifest/androidTest/debug/AndroidManifest.xml
deleted file mode 100644
index 39160db0dd0f07541b1c8ee137117e5be5cd49e4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/manifest/androidTest/debug/AndroidManifest.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="at.gv.ucom.test">
-
-    <uses-sdk android:minSdkVersion="17" android:targetSdkVersion="23" />
-
-    <application>
-        <uses-library android:name="android.test.runner" />
-    </application>
-
-    <instrumentation android:name="android.test.InstrumentationTestRunner"
-                     android:targetPackage="at.gv.ucom"
-                     android:handleProfiling="false"
-                     android:functionalTest="false"
-                     android:label="Tests for at.gv.ucom"/>
-</manifest>
diff --git a/android/.build/intermediates/manifests/full/debug/AndroidManifest.xml b/android/.build/intermediates/manifests/full/debug/AndroidManifest.xml
deleted file mode 100644
index 628a9fdcf9824a18ecaa9b4e51edfb00b790541a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/manifests/full/debug/AndroidManifest.xml
+++ /dev/null
@@ -1,287 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="at.gv.ucom"
-    android:installLocation="auto"
-    android:versionCode="1"
-    android:versionName="0.5" >
-
-    <uses-sdk
-        android:minSdkVersion="17"
-        android:targetSdkVersion="23" />
-
-    <supports-screens
-        android:anyDensity="true"
-        android:largeScreens="true"
-        android:normalScreens="true"
-        android:smallScreens="true" />
-
-    <!--
-         The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
-         Remove the comment if you do not require these default permissions.
-    -->
-    <!-- %%INSERT_PERMISSIONS -->
-
-
-    <!--
-         The following comment will be replaced upon deployment with default features based on the dependencies of the application.
-         Remove the comment if you do not require these default features.
-    -->
-    <!-- %%INSERT_FEATURES -->
-
-    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
-    <uses-permission android:name="android.permission.WAKE_LOCK" />
-    <uses-permission android:name="android.permission.CAMERA" />
-    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
-    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
-    <uses-permission android:name="android.permission.INTERNET" />
-    <uses-permission android:name="android.permission.RECORD_AUDIO" />
-    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
-
-    <uses-feature
-        android:name="android.hardware.camera"
-        android:required="false" />
-    <uses-feature
-        android:name="android.hardware.camera.autofocus"
-        android:required="false" />
-    <uses-feature
-        android:name="android.hardware.microphone"
-        android:required="false" />
-    <uses-feature
-        android:glEsVersion="0x00020000"
-        android:required="true" />
-
-    <permission
-        android:name="com.name.name.permission.C2D_MESSAGE"
-        android:protectionLevel="signature" />
-
-    <uses-permission android:name="com.name.name.permission.C2D_MESSAGE" />
-    <!-- for android -->
-    <!-- <uses-permission android:name="com.android.launcher.permission.READ_SETTINGS"/> -->
-    <!-- <uses-permission android:name="com.android.launcher.permission.WRITE_SETTINGS"/> -->
-    <!-- <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" /> -->
-    <!-- <uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" /> -->
-    <!-- for Samsung -->
-    <uses-permission android:name="com.sec.android.provider.badge.permission.READ" />
-    <uses-permission android:name="com.sec.android.provider.badge.permission.WRITE" /> <!-- for htc -->
-    <uses-permission android:name="com.htc.launcher.permission.READ_SETTINGS" />
-    <uses-permission android:name="com.htc.launcher.permission.UPDATE_SHORTCUT" /> <!-- for sony -->
-    <uses-permission android:name="com.sonyericsson.home.permission.BROADCAST_BADGE" />
-    <uses-permission android:name="com.sonymobile.home.permission.PROVIDER_INSERT_BADGE" /> <!-- for apex -->
-    <uses-permission android:name="com.anddoes.launcher.permission.UPDATE_COUNT" /> <!-- for solid -->
-    <uses-permission android:name="com.majeur.launcher.permission.UPDATE_BADGE" /> <!-- for huawei -->
-    <uses-permission android:name="com.huawei.android.launcher.permission.CHANGE_BADGE" />
-    <uses-permission android:name="com.huawei.android.launcher.permission.READ_SETTINGS" />
-    <uses-permission android:name="com.huawei.android.launcher.permission.WRITE_SETTINGS" /> <!-- for ZUK -->
-    <uses-permission android:name="android.permission.READ_APP_BADGE" />
-
-    <permission
-        android:name="at.gv.ucom.permission.C2D_MESSAGE"
-        android:protectionLevel="signature" />
-
-    <uses-permission android:name="at.gv.ucom.permission.C2D_MESSAGE" />
-
-    <application
-        android:name="org.qtproject.qt5.android.bindings.QtApplication"
-        android:hardwareAccelerated="true"
-        android:icon="@drawable/icon"
-        android:label="ucom" >
-        <activity
-            android:name="at.gv.ucom.MainActivity"
-            android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation"
-            android:label="ucom"
-            android:launchMode="singleTop"
-            android:screenOrientation="unspecified" >
-            <intent-filter>
-                <action android:name="android.intent.action.MAIN" />
-
-                <category android:name="android.intent.category.LAUNCHER" />
-            </intent-filter>
-
-            <!-- Application arguments -->
-            <!-- meta-data android:name="android.app.arguments" android:value="arg1 arg2 arg3"/ -->
-            <!-- Application arguments -->
-            <meta-data
-                android:name="android.app.lib_name"
-                android:value="-- %%INSERT_APP_LIB_NAME%% --" />
-            <meta-data
-                android:name="android.app.qt_sources_resource_id"
-                android:resource="@array/qt_sources" />
-            <meta-data
-                android:name="android.app.repository"
-                android:value="default" />
-            <meta-data
-                android:name="android.app.qt_libs_resource_id"
-                android:resource="@array/qt_libs" />
-            <meta-data
-                android:name="android.app.bundled_libs_resource_id"
-                android:resource="@array/bundled_libs" />
-            <!-- Deploy Qt libs as part of package -->
-            <meta-data
-                android:name="android.app.bundle_local_qt_libs"
-                android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --" />
-            <meta-data
-                android:name="android.app.bundled_in_lib_resource_id"
-                android:resource="@array/bundled_in_lib" />
-            <meta-data
-                android:name="android.app.bundled_in_assets_resource_id"
-                android:resource="@array/bundled_in_assets" />
-            <!-- Run with local libs -->
-            <meta-data
-                android:name="android.app.use_local_qt_libs"
-                android:value="-- %%USE_LOCAL_QT_LIBS%% --" />
-            <meta-data
-                android:name="android.app.libs_prefix"
-                android:value="/data/local/tmp/qt/" />
-            <meta-data
-                android:name="android.app.load_local_libs"
-                android:value="-- %%INSERT_LOCAL_LIBS%% --" />
-            <meta-data
-                android:name="android.app.load_local_jars"
-                android:value="-- %%INSERT_LOCAL_JARS%% --" />
-            <meta-data
-                android:name="android.app.static_init_classes"
-                android:value="-- %%INSERT_INIT_CLASSES%% --" />
-            <!-- Messages maps -->
-            <meta-data
-                android:name="android.app.ministro_not_found_msg"
-                android:value="@string/ministro_not_found_msg" />
-            <meta-data
-                android:name="android.app.ministro_needed_msg"
-                android:value="@string/ministro_needed_msg" />
-            <meta-data
-                android:name="android.app.fatal_error_msg"
-                android:value="@string/fatal_error_msg" />
-            <!-- Messages maps -->
-
-
-            <!-- Splash screen -->
-            <meta-data
-                android:name="android.app.splash_screen_drawable"
-                android:resource="@drawable/splash" />
-            <meta-data
-                android:name="android.app.splash_screen_sticky"
-                android:value="false" />
-            <!-- Splash screen -->
-
-
-            <!-- Background running -->
-            <!--
-                 Warning: changing this value to true may cause unexpected crashes if the
-                          application still try to draw after
-                          "applicationStateChanged(Qt::ApplicationSuspended)"
-                          signal is sent!
-            -->
-            <meta-data
-                android:name="android.app.background_running"
-                android:value="false" />
-            <!-- Background running -->
-
-
-            <!-- auto screen scale factor -->
-            <meta-data
-                android:name="android.app.auto_screen_scale_factor"
-                android:value="false" />
-            <!-- auto screen scale factor -->
-
-
-            <!-- extract android style -->
-            <!--
-                 available android:values :
-                * full - useful QWidget & Quick Controls 1 apps
-                * minimal - useful for Quick Controls 2 apps, it is much faster than "full"
-                * none - useful for apps that don't use any of the above Qt modules
-            -->
-            <meta-data
-                android:name="android.app.extract_android_style"
-                android:value="minimal" />
-            <!-- extract android style -->
-        </activity>
-
-        <receiver
-            android:name="at.gv.ucom.GcmBroadcastReceiver"
-            android:permission="com.google.android.c2dm.permission.SEND" >
-            <intent-filter>
-
-                <!-- Receives the actual messages. -->
-                <action android:name="com.google.android.c2dm.intent.RECEIVE" />
-
-                <category android:name="ucom" />
-            </intent-filter>
-        </receiver>
-
-        <!-- For adding service(s) please check: https://wiki.qt.io/AndroidServices -->
-        <service android:name="at.gv.ucom.GcmIntentService" />
-
-        <meta-data
-            android:name="io.fabric.ApiKey"
-            android:value="955eb00aa44a7eb13db6ba408ffcae7c1680a056" />
-        <!--
- ATTENTION: This was auto-generated to add Google Play services to your project for
-     App Indexing.  See https://g.co/AppIndexing/AndroidStudio for more information.
-        -->
-        <meta-data
-            android:name="com.google.android.gms.version"
-            android:value="@integer/google_play_services_version" />
-
-        <activity
-            android:name="com.google.android.gms.common.api.GoogleApiActivity"
-            android:exported="false"
-            android:theme="@android:style/Theme.Translucent.NoTitleBar" />
-
-        <receiver
-            android:name="com.google.android.gms.measurement.AppMeasurementReceiver"
-            android:enabled="true"
-            android:exported="false" >
-        </receiver>
-        <receiver
-            android:name="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver"
-            android:enabled="true"
-            android:permission="android.permission.INSTALL_PACKAGES" >
-            <intent-filter>
-                <action android:name="com.android.vending.INSTALL_REFERRER" />
-            </intent-filter>
-        </receiver>
-
-        <service
-            android:name="com.google.android.gms.measurement.AppMeasurementService"
-            android:enabled="true"
-            android:exported="false" />
-
-        <receiver
-            android:name="com.google.firebase.iid.FirebaseInstanceIdReceiver"
-            android:exported="true"
-            android:permission="com.google.android.c2dm.permission.SEND" >
-            <intent-filter>
-                <action android:name="com.google.android.c2dm.intent.RECEIVE" />
-                <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
-
-                <category android:name="at.gv.ucom" />
-            </intent-filter>
-        </receiver>
-        <!--
- Internal (not exported) receiver used by the app to start its own exported services
-             without risk of being spoofed.
-        -->
-        <receiver
-            android:name="com.google.firebase.iid.FirebaseInstanceIdInternalReceiver"
-            android:exported="false" />
-        <!--
- FirebaseInstanceIdService performs security checks at runtime,
-             no need for explicit permissions despite exported="true"
-        -->
-        <service
-            android:name="com.google.firebase.iid.FirebaseInstanceIdService"
-            android:exported="true" >
-            <intent-filter android:priority="-500" >
-                <action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
-            </intent-filter>
-        </service>
-
-        <provider
-            android:name="com.google.firebase.provider.FirebaseInitProvider"
-            android:authorities="at.gv.ucom.firebaseinitprovider"
-            android:exported="false"
-            android:initOrder="100" />
-    </application>
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/manifests/instant-run/debug/AndroidManifest.xml b/android/.build/intermediates/manifests/instant-run/debug/AndroidManifest.xml
deleted file mode 100644
index d8b79f758e046c0f48c7efa2b88c039e7f734082..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/manifests/instant-run/debug/AndroidManifest.xml
+++ /dev/null
@@ -1,288 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="at.gv.ucom"
-    android:installLocation="auto"
-    android:versionCode="1"
-    android:versionName="0.5" >
-
-    <uses-sdk
-        android:minSdkVersion="17"
-        android:targetSdkVersion="23" />
-
-    <supports-screens
-        android:anyDensity="true"
-        android:largeScreens="true"
-        android:normalScreens="true"
-        android:smallScreens="true" />
-
-    <!--
-         The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
-         Remove the comment if you do not require these default permissions.
-    -->
-    <!-- %%INSERT_PERMISSIONS -->
-
-
-    <!--
-         The following comment will be replaced upon deployment with default features based on the dependencies of the application.
-         Remove the comment if you do not require these default features.
-    -->
-    <!-- %%INSERT_FEATURES -->
-
-    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
-    <uses-permission android:name="android.permission.WAKE_LOCK" />
-    <uses-permission android:name="android.permission.CAMERA" />
-    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
-    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
-    <uses-permission android:name="android.permission.INTERNET" />
-    <uses-permission android:name="android.permission.RECORD_AUDIO" />
-    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
-
-    <uses-feature
-        android:name="android.hardware.camera"
-        android:required="false" />
-    <uses-feature
-        android:name="android.hardware.camera.autofocus"
-        android:required="false" />
-    <uses-feature
-        android:name="android.hardware.microphone"
-        android:required="false" />
-    <uses-feature
-        android:glEsVersion="0x00020000"
-        android:required="true" />
-
-    <permission
-        android:name="com.name.name.permission.C2D_MESSAGE"
-        android:protectionLevel="signature" />
-
-    <uses-permission android:name="com.name.name.permission.C2D_MESSAGE" />
-    <!-- for android -->
-    <!-- <uses-permission android:name="com.android.launcher.permission.READ_SETTINGS"/> -->
-    <!-- <uses-permission android:name="com.android.launcher.permission.WRITE_SETTINGS"/> -->
-    <!-- <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" /> -->
-    <!-- <uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" /> -->
-    <!-- for Samsung -->
-    <uses-permission android:name="com.sec.android.provider.badge.permission.READ" />
-    <uses-permission android:name="com.sec.android.provider.badge.permission.WRITE" /> <!-- for htc -->
-    <uses-permission android:name="com.htc.launcher.permission.READ_SETTINGS" />
-    <uses-permission android:name="com.htc.launcher.permission.UPDATE_SHORTCUT" /> <!-- for sony -->
-    <uses-permission android:name="com.sonyericsson.home.permission.BROADCAST_BADGE" />
-    <uses-permission android:name="com.sonymobile.home.permission.PROVIDER_INSERT_BADGE" /> <!-- for apex -->
-    <uses-permission android:name="com.anddoes.launcher.permission.UPDATE_COUNT" /> <!-- for solid -->
-    <uses-permission android:name="com.majeur.launcher.permission.UPDATE_BADGE" /> <!-- for huawei -->
-    <uses-permission android:name="com.huawei.android.launcher.permission.CHANGE_BADGE" />
-    <uses-permission android:name="com.huawei.android.launcher.permission.READ_SETTINGS" />
-    <uses-permission android:name="com.huawei.android.launcher.permission.WRITE_SETTINGS" /> <!-- for ZUK -->
-    <uses-permission android:name="android.permission.READ_APP_BADGE" />
-
-    <permission
-        android:name="at.gv.ucom.permission.C2D_MESSAGE"
-        android:protectionLevel="signature" />
-
-    <uses-permission android:name="at.gv.ucom.permission.C2D_MESSAGE" />
-
-    <application
-        name="org.qtproject.qt5.android.bindings.QtApplication"
-        android:name="com.android.tools.fd.runtime.BootstrapApplication"
-        android:hardwareAccelerated="true"
-        android:icon="@drawable/icon"
-        android:label="@string/app_name" >
-        <activity
-            android:name="at.gv.ucom.MainActivity"
-            android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation"
-            android:label="@string/app_name"
-            android:launchMode="singleTop"
-            android:screenOrientation="unspecified" >
-            <intent-filter>
-                <action android:name="android.intent.action.MAIN" />
-
-                <category android:name="android.intent.category.LAUNCHER" />
-            </intent-filter>
-
-            <!-- Application arguments -->
-            <!-- meta-data android:name="android.app.arguments" android:value="arg1 arg2 arg3"/ -->
-            <!-- Application arguments -->
-            <meta-data
-                android:name="android.app.lib_name"
-                android:value="-- %%INSERT_APP_LIB_NAME%% --" />
-            <meta-data
-                android:name="android.app.qt_sources_resource_id"
-                android:resource="@array/qt_sources" />
-            <meta-data
-                android:name="android.app.repository"
-                android:value="default" />
-            <meta-data
-                android:name="android.app.qt_libs_resource_id"
-                android:resource="@array/qt_libs" />
-            <meta-data
-                android:name="android.app.bundled_libs_resource_id"
-                android:resource="@array/bundled_libs" />
-            <!-- Deploy Qt libs as part of package -->
-            <meta-data
-                android:name="android.app.bundle_local_qt_libs"
-                android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --" />
-            <meta-data
-                android:name="android.app.bundled_in_lib_resource_id"
-                android:resource="@array/bundled_in_lib" />
-            <meta-data
-                android:name="android.app.bundled_in_assets_resource_id"
-                android:resource="@array/bundled_in_assets" />
-            <!-- Run with local libs -->
-            <meta-data
-                android:name="android.app.use_local_qt_libs"
-                android:value="-- %%USE_LOCAL_QT_LIBS%% --" />
-            <meta-data
-                android:name="android.app.libs_prefix"
-                android:value="/data/local/tmp/qt/" />
-            <meta-data
-                android:name="android.app.load_local_libs"
-                android:value="-- %%INSERT_LOCAL_LIBS%% --" />
-            <meta-data
-                android:name="android.app.load_local_jars"
-                android:value="-- %%INSERT_LOCAL_JARS%% --" />
-            <meta-data
-                android:name="android.app.static_init_classes"
-                android:value="-- %%INSERT_INIT_CLASSES%% --" />
-            <!-- Messages maps -->
-            <meta-data
-                android:name="android.app.ministro_not_found_msg"
-                android:value="@string/ministro_not_found_msg" />
-            <meta-data
-                android:name="android.app.ministro_needed_msg"
-                android:value="@string/ministro_needed_msg" />
-            <meta-data
-                android:name="android.app.fatal_error_msg"
-                android:value="@string/fatal_error_msg" />
-            <!-- Messages maps -->
-
-
-            <!-- Splash screen -->
-            <meta-data
-                android:name="android.app.splash_screen_drawable"
-                android:resource="@drawable/splash" />
-            <meta-data
-                android:name="android.app.splash_screen_sticky"
-                android:value="false" />
-            <!-- Splash screen -->
-
-
-            <!-- Background running -->
-            <!--
-                 Warning: changing this value to true may cause unexpected crashes if the
-                          application still try to draw after
-                          "applicationStateChanged(Qt::ApplicationSuspended)"
-                          signal is sent!
-            -->
-            <meta-data
-                android:name="android.app.background_running"
-                android:value="false" />
-            <!-- Background running -->
-
-
-            <!-- auto screen scale factor -->
-            <meta-data
-                android:name="android.app.auto_screen_scale_factor"
-                android:value="false" />
-            <!-- auto screen scale factor -->
-
-
-            <!-- extract android style -->
-            <!--
-                 available android:values :
-                * full - useful QWidget & Quick Controls 1 apps
-                * minimal - useful for Quick Controls 2 apps, it is much faster than "full"
-                * none - useful for apps that don't use any of the above Qt modules
-            -->
-            <meta-data
-                android:name="android.app.extract_android_style"
-                android:value="minimal" />
-            <!-- extract android style -->
-        </activity>
-
-        <receiver
-            android:name="at.gv.ucom.GcmBroadcastReceiver"
-            android:permission="com.google.android.c2dm.permission.SEND" >
-            <intent-filter>
-
-                <!-- Receives the actual messages. -->
-                <action android:name="com.google.android.c2dm.intent.RECEIVE" />
-
-                <category android:name="ucom" />
-            </intent-filter>
-        </receiver>
-
-        <!-- For adding service(s) please check: https://wiki.qt.io/AndroidServices -->
-        <service android:name="at.gv.ucom.GcmIntentService" />
-
-        <meta-data
-            android:name="io.fabric.ApiKey"
-            android:value="955eb00aa44a7eb13db6ba408ffcae7c1680a056" />
-        <!--
- ATTENTION: This was auto-generated to add Google Play services to your project for
-     App Indexing.  See https://g.co/AppIndexing/AndroidStudio for more information.
-        -->
-        <meta-data
-            android:name="com.google.android.gms.version"
-            android:value="@integer/google_play_services_version" />
-
-        <activity
-            android:name="com.google.android.gms.common.api.GoogleApiActivity"
-            android:exported="false"
-            android:theme="@android:style/Theme.Translucent.NoTitleBar" />
-
-        <receiver
-            android:name="com.google.android.gms.measurement.AppMeasurementReceiver"
-            android:enabled="true"
-            android:exported="false" >
-        </receiver>
-        <receiver
-            android:name="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver"
-            android:enabled="true"
-            android:permission="android.permission.INSTALL_PACKAGES" >
-            <intent-filter>
-                <action android:name="com.android.vending.INSTALL_REFERRER" />
-            </intent-filter>
-        </receiver>
-
-        <service
-            android:name="com.google.android.gms.measurement.AppMeasurementService"
-            android:enabled="true"
-            android:exported="false" />
-
-        <receiver
-            android:name="com.google.firebase.iid.FirebaseInstanceIdReceiver"
-            android:exported="true"
-            android:permission="com.google.android.c2dm.permission.SEND" >
-            <intent-filter>
-                <action android:name="com.google.android.c2dm.intent.RECEIVE" />
-                <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
-
-                <category android:name="at.gv.ucom" />
-            </intent-filter>
-        </receiver>
-        <!--
- Internal (not exported) receiver used by the app to start its own exported services
-             without risk of being spoofed.
-        -->
-        <receiver
-            android:name="com.google.firebase.iid.FirebaseInstanceIdInternalReceiver"
-            android:exported="false" />
-        <!--
- FirebaseInstanceIdService performs security checks at runtime,
-             no need for explicit permissions despite exported="true"
-        -->
-        <service
-            android:name="com.google.firebase.iid.FirebaseInstanceIdService"
-            android:exported="true" >
-            <intent-filter android:priority="-500" >
-                <action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
-            </intent-filter>
-        </service>
-
-        <provider
-            android:name="com.google.firebase.provider.FirebaseInitProvider"
-            android:authorities="at.gv.ucom.firebaseinitprovider"
-            android:exported="false"
-            android:initOrder="100" />
-    </application>
-
-</manifest>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/anim/abc_fade_in.xml b/android/.build/intermediates/res/merged/debug/anim/abc_fade_in.xml
deleted file mode 100644
index da7ee295c993b43e8fb6b625c1fa20d53a149ca2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/anim/abc_fade_in.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<alpha xmlns:android="http://schemas.android.com/apk/res/android"
-       android:interpolator="@android:anim/decelerate_interpolator"
-       android:fromAlpha="0.0" android:toAlpha="1.0"
-       android:duration="@android:integer/config_mediumAnimTime" />
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/anim/abc_fade_out.xml b/android/.build/intermediates/res/merged/debug/anim/abc_fade_out.xml
deleted file mode 100644
index c81b39a9b130b6735dc6aa88e204c671d68ec804..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/anim/abc_fade_out.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<alpha xmlns:android="http://schemas.android.com/apk/res/android"
-       android:interpolator="@android:anim/decelerate_interpolator"
-       android:fromAlpha="1.0" android:toAlpha="0.0"
-       android:duration="@android:integer/config_mediumAnimTime" />
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml b/android/.build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml
deleted file mode 100644
index 79d02d44ca62c547fe61a481e8746125cb00471b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/* //device/apps/common/res/anim/fade_in.xml
-**
-** Copyright 2014, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License"); 
-** you may not use this file except in compliance with the License. 
-** You may obtain a copy of the License at 
-**
-**     http://www.apache.org/licenses/LICENSE-2.0 
-**
-** Unless required by applicable law or agreed to in writing, software 
-** distributed under the License is distributed on an "AS IS" BASIS, 
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
-** See the License for the specific language governing permissions and 
-** limitations under the License.
-*/
--->
-
-<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false">
-    <scale 	android:interpolator="@android:anim/decelerate_interpolator"
-              android:fromXScale="0.9" android:toXScale="1.0"
-              android:fromYScale="0.9" android:toYScale="1.0"
-              android:pivotX="50%" android:pivotY="100%"
-              android:duration="@integer/abc_config_activityDefaultDur" />
-    <alpha 	android:interpolator="@android:anim/decelerate_interpolator"
-              android:fromAlpha="0.0" android:toAlpha="1.0"
-              android:duration="@integer/abc_config_activityShortDur" />
-</set>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/anim/abc_popup_enter.xml b/android/.build/intermediates/res/merged/debug/anim/abc_popup_enter.xml
deleted file mode 100644
index 91664da17ee4089835a4f5492a4321d64cc05b9e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/anim/abc_popup_enter.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<set xmlns:android="http://schemas.android.com/apk/res/android"
-     android:shareInterpolator="false" >
-    <alpha android:fromAlpha="0.0" android:toAlpha="1.0"
-           android:interpolator="@android:anim/decelerate_interpolator"
-           android:duration="@integer/abc_config_activityShortDur" />
-</set>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/anim/abc_popup_exit.xml b/android/.build/intermediates/res/merged/debug/anim/abc_popup_exit.xml
deleted file mode 100644
index db7e8073a84ac1b4b872c3b7466da0a3a6bb1ee2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/anim/abc_popup_exit.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<set xmlns:android="http://schemas.android.com/apk/res/android"
-     android:shareInterpolator="false" >
-    <alpha android:fromAlpha="1.0" android:toAlpha="0.0"
-           android:interpolator="@android:anim/decelerate_interpolator"
-           android:duration="@integer/abc_config_activityShortDur" />
-</set>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml b/android/.build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml
deleted file mode 100644
index 9a23cd2025a2033b75e4ed307f3a7aa34cd02f1e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2014 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
-  -->
-
-<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false">
-    <scale 	android:interpolator="@android:anim/decelerate_interpolator"
-              android:fromXScale="1.0" android:toXScale="0.9"
-              android:fromYScale="1.0" android:toYScale="0.9"
-              android:pivotX="50%" android:pivotY="100%"
-              android:duration="@integer/abc_config_activityDefaultDur" />
-    <alpha 	android:interpolator="@android:anim/decelerate_interpolator"
-              android:fromAlpha="1.0" android:toAlpha="0.0"
-              android:duration="@integer/abc_config_activityShortDur" />
-</set>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml b/android/.build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml
deleted file mode 100644
index 1afa8febc526960f8125ff4204c6bc069a187b54..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<translate xmlns:android="http://schemas.android.com/apk/res/android"
-           android:interpolator="@android:anim/decelerate_interpolator"
-           android:fromYDelta="50%p" android:toYDelta="0"
-           android:duration="@android:integer/config_mediumAnimTime"/>
diff --git a/android/.build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml b/android/.build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml
deleted file mode 100644
index ab824f2e4acb8fb32931ea8b9c27df0e8fbe533b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<translate xmlns:android="http://schemas.android.com/apk/res/android"
-           android:interpolator="@android:anim/decelerate_interpolator"
-           android:fromYDelta="-50%p" android:toYDelta="0"
-           android:duration="@android:integer/config_mediumAnimTime"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml b/android/.build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml
deleted file mode 100644
index b309fe89c64157258e11f7c5672ffce1c6977042..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<translate xmlns:android="http://schemas.android.com/apk/res/android"
-           android:interpolator="@android:anim/accelerate_interpolator"
-           android:fromYDelta="0" android:toYDelta="50%p"
-           android:duration="@android:integer/config_mediumAnimTime"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml b/android/.build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml
deleted file mode 100644
index e84d1c7fb6eb6de28fde7ad0c474fb12ce3ac7b3..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<translate xmlns:android="http://schemas.android.com/apk/res/android"
-           android:interpolator="@android:anim/accelerate_interpolator"
-           android:fromYDelta="0" android:toYDelta="-50%p"
-           android:duration="@android:integer/config_mediumAnimTime"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml b/android/.build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml
deleted file mode 100644
index e0160766e08cf3988b3b8804ac2fd9879c3d706c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_accelerated="false" android:color="@color/background_material_dark" />
-    <item android:color="@android:color/transparent" />
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml b/android/.build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml
deleted file mode 100644
index 290faf1a0e0ab88ba0c2a5c6172600feb0a5e794..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_accelerated="false" android:color="@color/background_material_light" />
-    <item android:color="@android:color/transparent" />
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/color-v23/abc_btn_colored_borderless_text_material.xml b/android/.build/intermediates/res/merged/debug/color-v23/abc_btn_colored_borderless_text_material.xml
deleted file mode 100644
index 468b155d3fab8c45e1627172a5a77a9d6333f6ec..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color-v23/abc_btn_colored_borderless_text_material.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!-- Used for the text of a borderless colored button. -->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="?android:attr/textColorSecondary" android:alpha="?android:attr/disabledAlpha"/>
-    <item android:color="?attr/colorAccent"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color-v23/abc_btn_colored_text_material.xml b/android/.build/intermediates/res/merged/debug/color-v23/abc_btn_colored_text_material.xml
deleted file mode 100644
index 74170d61d0733a42c21ee1a610a99dc7ce46e646..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color-v23/abc_btn_colored_text_material.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!-- Used for the text of a bordered colored button. -->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false"
-          android:alpha="?android:attr/disabledAlpha"
-          android:color="?android:attr/textColorPrimary" />
-    <item android:color="?android:attr/textColorPrimaryInverse" />
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml b/android/.build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml
deleted file mode 100644
index 8d536118908b33639afd1b8894392fbe2ced30b1..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_checked="true"
-          android:state_enabled="true"
-          android:alpha="@dimen/highlight_alpha_material_colored"
-          android:color="?android:attr/colorControlActivated" />
-    <item android:color="?android:attr/colorControlHighlight" />
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_btn_checkable.xml b/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_btn_checkable.xml
deleted file mode 100644
index e82eff48305242c8d64d6c4edb4fb76aad05e6da..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_btn_checkable.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2016§ The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="?attr/colorControlNormal" android:alpha="?android:disabledAlpha"/>
-    <item android:state_checked="true" android:color="?attr/colorControlActivated"/>
-    <item android:color="?attr/colorControlNormal"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_default.xml b/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_default.xml
deleted file mode 100644
index abe38804b6f9858f7b52a472f5bb8a5c68376f4f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_default.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="?attr/colorControlNormal" android:alpha="?android:disabledAlpha"/>
-    <item android:state_focused="true" android:color="?attr/colorControlActivated"/>
-    <item android:state_pressed="true" android:color="?attr/colorControlActivated"/>
-    <item android:state_activated="true" android:color="?attr/colorControlActivated"/>
-    <item android:state_selected="true" android:color="?attr/colorControlActivated"/>
-    <item android:state_checked="true" android:color="?attr/colorControlActivated"/>
-    <item android:color="?attr/colorControlNormal"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_edittext.xml b/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_edittext.xml
deleted file mode 100644
index 0e05e07d5faf8c095e438e64568a6baa5499366d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_edittext.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="?attr/colorControlNormal" android:alpha="?android:disabledAlpha"/>
-    <item android:state_pressed="false" android:state_focused="false" android:color="?attr/colorControlNormal"/>
-    <item android:color="?attr/colorControlActivated"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_seek_thumb.xml b/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_seek_thumb.xml
deleted file mode 100644
index 4fc9626f1cf941927d7ecc96faf8275eab79dd00..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_seek_thumb.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="?attr/colorControlActivated" android:alpha="?android:attr/disabledAlpha"/>
-    <item android:color="?attr/colorControlActivated"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_spinner.xml b/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_spinner.xml
deleted file mode 100644
index 0e05e07d5faf8c095e438e64568a6baa5499366d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_spinner.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="?attr/colorControlNormal" android:alpha="?android:disabledAlpha"/>
-    <item android:state_pressed="false" android:state_focused="false" android:color="?attr/colorControlNormal"/>
-    <item android:color="?attr/colorControlActivated"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_switch_thumb.xml b/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_switch_thumb.xml
deleted file mode 100644
index f589fdf4c4e2134a21eaedf0616c763ca600109a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_switch_thumb.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="?attr/colorSwitchThumbNormal" android:alpha="?android:attr/disabledAlpha"/>
-    <item android:state_checked="true" android:color="?attr/colorControlActivated"/>
-    <item android:color="?attr/colorSwitchThumbNormal"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_switch_track.xml b/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_switch_track.xml
deleted file mode 100644
index e663772e7887b1814cd9b31624fbf9a0a764c403..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color-v23/abc_tint_switch_track.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="?android:attr/colorForeground" android:alpha="0.1"/>
-    <item android:state_checked="true" android:color="?attr/colorControlActivated" android:alpha="0.3"/>
-    <item android:color="?android:attr/colorForeground" android:alpha="0.3"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_btn_colored_borderless_text_material.xml b/android/.build/intermediates/res/merged/debug/color/abc_btn_colored_borderless_text_material.xml
deleted file mode 100644
index 1480046683779e2d23d31e546b471bbdbc20e485..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_btn_colored_borderless_text_material.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!-- Used for the text of a borderless colored button. -->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false"
-          app:alpha="?android:attr/disabledAlpha"
-          android:color="?android:attr/textColorSecondary"/>
-    <item android:color="?attr/colorAccent"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_btn_colored_text_material.xml b/android/.build/intermediates/res/merged/debug/color/abc_btn_colored_text_material.xml
deleted file mode 100644
index 897a3f75fda1313c1891399eb77adb28e74daa11..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_btn_colored_text_material.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!-- Used for the text of a bordered colored button. -->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false"
-          app:alpha="?android:attr/disabledAlpha"
-          android:color="?android:attr/textColorPrimary" />
-    <item android:color="?android:attr/textColorPrimaryInverse" />
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_hint_foreground_material_dark.xml b/android/.build/intermediates/res/merged/debug/color/abc_hint_foreground_material_dark.xml
deleted file mode 100644
index fe868721640b880c3d606920166e1bb6b45d6c24..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_hint_foreground_material_dark.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="true"
-          android:state_pressed="true"
-          android:alpha="@dimen/hint_pressed_alpha_material_dark"
-          android:color="@color/foreground_material_dark" />
-    <item android:alpha="@dimen/hint_alpha_material_dark"
-          android:color="@color/foreground_material_dark" />
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_hint_foreground_material_light.xml b/android/.build/intermediates/res/merged/debug/color/abc_hint_foreground_material_light.xml
deleted file mode 100644
index 1bef5afebf50ea4ebd71c1c367f537536a820c29..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_hint_foreground_material_light.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="true"
-          android:state_pressed="true"
-          android:alpha="@dimen/hint_pressed_alpha_material_light"
-          android:color="@color/foreground_material_light" />
-    <item android:alpha="@dimen/hint_alpha_material_light"
-          android:color="@color/foreground_material_light" />
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml b/android/.build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml
deleted file mode 100644
index 724c2557dad350bc20ebf9e4c8b994db4321fb6b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/bright_foreground_disabled_material_dark"/>
-    <item android:color="@color/bright_foreground_material_dark"/>
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml b/android/.build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml
deleted file mode 100644
index 7395e680c6563b4b0361e9456ac9c2f654aadd7b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/bright_foreground_disabled_material_light"/>
-    <item android:color="@color/bright_foreground_material_light"/>
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml b/android/.build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml
deleted file mode 100644
index 7d66d02d637c4cf1757966198d40ce92c5591a2f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2008 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/primary_text_disabled_material_dark"/>
-    <item android:color="@color/primary_text_default_material_dark"/>
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml b/android/.build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml
deleted file mode 100644
index 105b643ddb423f0a4c337bca48696d4779c7b8ea..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/primary_text_disabled_material_light"/>
-    <item android:color="@color/primary_text_default_material_light"/>
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_search_url_text.xml b/android/.build/intermediates/res/merged/debug/color/abc_search_url_text.xml
deleted file mode 100644
index 0631d5d4ca1445752afa1a79d9b39fc648f18714..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_search_url_text.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_pressed="true" android:color="@color/abc_search_url_text_pressed"/>
-    <item android:state_selected="true" android:color="@color/abc_search_url_text_selected"/>
-    <item android:color="@color/abc_search_url_text_normal"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml b/android/.build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml
deleted file mode 100644
index 6399b1d028fbd9d0d0fb862ce00bba26bbac7666..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/secondary_text_disabled_material_dark"/>
-    <item android:color="@color/secondary_text_default_material_dark"/>
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml b/android/.build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml
deleted file mode 100644
index 87c015a4cd68035eb8f5a8e1382b151cccff4ae7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/secondary_text_disabled_material_light"/>
-    <item android:color="@color/secondary_text_default_material_light"/>
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_tint_btn_checkable.xml b/android/.build/intermediates/res/merged/debug/color/abc_tint_btn_checkable.xml
deleted file mode 100644
index 0c663f6b92b0f482cbfebf3e865219fdc98714c6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_tint_btn_checkable.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false" android:color="?attr/colorControlNormal" app:alpha="?android:disabledAlpha"/>
-    <item android:state_checked="true" android:color="?attr/colorControlActivated"/>
-    <item android:color="?attr/colorControlNormal"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_tint_default.xml b/android/.build/intermediates/res/merged/debug/color/abc_tint_default.xml
deleted file mode 100644
index 8d7c391e39d4cc21429977e6ef37da61222d2caa..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_tint_default.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false" android:color="?attr/colorControlNormal" app:alpha="?android:disabledAlpha"/>
-    <item android:state_focused="true" android:color="?attr/colorControlActivated"/>
-    <item android:state_pressed="true" android:color="?attr/colorControlActivated"/>
-    <item android:state_activated="true" android:color="?attr/colorControlActivated"/>
-    <item android:state_selected="true" android:color="?attr/colorControlActivated"/>
-    <item android:state_checked="true" android:color="?attr/colorControlActivated"/>
-    <item android:color="?attr/colorControlNormal"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_tint_edittext.xml b/android/.build/intermediates/res/merged/debug/color/abc_tint_edittext.xml
deleted file mode 100644
index 536d77f09f644430af79067b1b61e7c9062678bd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_tint_edittext.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false" android:color="?attr/colorControlNormal"
-          app:alpha="?android:disabledAlpha"/>
-    <item android:state_pressed="false" android:state_focused="false"
-          android:color="?attr/colorControlNormal"/>
-    <item android:color="?attr/colorControlActivated"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_tint_seek_thumb.xml b/android/.build/intermediates/res/merged/debug/color/abc_tint_seek_thumb.xml
deleted file mode 100644
index cb537882f0c7d44fbbb78caa5b1ab6073c76843c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_tint_seek_thumb.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false" android:color="?attr/colorControlActivated" app:alpha="?android:attr/disabledAlpha"/>
-    <item android:color="?attr/colorControlActivated"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_tint_spinner.xml b/android/.build/intermediates/res/merged/debug/color/abc_tint_spinner.xml
deleted file mode 100644
index 44333dd1e3297b94f2503859e68804d709d92465..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_tint_spinner.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false" android:color="?attr/colorControlNormal" app:alpha="?android:disabledAlpha"/>
-    <item android:state_pressed="false" android:state_focused="false" android:color="?attr/colorControlNormal"/>
-    <item android:color="?attr/colorControlActivated"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_tint_switch_thumb.xml b/android/.build/intermediates/res/merged/debug/color/abc_tint_switch_thumb.xml
deleted file mode 100644
index fc8bd247fb4ce7a7803f9061d40ad33aa33f2797..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_tint_switch_thumb.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false" android:color="?attr/colorSwitchThumbNormal" app:alpha="?android:attr/disabledAlpha"/>
-    <item android:state_checked="true" android:color="?attr/colorControlActivated"/>
-    <item android:color="?attr/colorSwitchThumbNormal"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color/abc_tint_switch_track.xml b/android/.build/intermediates/res/merged/debug/color/abc_tint_switch_track.xml
deleted file mode 100644
index 22322f8d8631bebb5c39b3e5a4dc317e871d5367..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/abc_tint_switch_track.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          xmlns:app="http://schemas.android.com/apk/res-auto">
-    <item android:state_enabled="false" android:color="?android:attr/colorForeground" app:alpha="0.1"/>
-    <item android:state_checked="true" android:color="?attr/colorControlActivated" app:alpha="0.3"/>
-    <item android:color="?android:attr/colorForeground" app:alpha="0.3"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color/common_google_signin_btn_text_dark.xml b/android/.build/intermediates/res/merged/debug/color/common_google_signin_btn_text_dark.xml
deleted file mode 100644
index f0d72f11f4effd69bd1cca48d800bcca9657c79f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/common_google_signin_btn_text_dark.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item
-        android:state_enabled="false"
-        android:color="@color/common_google_signin_btn_text_dark_disabled" />
-    <item
-        android:state_pressed="true"
-        android:color="@color/common_google_signin_btn_text_dark_pressed" />
-    <item
-        android:state_focused="true"
-        android:color="@color/common_google_signin_btn_text_dark_focused" />
-    <item
-        android:color="@color/common_google_signin_btn_text_dark_default" />
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/color/common_google_signin_btn_text_light.xml b/android/.build/intermediates/res/merged/debug/color/common_google_signin_btn_text_light.xml
deleted file mode 100644
index 7e6b09ea0df47bc13ec9a4e6b265b5502b569403..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/common_google_signin_btn_text_light.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item
-        android:state_enabled="false"
-        android:color="@color/common_google_signin_btn_text_light_disabled" />
-    <item
-        android:state_pressed="true"
-        android:color="@color/common_google_signin_btn_text_light_pressed" />
-    <item
-        android:state_focused="true"
-        android:color="@color/common_google_signin_btn_text_light_focused" />
-    <item
-        android:color="@color/common_google_signin_btn_text_light_default" />
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/color/common_google_signin_btn_tint.xml b/android/.build/intermediates/res/merged/debug/color/common_google_signin_btn_tint.xml
deleted file mode 100644
index ca46dcb5bbcca8748fa0bce67c23126dab19a9d8..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/common_google_signin_btn_tint.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-  <item
-      android:state_pressed="true"
-      android:color="#11000000" />
-  <item
-      android:color="@android:color/transparent" />
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml b/android/.build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml
deleted file mode 100644
index 6153382c7c503e35d5ef4e3e7d51699ff0f3aed4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/switch_thumb_disabled_material_dark"/>
-    <item android:color="@color/switch_thumb_normal_material_dark"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml b/android/.build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml
deleted file mode 100644
index 94d711482138c30504e0ffe005144eef8543f44c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="false" android:color="@color/switch_thumb_disabled_material_light"/>
-    <item android:color="@color/switch_thumb_normal_material_light"/>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index f534f58a19c0ddff627a9a3089fd95ef2896ddac..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index 99110085fe9826bf67329ebee4921a120b351f6a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 69ff9dde3a8ac9de1581162da65d33468dfeb500..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 9218981b4f2ebfa185eea884cb7fb29620aed83f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index a58857635f2e57d1c86cde7b4e4676caae1e3ca7..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index 38a55f93c9cbcd98d7fd578a5eade9a747528a1f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index 50a350f48bb431a3ed90717dbcf9f32286031368..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index 1e0d4c34801b6544e258b4f820cfa2e5de1308d7..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index 65ccd8f410769dbe216afdc9c483e088ebb85c98..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 706fc1fa38191b3401aa6b6fe688c3384a60abe1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index e78bcaf57a7ebf7fe1cb821a4115f7aabd80a161..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 8610c50150208b4f57a951d0ac279dc5e219c820..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index 63d0e5d552b3980a37cbb9ac2339f5dc7c7243aa..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index cd1f57c5bc85c49d5793e2d65558bac6578024fc..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_16dp.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index a728afe60047efd900e7d4213faa7b5c22e9c875..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_36dp.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index 64b2aa7f28c1f5b25451c26ce5e3a3dbc5d8052b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_48dp.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_48dp.png
deleted file mode 100644
index 54d306599a5b5a269a3bd46a7636d5277ee37845..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index cf270fe1b3008283321b84da3ac92da1f213e2b5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index 49ad6cd74860fdb2f6f9c1a5c71f7ab374d00d0f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png
deleted file mode 100644
index 1aa9965363fb87b006691ee1b177c07e6ab4800b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 565e261ff3f8117938a7d79696ecc34f7bf4e2c9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index 7ffeb1d0aed824cf42261701908595ff4bcd9f88..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_focused_holo.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index 658b69453762f6d8d5fc9e734022aa16726721bc..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index c10a7bfb1ff96662b103045cccf54030dfcdc675..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index d290ccb9ceda1caa7f8a8bf9bebb87324b9e7794..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index e66354dd04e1da72f1709d693f2871d030b92069..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index dc1616c65a0176546b81dd0512eb40ce9f06fde2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index e7c999ec82463ca5eefd0a9b39b8ed295c339adb..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index 85831e380e0c31d0a25cd2ec2ec805e63f8341ed..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index d8d6d7f602f306068c187c1b3ecbf60427d4b995..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 30c1c1e5f1ba3bbb538e02c0423b6e2bd3f10ab3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 1f1cdadbffab67ca8b84c80c341471a7dc885757..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index a171b9e24de217085bc810c64b908e0776c15a03..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index b937eaa5f624f5f1bb05b7d5c9f7d0b864d086e1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index c5ef71029c1ea400ce32e74d1f6713affff1666c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index 1a399634f057331d4ed32aca74722f314e2dacf6..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index 43fd9eeb1c03e75c7fd9781b3f8deeaea322b922..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png
deleted file mode 100644
index c8843cd9de2dd2de7140965c91424fadc0cf9fd0..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png
deleted file mode 100644
index 4b7ea62b3ced35777a9d80dfa4e4acd48394f8e4..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
deleted file mode 100644
index 428bfab622ac101e7baeb4de0bf6d71911722e83..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png
deleted file mode 100644
index 183c9aced47e192d3abf8aab92e490acc31cc851..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png
deleted file mode 100644
index 829d5b2498e2326490c0d2197f96b29b669191d7..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png
deleted file mode 100644
index 9b67079ad6dcc48464c82b27a6853d4560458404..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index 2cb0180f11703ba8ebf31d7cbd3336560fb3e63c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index 21f9b795f3f2c553e6f6680884c2fcc16b0f1abd..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index 42e291e05ec15f629b31ce960d8992f2a3caa606..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index 18dc90c55529e18939f3f45179f8533f0e5b5ffb..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_full_open_on_phone.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_full_open_on_phone.png
deleted file mode 100644
index 843544af6b25dd416782a52790b67cc6ffcc1f2b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_full_open_on_phone.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png
deleted file mode 100644
index f6a5df08ed026a93480befe29290a87c3570d94b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png
deleted file mode 100644
index e87de404a095c015e5bbc650b6e0129700959080..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png
deleted file mode 100644
index af1a800805332bc909a8c2a7b3298a10037727a0..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_text_light_normal_background.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_text_light_normal_background.9.png
deleted file mode 100644
index 72f12a5eccf206519e5659f0d0c7a247e2b93754..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/common_google_signin_btn_text_light_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/googleg_disabled_color_18.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/googleg_disabled_color_18.png
deleted file mode 100644
index 7bba2b4ee7ac836d0118b8118a35f76f7391573d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/googleg_disabled_color_18.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/googleg_standard_color_18.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/googleg_standard_color_18.png
deleted file mode 100644
index 416699ab8db893fb549b135fdfb4fc1e801a1769..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/googleg_standard_color_18.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_low_normal.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_low_normal.9.png
deleted file mode 100644
index 7e2b7331ac35e7e3c39eacddd6d7a02a3c6b8a46..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_low_normal.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_low_pressed.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_low_pressed.9.png
deleted file mode 100644
index a36a60d08663fcf319064f644a1fc7d085e6e7ca..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_low_pressed.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_normal.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_normal.9.png
deleted file mode 100644
index 8c49da66854d137444240ad51d11d8ecd73a1249..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_normal.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_normal_pressed.9.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_normal_pressed.9.png
deleted file mode 100644
index 3434cfa5b3a293abe424ad404327af9a36eb8bd7..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notification_bg_normal_pressed.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notify_panel_notification_icon_bg.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notify_panel_notification_icon_bg.png
deleted file mode 100644
index 5f668a5896aa506b0351a63213c29d509f585459..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi-v4/notify_panel_notification_icon_bg.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi/ic_stat_name.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi/ic_stat_name.png
deleted file mode 100644
index 389551e217f7e51e2b60091ae68e0885c3ac91f6..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi/ic_stat_name.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi/icon.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi/icon.png
deleted file mode 100644
index db52b984af5ae837389ff347f183c7002c5dbb8c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi/icon.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi/notification_icon.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi/notification_icon.png
deleted file mode 100644
index f942d107ca3edc93e7197b63298eb7ffa0242211..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi/notification_icon.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-hdpi/splash.png b/android/.build/intermediates/res/merged/debug/drawable-hdpi/splash.png
deleted file mode 100644
index 40abdc0aa29bbb79caea40863cbeb99b124db160..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-hdpi/splash.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldpi/icon.png b/android/.build/intermediates/res/merged/debug/drawable-ldpi/icon.png
deleted file mode 100644
index 8073e4e4ae215785f67837165fc92d273c253904..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldpi/icon.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldpi/splash.png b/android/.build/intermediates/res/merged/debug/drawable-ldpi/splash.png
deleted file mode 100644
index aadb8ce49c04e5e0fba8d08470915748f593eaa3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldpi/splash.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index a262b0c872cf6973381c8fcd17381a180e149397..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index d8eaf0761ecbce05bad5c8e899b9b55426c612e2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 8e188de6691199ce69232657cbe43952d7cc466e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 254f8061576d9ee2e322f2ea9ab279192bbe2cc1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index f9cba8f2d2c1662f7ef93a6374f15c5ace253700..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 44670d1f267dcf2ca05c8c6e3e45e74655351e95..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 198a842af35fe8d1e896b44b3669817dd9854540..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 87bf8d36b15d318cccd00b0fdc670e3286ac349f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index eaf546db555d63174974973b89683b9ce7b3c690..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 284c3c23ee118b54c897c8051c5db1cd3152c1b1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 3cdb6cf5c9fb7780f02c6efb8fa8af9991836ed5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 1a6aa9b15e3fa0a8d183d7dc0af449d27258c31c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 7d4c69091b7d8f5be4bbe9e1546402de751c960a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 90fe333ac3531c602ee15ceca3a3f22551e97e6c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index b18cdf2c23408394e0a14cf33ecd56ac3fab33ae..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index b7d0119c848392e6cbb4faa49b14b1fa1fc0c7d1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index 7a9fcbcbfe5edb62e193dc338a2555129872aabd..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 8e6c2717ce6bbef162e0068d4b4af5ab17815143..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 9f0d2c82321f31bba14434d1d2348e2f66ddda19..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index 6e18d40d7905d5b1711303edf1b3c5879ad5616a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index 32cae24632c351c97c84de631b932f43a7bf7393..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index 8ea96f46a9bcfcb57f7f6c246684ba609f57a213..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index d81b5267f72f8a76aa8b0e72dae5db9ce093a043..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index 6086f9c3829a5fc31fc6825779b5e55b20c125a0..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 559b83539b85ada6ee06007fbeabf63cf96630ca..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index a282219cdfa559d21bb0e3733cda75cd2a2d1105..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 1492ab62a4aad3a2c40c25f3dce2111076bfb854..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index 7c011af4c0af9f7fb4b3bda1ccb41b03c4635691..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index 36f664ccac9f803bdf4d5c7ba6a499f188e7a414..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_16dp.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index 3f5d25e019fcff8db5059c3704f295729b7f81df..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_36dp.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index 2ddcdd985de9a1e823cf520744846bdccd3976d1..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_48dp.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_48dp.png
deleted file mode 100644
index c636ce8e81bedced667a12e42fae8037f7f932ae..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index 077f9b05ddc49c00f8515acf360bc6decd3b60a2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index ac6ad111b4f777483263439d0e2bfd4c305c539e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png
deleted file mode 100644
index 00651110dce0e00e0c8e4123804e6ef1e92cc79b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 565e261ff3f8117938a7d79696ecc34f7bf4e2c9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index 0678971d31ecf014f5fbff66b711ee5acd46b4f4..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_focused_holo.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index 918050252be0887d63228273fbd3b5a7dd1a2e7b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index f7aa6755394cc97d2d528f75362ee8d20d6876f0..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index f16bf97e72cb2214781f48313f7c0e0358ef838f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index 4a3adf3f47ea2dacd9ebf30cb614ebc0e70d0ec2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index b2b9f278562713dd7a0477d68fb7a0b85e75c775..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index 81256eea89f5d1fed8f2af51bb32113eb0d70c25..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index 20afe0704106df9ef620edc12dfbdc44901a38ad..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index 1bff7fa3ba27fecd100b887b2791ac71c6783efd..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 9280f82960aa85e103397360795d8252678d3c2d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 21bffc645a054f6331a6484e861f945f135b73e5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index 9ef8a4e8927742a43e34a814f9817a16b146afe7..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index e129e3e2dcfd2d184d0afdfe7a8177509cbb0ca0..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 38da9c5a799ed82b10e60cd907535a5b2ce26281..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index 7a4c52595daf697c91892a61ea344cdc39ed8f2c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index d9b318621647d832015a9d03e164e8ef49a19a44..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png
deleted file mode 100644
index 87e48ec85b0b51c9680006424e2212ad5709769c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png
deleted file mode 100644
index e243fd8f8e096ff57784ceafcf41302a57bf63b6..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
deleted file mode 100644
index d001ceac71f22e441a13773c86ab78cff38997a3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png
deleted file mode 100644
index 55b8b363f10826015e97c2bd590000775fecd3fc..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png
deleted file mode 100644
index f415390d5de72c453e871484551ccb68014c59a5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png
deleted file mode 100644
index e6eff09ec917dffba539aa5cb30b7567440cb093..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index be107a9bdd904f909600a309f9df29c287cd238f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index ae8233bacb88035035cc397b75d62bd7f5d56d4d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index b9ce196cf209da555e33c94b47c01005c5e7c5b9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index 0cb1ce81d2089236a03fc840b932c853ebd15219..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png
deleted file mode 100644
index e20799ec8ceadd15e96954e98d162a890fe27267..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png
deleted file mode 100644
index 7cafb921c2460be68616c0d573c72ecd166e0819..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png
deleted file mode 100644
index b479690214bc7d68caffb993999e3e5460fc1e11..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_text_light_normal_background.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_text_light_normal_background.9.png
deleted file mode 100644
index 6dfcc6607a249c00fe9f4c21891e52fcdb356a8e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/common_google_signin_btn_text_light_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/googleg_disabled_color_18.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/googleg_disabled_color_18.png
deleted file mode 100644
index 3e064990bc7d16c16437193638da55ca1504fd80..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/googleg_disabled_color_18.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/googleg_standard_color_18.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/googleg_standard_color_18.png
deleted file mode 100644
index c06956523f19f415fa17b196ed2e6dd251e2e127..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/googleg_standard_color_18.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_low_normal.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_low_normal.9.png
deleted file mode 100644
index 91fa1f28243bdd968ea10c786ece61d4f7ffad2c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_low_normal.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_low_pressed.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_low_pressed.9.png
deleted file mode 100644
index 56d765b0daeae06aa0cde261260695fb8b3f0ac0..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_low_pressed.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_normal.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_normal.9.png
deleted file mode 100644
index 5ba1c45bfc9daf70a0aae1b1774734a9797825cf..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_normal.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_normal_pressed.9.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_normal_pressed.9.png
deleted file mode 100644
index 932065ebd4444bfea0e523ff8d04948d8962a490..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notification_bg_normal_pressed.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notify_panel_notification_icon_bg.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notify_panel_notification_icon_bg.png
deleted file mode 100644
index 8fbf4bbd552f522728b1f5beda08eaba21dc9194..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi-v4/notify_panel_notification_icon_bg.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi/ic_stat_name.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi/ic_stat_name.png
deleted file mode 100644
index c7b5ed7fcd33064d5f781f743544ab161e796e50..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi/ic_stat_name.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi/icon.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi/icon.png
deleted file mode 100644
index 99a107c68e0c20bd3be73271a636932f51b0de47..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi/icon.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi/notification_icon.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi/notification_icon.png
deleted file mode 100644
index d4d533ffec3f4a8459e5de07d5c51aef653b0b61..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi/notification_icon.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-mdpi/splash.png b/android/.build/intermediates/res/merged/debug/drawable-mdpi/splash.png
deleted file mode 100644
index 683190ae15c6e80576d364bed6b0dd43031caf55..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-mdpi/splash.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml b/android/.build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml
deleted file mode 100644
index 595c56c6a91555c1fdae2ed6b0d689de4c01f4d6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<ripple xmlns:android="http://schemas.android.com/apk/res/android"
-        android:color="?android:attr/colorControlHighlight"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml b/android/.build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml
deleted file mode 100644
index 10251aadc7cf433ffd71a292fb8cc3615fbdae14..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<inset xmlns:android="http://schemas.android.com/apk/res/android"
-       android:insetLeft="@dimen/abc_button_inset_horizontal_material"
-       android:insetTop="@dimen/abc_button_inset_vertical_material"
-       android:insetRight="@dimen/abc_button_inset_horizontal_material"
-       android:insetBottom="@dimen/abc_button_inset_vertical_material">
-    <ripple android:color="?android:attr/colorControlHighlight">
-        <item>
-            <!-- As we can't use themed ColorStateLists in L, we'll use a Drawable selector which
-                 changes the shape's fill color. -->
-            <selector>
-                <item android:state_enabled="false">
-                    <shape android:shape="rectangle">
-                        <corners android:radius="@dimen/abc_control_corner_material"/>
-                        <solid android:color="?android:attr/colorButtonNormal"/>
-                        <padding android:left="@dimen/abc_button_padding_horizontal_material"
-                                 android:top="@dimen/abc_button_padding_vertical_material"
-                                 android:right="@dimen/abc_button_padding_horizontal_material"
-                                 android:bottom="@dimen/abc_button_padding_vertical_material"/>
-                    </shape>
-                </item>
-                <item>
-                    <shape android:shape="rectangle">
-                        <corners android:radius="@dimen/abc_control_corner_material"/>
-                        <solid android:color="?android:attr/colorAccent"/>
-                        <padding android:left="@dimen/abc_button_padding_horizontal_material"
-                                 android:top="@dimen/abc_button_padding_vertical_material"
-                                 android:right="@dimen/abc_button_padding_horizontal_material"
-                                 android:bottom="@dimen/abc_button_padding_vertical_material"/>
-                    </shape>
-                </item>
-            </selector>
-        </item>
-    </ripple>
-</inset>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable-v21/abc_edit_text_material.xml b/android/.build/intermediates/res/merged/debug/drawable-v21/abc_edit_text_material.xml
deleted file mode 100644
index d98b0085bdf8f327f60ca57ea753191ff1ec5f0a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable-v21/abc_edit_text_material.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<inset xmlns:android="http://schemas.android.com/apk/res/android"
-       android:insetLeft="@dimen/abc_edit_text_inset_horizontal_material"
-       android:insetRight="@dimen/abc_edit_text_inset_horizontal_material"
-       android:insetTop="@dimen/abc_edit_text_inset_top_material"
-       android:insetBottom="@dimen/abc_edit_text_inset_bottom_material">
-    <selector>
-        <item android:state_enabled="false">
-            <nine-patch android:src="@drawable/abc_textfield_default_mtrl_alpha"
-                        android:tint="?attr/colorControlNormal"
-                        android:alpha="?android:attr/disabledAlpha"/>
-        </item>
-        <item android:state_pressed="false" android:state_focused="false">
-            <nine-patch android:src="@drawable/abc_textfield_default_mtrl_alpha"
-                        android:tint="?attr/colorControlNormal"/>
-        </item>
-        <item>
-            <nine-patch android:src="@drawable/abc_textfield_activated_mtrl_alpha"
-                        android:tint="?attr/colorControlActivated"/>
-        </item>
-    </selector>
-</inset>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable-v21/notification_action_background.xml b/android/.build/intermediates/res/merged/debug/drawable-v21/notification_action_background.xml
deleted file mode 100644
index 852c3f0819bf4ff6225a261e0adb7ca2d625c8f6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable-v21/notification_action_background.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<ripple xmlns:android="http://schemas.android.com/apk/res/android"
-    android:color="@color/ripple_material_light">
-    <item android:id="@android:id/mask"
-        android:drawable="@drawable/abc_btn_default_mtrl_shape" />
-</ripple>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml b/android/.build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml
deleted file mode 100644
index 0b540390a2f56a9c41dbc54a80234b8bb6cf9a63..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<ripple xmlns:android="http://schemas.android.com/apk/res/android"
-        android:color="@color/abc_color_highlight_material"
-        android:radius="20dp" />
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index fdec4e7fcc1a89c9b5bfc3f6151e19ca4472b47f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index 49025208b6057654c3a15f0b2a5d46a016553260..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 59a683ab60d66781b7d5135885ec5565c2e9b6af..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 03bf49cc5ea2b816a7041067e148dd6ff28fbe55..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index 342323b4b505f28eed4191286a3070f3a99de049..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index 365c467b15fb989732d4e68ac8dacbdc139ec2a8..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index 061990d8bbd19d5defa6d645af024bd8c559d3fd..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index a07ebea9a80bca5b20ab6a1409f1fb7f39986ac5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index ca303fd6ecf6c06df8c32617c8a4974a5eb1da2f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 8e664eb153ce6937b5926015cd99a9112f0c6f7e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index cd38901c4f396abf0f23c84b84d64e5fc565e56c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 9aabc43ce6e7182c477d9ea58a1b85561bdccc14..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index c8bae19bcf8cf442b656bc7b88f3971461a8cf9a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index 6be7e097ceedbb7a49b141b5ef13c84f9a499779..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_16dp.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index 35fe96563ed298cd4bd74a2eaafd9958bb879821..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_36dp.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index 45887c13ddbbc64b5a65ff8d003fb85bdef10e0b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_48dp.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_48dp.png
deleted file mode 100644
index 7be22806f0e1a339cea85fc7bc45ab72d99859fd..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index ea6033adb9024894e77854c02881cae5f3d3f482..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index 2f4818b296fc91d7825fc06dd0611b0e2a6dffe4..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png
deleted file mode 100644
index 2456a74a5c82e3fd4b8a3dfdb937701463b88c3d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 565e261ff3f8117938a7d79696ecc34f7bf4e2c9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index 8965f3e5ee1e0efd68e0ef13c176ad1be0a127b6..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_focused_holo.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index d1bffd0dce51aed631ffddaa1e63963027507c11..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index defab445a13b0fcf2680599d71b5ef62fc46f5a9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index 6a609c545c200b63fa4e5202a6a76fe8def78958..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index d4678b546a1c1f982ab4d2168dd117553e652ad0..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index 5b84092f78b9cdc390972abeeff5215906f55ade..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index b46727854a3f3153b8a7603be3199b5f8c1de3a3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index cef7c18dae01634fba5aa2f364d4cab348730a62..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index c08ec90ff37523f1507de20291f2a01bef9e8667..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 0486af199208cee7f364a19c11695142c39bf879..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 20079d8ca008ad6bae43458def8a1c4047ac452e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index 0f339ae7fa06e21156a59e26b9d3cb3819765dd3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index 81e2402c33d32a9ef641e7e2f65d208770017267..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 97a445176cddb372e25e5b7944bd1587b3b77285..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index dd0a96477e14cff5dc562c68cab60bd069d4fc56..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index c5a2319e1bc2c8cf0bdef9409faff711aa61e170..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png
deleted file mode 100644
index 76ed4f3226356997ab15f243fd6a770a3ccc4645..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png
deleted file mode 100644
index 529d5504d36ebf3726204630a2ea3a8078dda413..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
deleted file mode 100644
index 3dcebcf8342dce2ce0ce0ea3a3aad04098803864..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png
deleted file mode 100644
index 1f8cc88c5202103092d3296142d19494aa20da13..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png
deleted file mode 100644
index 8df37185e1570367c2aa132aeaa7c5249c791179..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png
deleted file mode 100644
index 6c8f6a433fce96873e4cd6c1ad09e7da4cc23970..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index 1b69efe95711af99d796a988d87f2d143b2a7be0..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index fd13b79027a203bf518c313883b4843e6f2699f3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index 96a58325278b77bf47feac9ccb7229c67f14d091..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index 8053d167c1fe14801e2bd72555fad05c86439f1b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_full_open_on_phone.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_full_open_on_phone.png
deleted file mode 100644
index be9200fdef38afcfb1e7450278366d0f9b0b073b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_full_open_on_phone.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png
deleted file mode 100644
index d0fa868d318116c1c18257de64ff34ac445f96bb..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png
deleted file mode 100644
index 8405f2bbd0808f47e34422003a747089a155b5e2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png
deleted file mode 100644
index 2b61eac3e76ee4d5c7d1aa2e4b118d6643582d9a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png
deleted file mode 100644
index a8ad80c7b80cb1cf954ce253eb6d483b9a7d727a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/googleg_disabled_color_18.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/googleg_disabled_color_18.png
deleted file mode 100644
index 25b975516858d14bb9857f6fa57eae42ddb2861a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/googleg_disabled_color_18.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/googleg_standard_color_18.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/googleg_standard_color_18.png
deleted file mode 100644
index 3fe53e7a8e60babd5f398136358c4329a5581a20..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/googleg_standard_color_18.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_low_normal.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_low_normal.9.png
deleted file mode 100644
index 4059330c3a616c7b8d92a3fd046411c23dd7178f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_low_normal.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_low_pressed.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_low_pressed.9.png
deleted file mode 100644
index 1b14860d7a0f629acec00a52f99a870465495525..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_low_pressed.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_normal.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_normal.9.png
deleted file mode 100644
index 3da5de5caa7fb469d6475acb815299924c36d860..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_normal.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png
deleted file mode 100644
index fb38611d644375642c8fce20412a58ccf86b0451..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png
deleted file mode 100644
index adbe4d2899bf7a3acf8e8282fee0e1276381313c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi/ic_stat_name.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi/ic_stat_name.png
deleted file mode 100644
index c3e1a01b9efb875cfdc91c272bc3282b1fee8844..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi/ic_stat_name.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi/icon.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi/icon.png
deleted file mode 100644
index 26f2eb311125d07557a82a5e7c8a84d061b48b97..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi/icon.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi/notification_icon.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi/notification_icon.png
deleted file mode 100644
index a9c498c0eab479cd87c5ea54adc859ee7968d38f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi/notification_icon.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xhdpi/splash.png b/android/.build/intermediates/res/merged/debug/drawable-xhdpi/splash.png
deleted file mode 100644
index 781e348565f0296a00a7f66aa9e171e51b91fedc..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xhdpi/splash.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
deleted file mode 100644
index e0411c025121915b10dd96c253f5c10d14381da4..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index d934b60dc4e14e15b5efa834a06b612f538282ea..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 8c82ec3d7a19e756ed5ad582c133b1f45964ce57..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 8fc0a9b8793ffdccc2b4e4c6eeb534bd4e5b7355..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index 3038d70fcb5529492d89338320c9200ae246299a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index 2d2015060209f06cbc83f3224d1723c0b6367a6b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index 739e098ab446f3a87dd33479b4576a31bba67aad..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
deleted file mode 100644
index b9c2101db8297fa55b4f107e5be962389f0ce532..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
deleted file mode 100644
index fe826b7cac181387de16789d5a0f5b4b69efd25f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 90d6ba3c62fa8adfaa4d3f73133db40b9f9c75a5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 63e541f4b2b34594f0ccc22366f55b0a96e01282..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index f71485c2d05f9d82cfb6a2f91699e2fa2514f0bc..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index 162ab9847acbb9fcdf7cc3e428412c80176d797c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index d95a3774a2709ca055940196bde411c2d652f5f2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index e5509b034cbdf7cc0218b37e288797b45706794e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index 72685abe793c47992b07c8b13539521e997b3b3b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png
deleted file mode 100644
index 918a395655c952ab5f7ba1de26e72f192e837460..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index 8e985b46d46bb342895e0c48a8bc8288348e92ba..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index 19bbc1202a1f508e4ca8a34566d8f525df020039..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png
deleted file mode 100644
index 601bf0c2ff0c2c2927178e55f3c3aabdd67fa94b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 8d474026167af201922070ebaa38a2daab42f1e6..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png
deleted file mode 100644
index 195b9b4af79d9e4b3a865929a434d667f97bcd1a..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_focused_holo.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png
deleted file mode 100644
index 83e741b343ef9f6bdcb3518758b6568d0b407104..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png
deleted file mode 100644
index e8cf10a62fc378d82bb339c314f05f1243384f06..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png
deleted file mode 100644
index 2fc23a0e039554e5bfc128361f0ec8cc6e29dd3b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
deleted file mode 100644
index b643f2ffb3f0df3b757f38eebeeaae2ee28bd113..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png
deleted file mode 100644
index ec173003ebfc8d5963dbfbf9a703acd052a2faf7..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
deleted file mode 100644
index 650b49039f2506902dca70ab1ae4ec8ab47a4b21..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png
deleted file mode 100644
index 6d4ab340bd152929dd7f7b85146ea83c9d8c1b9e..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
deleted file mode 100644
index 4657815e4fa1561b97ea73ec1ba990a4da58e125..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 4aa0a3441e98499b18a5f2ac4d57632ceaf51629..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index 6178c45ca80743070281ed72c75bc64c7b31c758..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
deleted file mode 100644
index 5195bbe3cb4cd15b6e11bc7dda50f79487e17c4d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
deleted file mode 100644
index 75e54e7991d6fcc3b9257f499ed93ac27219635c..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index 5ed15a8013327bce78e2cf856af6d57de80d4914..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index 8434a33f12377af5da5b34700eeac074cf50af83..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index 39ee874e362970b47032ffabc3091e139a7160cb..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png
deleted file mode 100644
index 278cb23878bb7054f2ba193d0685312c7bd2edd3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png
deleted file mode 100644
index d6a87904d387debb3790a58d40956f2ac96bf840..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png
deleted file mode 100644
index d71dbd197bb10b695ba2a8d1fcb1bcdf7fb384a3..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png
deleted file mode 100644
index de001850e2c4d5bc474ecac2657c633aa843470f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png
deleted file mode 100644
index 56d677d8e786c6021fcaf2ccb01cb8a36481bfe2..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png
deleted file mode 100644
index d186a5bb42235ea9f9880425105faac6f8bed746..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
deleted file mode 100644
index e806d4214b625bae49f581fe566e4c98de8cc5cb..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
deleted file mode 100644
index c72f1a245dcdd5f74491d9443ece7cbdbf12f222..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
deleted file mode 100644
index 8ee3d7cf6805306f1fcfe2102b586a934d3aa967..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
deleted file mode 100644
index 24a2d7b98d99cd7b4acfc2344bc1f19dead897fd..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png
deleted file mode 100644
index fc1493e6d1d34e695d659e27e156847a9ecebff4..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_icon_dark_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png
deleted file mode 100644
index da253792d8af50e1bfc98a03577d2f004d4079d5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_icon_light_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png
deleted file mode 100644
index 7945a1a0984a1ef14e01b2aaaacaa5a5374c1740..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_text_dark_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png
deleted file mode 100644
index 5183ef70779a268d98643ce052aaff505165bcbc..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/common_google_signin_btn_text_light_normal_background.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/googleg_disabled_color_18.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/googleg_disabled_color_18.png
deleted file mode 100644
index 12df9a8587dee87e821db811eb1215ccb298eacf..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/googleg_disabled_color_18.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/googleg_standard_color_18.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/googleg_standard_color_18.png
deleted file mode 100644
index d8938dfa67be1393461ad635ff9869e3ec4c3b03..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi-v4/googleg_standard_color_18.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/ic_stat_name.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/ic_stat_name.png
deleted file mode 100644
index 3c986b1d688bf1c69141245391efa6ea2cdc068d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/ic_stat_name.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/icon.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/icon.png
deleted file mode 100644
index fb121a016abd06914ce1db51fbdaca593012f4de..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/icon.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/notification_icon.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/notification_icon.png
deleted file mode 100644
index b1208260d93f547a7d04a85d15642e006f3975ce..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/notification_icon.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/splash.png b/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/splash.png
deleted file mode 100644
index e2041d75fb3131b24e34b23fa0f908aee189e135..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxhdpi/splash.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
deleted file mode 100644
index e40fa4e101029ba3fcd6c8eeb54bb37f91b6b7df..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
deleted file mode 100644
index 4e18de21a61fb762467d1fa2552baf5b8081d3b9..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
deleted file mode 100644
index 5fa326654ef90ee5b1db23fdf4b1f21dcd6fc9f5..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
deleted file mode 100644
index c11cb2ec658905996d5a1ecb86e8d4c6caf106b0..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
deleted file mode 100644
index 893d3b54b12fbf159ead3f6eebcdf77550a12056..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
deleted file mode 100644
index b8c9cfa6c76a0142303b1f8ba7dd24cbcc136516..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png
deleted file mode 100644
index 6758084a560301f481106348ccd222efdbc8765f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png
deleted file mode 100644
index 397fd91c650b72967f093ef8a414a07adbc9f385..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png
deleted file mode 100644
index 6c8428a00c294ce449f4bc9c9b9702c659c7fcbd..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png
deleted file mode 100644
index 9084c385eda87ad3412794043f1309349d171d6f..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png
deleted file mode 100644
index ba16aac56ea31d8a7ff20b9819a8528a4c295776..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png
deleted file mode 100644
index cc8109732635bb4336f390accc0c3bf1352cd662..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png
deleted file mode 100644
index dc312c14acc843edaa81e502aa325423af03a029..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png
deleted file mode 100644
index 67e25d5597872cf7fc4c5dae55e66673f90d0e9d..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png
deleted file mode 100644
index 1c7f66eaa249f6477b1e46869cd67dfefa4e5245..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png
deleted file mode 100644
index 82e7293871f575a8eb148181e003ff5ae50f7f96..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png
deleted file mode 100644
index b028a36ad47ca654e9a8574c701d259a5861a0aa..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
deleted file mode 100644
index 7dfaf7cf355f778591d6c076cef0ce1df2bef054..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
deleted file mode 100644
index fe8f2e40e362549396ce0df05e6058af0b620b9b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
deleted file mode 100644
index b5900e91e15016b9cdcc3d36a69342ddbe5958f7..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
deleted file mode 100644
index 6ef2c21b993c8bc686215728fdf74446a4058aed..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
deleted file mode 100644
index cbfcb0bcd59f475a7f699c70719fefb4e847fb49..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png
deleted file mode 100644
index 2c6d0daf76cf3cb66bbf1addcab5d4700cd03460..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png
deleted file mode 100644
index 565f0b29436bd8563bfca54f33dddefa49c74294..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png
deleted file mode 100644
index 714b641874a671d51d7db451200b700b118712dd..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png
deleted file mode 100644
index 894c734214f7d58c2dbd70d6bf4fd736e38f71ee..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi/icon.png b/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi/icon.png
deleted file mode 100644
index a921d5f7f28580b1ed8d90c11cd67a82b5e8a26b..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/merged/debug/drawable-xxxhdpi/icon.png and /dev/null differ
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml
deleted file mode 100644
index f3894600ba0f74374133924f2fa79c30f5d4ef83..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_focused="true" android:drawable="@drawable/abc_btn_default_mtrl_shape"/>
-    <item android:state_pressed="true" android:drawable="@drawable/abc_btn_default_mtrl_shape"/>
-    <item android:drawable="@android:color/transparent"/>
-</selector>
-
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml
deleted file mode 100644
index f6e938fe4770b7e0f70bcb81336948870a05c122..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_checked="true" android:drawable="@drawable/abc_btn_check_to_on_mtrl_015" />
-    <item android:drawable="@drawable/abc_btn_check_to_on_mtrl_000" />
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml
deleted file mode 100644
index ec93b8b6bc445ef60736881f496a6475f6781414..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!-- Used as the canonical button shape. -->
-
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:drawable="@drawable/abc_btn_default_mtrl_shape" />
-</layer-list>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml
deleted file mode 100644
index c50d4b10f007b10e06bb3e44a775f52a1b0e01e5..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!-- Used as the canonical button shape. -->
-
-<inset xmlns:android="http://schemas.android.com/apk/res/android"
-       android:insetLeft="@dimen/abc_button_inset_horizontal_material"
-       android:insetTop="@dimen/abc_button_inset_vertical_material"
-       android:insetRight="@dimen/abc_button_inset_horizontal_material"
-       android:insetBottom="@dimen/abc_button_inset_vertical_material">
-    <shape android:shape="rectangle">
-        <corners android:radius="@dimen/abc_control_corner_material" />
-        <solid android:color="@android:color/white" />
-        <padding android:left="@dimen/abc_button_padding_horizontal_material"
-                 android:top="@dimen/abc_button_padding_vertical_material"
-                 android:right="@dimen/abc_button_padding_horizontal_material"
-                 android:bottom="@dimen/abc_button_padding_vertical_material" />
-    </shape>
-</inset>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml
deleted file mode 100644
index 6e9f9cf3741b47a02621ff22e414cbfe506dc5c6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_checked="true" android:drawable="@drawable/abc_btn_radio_to_on_mtrl_015" />
-    <item android:drawable="@drawable/abc_btn_radio_to_on_mtrl_000" />
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml
deleted file mode 100644
index 9faf60ac61614e7c6d86d6977bf523c698a03d11..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!--
-    A solid rectangle so that we can use a PorterDuff multiply color filter to tint this
--->
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
-       android:shape="rectangle">
-    <solid android:color="@android:color/white" />
-</shape>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml
deleted file mode 100644
index f20add7e4b8854fdd841ea231ab1f9b5c2dfbff9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!-- This is a dummy drawable so that we can refer to the drawable ID -->
-<shape xmlns:android="http://schemas.android.com/apk/res/android">
-    <solid android:color="@android:color/white"/>
-</shape>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_dialog_material_background.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_dialog_material_background.xml
deleted file mode 100644
index 18560fcbefcb5f08cc8aee1349919a8f9405614f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_dialog_material_background.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<inset xmlns:android="http://schemas.android.com/apk/res/android"
-       android:insetLeft="16dp"
-       android:insetTop="16dp"
-       android:insetRight="16dp"
-       android:insetBottom="16dp">
-    <shape android:shape="rectangle">
-        <corners android:radius="2dp" />
-        <solid android:color="@android:color/white" />
-    </shape>
-</inset>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml
deleted file mode 100644
index 46c4e912003761b1380f57617660814e03474861..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<inset xmlns:android="http://schemas.android.com/apk/res/android"
-       android:insetLeft="@dimen/abc_edit_text_inset_horizontal_material"
-       android:insetRight="@dimen/abc_edit_text_inset_horizontal_material"
-       android:insetTop="@dimen/abc_edit_text_inset_top_material"
-       android:insetBottom="@dimen/abc_edit_text_inset_bottom_material">
-
-    <selector>
-        <item android:state_enabled="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/>
-        <item android:state_pressed="false" android:state_focused="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/>
-        <item android:drawable="@drawable/abc_textfield_activated_mtrl_alpha"/>
-    </selector>
-
-</inset>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_ic_ab_back_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_ic_ab_back_material.xml
deleted file mode 100644
index 5a895239c97db7cfc55d0f8d4539b91012848147..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_ic_ab_back_material.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-   Copyright (C) 2015 The Android Open Source Project
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file except in compliance with the License.
-    You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportWidth="24.0"
-        android:viewportHeight="24.0"
-        android:autoMirrored="true"
-        android:tint="?attr/colorControlNormal">
-    <path
-            android:pathData="M20,11L7.8,11l5.6,-5.6L12,4l-8,8l8,8l1.4,-1.4L7.8,13L20,13L20,11z"
-            android:fillColor="@android:color/white"/>
-</vector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_ic_arrow_drop_right_black_24dp.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_ic_arrow_drop_right_black_24dp.xml
deleted file mode 100644
index 68547eb7dc7dbf1e57319b1da0410b839a9337ae..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_ic_arrow_drop_right_black_24dp.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:height="24dp"
-        android:viewportHeight="24.0"
-        android:viewportWidth="24.0"
-        android:width="24dp"
-        android:tint="?attr/colorControlNormal"
-        android:autoMirrored="true">
-
-    <group
-            android:name="arrow"
-            android:rotation="90.0"
-            android:pivotX="12.0"
-            android:pivotY="12.0">
-        <path android:fillColor="@android:color/black" android:pathData="M7,14 L12,9 L17,14 L7,14 Z" />
-        <path android:pathData="M0,0 L24,0 L24,24 L0,24 L0,0 Z" />
-    </group>
-</vector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_ic_clear_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_ic_clear_material.xml
deleted file mode 100644
index e6d106b76e8375896555acd65498ca0e71d7eab7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_ic_clear_material.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-    Copyright (C) 2015 The Android Open Source Project
-
-    Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file except in compliance with the License.
-    You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportWidth="24.0"
-        android:viewportHeight="24.0"
-        android:tint="?attr/colorControlNormal">
-    <path
-            android:pathData="M19,6.41L17.59,5,12,10.59,6.41,5,5,6.41,10.59,12,5,17.59,6.41,19,12,13.41,17.59,19,19,17.59,13.41,12z"
-            android:fillColor="@android:color/white"/>
-</vector>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_ic_go_search_api_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_ic_go_search_api_material.xml
deleted file mode 100644
index 0c8811913cd3094f3c572e72d8cb62289adfe01b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_ic_go_search_api_material.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file except in compliance with the License.
-    You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportWidth="24.0"
-        android:viewportHeight="24.0"
-        android:tint="?attr/colorControlNormal">
-    <path
-        android:pathData="M10,6l-1.4,1.4 4.599999,4.6 -4.599999,4.6 1.4,1.4 6,-6z"
-        android:fillColor="@android:color/white"/>
-</vector>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_ic_menu_overflow_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_ic_menu_overflow_material.xml
deleted file mode 100644
index 1420edd7f1d1fd062d026ce0cc7540d2338d7d75..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_ic_menu_overflow_material.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-    Copyright (C) 2015 The Android Open Source Project
-
-    Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file except in compliance with the License.
-    You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportWidth="24.0"
-        android:viewportHeight="24.0"
-        android:tint="?attr/colorControlNormal">
-    <path
-            android:pathData="M12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2c-1.1,0 -2,0.9 -2,2S10.9,8 12,8zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2c1.1,0 2,-0.9 2,-2S13.1,10 12,10zM12,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2c1.1,0 2,-0.9 2,-2S13.1,16 12,16z"
-            android:fillColor="@android:color/white"/>
-</vector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_ic_search_api_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_ic_search_api_material.xml
deleted file mode 100644
index b4cba3476f75f2df33388e1141c7b4496e0334f0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_ic_search_api_material.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-    Copyright (C) 2016 The Android Open Source Project
-
-    Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file except in compliance with the License.
-    You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportWidth="24.0"
-        android:viewportHeight="24.0"
-        android:tint="?attr/colorControlNormal">
-    <path
-        android:pathData="M15.5,14l-0.8,0l-0.3,-0.3c1,-1.1 1.6,-2.6 1.6,-4.2C16,5.9 13.1,3 9.5,3C5.9,3 3,5.9 3,9.5S5.9,16 9.5,16c1.6,0 3.1,-0.6 4.2,-1.6l0.3,0.3l0,0.8l5,5l1.5,-1.5L15.5,14zM9.5,14C7,14 5,12 5,9.5S7,5 9.5,5C12,5 14,7 14,9.5S12,14 9.5,14z"
-        android:fillColor="@android:color/white"/>
-</vector>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_ic_voice_search_api_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_ic_voice_search_api_material.xml
deleted file mode 100644
index 143db558fb992b17cb451a87dd293f75f56dfdb6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_ic_voice_search_api_material.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-    Copyright (C) 2015 The Android Open Source Project
-
-    Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file except in compliance with the License.
-    You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportWidth="24.0"
-        android:viewportHeight="24.0"
-        android:tint="?attr/colorControlNormal">
-    <path
-        android:pathData="M12,14c1.7,0 3,-1.3 3,-3l0,-6c0,-1.7 -1.3,-3 -3,-3c-1.7,0 -3,1.3 -3,3l0,6C9,12.7 10.3,14 12,14zM17.299999,11c0,3 -2.5,5.1 -5.3,5.1c-2.8,0 -5.3,-2.1 -5.3,-5.1L5,11c0,3.4 2.7,6.2 6,6.7L11,21l2,0l0,-3.3c3.3,-0.5 6,-3.3 6,-6.7L17.299999,11.000001z"
-        android:fillColor="@android:color/white"/>
-</vector>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml
deleted file mode 100644
index 72162c222eea5218e4effb8f24b9b5ebc7f7ec7e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-
-    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
-    <item android:state_focused="true"  android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_disabled_holo_dark" />
-    <item android:state_focused="true"  android:state_enabled="false"                              android:drawable="@drawable/abc_list_selector_disabled_holo_dark" />
-    <item android:state_focused="true"                                android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_dark" />
-    <item android:state_focused="false"                               android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_dark" />
-    <item android:state_focused="true"                                                             android:drawable="@drawable/abc_list_focused_holo" />
-    <item                                                                                          android:drawable="@android:color/transparent" />
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml
deleted file mode 100644
index 1c180b2ee4819fd4c810b03c6715b7c4ab7bc5aa..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-
-    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
-    <item android:state_focused="true"  android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_disabled_holo_light" />
-    <item android:state_focused="true"  android:state_enabled="false"                              android:drawable="@drawable/abc_list_selector_disabled_holo_light" />
-    <item android:state_focused="true"                                android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_light" />
-    <item android:state_focused="false"                               android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_light" />
-    <item android:state_focused="true"                                                             android:drawable="@drawable/abc_list_focused_holo" />
-    <item                                                                                          android:drawable="@android:color/transparent" />
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml
deleted file mode 100644
index 0add58c86ac23a8f09b02e85e0e4986fd0684000..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<transition xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:drawable="@drawable/abc_list_pressed_holo_dark"  />
-    <item android:drawable="@drawable/abc_list_longpressed_holo"  />
-</transition>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml
deleted file mode 100644
index 0c1d3e67821244ccd21e853d2d82ca316b632b63..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<transition xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:drawable="@drawable/abc_list_pressed_holo_light"  />
-    <item android:drawable="@drawable/abc_list_longpressed_holo"  />
-</transition>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml
deleted file mode 100644
index 1fb5fc4516db6f0b0becff00fd36f2a0ce203de7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-
-    <item android:state_window_focused="false" android:drawable="@android:color/transparent" />
-
-    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
-    <item android:state_focused="true"  android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_disabled_holo_dark" />
-    <item android:state_focused="true"  android:state_enabled="false"                              android:drawable="@drawable/abc_list_selector_disabled_holo_dark" />
-    <item android:state_focused="true"                                android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_dark" />
-    <item android:state_focused="false"                               android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_dark" />
-    <item android:state_focused="true"                                                             android:drawable="@drawable/abc_list_focused_holo" />
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml
deleted file mode 100644
index 8d24047229b0c3b3cb388a852c5837afc925d004..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-
-    <item android:state_window_focused="false" android:drawable="@android:color/transparent" />
-
-    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
-    <item android:state_focused="true"  android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/abc_list_selector_disabled_holo_light" />
-    <item android:state_focused="true"  android:state_enabled="false"                              android:drawable="@drawable/abc_list_selector_disabled_holo_light" />
-    <item android:state_focused="true"                                android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_light" />
-    <item android:state_focused="false"                               android:state_pressed="true" android:drawable="@drawable/abc_list_selector_background_transition_holo_light" />
-    <item android:state_focused="true"                                                             android:drawable="@drawable/abc_list_focused_holo" />
-
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_ratingbar_indicator_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_ratingbar_indicator_material.xml
deleted file mode 100644
index bc339a349073ad89000b931f2e99bffed557b5c2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_ratingbar_indicator_material.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item
-        android:id="@android:id/background"
-        android:drawable="@drawable/abc_ic_star_black_36dp"/>
-    <item
-        android:id="@android:id/secondaryProgress"
-        android:drawable="@drawable/abc_ic_star_half_black_36dp"/>
-    <item android:id="@android:id/progress">
-        <bitmap
-            android:src="@drawable/abc_ic_star_black_36dp"
-            android:tileModeX="repeat"/>
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_ratingbar_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_ratingbar_material.xml
deleted file mode 100644
index dde914e0dcaf218eeaf3469d9cc00919dc487497..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_ratingbar_material.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item
-        android:id="@android:id/background"
-        android:drawable="@drawable/abc_ic_star_black_48dp"/>
-    <item
-        android:id="@android:id/secondaryProgress"
-        android:drawable="@drawable/abc_ic_star_half_black_48dp"/>
-    <item android:id="@android:id/progress">
-        <bitmap
-            android:src="@drawable/abc_ic_star_black_48dp"
-            android:tileModeX="repeat"/>
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_ratingbar_small_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_ratingbar_small_material.xml
deleted file mode 100644
index 6daff8bccfe4dd9c0d6caa81b739dfa39c1a4f70..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_ratingbar_small_material.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:id="@android:id/background"
-          android:drawable="@drawable/abc_ic_star_black_16dp" />
-    <item android:id="@android:id/secondaryProgress"
-          android:drawable="@drawable/abc_ic_star_half_black_16dp" />
-    <item android:id="@android:id/progress">
-        <bitmap
-                android:src="@drawable/abc_ic_star_black_16dp"
-                android:tileModeX="repeat"/>
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_seekbar_thumb_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_seekbar_thumb_material.xml
deleted file mode 100644
index 7fea83bc86983de6d28c9d745ed187d9a09aa96d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_seekbar_thumb_material.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-          android:constantSize="true">
-    <item android:state_enabled="false" android:state_pressed="true">
-        <bitmap android:src="@drawable/abc_scrubber_control_off_mtrl_alpha"
-                android:gravity="center"/>
-    </item>
-    <item android:state_enabled="false">
-        <bitmap android:src="@drawable/abc_scrubber_control_off_mtrl_alpha"
-                android:gravity="center"/>
-    </item>
-    <item android:state_pressed="true">
-        <bitmap android:src="@drawable/abc_scrubber_control_to_pressed_mtrl_005"
-                android:gravity="center"/>
-    </item>
-    <item>
-        <bitmap android:src="@drawable/abc_scrubber_control_to_pressed_mtrl_000"
-                android:gravity="center"/>
-    </item>
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_seekbar_tick_mark_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_seekbar_tick_mark_material.xml
deleted file mode 100644
index e2d86c97e3bcf4b78c087a790d546bff9c19ea5a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_seekbar_tick_mark_material.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
-       android:shape="oval">
-    <size android:width="@dimen/abc_progress_bar_height_material"
-          android:height="@dimen/abc_progress_bar_height_material"/>
-    <solid android:color="@android:color/white"/>
-</shape>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_seekbar_track_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_seekbar_track_material.xml
deleted file mode 100644
index e68ac03e90bd262a819d10a9faa1fd3097abfbb6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_seekbar_track_material.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:id="@android:id/background"
-          android:drawable="@drawable/abc_scrubber_track_mtrl_alpha"/>
-    <item android:id="@android:id/secondaryProgress">
-        <scale android:scaleWidth="100%">
-            <selector>
-                <item android:state_enabled="false">
-                    <color android:color="@android:color/transparent"/>
-                </item>
-                <item android:drawable="@drawable/abc_scrubber_primary_mtrl_alpha"/>
-            </selector>
-        </scale>
-    </item>
-    <item android:id="@android:id/progress">
-        <scale android:scaleWidth="100%">
-            <selector>
-                <item android:state_enabled="false">
-                    <color android:color="@android:color/transparent"/>
-                </item>
-                <item android:drawable="@drawable/abc_scrubber_primary_mtrl_alpha"/>
-            </selector>
-        </scale>
-    </item>
-</layer-list>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml
deleted file mode 100644
index d0f46a8097425ef3d9eac3a0a09921b2b2c2de60..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<inset xmlns:android="http://schemas.android.com/apk/res/android"
-       android:insetLeft="@dimen/abc_control_inset_material"
-       android:insetTop="@dimen/abc_control_inset_material"
-       android:insetBottom="@dimen/abc_control_inset_material"
-       android:insetRight="@dimen/abc_control_inset_material">
-    <selector>
-        <item android:state_checked="false" android:state_pressed="false">
-            <layer-list>
-                <item android:drawable="@drawable/abc_textfield_default_mtrl_alpha" />
-                <item android:drawable="@drawable/abc_spinner_mtrl_am_alpha" />
-            </layer-list>
-        </item>
-        <item>
-            <layer-list>
-                <item android:drawable="@drawable/abc_textfield_activated_mtrl_alpha" />
-                <item android:drawable="@drawable/abc_spinner_mtrl_am_alpha" />
-            </layer-list>
-        </item>
-    </selector>
-</inset>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml
deleted file mode 100644
index ee96ec2e7ab099b45fb792e1dbd722b615bb869e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_checked="true" android:drawable="@drawable/abc_btn_switch_to_on_mtrl_00012" />
-    <item android:drawable="@drawable/abc_btn_switch_to_on_mtrl_00001" />
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml
deleted file mode 100644
index 1a8de1b69b5aedfe5126c8b67548fa04e36daa3e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_selected="true" android:drawable="@drawable/abc_tab_indicator_mtrl_alpha" />
-    <item android:drawable="@android:color/transparent" />
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml
deleted file mode 100644
index 885670c999c3e33378285014c73b4cec7a14fa90..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License.
--->
-
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
-       android:shape="rectangle">
-    <size android:height="2dp"
-          android:width="2dp"/>
-    <solid android:color="@android:color/white"/>
-</shape>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml
deleted file mode 100644
index 08873966e4393b201dd16f64a083853fc3dcdec9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:state_enabled="true" android:state_focused="true" android:drawable="@drawable/abc_textfield_search_activated_mtrl_alpha"/>
-    <item android:state_enabled="true" android:state_activated="true" android:drawable="@drawable/abc_textfield_search_activated_mtrl_alpha"/>
-    <item android:state_enabled="true" android:drawable="@drawable/abc_textfield_search_default_mtrl_alpha"/>
-    <item android:drawable="@drawable/abc_textfield_search_default_mtrl_alpha"/>
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/abc_vector_test.xml b/android/.build/intermediates/res/merged/debug/drawable/abc_vector_test.xml
deleted file mode 100644
index d5da2cbdca77e5df5b93066112f661a5f53169fd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/abc_vector_test.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-   Copyright (C) 2016 The Android Open Source Project
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file except in compliance with the License.
-    You may obtain a copy of the License at
-
-         http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
--->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
-        android:width="24dp"
-        android:height="24dp"
-        android:viewportHeight="24.0"
-        android:viewportWidth="24.0">
-    <path
-        android:fillColor="@android:color/white"
-        android:pathData="M20,11L7.8,11l5.6,-5.6L12,4l-8,8l8,8l1.4,-1.4L7.8,13L20,13L20,11z"/>
-</vector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_dark.xml b/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_dark.xml
deleted file mode 100644
index aab36cc371e18b8cd30184e4d2216974ce955e68..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_dark.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item
-        android:state_enabled="false"
-        android:drawable="@drawable/common_google_signin_btn_icon_disabled" />
-    <!-- Pressed state is handled by common_google_signin_btn_tint -->
-    <item
-        android:state_focused="true"
-        android:drawable="@drawable/common_google_signin_btn_icon_dark_focused" />
-    <item
-        android:drawable="@drawable/common_google_signin_btn_icon_dark_normal" />
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_dark_focused.xml b/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_dark_focused.xml
deleted file mode 100644
index 49549b853636879024f00ec195298cda8c8166ee..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_dark_focused.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:left="1dp"
-          android:top="1dp"
-          android:right="1dp"
-          android:bottom="1dp">
-        <shape android:shape="rectangle">
-            <!-- Explicit transparent fill to avoid GB filling with the stroke colour -->
-            <solid android:color="@android:color/transparent" />
-            <stroke android:color="#FFC6DAFB"
-                    android:width="4dp" />
-        </shape>
-    </item>
-    <item android:drawable="@drawable/common_google_signin_btn_icon_dark_normal" />
-</layer-list>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_dark_normal.xml b/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_dark_normal.xml
deleted file mode 100644
index 27c9bce9f1d6fecf5529de4b56b4ef1fa09b244e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_dark_normal.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:drawable="@drawable/common_google_signin_btn_icon_dark_normal_background" />
-    <item>
-        <bitmap android:src="@drawable/googleg_standard_color_18"
-                android:gravity="center" />
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_disabled.xml b/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_disabled.xml
deleted file mode 100644
index c8429bfc3ccd59f3b14105a6867e2d335b684dd5..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_disabled.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:left="3dp"
-          android:top="3dp"
-          android:right="3dp"
-          android:bottom="3dp">
-        <shape android:shape="rectangle">
-            <solid android:color="#EBEBEB" />
-            <corners android:radius="2dp" />
-            <padding android:left="7dp"
-                     android:top="7dp"
-                     android:right="7dp"
-                     android:bottom="7dp" />
-        </shape>
-    </item>
-    <item>
-        <bitmap android:src="@drawable/googleg_disabled_color_18"
-                android:gravity="center" />
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_light.xml b/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_light.xml
deleted file mode 100644
index b2a0d3cbfe0342ed5af9fed3239f502030143333..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_light.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item
-        android:state_enabled="false"
-        android:drawable="@drawable/common_google_signin_btn_icon_disabled" />
-    <!-- Pressed state is handled by common_google_signin_btn_tint -->
-    <item
-        android:state_focused="true"
-        android:drawable="@drawable/common_google_signin_btn_icon_light_focused" />
-    <item
-        android:drawable="@drawable/common_google_signin_btn_icon_light_normal" />
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_light_focused.xml b/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_light_focused.xml
deleted file mode 100644
index 678ca07e248548105250d074516d7c14b3706a53..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_light_focused.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:left="1dp"
-          android:top="1dp"
-          android:right="1dp"
-          android:bottom="1dp">
-        <shape android:shape="rectangle">
-            <!-- Explicit transparent fill to avoid GB filling with the stroke colour -->
-            <solid android:color="@android:color/transparent" />
-            <stroke android:color="#4D4284F2"
-                    android:width="4dp" />
-        </shape>
-    </item>
-    <item android:drawable="@drawable/common_google_signin_btn_icon_light_normal" />
-</layer-list>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_light_normal.xml b/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_light_normal.xml
deleted file mode 100644
index 0cbb0b5f5568724f7f359fc54cb555a75764fe08..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_icon_light_normal.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:drawable="@drawable/common_google_signin_btn_icon_light_normal_background" />
-    <item>
-        <bitmap android:src="@drawable/googleg_standard_color_18"
-                android:gravity="center" />
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_dark.xml b/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_dark.xml
deleted file mode 100644
index b42c758596c2d6dde570fead19f10549266c57ad..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_dark.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Currently Google SignIn button in Android does not support dark scheme.
-    Using light scheme instead -->
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item
-        android:state_enabled="false"
-        android:drawable="@drawable/common_google_signin_btn_text_disabled" />
-    <!-- Pressed state is handled by common_google_signin_btn_tint -->
-    <item
-        android:state_focused="true"
-        android:drawable="@drawable/common_google_signin_btn_text_dark_focused" />
-    <item
-        android:drawable="@drawable/common_google_signin_btn_text_dark_normal" />
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_dark_focused.xml b/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_dark_focused.xml
deleted file mode 100644
index 2ff9c3f2342aaec8b08b20a5833b9d4a428aeaaa..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_dark_focused.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:left="1dp"
-          android:top="1dp"
-          android:right="1dp"
-          android:bottom="1dp">
-        <shape android:shape="rectangle">
-            <!-- Explicit transparent fill to avoid GB filling with the stroke colour -->
-            <solid android:color="@android:color/transparent" />
-            <stroke android:color="#FFC6DAFB"
-                    android:width="4dp" />
-        </shape>
-    </item>
-    <item android:drawable="@drawable/common_google_signin_btn_text_dark_normal" />
-</layer-list>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_dark_normal.xml b/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_dark_normal.xml
deleted file mode 100644
index 640a9eb9dda4f1cf1629867c365aab1543180570..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_dark_normal.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:drawable="@drawable/common_google_signin_btn_text_dark_normal_background" />
-    <item android:left="-36dp">
-        <bitmap android:src="@drawable/googleg_standard_color_18"
-                android:gravity="left|center_vertical" />
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_disabled.xml b/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_disabled.xml
deleted file mode 100644
index 830826c836eb7a968621f8be446ff7240f0889cb..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_disabled.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:left="3dp"
-          android:top="3dp"
-          android:right="3dp"
-          android:bottom="3dp">
-        <shape android:shape="rectangle">
-            <solid android:color="#EBEBEB" />
-            <corners android:radius="2dp" />
-            <padding android:left="50dp"
-                     android:top="8dp"
-                     android:right="11dp"
-                     android:bottom="7dp" />
-        </shape>
-    </item>
-    <item android:left="-36dp">
-        <bitmap android:src="@drawable/googleg_disabled_color_18"
-                android:gravity="left|center_vertical" />
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_light.xml b/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_light.xml
deleted file mode 100644
index 7fc64321d44aae11130496164014c5d438ddede0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_light.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
-    <item
-        android:state_enabled="false"
-        android:drawable="@drawable/common_google_signin_btn_text_disabled" />
-    <!-- Pressed state is handled by common_google_signin_btn_tint -->
-    <item
-        android:state_focused="true"
-        android:drawable="@drawable/common_google_signin_btn_text_light_focused" />
-    <item
-        android:drawable="@drawable/common_google_signin_btn_text_light_normal" />
-</selector>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_light_focused.xml b/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_light_focused.xml
deleted file mode 100644
index bde9ef6cc491f0e6f7b04114e65cfbef64093646..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_light_focused.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:left="1dp"
-          android:top="1dp"
-          android:right="1dp"
-          android:bottom="1dp">
-        <shape android:shape="rectangle">
-            <!-- Explicit transparent fill to avoid GB filling with the stroke colour -->
-            <solid android:color="@android:color/transparent" />
-            <stroke android:color="#4D4284F2"
-                    android:width="4dp" />
-        </shape>
-    </item>
-    <item android:drawable="@drawable/common_google_signin_btn_text_light_normal" />
-</layer-list>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_light_normal.xml b/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_light_normal.xml
deleted file mode 100644
index 191869b0c733f6c8c2a1b1e04672d995da2869d7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/common_google_signin_btn_text_light_normal.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-    <item android:drawable="@drawable/common_google_signin_btn_text_light_normal_background" />
-    <item android:left="-36dp">
-        <bitmap android:src="@drawable/googleg_standard_color_18"
-                android:gravity="left|center_vertical" />
-    </item>
-</layer-list>
diff --git a/android/.build/intermediates/res/merged/debug/drawable/notification_bg.xml b/android/.build/intermediates/res/merged/debug/drawable/notification_bg.xml
deleted file mode 100644
index 1232b4cb550ba143547a463610a73bd7a16a303a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/notification_bg.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:exitFadeDuration="@android:integer/config_mediumAnimTime">
-
-    <item android:state_pressed="true"
-        android:drawable="@drawable/notification_bg_normal_pressed" />
-    <item android:state_pressed="false" android:drawable="@drawable/notification_bg_normal" />
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable/notification_bg_low.xml b/android/.build/intermediates/res/merged/debug/drawable/notification_bg_low.xml
deleted file mode 100644
index 72e58ae716c5df911713087b13431b78c25f2919..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/notification_bg_low.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
-    android:exitFadeDuration="@android:integer/config_mediumAnimTime">
-
-    <item android:state_pressed="true"  android:drawable="@drawable/notification_bg_low_pressed" />
-    <item android:state_pressed="false" android:drawable="@drawable/notification_bg_low_normal" />
-</selector>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable/notification_icon_background.xml b/android/.build/intermediates/res/merged/debug/drawable/notification_icon_background.xml
deleted file mode 100644
index 490a797eaa4388374d3279744baa3e58452e3280..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/notification_icon_background.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
-    android:shape="oval">
-    <solid
-        android:color="@color/notification_icon_bg_color"/>
-</shape>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/drawable/notification_tile_bg.xml b/android/.build/intermediates/res/merged/debug/drawable/notification_tile_bg.xml
deleted file mode 100644
index 8eee7ef0115603e6ee198d9439c2b3aef62b34ad..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/drawable/notification_tile_bg.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<bitmap
-    xmlns:android="http://schemas.android.com/apk/res/android"
-    android:tileMode="repeat"
-    android:src="@drawable/notify_panel_notification_icon_bg"
-/>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout-v11/notification_media_action.xml b/android/.build/intermediates/res/merged/debug/layout-v11/notification_media_action.xml
deleted file mode 100644
index d54679292aded18348b09a01dc9fda6f607adfbd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout-v11/notification_media_action.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2012 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<ImageButton xmlns:android="http://schemas.android.com/apk/res/android"
-    style="?android:attr/borderlessButtonStyle"
-    android:id="@+id/action0"
-    android:layout_width="48dp"
-    android:layout_height="match_parent"
-    android:layout_marginLeft="2dp"
-    android:layout_marginRight="2dp"
-    android:layout_weight="1"
-    android:gravity="center"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout-v11/notification_media_cancel_action.xml b/android/.build/intermediates/res/merged/debug/layout-v11/notification_media_cancel_action.xml
deleted file mode 100644
index c2bd8c2928a6d86de80c98956123476fec13d0e8..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout-v11/notification_media_cancel_action.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<ImageButton xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:app="http://schemas.android.com/apk/res-auto"
-    style="?android:attr/borderlessButtonStyle"
-    android:id="@+id/cancel_action"
-    android:layout_width="48dp"
-    android:layout_height="match_parent"
-    android:layout_marginLeft="2dp"
-    android:layout_marginRight="2dp"
-    android:layout_weight="1"
-    android:src="@android:drawable/ic_menu_close_clear_cancel"
-    android:gravity="center"
-    android:visibility="gone"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media.xml b/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media.xml
deleted file mode 100644
index b72fd97de9baf9c305e297b3996f5a542cb16436..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/status_bar_latest_event_content"
-    android:layout_width="match_parent"
-    android:layout_height="128dp"
-    >
-    <include layout="@layout/notification_template_icon_group"
-        android:layout_width="@dimen/notification_large_icon_width"
-        android:layout_height="@dimen/notification_large_icon_height"
-    />
-    <include layout="@layout/notification_media_cancel_action"
-        android:layout_width="48dp"
-        android:layout_height="48dp"
-        android:layout_marginLeft="2dp"
-        android:layout_marginRight="2dp"
-        android:layout_alignParentRight="true"
-        android:layout_alignParentEnd="true" />
-    <include layout="@layout/notification_template_lines_media"
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content"
-        android:layout_gravity="fill_vertical"
-        android:layout_marginLeft="@dimen/notification_large_icon_width"
-        android:layout_marginStart="@dimen/notification_large_icon_width"
-        android:layout_toLeftOf="@id/cancel_action"
-        android:layout_toStartOf="@id/cancel_action"/>
-    <LinearLayout
-        android:id="@+id/media_actions"
-        android:layout_width="match_parent"
-        android:layout_height="48dp"
-        android:layout_alignParentBottom="true"
-        android:layout_marginLeft="12dp"
-        android:layout_marginRight="12dp"
-        android:orientation="horizontal"
-        android:layoutDirection="ltr"
-        >
-        <!-- media buttons will be added here -->
-    </LinearLayout>
-    <ImageView
-        android:layout_width="match_parent"
-        android:layout_height="1dp"
-        android:layout_above="@id/media_actions"
-        android:id="@+id/action_divider"
-        android:background="?android:attr/dividerHorizontal" />
-</RelativeLayout>
diff --git a/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media_custom.xml b/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media_custom.xml
deleted file mode 100644
index c88d799ac7219a814c8edaec9aeab7cd1834de3a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media_custom.xml
+++ /dev/null
@@ -1,107 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/status_bar_latest_event_content"
-    android:layout_width="match_parent"
-    android:layout_height="128dp"
-    >
-    <include layout="@layout/notification_template_icon_group"
-        android:layout_width="@dimen/notification_large_icon_width"
-        android:layout_height="@dimen/notification_large_icon_height"
-    />
-    <include layout="@layout/notification_media_cancel_action"
-        android:layout_width="48dp"
-        android:layout_height="48dp"
-        android:layout_marginLeft="2dp"
-        android:layout_marginRight="2dp"
-        android:layout_alignParentRight="true"
-        android:layout_alignParentEnd="true"/>
-    <LinearLayout
-        android:id="@+id/notification_main_column_container"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:layout_marginLeft="@dimen/notification_large_icon_height"
-        android:layout_marginStart="@dimen/notification_large_icon_height"
-        android:minHeight="@dimen/notification_large_icon_height"
-        android:paddingTop="@dimen/notification_main_column_padding_top"
-        android:orientation="horizontal"
-        android:layout_toLeftOf="@id/cancel_action"
-        android:layout_toStartOf="@id/cancel_action">
-        <FrameLayout
-            android:id="@+id/notification_main_column"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_weight="1"
-            android:layout_marginLeft="@dimen/notification_content_margin_start"
-            android:layout_marginStart="@dimen/notification_content_margin_start"
-            android:layout_marginRight="8dp"
-            android:layout_marginEnd="8dp"
-            android:layout_marginBottom="8dp"
-        />
-        <FrameLayout
-            android:id="@+id/right_side"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:layout_marginRight="8dp"
-            android:layout_marginEnd="8dp"
-            android:paddingTop="@dimen/notification_right_side_padding_top">
-            <DateTimeView android:id="@+id/time"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:singleLine="true"
-                android:layout_gravity="end|top"
-                android:visibility="gone"
-            />
-            <Chronometer android:id="@+id/chronometer"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:singleLine="true"
-                android:layout_gravity="end|top"
-                android:visibility="gone"
-            />
-            <TextView android:id="@+id/info"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Info.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_marginTop="20dp"
-                android:layout_gravity="end|bottom"
-                android:singleLine="true"
-            />
-        </FrameLayout>
-    </LinearLayout>
-    <LinearLayout
-        android:id="@+id/media_actions"
-        android:layout_width="match_parent"
-        android:layout_height="48dp"
-        android:layout_alignParentBottom="true"
-        android:layout_marginLeft="12dp"
-        android:layout_marginRight="12dp"
-        android:orientation="horizontal"
-        android:layoutDirection="ltr"
-        >
-        <!-- media buttons will be added here -->
-    </LinearLayout>
-    <ImageView
-        android:layout_width="match_parent"
-        android:layout_height="1dp"
-        android:layout_above="@id/media_actions"
-        android:id="@+id/action_divider"
-        android:background="?android:attr/dividerHorizontal" />
-</RelativeLayout>
diff --git a/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media_narrow.xml b/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media_narrow.xml
deleted file mode 100644
index 979c8f4b2e7676229508155e92ceec8a3ba6c124..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media_narrow.xml
+++ /dev/null
@@ -1,68 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<!-- Layout to be used with only max 3 actions. It has a much larger picture at the left side-->
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/status_bar_latest_event_content"
-    android:layout_width="match_parent"
-    android:layout_height="128dp"
-    >
-    <ImageView android:id="@+id/icon"
-        android:layout_width="128dp"
-        android:layout_height="128dp"
-        android:scaleType="centerCrop"
-        />
-
-    <include layout="@layout/notification_media_cancel_action"
-        android:layout_width="48dp"
-        android:layout_height="48dp"
-        android:layout_marginLeft="2dp"
-        android:layout_marginRight="2dp"
-        android:layout_alignParentRight="true"
-        android:layout_alignParentEnd="true"/>
-
-    <include layout="@layout/notification_template_lines_media"
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content"
-        android:layout_marginLeft="128dp"
-        android:layout_marginStart="128dp"
-        android:layout_toLeftOf="@id/cancel_action"
-        android:layout_toStartOf="@id/cancel_action"/>
-
-    <LinearLayout
-        android:id="@+id/media_actions"
-        android:layout_width="match_parent"
-        android:layout_height="48dp"
-        android:layout_toRightOf="@id/icon"
-        android:layout_toEndOf="@id/icon"
-        android:layout_alignParentBottom="true"
-        android:layout_marginLeft="12dp"
-        android:layout_marginRight="12dp"
-        android:orientation="horizontal"
-        android:layoutDirection="ltr"
-        >
-        <!-- media buttons will be added here -->
-    </LinearLayout>
-    <ImageView
-        android:layout_width="match_parent"
-        android:layout_height="1dp"
-        android:layout_toRightOf="@id/icon"
-        android:layout_toEndOf="@id/icon"
-        android:layout_above="@id/media_actions"
-        android:id="@+id/action_divider"
-        android:background="?android:attr/dividerHorizontal" />
-</RelativeLayout>
diff --git a/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media_narrow_custom.xml b/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media_narrow_custom.xml
deleted file mode 100644
index b7fbff7949838c9f78bfa565991ffa8fb096e4ae..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout-v11/notification_template_big_media_narrow_custom.xml
+++ /dev/null
@@ -1,115 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<!-- Layout to be used with only max 3 actions. It has a much larger picture at the left side-->
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/status_bar_latest_event_content"
-    android:layout_width="match_parent"
-    android:layout_height="128dp"
-    >
-    <ImageView android:id="@+id/icon"
-        android:layout_width="128dp"
-        android:layout_height="128dp"
-        android:scaleType="centerCrop"
-        />
-
-    <include layout="@layout/notification_media_cancel_action"
-        android:layout_width="48dp"
-        android:layout_height="48dp"
-        android:layout_marginLeft="2dp"
-        android:layout_marginRight="2dp"
-        android:layout_alignParentRight="true"
-        android:layout_alignParentEnd="true"/>
-
-    <LinearLayout
-        android:id="@+id/notification_main_column_container"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:layout_marginLeft="128dp"
-        android:layout_marginStart="128dp"
-        android:minHeight="@dimen/notification_large_icon_height"
-        android:paddingTop="@dimen/notification_main_column_padding_top"
-        android:orientation="horizontal"
-        android:layout_toLeftOf="@id/cancel_action"
-        android:layout_toStartOf="@id/cancel_action">
-        <FrameLayout
-            android:id="@+id/notification_main_column"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_weight="1"
-            android:layout_marginLeft="@dimen/notification_media_narrow_margin"
-            android:layout_marginStart="@dimen/notification_media_narrow_margin"
-            android:layout_marginRight="8dp"
-            android:layout_marginEnd="8dp"
-            android:layout_marginBottom="8dp"/>
-        <FrameLayout
-            android:id="@+id/right_side"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:layout_marginRight="8dp"
-            android:layout_marginEnd="8dp"
-            android:paddingTop="@dimen/notification_right_side_padding_top">
-            <DateTimeView android:id="@+id/time"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:singleLine="true"
-                android:layout_gravity="end|top"
-                android:visibility="gone"
-            />
-            <Chronometer android:id="@+id/chronometer"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:singleLine="true"
-                android:layout_gravity="end|top"
-                android:visibility="gone"
-            />
-            <TextView android:id="@+id/info"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Info.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_marginTop="20dp"
-                android:layout_gravity="end|bottom"
-                android:singleLine="true"
-            />
-        </FrameLayout>
-    </LinearLayout>
-
-    <LinearLayout
-        android:id="@+id/media_actions"
-        android:layout_width="match_parent"
-        android:layout_height="48dp"
-        android:layout_toRightOf="@id/icon"
-        android:layout_toEndOf="@id/icon"
-        android:layout_alignParentBottom="true"
-        android:layout_marginLeft="12dp"
-        android:layout_marginRight="12dp"
-        android:orientation="horizontal"
-        android:layoutDirection="ltr"
-        >
-        <!-- media buttons will be added here -->
-    </LinearLayout>
-    <ImageView
-        android:layout_width="match_parent"
-        android:layout_height="1dp"
-        android:layout_toRightOf="@id/icon"
-        android:layout_toEndOf="@id/icon"
-        android:layout_above="@id/media_actions"
-        android:id="@+id/action_divider"
-        android:background="?android:attr/dividerHorizontal" />
-</RelativeLayout>
diff --git a/android/.build/intermediates/res/merged/debug/layout-v16/notification_template_custom_big.xml b/android/.build/intermediates/res/merged/debug/layout-v16/notification_template_custom_big.xml
deleted file mode 100644
index 24c33232a5ec06a88058c9903dd7e4654dbeed1a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout-v16/notification_template_custom_big.xml
+++ /dev/null
@@ -1,117 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/notification_background"
-    android:layout_width="match_parent"
-    android:layout_height="wrap_content" >
-    <ImageView android:id="@+id/icon"
-        android:layout_width="@dimen/notification_large_icon_width"
-        android:layout_height="@dimen/notification_large_icon_height"
-        android:scaleType="center"
-    />
-    <LinearLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:layout_gravity="top"
-        android:orientation="vertical" >
-        <LinearLayout
-            android:id="@+id/notification_main_column_container"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_marginLeft="@dimen/notification_large_icon_width"
-            android:layout_marginStart="@dimen/notification_large_icon_width"
-            android:paddingTop="@dimen/notification_main_column_padding_top"
-            android:minHeight="@dimen/notification_large_icon_height"
-            android:orientation="horizontal">
-            <FrameLayout
-                android:id="@+id/notification_main_column"
-                android:layout_width="match_parent"
-                android:layout_height="wrap_content"
-                android:layout_weight="1"
-                android:layout_marginLeft="@dimen/notification_content_margin_start"
-                android:layout_marginStart="@dimen/notification_content_margin_start"
-                android:layout_marginBottom="8dp"
-                android:layout_marginRight="8dp"
-                android:layout_marginEnd="8dp" />
-            <FrameLayout
-                android:id="@+id/right_side"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_marginRight="8dp"
-                android:layout_marginEnd="8dp"
-                android:paddingTop="@dimen/notification_right_side_padding_top">
-                <ViewStub android:id="@+id/time"
-                    android:layout_width="wrap_content"
-                    android:layout_height="wrap_content"
-                    android:layout_gravity="end|top"
-                    android:visibility="gone"
-                    android:layout="@layout/notification_template_part_time" />
-                <ViewStub android:id="@+id/chronometer"
-                    android:layout_width="wrap_content"
-                    android:layout_height="wrap_content"
-                    android:layout_gravity="end|top"
-                    android:visibility="gone"
-                    android:layout="@layout/notification_template_part_chronometer" />
-                <LinearLayout
-                    android:layout_width="match_parent"
-                    android:layout_height="wrap_content"
-                    android:orientation="horizontal"
-                    android:layout_gravity="end|bottom"
-                    android:layout_marginTop="20dp">
-                    <TextView android:id="@+id/info"
-                        android:textAppearance="@style/TextAppearance.AppCompat.Notification.Info"
-                        android:layout_width="wrap_content"
-                        android:layout_height="wrap_content"
-                        android:singleLine="true"
-                    />
-                    <ImageView android:id="@+id/right_icon"
-                        android:layout_width="16dp"
-                        android:layout_height="16dp"
-                        android:layout_gravity="center"
-                        android:layout_marginLeft="8dp"
-                        android:layout_marginStart="8dp"
-                        android:scaleType="centerInside"
-                        android:visibility="gone"
-                        android:alpha="0.6"
-                    />
-                </LinearLayout>
-            </FrameLayout>
-        </LinearLayout>
-        <ImageView
-            android:layout_width="match_parent"
-            android:layout_height="1px"
-            android:id="@+id/action_divider"
-            android:visibility="gone"
-            android:layout_marginLeft="@dimen/notification_large_icon_width"
-            android:layout_marginStart="@dimen/notification_large_icon_width"
-            android:background="?android:attr/dividerHorizontal" />
-        <LinearLayout
-            android:id="@+id/actions"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:orientation="horizontal"
-            android:visibility="gone"
-            android:showDividers="middle"
-            android:divider="?android:attr/listDivider"
-            android:dividerPadding="12dp"
-            android:layout_marginLeft="@dimen/notification_large_icon_width"
-            android:layout_marginStart="@dimen/notification_large_icon_width" >
-            <!-- actions will be added here -->
-        </LinearLayout>
-    </LinearLayout>
-</FrameLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout-v21/notification_action.xml b/android/.build/intermediates/res/merged/debug/layout-v21/notification_action.xml
deleted file mode 100644
index c60bf7d4aeaccdf1490249e4cb147a1e29ea5dbc..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout-v21/notification_action.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    style="@style/Widget.AppCompat.NotificationActionContainer"
-    android:id="@+id/action_container"
-    android:layout_width="0dp"
-    android:layout_weight="1"
-    android:layout_height="48dp"
-    android:paddingStart="4dp"
-    android:orientation="horizontal">
-    <ImageView
-        android:id="@+id/action_image"
-        android:layout_width="@dimen/notification_action_icon_size"
-        android:layout_height="@dimen/notification_action_icon_size"
-        android:layout_gravity="center|start"
-        android:scaleType="centerInside"/>
-    <TextView
-        style="@style/Widget.AppCompat.NotificationActionText"
-        android:id="@+id/action_text"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center|start"
-        android:paddingStart="4dp"
-        android:singleLine="true"
-        android:ellipsize="end"
-        android:clickable="false"/>
-</LinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout-v21/notification_action_tombstone.xml b/android/.build/intermediates/res/merged/debug/layout-v21/notification_action_tombstone.xml
deleted file mode 100644
index 1637c6fdd70117c919be6a67164a5ea9780107a6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout-v21/notification_action_tombstone.xml
+++ /dev/null
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    style="@style/Widget.AppCompat.NotificationActionContainer"
-    android:id="@+id/action_container"
-    android:layout_width="0dp"
-    android:layout_weight="1"
-    android:layout_height="48dp"
-    android:paddingStart="4dp"
-    android:orientation="horizontal"
-    android:enabled="false"
-    android:background="@null">
-    <ImageView
-        android:id="@+id/action_image"
-        android:layout_width="@dimen/notification_action_icon_size"
-        android:layout_height="@dimen/notification_action_icon_size"
-        android:layout_gravity="center|start"
-        android:scaleType="centerInside"
-        android:enabled="false"
-        android:alpha="0.5"/>
-    <TextView
-        style="@style/Widget.AppCompat.NotificationActionText"
-        android:id="@+id/action_text"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center|start"
-        android:paddingStart="4dp"
-        android:singleLine="true"
-        android:ellipsize="end"
-        android:clickable="false"
-        android:enabled="false"
-        android:alpha="0.5"/>
-</LinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout-v21/notification_template_custom_big.xml b/android/.build/intermediates/res/merged/debug/layout-v21/notification_template_custom_big.xml
deleted file mode 100644
index 38332bd9ee34d7f4d57dd51dcf393564a57045d7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout-v21/notification_template_custom_big.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/notification_background"
-    android:layout_width="match_parent"
-    android:layout_height="wrap_content" >
-    <include layout="@layout/notification_template_icon_group"
-        android:layout_width="@dimen/notification_large_icon_width"
-        android:layout_height="@dimen/notification_large_icon_height"
-    />
-    <LinearLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:layout_gravity="top"
-        android:layout_marginStart="@dimen/notification_large_icon_width"
-        android:orientation="vertical" >
-        <LinearLayout
-            android:id="@+id/notification_main_column_container"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:minHeight="@dimen/notification_large_icon_height"
-            android:orientation="horizontal">
-            <FrameLayout
-                android:id="@+id/notification_main_column"
-                android:layout_width="match_parent"
-                android:layout_height="wrap_content"
-                android:layout_weight="1"
-                android:layout_marginEnd="8dp"
-                android:layout_marginBottom="8dp"/>
-            <FrameLayout
-                android:id="@+id/right_side"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_marginEnd="8dp"
-                android:paddingTop="@dimen/notification_right_side_padding_top">
-                <ViewStub android:id="@+id/time"
-                    android:layout_width="wrap_content"
-                    android:layout_height="wrap_content"
-                    android:layout_gravity="end|top"
-                    android:visibility="gone"
-                    android:layout="@layout/notification_template_part_time" />
-                <ViewStub android:id="@+id/chronometer"
-                    android:layout_width="wrap_content"
-                    android:layout_height="wrap_content"
-                    android:layout_gravity="end|top"
-                    android:visibility="gone"
-                    android:layout="@layout/notification_template_part_chronometer" />
-                <TextView android:id="@+id/info"
-                    android:textAppearance="@style/TextAppearance.AppCompat.Notification.Info"
-                    android:layout_width="wrap_content"
-                    android:layout_height="wrap_content"
-                    android:layout_marginTop="20dp"
-                    android:layout_gravity="end|bottom"
-                    android:singleLine="true"
-                />
-            </FrameLayout>
-        </LinearLayout>
-        <ImageView
-            android:layout_width="match_parent"
-            android:layout_height="1dp"
-            android:id="@+id/action_divider"
-            android:visibility="gone"
-            android:background="#29000000" />
-        <LinearLayout
-            android:id="@+id/actions"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_marginStart="-8dp"
-            android:orientation="horizontal"
-            android:visibility="gone"
-        >
-            <!-- actions will be added here -->
-        </LinearLayout>
-    </LinearLayout>
-</FrameLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout-v21/notification_template_icon_group.xml b/android/.build/intermediates/res/merged/debug/layout-v21/notification_template_icon_group.xml
deleted file mode 100644
index 6c1902242680b20d40736b98e1997281cbd44c10..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout-v21/notification_template_icon_group.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<FrameLayout
-    xmlns:android="http://schemas.android.com/apk/res/android"
-    android:layout_width="@dimen/notification_large_icon_width"
-    android:layout_height="@dimen/notification_large_icon_height"
-    android:id="@+id/icon_group"
->
-    <ImageView android:id="@+id/icon"
-        android:layout_width="match_parent"
-        android:layout_height="match_parent"
-        android:layout_marginTop="@dimen/notification_big_circle_margin"
-        android:layout_marginBottom="@dimen/notification_big_circle_margin"
-        android:layout_marginStart="@dimen/notification_big_circle_margin"
-        android:layout_marginEnd="@dimen/notification_big_circle_margin"
-        android:scaleType="centerInside"
-    />
-    <ImageView android:id="@+id/right_icon"
-        android:layout_width="@dimen/notification_right_icon_size"
-        android:layout_height="@dimen/notification_right_icon_size"
-        android:layout_gravity="end|bottom"
-        android:scaleType="centerInside"
-        android:visibility="gone"
-        android:layout_marginEnd="8dp"
-        android:layout_marginBottom="8dp"
-    />
-</FrameLayout>
-
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml b/android/.build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml
deleted file mode 100644
index 194afb74cb818246b55e3daba47f9c44d13c9c30..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-              android:layout_width="wrap_content"
-              android:layout_height="wrap_content"
-              android:orientation="vertical"
-              style="@style/RtlOverlay.Widget.AppCompat.ActionBar.TitleItem">
-    <TextView android:id="@+id/action_bar_title"
-              android:layout_width="wrap_content"
-              android:layout_height="wrap_content"
-              android:singleLine="true"
-              android:ellipsize="end" />
-    <TextView android:id="@+id/action_bar_subtitle"
-              android:layout_width="wrap_content"
-              android:layout_height="wrap_content"
-              android:layout_marginTop="@dimen/abc_action_bar_subtitle_top_margin_material"
-              android:singleLine="true"
-              android:ellipsize="end"
-              android:visibility="gone" />
-</LinearLayout>
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml b/android/.build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml
deleted file mode 100644
index f46550a553ee3687d51da9613559e0bd07409d4d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-              android:layout_width="wrap_content"
-              android:layout_height="match_parent"
-              android:background="?attr/actionBarItemBackground"
-              android:gravity="center_vertical"
-              android:enabled="false">
-</LinearLayout>
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml b/android/.build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml
deleted file mode 100644
index 5c105ab551c5cadaaeb5651706e23a706805fea2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2012 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-                                                          dd
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!-- Styled linear layout, compensating for the lack of a defStyle parameter
-     in pre-Honeycomb LinearLayout's constructor. -->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-              android:layout_width="fill_parent"
-              android:layout_height="fill_parent"
-              style="?attr/actionBarTabBarStyle">
-</LinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml b/android/.build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml
deleted file mode 100644
index 283358a5dc9c158b08aed3764af33418296903a6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-                                                          dd
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<android.support.v7.view.menu.ActionMenuItemView
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center"
-        android:gravity="center"
-        android:focusable="true"
-        android:paddingTop="4dip"
-        android:paddingBottom="4dip"
-        android:paddingLeft="8dip"
-        android:paddingRight="8dip"
-        android:textAppearance="?attr/actionMenuTextAppearance"
-        android:textColor="?attr/actionMenuTextColor"
-        style="?attr/actionButtonStyle"/>
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml b/android/.build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml
deleted file mode 100644
index 4918d2fba96bbed0065fab560e9d88403b87a667..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<android.support.v7.widget.ActionMenuView
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        xmlns:app="http://schemas.android.com/apk/res-auto"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        app:divider="?attr/actionBarDivider"
-        app:dividerPadding="12dip"
-        android:gravity="center_vertical"/>
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml b/android/.build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml
deleted file mode 100644
index dc1f1ba23285e43af56c6216d51fc5ac0aaa495a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*
-** Copyright 2012, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-**     http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
--->
-<android.support.v7.widget.ActionBarContextView
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:visibility="gone"
-        android:theme="?attr/actionBarTheme"
-        style="?attr/actionModeStyle"/>
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml b/android/.build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml
deleted file mode 100644
index b3babb25724e5241fbbdb1bb8c49261e30e59057..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<ImageView
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        xmlns:app="http://schemas.android.com/apk/res-auto"
-        android:id="@+id/action_mode_close_button"
-        android:contentDescription="@string/abc_action_mode_done"
-        android:focusable="true"
-        android:clickable="true"
-        app:srcCompat="?attr/actionModeCloseDrawable"
-        style="?attr/actionModeCloseButtonStyle"
-        android:layout_width="wrap_content"
-        android:layout_height="match_parent"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml b/android/.build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml
deleted file mode 100644
index 0100c235a9a4c8b93041a12f8d0ad5b1dab36cf2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml
+++ /dev/null
@@ -1,71 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-**
-** Copyright 2013, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-**     http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
--->
-<view xmlns:android="http://schemas.android.com/apk/res/android"
-    class="android.support.v7.widget.ActivityChooserView$InnerLayout"
-    android:id="@+id/activity_chooser_view_content"
-    android:layout_width="wrap_content"
-    android:layout_height="match_parent"
-    android:layout_gravity="center"
-    style="?attr/activityChooserViewStyle">
-
-    <FrameLayout
-        android:id="@+id/expand_activities_button"
-        android:layout_width="wrap_content"
-        android:layout_height="match_parent"
-        android:layout_gravity="center"
-        android:focusable="true"
-        android:addStatesFromChildren="true"
-        android:background="?attr/actionBarItemBackground"
-        android:paddingTop="2dip"
-        android:paddingBottom="2dip"
-        android:paddingLeft="12dip"
-        android:paddingRight="12dip">
-
-        <ImageView android:id="@+id/image"
-            android:layout_width="32dip"
-            android:layout_height="32dip"
-            android:layout_gravity="center"
-            android:scaleType="fitCenter"
-            android:adjustViewBounds="true" />
-
-    </FrameLayout>
-
-    <FrameLayout
-        android:id="@+id/default_activity_button"
-        android:layout_width="wrap_content"
-        android:layout_height="match_parent"
-        android:layout_gravity="center"
-        android:focusable="true"
-        android:addStatesFromChildren="true"
-        android:background="?attr/actionBarItemBackground"
-        android:paddingTop="2dip"
-        android:paddingBottom="2dip"
-        android:paddingLeft="12dip"
-        android:paddingRight="12dip">
-
-        <ImageView android:id="@+id/image"
-            android:layout_width="32dip"
-            android:layout_height="32dip"
-            android:layout_gravity="center"
-            android:scaleType="fitCenter"
-            android:adjustViewBounds="true" />
-
-    </FrameLayout>
-
-</view>
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml b/android/.build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml
deleted file mode 100644
index 887427d809350019491487df3b9ef61255c48988..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml
+++ /dev/null
@@ -1,52 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-              android:id="@+id/list_item"
-              android:layout_width="match_parent"
-              android:layout_height="?attr/dropdownListPreferredItemHeight"
-              android:paddingLeft="16dip"
-              android:paddingRight="16dip"
-              android:minWidth="196dip"
-              android:orientation="vertical">
-
-    <LinearLayout
-            android:layout_width="wrap_content"
-            android:layout_height="match_parent"
-            android:duplicateParentState="true" >
-
-        <ImageView
-                android:id="@+id/icon"
-                android:layout_width="32dip"
-                android:layout_height="32dip"
-                android:layout_gravity="center_vertical"
-                android:layout_marginRight="8dip"
-                android:duplicateParentState="true"/>
-
-        <TextView
-                android:id="@+id/title"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_gravity="center_vertical"
-                android:textAppearance="?attr/textAppearanceLargePopupMenu"
-                android:duplicateParentState="true"
-                android:singleLine="true"
-                android:ellipsize="marquee"
-                android:fadingEdge="horizontal"/>
-
-    </LinearLayout>
-
-</LinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_alert_dialog_button_bar_material.xml b/android/.build/intermediates/res/merged/debug/layout/abc_alert_dialog_button_bar_material.xml
deleted file mode 100644
index f747278c2bb1b458dc83face46e7040fa6d08567..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_alert_dialog_button_bar_material.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
-            android:id="@+id/buttonPanel"
-            style="?attr/buttonBarStyle"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:fillViewport="true"
-            android:scrollIndicators="top|bottom">
-
-    <android.support.v7.widget.ButtonBarLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:gravity="bottom"
-        android:layoutDirection="locale"
-        android:orientation="horizontal"
-        android:paddingBottom="4dp"
-        android:paddingLeft="12dp"
-        android:paddingRight="12dp"
-        android:paddingTop="4dp">
-
-        <Button
-            android:id="@android:id/button3"
-            style="?attr/buttonBarNeutralButtonStyle"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"/>
-
-        <android.support.v4.widget.Space
-            android:id="@+id/spacer"
-            android:layout_width="0dp"
-            android:layout_height="0dp"
-            android:layout_weight="1"
-            android:visibility="invisible"/>
-
-        <Button
-            android:id="@android:id/button2"
-            style="?attr/buttonBarNegativeButtonStyle"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"/>
-
-        <Button
-            android:id="@android:id/button1"
-            style="?attr/buttonBarPositiveButtonStyle"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"/>
-
-    </android.support.v7.widget.ButtonBarLayout>
-
-</ScrollView>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml b/android/.build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml
deleted file mode 100644
index 40aee7f061d461b93961e690965d0456d68c64b1..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml
+++ /dev/null
@@ -1,99 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<android.support.v7.widget.AlertDialogLayout
-    xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/parentPanel"
-    android:layout_width="match_parent"
-    android:layout_height="wrap_content"
-    android:gravity="start|left|top"
-    android:orientation="vertical">
-
-    <include layout="@layout/abc_alert_dialog_title_material"/>
-
-    <FrameLayout
-        android:id="@+id/contentPanel"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:minHeight="48dp">
-
-        <View android:id="@+id/scrollIndicatorUp"
-              android:layout_width="match_parent"
-              android:layout_height="1dp"
-              android:layout_gravity="top"
-              android:background="?attr/colorControlHighlight"
-              android:visibility="gone"/>
-
-        <android.support.v4.widget.NestedScrollView
-            android:id="@+id/scrollView"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:clipToPadding="false">
-
-            <LinearLayout
-                android:layout_width="match_parent"
-                android:layout_height="wrap_content"
-                android:orientation="vertical">
-
-                <android.support.v4.widget.Space
-                    android:id="@+id/textSpacerNoTitle"
-                    android:layout_width="match_parent"
-                    android:layout_height="@dimen/abc_dialog_padding_top_material"
-                    android:visibility="gone"/>
-
-                <TextView
-                    android:id="@android:id/message"
-                    style="@style/TextAppearance.AppCompat.Subhead"
-                    android:layout_width="match_parent"
-                    android:layout_height="wrap_content"
-                    android:paddingLeft="?attr/dialogPreferredPadding"
-                    android:paddingRight="?attr/dialogPreferredPadding"/>
-
-                <android.support.v4.widget.Space
-                    android:id="@+id/textSpacerNoButtons"
-                    android:layout_width="match_parent"
-                    android:layout_height="@dimen/abc_dialog_padding_top_material"
-                    android:visibility="gone"/>
-            </LinearLayout>
-        </android.support.v4.widget.NestedScrollView>
-
-        <View android:id="@+id/scrollIndicatorDown"
-              android:layout_width="match_parent"
-              android:layout_height="1dp"
-              android:layout_gravity="bottom"
-              android:background="?attr/colorControlHighlight"
-              android:visibility="gone"/>
-
-    </FrameLayout>
-
-    <FrameLayout
-        android:id="@+id/customPanel"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:minHeight="48dp">
-
-        <FrameLayout
-            android:id="@+id/custom"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"/>
-    </FrameLayout>
-
-    <include layout="@layout/abc_alert_dialog_button_bar_material"
-             android:layout_width="match_parent"
-             android:layout_height="wrap_content"/>
-
-</android.support.v7.widget.AlertDialogLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_alert_dialog_title_material.xml b/android/.build/intermediates/res/merged/debug/layout/abc_alert_dialog_title_material.xml
deleted file mode 100644
index 0b8b14ee2e4b312ecafb7581b9a6d9b9c94448c4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_alert_dialog_title_material.xml
+++ /dev/null
@@ -1,61 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-              android:id="@+id/topPanel"
-              android:layout_width="match_parent"
-              android:layout_height="wrap_content"
-              android:orientation="vertical">
-
-    <!-- If the client uses a customTitle, it will be added here. -->
-
-    <LinearLayout
-        android:id="@+id/title_template"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:gravity="center_vertical|start|left"
-        android:orientation="horizontal"
-        android:paddingLeft="?attr/dialogPreferredPadding"
-        android:paddingRight="?attr/dialogPreferredPadding"
-        android:paddingTop="@dimen/abc_dialog_padding_top_material">
-
-        <ImageView
-            android:id="@android:id/icon"
-            android:layout_width="32dip"
-            android:layout_height="32dip"
-            android:layout_marginEnd="8dip"
-            android:layout_marginRight="8dip"
-            android:scaleType="fitCenter"
-            android:src="@null"/>
-
-        <android.support.v7.widget.DialogTitle
-            android:id="@+id/alertTitle"
-            style="?android:attr/windowTitleStyle"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:ellipsize="end"
-            android:singleLine="true"
-            android:textAlignment="viewStart"/>
-
-    </LinearLayout>
-
-    <android.support.v4.widget.Space
-        android:id="@+id/titleDividerNoCustom"
-        android:layout_width="match_parent"
-        android:layout_height="@dimen/abc_dialog_title_divider_material"
-        android:visibility="gone"/>
-</LinearLayout>
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml b/android/.build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml
deleted file mode 100644
index 1ea20c5e10d64430f80f95cc75999a436b5ce021..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!--
-This is an optimized layout for a screen, with the minimum set of features
-enabled.
--->
-
-<android.support.v7.widget.FitWindowsLinearLayout
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_height="match_parent"
-        android:layout_width="match_parent"
-        android:orientation="vertical"
-        android:fitsSystemWindows="true">
-
-    <TextView
-            android:id="@+id/title"
-            style="?android:attr/windowTitleStyle"
-            android:singleLine="true"
-            android:ellipsize="end"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:textAlignment="viewStart"
-            android:paddingLeft="?attr/dialogPreferredPadding"
-            android:paddingRight="?attr/dialogPreferredPadding"
-            android:paddingTop="@dimen/abc_dialog_padding_top_material"/>
-
-    <include
-            layout="@layout/abc_screen_content_include"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_weight="1"/>
-
-</android.support.v7.widget.FitWindowsLinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml b/android/.build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml
deleted file mode 100644
index 560ada6fb4f269fddb2a3c5408602b91d901777c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<android.support.v7.view.menu.ExpandedMenuView
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        android:id="@+id/expanded_menu"
-        android:layout_width="?attr/panelMenuListWidth"
-        android:layout_height="wrap_content" />
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml b/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml
deleted file mode 100644
index d9c3f0681149f912ec92619c061bff5e7cb1442c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2007 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
-          android:id="@+id/checkbox"
-          android:layout_width="wrap_content"
-          android:layout_height="wrap_content"
-          android:layout_gravity="center_vertical"
-          android:focusable="false"
-          android:clickable="false"
-          android:duplicateParentState="true"/>
-
-
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml b/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml
deleted file mode 100644
index acd005a13b9b2ba628ef0b5899d6af2f6fe63a6f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2007 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
-           android:id="@+id/icon"
-           android:layout_width="wrap_content"
-           android:layout_height="wrap_content"
-           android:layout_gravity="center_vertical"
-           android:layout_marginLeft="8dip"
-           android:layout_marginRight="-8dip"
-           android:layout_marginTop="8dip"
-           android:layout_marginBottom="8dip"
-           android:scaleType="centerInside"
-           android:duplicateParentState="true"/>
-
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml b/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml
deleted file mode 100644
index c85469dd6fd994cb1bb18f0dfa34f7e1c49ee731..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<android.support.v7.view.menu.ListMenuItemView
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="match_parent"
-        android:layout_height="?attr/listPreferredItemHeightSmall">
-
-    <!-- Icon will be inserted here. -->
-
-    <!-- The title and summary have some gap between them, and this 'group' should be centered vertically. -->
-    <RelativeLayout
-            android:layout_width="0dip"
-            android:layout_weight="1"
-            android:layout_height="wrap_content"
-            android:layout_gravity="center_vertical"
-            android:layout_marginLeft="?attr/listPreferredItemPaddingLeft"
-            android:layout_marginRight="?attr/listPreferredItemPaddingRight"
-            android:duplicateParentState="true">
-
-        <TextView
-            android:id="@+id/title"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_alignParentTop="true"
-            android:layout_alignParentLeft="true"
-            android:textAppearance="?attr/textAppearanceListItemSmall"
-            android:singleLine="true"
-            android:duplicateParentState="true"
-            android:ellipsize="marquee"
-            android:fadingEdge="horizontal" />
-
-        <TextView
-            android:id="@+id/shortcut"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:layout_below="@id/title"
-            android:layout_alignParentLeft="true"
-            android:textAppearance="?android:attr/textAppearanceSmall"
-            android:singleLine="true"
-            android:duplicateParentState="true" />
-
-    </RelativeLayout>
-
-    <!-- Checkbox, and/or radio button will be inserted here. -->
-
-</android.support.v7.view.menu.ListMenuItemView>
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml b/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml
deleted file mode 100644
index 0ca8d7a2a5db7425649ff07dde4f0198c79a7a5a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2007 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-  
-          http://www.apache.org/licenses/LICENSE-2.0
-  
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<RadioButton xmlns:android="http://schemas.android.com/apk/res/android"
-             android:id="@+id/radio"
-             android:layout_width="wrap_content"
-             android:layout_height="wrap_content"
-             android:layout_gravity="center_vertical"
-             android:focusable="false"
-             android:clickable="false"
-             android:duplicateParentState="true"/>
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_popup_menu_header_item_layout.xml b/android/.build/intermediates/res/merged/debug/layout/abc_popup_menu_header_item_layout.xml
deleted file mode 100644
index a40b6dd745a081962296ceeedd45e8a13a91d6dd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_popup_menu_header_item_layout.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2016 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
-             android:layout_width="match_parent"
-             android:layout_height="?attr/dropdownListPreferredItemHeight"
-             android:minWidth="196dip"
-             android:paddingLeft="16dip"
-             android:paddingRight="16dip">
-
-    <TextView
-            android:id="@android:id/title"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:textAppearance="?attr/textAppearancePopupMenuHeader"
-            android:layout_gravity="center_vertical"
-            android:singleLine="true"
-            android:ellipsize="marquee"
-            android:fadingEdge="horizontal"
-            android:textAlignment="viewStart" />
-
-</FrameLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml b/android/.build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml
deleted file mode 100644
index bf630ffe79d074c96b6e6ae1921a66562c11e3c7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml
+++ /dev/null
@@ -1,71 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2010 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<android.support.v7.view.menu.ListMenuItemView
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        android:layout_width="match_parent"
-        android:layout_height="?attr/dropdownListPreferredItemHeight"
-        android:minWidth="196dip"
-        style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem">
-
-    <!-- Icon will be inserted here. -->
-
-    <!-- The title and summary have some gap between them, and this 'group' should be centered vertically. -->
-    <RelativeLayout
-            android:layout_width="0dip"
-            android:layout_weight="1"
-            android:layout_height="wrap_content"
-            android:layout_gravity="center_vertical"
-            android:duplicateParentState="true"
-            style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup">
-
-        <TextView
-                android:id="@+id/title"
-                android:layout_width="match_parent"
-                android:layout_height="wrap_content"
-                android:layout_alignParentTop="true"
-                android:textAppearance="?attr/textAppearanceLargePopupMenu"
-                android:singleLine="true"
-                android:duplicateParentState="true"
-                android:ellipsize="marquee"
-                android:fadingEdge="horizontal"
-                style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" />
-
-        <TextView
-                android:id="@+id/shortcut"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_below="@id/title"
-                android:textAppearance="?attr/textAppearanceSmallPopupMenu"
-                android:singleLine="true"
-                android:duplicateParentState="true"
-                style="@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" />
-
-    </RelativeLayout>
-
-    <ImageView
-            android:id="@+id/submenuarrow"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:layout_gravity="center"
-            android:layout_marginStart="8dp"
-            android:layout_marginLeft="8dp"
-            android:scaleType="center"
-            android:visibility="gone" />
-
-    <!-- Checkbox, and/or radio button will be inserted here. -->
-
-</android.support.v7.view.menu.ListMenuItemView>
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml b/android/.build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml
deleted file mode 100644
index 1c30338f9d0306fac5844080d77526c854baa880..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<merge xmlns:android="http://schemas.android.com/apk/res/android">
-
-    <android.support.v7.widget.ContentFrameLayout
-            android:id="@id/action_bar_activity_content"
-            android:layout_width="match_parent"
-            android:layout_height="match_parent"
-            android:foregroundGravity="fill_horizontal|top"
-            android:foreground="?android:attr/windowContentOverlay" />
-
-</merge>
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_screen_simple.xml b/android/.build/intermediates/res/merged/debug/layout/abc_screen_simple.xml
deleted file mode 100644
index 2783187d0c6f9042277363e497cea0d8f3265473..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_screen_simple.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<android.support.v7.widget.FitWindowsLinearLayout
-    xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/action_bar_root"
-    android:layout_width="match_parent"
-    android:layout_height="match_parent"
-    android:orientation="vertical"
-    android:fitsSystemWindows="true">
-
-    <android.support.v7.widget.ViewStubCompat
-        android:id="@+id/action_mode_bar_stub"
-        android:inflatedId="@+id/action_mode_bar"
-        android:layout="@layout/abc_action_mode_bar"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content" />
-
-    <include layout="@layout/abc_screen_content_include" />
-
-</android.support.v7.widget.FitWindowsLinearLayout>
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml b/android/.build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml
deleted file mode 100644
index c02c2aa9cb2f0d1aeceb0e780053a3f25c587be3..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*
-** Copyright 2014, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License");
-** you may not use this file except in compliance with the License.
-** You may obtain a copy of the License at
-**
-**     http://www.apache.org/licenses/LICENSE-2.0
-**
-** Unless required by applicable law or agreed to in writing, software
-** distributed under the License is distributed on an "AS IS" BASIS,
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-** See the License for the specific language governing permissions and
-** limitations under the License.
-*/
-
-This is an optimized layout for a screen, with the minimum set of features
-enabled.
--->
-
-<android.support.v7.widget.FitWindowsFrameLayout
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        android:id="@+id/action_bar_root"
-        android:layout_width="match_parent"
-        android:layout_height="match_parent"
-        android:fitsSystemWindows="true">
-
-    <include layout="@layout/abc_screen_content_include" />
-
-    <android.support.v7.widget.ViewStubCompat
-            android:id="@+id/action_mode_bar_stub"
-            android:inflatedId="@+id/action_mode_bar"
-            android:layout="@layout/abc_action_mode_bar"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content" />
-
-</android.support.v7.widget.FitWindowsFrameLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml b/android/.build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml
deleted file mode 100644
index 96412c15b5302ef46d04640feeb0135ef54cd9d3..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<android.support.v7.widget.ActionBarOverlayLayout
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        xmlns:app="http://schemas.android.com/apk/res-auto"
-        android:id="@+id/decor_content_parent"
-        android:layout_width="match_parent"
-        android:layout_height="match_parent"
-        android:fitsSystemWindows="true">
-
-    <include layout="@layout/abc_screen_content_include"/>
-
-    <android.support.v7.widget.ActionBarContainer
-            android:id="@+id/action_bar_container"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_alignParentTop="true"
-            style="?attr/actionBarStyle"
-            android:touchscreenBlocksFocus="true"
-            android:gravity="top">
-
-        <android.support.v7.widget.Toolbar
-                android:id="@+id/action_bar"
-                android:layout_width="match_parent"
-                android:layout_height="wrap_content"
-                app:navigationContentDescription="@string/abc_action_bar_up_description"
-                style="?attr/toolbarStyle"/>
-
-        <android.support.v7.widget.ActionBarContextView
-                android:id="@+id/action_context_bar"
-                android:layout_width="match_parent"
-                android:layout_height="wrap_content"
-                android:visibility="gone"
-                android:theme="?attr/actionBarTheme"
-                style="?attr/actionModeStyle"/>
-
-    </android.support.v7.widget.ActionBarContainer>
-
-</android.support.v7.widget.ActionBarOverlayLayout>
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml b/android/.build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml
deleted file mode 100644
index b81d5d8ca33eabe8b1ff40a76c389aac8dcc6421..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*
- * Copyright (C) 2014 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
--->
-
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-                android:layout_width="match_parent"
-                android:layout_height="58dip"
-                style="@style/RtlOverlay.Widget.AppCompat.Search.DropDown">
-
-    <!-- Icons come first in the layout, since their placement doesn't depend on
-         the placement of the text views. -->
-    <ImageView
-               android:id="@android:id/icon1"
-               android:layout_width="@dimen/abc_dropdownitem_icon_width"
-               android:layout_height="48dip"
-               android:scaleType="centerInside"
-               android:layout_alignParentTop="true"
-               android:layout_alignParentBottom="true"
-               android:visibility="invisible"
-               style="@style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" />
-
-    <ImageView
-               android:id="@+id/edit_query"
-               android:layout_width="48dip"
-               android:layout_height="48dip"
-               android:scaleType="centerInside"
-               android:layout_alignParentTop="true"
-               android:layout_alignParentBottom="true"
-               android:background="?attr/selectableItemBackground"
-               android:visibility="gone"
-               style="@style/RtlOverlay.Widget.AppCompat.Search.DropDown.Query" />
-
-    <ImageView
-               android:id="@id/android:icon2"
-               android:layout_width="48dip"
-               android:layout_height="48dip"
-               android:scaleType="centerInside"
-               android:layout_alignWithParentIfMissing="true"
-               android:layout_alignParentTop="true"
-               android:layout_alignParentBottom="true"
-               android:visibility="gone"
-               style="@style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" />
-
-
-    <!-- The subtitle comes before the title, since the height of the title depends on whether the
-         subtitle is visible or gone. -->
-    <TextView android:id="@android:id/text2"
-              style="?android:attr/dropDownItemStyle"
-              android:textAppearance="?attr/textAppearanceSearchResultSubtitle"
-              android:singleLine="true"
-              android:layout_width="match_parent"
-              android:layout_height="29dip"
-              android:paddingBottom="4dip"
-              android:gravity="top"
-              android:layout_alignWithParentIfMissing="true"
-              android:layout_alignParentBottom="true"
-              android:visibility="gone" />
-
-    <!-- The title is placed above the subtitle, if there is one. If there is no
-         subtitle, it fills the parent. -->
-    <TextView android:id="@android:id/text1"
-              style="?android:attr/dropDownItemStyle"
-              android:textAppearance="?attr/textAppearanceSearchResultTitle"
-              android:singleLine="true"
-              android:layout_width="match_parent"
-              android:layout_height="wrap_content"
-              android:layout_centerVertical="true"
-              android:layout_above="@android:id/text2" />
-
-</RelativeLayout>
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_search_view.xml b/android/.build/intermediates/res/merged/debug/layout/abc_search_view.xml
deleted file mode 100644
index 1d9a98b501815f03bbabfdc4305f1ff5e010ab3a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_search_view.xml
+++ /dev/null
@@ -1,137 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*
- * Copyright (C) 2014 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
--->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-        android:id="@+id/search_bar"
-        android:layout_width="match_parent"
-        android:layout_height="match_parent"
-        android:orientation="horizontal">
-
-    <!-- This is actually used for the badge icon *or* the badge label (or neither) -->
-    <TextView
-            android:id="@+id/search_badge"
-            android:layout_width="wrap_content"
-            android:layout_height="match_parent"
-            android:gravity="center_vertical"
-            android:layout_marginBottom="2dip"
-            android:drawablePadding="0dip"
-            android:textAppearance="?android:attr/textAppearanceMedium"
-            android:textColor="?android:attr/textColorPrimary"
-            android:visibility="gone" />
-
-    <ImageView
-            android:id="@+id/search_button"
-            style="?attr/actionButtonStyle"
-            android:layout_width="wrap_content"
-            android:layout_height="match_parent"
-            android:layout_gravity="center_vertical"
-            android:focusable="true"
-            android:contentDescription="@string/abc_searchview_description_search" />
-
-    <LinearLayout
-            android:id="@+id/search_edit_frame"
-            android:layout_width="wrap_content"
-            android:layout_height="match_parent"
-            android:layout_weight="1"
-            android:layout_marginLeft="8dip"
-            android:layout_marginRight="8dip"
-            android:orientation="horizontal"
-            android:layoutDirection="locale">
-
-        <ImageView
-                android:id="@+id/search_mag_icon"
-                android:layout_width="@dimen/abc_dropdownitem_icon_width"
-                android:layout_height="wrap_content"
-                android:scaleType="centerInside"
-                android:layout_gravity="center_vertical"
-                android:visibility="gone"
-                style="@style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon" />
-
-        <!-- Inner layout contains the app icon, button(s) and EditText -->
-        <LinearLayout
-                android:id="@+id/search_plate"
-                android:layout_width="wrap_content"
-                android:layout_height="match_parent"
-                android:layout_weight="1"
-                android:layout_gravity="center_vertical"
-                android:orientation="horizontal">
-
-            <view class="android.support.v7.widget.SearchView$SearchAutoComplete"
-                  android:id="@+id/search_src_text"
-                  android:layout_height="36dip"
-                  android:layout_width="0dp"
-                  android:layout_weight="1"
-                  android:layout_gravity="center_vertical"
-                  android:paddingLeft="@dimen/abc_dropdownitem_text_padding_left"
-                  android:paddingRight="@dimen/abc_dropdownitem_text_padding_right"
-                  android:singleLine="true"
-                  android:ellipsize="end"
-                  android:background="@null"
-                  android:inputType="text|textAutoComplete|textNoSuggestions"
-                  android:imeOptions="actionSearch"
-                  android:dropDownHeight="wrap_content"
-                  android:dropDownAnchor="@id/search_edit_frame"
-                  android:dropDownVerticalOffset="0dip"
-                  android:dropDownHorizontalOffset="0dip" />
-
-            <ImageView
-                    android:id="@+id/search_close_btn"
-                    android:layout_width="wrap_content"
-                    android:layout_height="match_parent"
-                    android:paddingLeft="8dip"
-                    android:paddingRight="8dip"
-                    android:layout_gravity="center_vertical"
-                    android:background="?attr/selectableItemBackgroundBorderless"
-                    android:focusable="true"
-                    android:contentDescription="@string/abc_searchview_description_clear" />
-
-        </LinearLayout>
-
-        <LinearLayout
-                android:id="@+id/submit_area"
-                android:orientation="horizontal"
-                android:layout_width="wrap_content"
-                android:layout_height="match_parent">
-
-            <ImageView
-                    android:id="@+id/search_go_btn"
-                    android:layout_width="wrap_content"
-                    android:layout_height="match_parent"
-                    android:layout_gravity="center_vertical"
-                    android:paddingLeft="16dip"
-                    android:paddingRight="16dip"
-                    android:background="?attr/selectableItemBackgroundBorderless"
-                    android:visibility="gone"
-                    android:focusable="true"
-                    android:contentDescription="@string/abc_searchview_description_submit" />
-
-            <ImageView
-                    android:id="@+id/search_voice_btn"
-                    android:layout_width="wrap_content"
-                    android:layout_height="match_parent"
-                    android:layout_gravity="center_vertical"
-                    android:paddingLeft="16dip"
-                    android:paddingRight="16dip"
-                    android:background="?attr/selectableItemBackgroundBorderless"
-                    android:visibility="gone"
-                    android:focusable="true"
-                    android:contentDescription="@string/abc_searchview_description_voice" />
-        </LinearLayout>
-    </LinearLayout>
-</LinearLayout>
diff --git a/android/.build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml b/android/.build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml
deleted file mode 100644
index ae4b268153e5d884dfdcea52a5b3b1ba3ab9501c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2015 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!--
-    This layout file is used by the AlertDialog when displaying a list of items.
-    This layout file is inflated and used as the ListView to display the items.
-    Assign an ID so its state will be saved/restored.
--->
-<view xmlns:android="http://schemas.android.com/apk/res/android"
-      xmlns:app="http://schemas.android.com/apk/res-auto"
-      android:id="@+id/select_dialog_listview"
-      style="@style/Widget.AppCompat.ListView"
-      class="android.support.v7.app.AlertController$RecycleListView"
-      android:layout_width="match_parent"
-      android:layout_height="match_parent"
-      android:cacheColorHint="@null"
-      android:clipToPadding="false"
-      android:divider="?attr/listDividerAlertDialog"
-      android:fadingEdge="none"
-      android:overScrollMode="ifContentScrolls"
-      android:scrollbars="vertical"
-      android:textAlignment="viewStart"
-      app:paddingBottomNoButtons="@dimen/abc_dialog_list_padding_bottom_no_buttons"
-      app:paddingTopNoTitle="@dimen/abc_dialog_list_padding_top_no_title"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout/activity_jits_call.xml b/android/.build/intermediates/res/merged/debug/layout/activity_jits_call.xml
deleted file mode 100644
index 2c7448daafffc3515a46affcf71259fe02a5465c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/activity_jits_call.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:tools="http://schemas.android.com/tools"
-    android:id="@+id/activity_jits_call"
-    android:layout_width="match_parent"
-    android:layout_height="match_parent"
-    android:paddingBottom="@dimen/activity_vertical_margin"
-    android:paddingLeft="@dimen/activity_horizontal_margin"
-    android:paddingRight="@dimen/activity_horizontal_margin"
-    android:paddingTop="@dimen/activity_vertical_margin"
-    tools:context="at.gv.ucom.JitsCallActivity">
-
-    <WebView
-        android:layout_width="match_parent"
-        android:layout_height="match_parent" />
-
-</RelativeLayout>
diff --git a/android/.build/intermediates/res/merged/debug/layout/notification_action.xml b/android/.build/intermediates/res/merged/debug/layout/notification_action.xml
deleted file mode 100644
index 82e95a5a724d4a9d1ae9da1ae715b42947fdf9da..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/notification_action.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    style="@style/Widget.AppCompat.NotificationActionContainer"
-    android:id="@+id/action_container"
-    android:layout_width="0dp"
-    android:layout_weight="1"
-    android:layout_height="48dp"
-    android:paddingLeft="4dp"
-    android:paddingStart="4dp"
-    android:orientation="horizontal">
-    <ImageView
-        android:id="@+id/action_image"
-        android:layout_width="@dimen/notification_action_icon_size"
-        android:layout_height="@dimen/notification_action_icon_size"
-        android:layout_gravity="center|start"
-        android:scaleType="centerInside"/>
-    <TextView
-        style="@style/Widget.AppCompat.NotificationActionText"
-        android:id="@+id/action_text"
-        android:textColor="#ccc"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center|start"
-        android:paddingLeft="4dp"
-        android:paddingStart="4dp"
-        android:singleLine="true"
-        android:ellipsize="end"
-        android:clickable="false"/>
-</LinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout/notification_action_tombstone.xml b/android/.build/intermediates/res/merged/debug/layout/notification_action_tombstone.xml
deleted file mode 100644
index d491c7847660af1c1e45a227abdd567e59e42632..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/notification_action_tombstone.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    style="@style/Widget.AppCompat.NotificationActionContainer"
-    android:id="@+id/action_container"
-    android:layout_width="0dp"
-    android:layout_weight="1"
-    android:layout_height="48dp"
-    android:paddingLeft="4dp"
-    android:paddingStart="4dp"
-    android:orientation="horizontal"
-    android:enabled="false"
-    android:background="@null">
-    <ImageView
-        android:id="@+id/action_image"
-        android:layout_width="@dimen/notification_action_icon_size"
-        android:layout_height="@dimen/notification_action_icon_size"
-        android:layout_gravity="center|start"
-        android:scaleType="centerInside"
-        android:enabled="false"
-        android:alpha="0.5"/>
-    <TextView
-        style="@style/Widget.AppCompat.NotificationActionText"
-        android:id="@+id/action_text"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center|start"
-        android:textColor="#ccc"
-        android:paddingLeft="4dp"
-        android:paddingStart="4dp"
-        android:singleLine="true"
-        android:ellipsize="end"
-        android:clickable="false"
-        android:enabled="false"
-        android:alpha="0.5"/>
-</LinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout/notification_template_icon_group.xml b/android/.build/intermediates/res/merged/debug/layout/notification_template_icon_group.xml
deleted file mode 100644
index dd564f888018b1f422df5ebbd3dbc7f9347fc0a9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/notification_template_icon_group.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2016 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<ImageView
-    xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/icon"
-    android:layout_width="@dimen/notification_large_icon_width"
-    android:layout_height="@dimen/notification_large_icon_height"
-    android:scaleType="centerCrop"
-/>
-
diff --git a/android/.build/intermediates/res/merged/debug/layout/notification_template_lines_media.xml b/android/.build/intermediates/res/merged/debug/layout/notification_template_lines_media.xml
deleted file mode 100644
index 9a7b788e56b8c74b6f87f3fdc20dd99c7e505eb6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/notification_template_lines_media.xml
+++ /dev/null
@@ -1,112 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:layout_width="wrap_content"
-    android:layout_height="wrap_content"
-    android:orientation="vertical"
-    android:paddingRight="8dp"
-    android:paddingEnd="8dp"
-    android:paddingTop="2dp"
-    android:paddingBottom="2dp"
-    >
-    <LinearLayout
-        android:id="@+id/line1"
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content"
-        android:paddingTop="6dp"
-        android:layout_marginLeft="@dimen/notification_content_margin_start"
-        android:layout_marginStart="@dimen/notification_content_margin_start"
-        android:orientation="horizontal"
-        >
-        <TextView android:id="@+id/title"
-            android:textAppearance="@style/TextAppearance.AppCompat.Notification.Title.Media"
-            android:layout_width="fill_parent"
-            android:layout_height="wrap_content"
-            android:singleLine="true"
-            android:ellipsize="marquee"
-            android:fadingEdge="horizontal"
-            android:layout_weight="1"
-            />
-        <DateTimeView android:id="@+id/time"
-            android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time.Media"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:singleLine="true"
-            android:layout_gravity="center"
-            android:layout_weight="0"
-            android:visibility="gone"
-            android:paddingLeft="8dp"
-            android:paddingStart="8dp"
-        />
-        <Chronometer android:id="@+id/chronometer"
-            android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time.Media"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:singleLine="true"
-            android:layout_gravity="center"
-            android:layout_weight="0"
-            android:visibility="gone"
-            android:paddingLeft="8dp"
-            android:paddingStart="8dp"
-        />
-    </LinearLayout>
-    <TextView android:id="@+id/text2"
-        android:textAppearance="@style/TextAppearance.AppCompat.Notification.Line2.Media"
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content"
-        android:layout_marginTop="-2dp"
-        android:layout_marginBottom="-2dp"
-        android:layout_marginLeft="@dimen/notification_content_margin_start"
-        android:layout_marginStart="@dimen/notification_content_margin_start"
-        android:singleLine="true"
-        android:fadingEdge="horizontal"
-        android:ellipsize="marquee"
-        android:visibility="gone"
-        />
-    <LinearLayout
-        android:id="@+id/line3"
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content"
-        android:orientation="horizontal"
-        android:gravity="center_vertical"
-        android:layout_marginLeft="@dimen/notification_content_margin_start"
-        android:layout_marginStart="@dimen/notification_content_margin_start"
-        >
-        <TextView android:id="@+id/text"
-            android:textAppearance="@style/TextAppearance.AppCompat.Notification.Media"
-            android:layout_width="0dp"
-            android:layout_height="wrap_content"
-            android:layout_weight="1"
-            android:layout_gravity="center"
-            android:singleLine="true"
-            android:ellipsize="marquee"
-            android:fadingEdge="horizontal"
-            />
-        <TextView android:id="@+id/info"
-            android:textAppearance="@style/TextAppearance.AppCompat.Notification.Info.Media"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:layout_gravity="center"
-            android:layout_weight="0"
-            android:singleLine="true"
-            android:gravity="center"
-            android:paddingLeft="8dp"
-            android:paddingStart="8dp"
-            />
-    </LinearLayout>
-</LinearLayout>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/layout/notification_template_media.xml b/android/.build/intermediates/res/merged/debug/layout/notification_template_media.xml
deleted file mode 100644
index 6eac23b78797ff8e7b2097e5ac35501a945d1c3d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/notification_template_media.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/status_bar_latest_event_content"
-    android:layout_width="match_parent"
-    android:layout_height="64dp"
-    android:orientation="horizontal"
-    >
-    <include layout="@layout/notification_template_icon_group"
-        android:layout_width="@dimen/notification_large_icon_width"
-        android:layout_height="@dimen/notification_large_icon_height"
-    />
-    <include layout="@layout/notification_template_lines_media"
-        android:layout_width="0dp"
-        android:layout_height="wrap_content"
-        android:layout_weight="1"/>
-    <LinearLayout
-        android:id="@+id/media_actions"
-        android:layout_width="wrap_content"
-        android:layout_height="match_parent"
-        android:layout_gravity="center_vertical|end"
-        android:orientation="horizontal"
-        android:layoutDirection="ltr"
-        >
-        <!-- media buttons will be added here -->
-    </LinearLayout>
-    <include layout="@layout/notification_media_cancel_action"
-        android:layout_width="48dp"
-        android:layout_height="match_parent"
-        android:layout_marginRight="6dp"
-        android:layout_marginEnd="6dp"/>
-    <ImageView android:id="@+id/end_padder"
-        android:layout_width="6dp"
-        android:layout_height="match_parent"
-        />
-</LinearLayout>
diff --git a/android/.build/intermediates/res/merged/debug/layout/notification_template_media_custom.xml b/android/.build/intermediates/res/merged/debug/layout/notification_template_media_custom.xml
deleted file mode 100644
index 62e07d4502115cff33445e5d3e63cdaa8c4382ec..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/notification_template_media_custom.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/status_bar_latest_event_content"
-    android:layout_width="match_parent"
-    android:layout_height="64dp"
-    android:orientation="horizontal"
-    >
-    <include layout="@layout/notification_template_icon_group"
-        android:layout_width="@dimen/notification_large_icon_width"
-        android:layout_height="@dimen/notification_large_icon_height"
-    />
-    <LinearLayout
-        android:id="@+id/notification_main_column_container"
-        android:layout_width="0dp"
-        android:layout_weight="1"
-        android:layout_height="wrap_content"
-        android:paddingTop="@dimen/notification_main_column_padding_top"
-        android:minHeight="@dimen/notification_large_icon_height"
-        android:orientation="horizontal"
-        android:layout_toLeftOf="@id/cancel_action"
-        android:layout_toStartOf="@id/cancel_action">
-        <FrameLayout
-            android:id="@+id/notification_main_column"
-            android:layout_width="match_parent"
-            android:layout_height="wrap_content"
-            android:layout_weight="1"
-            android:layout_marginLeft="@dimen/notification_content_margin_start"
-            android:layout_marginStart="@dimen/notification_content_margin_start"
-            android:layout_marginRight="8dp"
-            android:layout_marginEnd="8dp"
-            android:layout_marginBottom="8dp"/>
-        <FrameLayout
-            android:id="@+id/right_side"
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:layout_marginRight="8dp"
-            android:layout_marginEnd="8dp"
-            android:paddingTop="@dimen/notification_right_side_padding_top">
-            <DateTimeView android:id="@+id/time"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:singleLine="true"
-                android:layout_gravity="end|top"
-                android:visibility="gone"
-            />
-            <Chronometer android:id="@+id/chronometer"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:singleLine="true"
-                android:layout_gravity="end|top"
-                android:visibility="gone"
-            />
-            <TextView android:id="@+id/info"
-                android:textAppearance="@style/TextAppearance.AppCompat.Notification.Info.Media"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_marginTop="20dp"
-                android:layout_gravity="end|bottom"
-                android:singleLine="true"
-            />
-        </FrameLayout>
-    </LinearLayout>
-    <LinearLayout
-        android:id="@+id/media_actions"
-        android:layout_width="wrap_content"
-        android:layout_height="match_parent"
-        android:layout_gravity="center_vertical|end"
-        android:orientation="horizontal"
-        android:layoutDirection="ltr"
-        >
-        <!-- media buttons will be added here -->
-    </LinearLayout>
-    <include layout="@layout/notification_media_cancel_action"
-        android:layout_width="48dp"
-        android:layout_height="match_parent"
-        android:layout_marginRight="6dp"
-        android:layout_marginEnd="6dp"/>
-    <ImageView android:id="@+id/end_padder"
-        android:layout_width="6dp"
-        android:layout_height="match_parent"
-        />
-</LinearLayout>
diff --git a/android/.build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml b/android/.build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml
deleted file mode 100644
index 9e58a389b57dcf5b1fa2108af638431fb737047d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<Chronometer android:id="@+id/chronometer" xmlns:android="http://schemas.android.com/apk/res/android"
-    android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time"
-    android:layout_width="wrap_content"
-    android:layout_height="wrap_content"
-    android:singleLine="true"
-    />
diff --git a/android/.build/intermediates/res/merged/debug/layout/notification_template_part_time.xml b/android/.build/intermediates/res/merged/debug/layout/notification_template_part_time.xml
deleted file mode 100644
index 810d1e31cda2bea9f9ed5586dd42cfa3d80932ca..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/notification_template_part_time.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-  ~ Copyright (C) 2015 The Android Open Source Project
-  ~
-  ~ Licensed under the Apache License, Version 2.0 (the "License");
-  ~ you may not use this file except in compliance with the License.
-  ~ You may obtain a copy of the License at
-  ~
-  ~      http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing, software
-  ~ distributed under the License is distributed on an "AS IS" BASIS,
-  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  ~ See the License for the specific language governing permissions and
-  ~ limitations under the License
-  -->
-
-<DateTimeView android:id="@+id/time" xmlns:android="http://schemas.android.com/apk/res/android"
-    android:textAppearance="@style/TextAppearance.AppCompat.Notification.Time"
-    android:layout_width="wrap_content"
-    android:layout_height="wrap_content"
-    android:singleLine="true"
-    />
diff --git a/android/.build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml b/android/.build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml
deleted file mode 100644
index 677b178d6dbc37f3296ac06519be9ce4941990cc..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<!--
-    This layout file is used by the AlertDialog when displaying a list of items.
-    This layout file is inflated and used as the TextView to display individual
-    items.
--->
-<TextView xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@android:id/text1"
-    android:layout_width="match_parent"
-    android:layout_height="wrap_content"
-    android:minHeight="?attr/listPreferredItemHeightSmall"
-    android:textAppearance="?attr/textAppearanceListItemSmall"
-    android:textColor="?attr/textColorAlertDialogListItem"
-    android:gravity="center_vertical"
-    android:paddingLeft="?attr/listPreferredItemPaddingLeft"
-    android:paddingRight="?attr/listPreferredItemPaddingRight"
-    android:ellipsize="marquee" />
diff --git a/android/.build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml b/android/.build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml
deleted file mode 100644
index 60f3576a89035138a9266cced77abf1b7a400cb6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
-                 android:id="@android:id/text1"
-                 android:layout_width="match_parent"
-                 android:layout_height="wrap_content"
-                 android:minHeight="?attr/listPreferredItemHeightSmall"
-                 android:textAppearance="?android:attr/textAppearanceMedium"
-                 android:textColor="?attr/textColorAlertDialogListItem"
-                 android:gravity="center_vertical"
-                 android:paddingLeft="@dimen/abc_select_dialog_padding_start_material"
-                 android:paddingRight="?attr/dialogPreferredPadding"
-                 android:paddingStart="@dimen/abc_select_dialog_padding_start_material"
-                 android:paddingEnd="?attr/dialogPreferredPadding"
-                 android:drawableLeft="?android:attr/listChoiceIndicatorMultiple"
-                 android:drawableStart="?android:attr/listChoiceIndicatorMultiple"
-                 android:drawablePadding="20dp"
-                 android:ellipsize="marquee" />
diff --git a/android/.build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml b/android/.build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml
deleted file mode 100644
index 4d10fc720e06914d346053d12c99125a021c3a37..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-     Copyright (C) 2014 The Android Open Source Project
-
-     Licensed under the Apache License, Version 2.0 (the "License");
-     you may not use this file except in compliance with the License.
-     You may obtain a copy of the License at
-
-          http://www.apache.org/licenses/LICENSE-2.0
-
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
--->
-
-<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
-                 android:id="@android:id/text1"
-                 android:layout_width="match_parent"
-                 android:layout_height="wrap_content"
-                 android:minHeight="?attr/listPreferredItemHeightSmall"
-                 android:textAppearance="?android:attr/textAppearanceMedium"
-                 android:textColor="?attr/textColorAlertDialogListItem"
-                 android:gravity="center_vertical"
-                 android:paddingLeft="@dimen/abc_select_dialog_padding_start_material"
-                 android:paddingRight="?attr/dialogPreferredPadding"
-                 android:paddingStart="@dimen/abc_select_dialog_padding_start_material"
-                 android:paddingEnd="?attr/dialogPreferredPadding"
-                 android:drawableLeft="?android:attr/listChoiceIndicatorSingle"
-                 android:drawableStart="?android:attr/listChoiceIndicatorSingle"
-                 android:drawablePadding="20dp"
-                 android:ellipsize="marquee" />
diff --git a/android/.build/intermediates/res/merged/debug/layout/splash.xml b/android/.build/intermediates/res/merged/debug/layout/splash.xml
deleted file mode 100644
index 476d91a844164326831433eeb329b663f6b64ec2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/splash.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:layout_width="fill_parent"
-    android:layout_height="fill_parent" />
diff --git a/android/.build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml b/android/.build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml
deleted file mode 100644
index d2f177ac8cb373a3adc26a14ce0b046a9bb1abc7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-**
-** Copyright 2008, The Android Open Source Project
-**
-** Licensed under the Apache License, Version 2.0 (the "License"); 
-** you may not use this file except in compliance with the License. 
-** You may obtain a copy of the License at 
-**
-**     http://www.apache.org/licenses/LICENSE-2.0 
-**
-** Unless required by applicable law or agreed to in writing, software 
-** distributed under the License is distributed on an "AS IS" BASIS, 
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
-** See the License for the specific language governing permissions and 
-** limitations under the License.
-*/
--->
-<TextView xmlns:android="http://schemas.android.com/apk/res/android"
-          android:id="@android:id/text1"
-          style="?attr/spinnerDropDownItemStyle"
-          android:singleLine="true"
-          android:layout_width="match_parent"
-          android:layout_height="?attr/dropdownListPreferredItemHeight"
-          android:ellipsize="marquee"/>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-af/values-af.xml b/android/.build/intermediates/res/merged/debug/values-af/values-af.xml
deleted file mode 100644
index b30966e478daba617df94034298974d713213079..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-af/values-af.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeer tuis"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigeer op"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Nog opsies"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Klaar"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Sien alles"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Kies \'n program"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"AF"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"AAN"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Soek …"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Vee navraag uit"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Soeknavraag"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Soek"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Dien navraag in"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Stemsoektog"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deel met"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deel met %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Vou in"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Aktiveer"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sal nie werk nie tensy jy Google Play-dienste aktiveer."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Aktiveer Google Play-dienste"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installeer"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sal nie sonder Google Play Dienste werk nie, wat nie op jou toestel is nie."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Kry Google Play-dienste"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play Services-fout"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ondervind probleme met Google Play Dienste. Probeer asseblief weer."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sal nie werk sonder Google Play Dienste nie, wat nie deur jou toestel gesteun word nie."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Dateer op"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sal nie werk nie tensy jy Google Play Dienste opdateer."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Dateer Google Play-dienste op"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sal nie sonder Google Play-dienste werk nie, wat tans opdateer."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Nuwe weergawe van Google Play-dienste is nodig. Dit sal binnekort self opdateer."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Maak oop op foon"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Meld aan"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Meld aan met Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Soek"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-am/values-am.xml b/android/.build/intermediates/res/merged/debug/values-am/values-am.xml
deleted file mode 100644
index 7a625851d5ea92a593696abb776d742df99443f3..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-am/values-am.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ወደ መነሻ ይዳስሱ"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s፣ %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s፣ %2$s፣ %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ወደ ላይ ይዳስሱ"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ተጨማሪ አማራጮች"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"ተከናውኗል"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ሁሉንም ይመልከቱ"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"መተግበሪያ ይምረጡ"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ጠፍቷል"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"በርቷል"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ፈልግ…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"መጠይቅ አጽዳ"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"የፍለጋ ጥያቄ"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ፍለጋ"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"መጠይቅ ያስረክቡ"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"የድምፅ ፍለጋ"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ከሚከተለው ጋር ያጋሩ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"ከ%s ጋር ያጋሩ"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ሰብስብ"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"አንቃ"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play አገልግሎቶችን ካላነቁ በስተቀር <ns1:g id="APP_NAME">%1$s</ns1:g> አይሰራም።"</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play አገልግሎቶችን ያንቁ"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"ጫን"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ያለ Google Play አገልግሎቶች አይሰራም፣ እነሱ ደግሞ በመሣሪያዎ ላይ የሉም።"</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play አገልግሎቶችን ያግኙ"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"የGoogle Play አገልግሎቶች ስህተት"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> በGoogle Play አገልግሎቶች ላይ ችግሮች እያጋጠሙት ነው። እባክዎ እንደገና ይሞክሩ።"</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ያለGoogle Play አገልግሎቶች አይሄድም፣ እነዚህም በመሣሪያዎ አይደገፉም።"</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"ያዘምኑ"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play አገልግሎቶችን ካላዘመኑ በስተቀር ድረስ <ns1:g id="APP_NAME">%1$s</ns1:g> አይሰራም።"</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play አገልግሎቶችን ያዘምኑ"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ያለ Google Play አገልግሎቶች አይሰራም፣ እነሱ ደግሞ በአሁኑ ጊዜ በመዘመን ላይ ናቸው።"</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"አዲስ የGoogle Play አገልግሎቶች ስሪት ያስፈልጋል። በቅርቡ እራሱን ያዘምናል።"</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"ስልክ ላይ ክፈት"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"ግባ"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"በGoogle ይግቡ"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ፈልግ"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ar/values-ar.xml b/android/.build/intermediates/res/merged/debug/values-ar/values-ar.xml
deleted file mode 100644
index f8ae1adb2a7a8e80335a08f908e92cb3881dd0a8..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ar/values-ar.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"التنقل إلى الشاشة الرئيسية"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s، %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s، %2$s، %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"التنقل إلى أعلى"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"خيارات إضافية"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"تم"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"عرض الكل"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"اختيار تطبيق"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"إيقاف"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"تشغيل"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"بحث…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"محو طلب البحث"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"طلب البحث"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"بحث"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"إرسال طلب البحث"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"البحث الصوتي"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"مشاركة مع"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏مشاركة مع %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"تصغير"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"تمكين"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"‏لن يعمل <ns1:g id="APP_NAME">%1$s</ns1:g> ما لم يتم تمكين خدمات Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"‏تمكين خدمات Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"تثبيت"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"‏لن يتم تشغيل <ns1:g id="APP_NAME">%1$s</ns1:g> بدون خدمات Google Play، والتي لا تتوفر على جهازك."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"‏الحصول على خدمات Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"‏خطأ في خدمات Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"‏لدى <ns1:g id="APP_NAME">%1$s</ns1:g> مشكلة في خدمات Google Play. الرجاء إعادة المحاولة."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"‏لن يتم تشغيل <ns1:g id="APP_NAME">%1$s</ns1:g> بدون خدمات Google Play التي لا يوفرها جهازك."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"تحديث"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"‏لن يتم تشغيل <ns1:g id="APP_NAME">%1$s</ns1:g> ما لم يتم تحديث خدمات Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"‏تحديث خدمات Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"‏لن يتم تشغيل <ns1:g id="APP_NAME">%1$s</ns1:g> بدون خدمات Google Play، والتي يتم تحديثها حاليًا."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"‏يجب توفر إصدار جديد من خدمات Google Play. سيتم تحديثها تلقائيًا قريبًا."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"فتح على الهاتف"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"تسجل الدخول"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"‏تسجيل الدخول عبر Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"البحث"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-az-rAZ/values-az-rAZ.xml b/android/.build/intermediates/res/merged/debug/values-az-rAZ/values-az-rAZ.xml
deleted file mode 100644
index 59aa1cd1f74e4be514a611eb50ff55708b3cf3c9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-az-rAZ/values-az-rAZ.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"EvÉ™ naviqasiya et"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yuxarı get"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Digər variantlar"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Hazırdır"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Hamısına baxın"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Tətbiq seçin"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DEAKTÄ°V"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"AKTÄ°V"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Axtarış..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sorğunu təmizlə"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Axtarış sorğusu"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Axtarış"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Sorğunu göndərin"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Səsli axtarış"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bununla paylaşın"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Dağıt"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Axtarış"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-az/values-az.xml b/android/.build/intermediates/res/merged/debug/values-az/values-az.xml
deleted file mode 100644
index 5603fe6207c9864b877bc81f3fdf33b70b97fd78..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-az/values-az.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Aktiv edin"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play xidmətlərini aktiv edənə kimi işləməyəcək."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play xidmətlərini aktiv edin"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Quraşdırın"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> cihazınızda mövcud olmayan Google Play xidmətləri olmadan çalışmayacaq."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play xidmətlərini əldə edin"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play xidmətləri xətası"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> tətbiqi ilə Google Play xidmətləri arasında problem var. Daha sonra yenidən cəhd edin."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Cihazınız tərəfindən dəstəklənməyən Google Play xidmətləri olmadan <ns1:g id="APP_NAME">%1$s</ns1:g> tətbiqi işləməyəcək."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Güncəlləyin"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play xidmətləri yeniləmə halda çalışmaz."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play xidmətlərini güncəlləşdirin"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> hal-hazırda güncəllənən Google Play xidmətləri olmadan çalışmayacaq."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play xidmətlərinin yeni versiyası lazımdır. Qısa müddətə özünü yeniləyəcək."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Telefonda açın"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Daxil olun"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google ilÉ™ daxil olun"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-b+sr+Latn/values-b+sr+Latn.xml b/android/.build/intermediates/res/merged/debug/values-b+sr+Latn/values-b+sr+Latn.xml
deleted file mode 100644
index 05e53a7c4d53759cd123bf5ddcaf2d591f0bfe92..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-b+sr+Latn/values-b+sr+Latn.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Odlazak na Početnu"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Kretanje nagore"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Još opcija"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Gotovo"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Izbor aplikacije"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ISKLJUÄŒI"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"UKLJUÄŒI"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Pretražite..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Brisanje upita"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Upit za pretragu"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Pretraga"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Slanje upita"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovna pretraga"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deli sa"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deli sa aplikacijom %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skupi"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Pretraži"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-be-rBY/values-be-rBY.xml b/android/.build/intermediates/res/merged/debug/values-be-rBY/values-be-rBY.xml
deleted file mode 100644
index 1bc6dccd2913be7505c506fb5085db7656b875d7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-be-rBY/values-be-rBY.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Перайсці на галоўную старонку"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Перайсці ўверх"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Дадатковыя параметры"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Гатова"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Прагледзець усё"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Выбраць праграму"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ВЫКЛ."</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"УКЛ."</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Пошук..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Выдалiць запыт"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Запыт на пошук"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Пошук"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Адправіць запыт"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Галасавы пошук"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Абагуліць з"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Абагуліць з %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Згарнуць"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Пошук"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"больш за 999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-be/values-be.xml b/android/.build/intermediates/res/merged/debug/values-be/values-be.xml
deleted file mode 100644
index 495d5fa6ae90891c0703104758ab6fd39a60b5e6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-be/values-be.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Уключыць"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не будзе працаваць, пакуль вы не ўключыце службы Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Уключыць службы Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Усталяваць"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не будзе працаваць без службаў Google Play, якія адсутнічаюць на вашай прыладзе."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Атрымаць службы Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Памылка службаў Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"У праграмы <ns1:g id="APP_NAME">%1$s</ns1:g> узніклі праблемы са службамі Google Play. Паўтарыце спробу."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не будзе працаваць без службаў Google Play, якія не падтрымліваюцца вашай прыладай."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Абнавіць"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не будзе працаваць, пакуль вы не абновіце службы Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Абнаўленне службаў Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не будзе працаваць без службаў Google Play, якія ў цяперашні час абнаўляюцца."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Патрабуецца новая версія служб Google Play. Яна абновіцца аўтаматычна ў бліжэйшы час."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Адкрыць на тэлефоне"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Увайсцi"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Увайсці праз Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-bg/values-bg.xml b/android/.build/intermediates/res/merged/debug/values-bg/values-bg.xml
deleted file mode 100644
index 151cd1ce3662383db94ea1d810a1bc0a959a41ba..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-bg/values-bg.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Придвижване към „Начало“"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"„%1$s“ – %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"„%1$s“, „%2$s“ – %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Придвижване нагоре"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Още опции"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Вижте всички"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Изберете приложение"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ИЗКЛ."</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ВКЛ."</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Търсете…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Изчистване на заявката"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Заявка за търсене"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Търсене"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Изпращане на заявката"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласово търсене"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Споделяне със:"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Споделяне със: %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Свиване"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Активиране"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> няма да работи, освен ако не активирате услугите за Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Активиране на услугите за Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Инсталиране"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> няма да се изпълнява, тъй като услугите за Google Play не са инсталирани на устройството ви."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Изтегляне на услугите за Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Грешка в услугите за Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> има проблеми с услугите за Google Play. Моля, опитайте отново."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> няма да се изпълнява, тъй като услугите за Google Play не се поддържат от устройството ви."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Актуализиране"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> няма да се изпълнява, освен ако не актуализирате услугите за Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Актуализиране на услугите за Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> няма да се изпълнява без услугите за Google Play. Понастоящем те се актуализират."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Необходима е нова версия на услугите за Google Play. Скоро тя ще се актуализира автоматично."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Отваряне на телефона"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Вход"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Вход с Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Търсене"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml b/android/.build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml
deleted file mode 100644
index 89f21d1a3c4a1cb79af086380e4201404a13994e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"হোম এ নেভিগেট করুন"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"উপরের দিকে নেভিগেট করুন"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"আরো বিকল্প"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"সম্পন্ন হয়েছে"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"সবগুলো দেখুন"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"একটি অ্যাপ্লিকেশান বেছে নিন"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"বন্ধ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"চালু"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"অনুসন্ধান..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"ক্যোয়ারী সাফ করুন"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ক্যোয়ারী অনুসন্ধান করুন"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"অনুসন্ধান করুন"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ক্যোয়ারী জমা দিন"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ভয়েস অনুসন্ধান"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"এর সাথে শেয়ার করুন"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s এর সাথে শেয়ার করুন"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"সঙ্কুচিত করুন"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"অনুসন্ধান করুন"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"৯৯৯+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-bn/values-bn.xml b/android/.build/intermediates/res/merged/debug/values-bn/values-bn.xml
deleted file mode 100644
index 72a1baa00043eb812109afc802a078623bae9c4c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-bn/values-bn.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"সক্ষম করুন"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"আপনি Google Play পরিষেবা সক্ষম না করা পর্যন্ত <ns1:g id="APP_NAME">%1$s</ns1:g> কাজ করবে না।"</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play পরিষেবা সক্ষম করুন"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"ইনস্টল করুন"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Google Play পরিষেবা ছাড়া <ns1:g id="APP_NAME">%1$s</ns1:g> চলবে না, যা আপনার ডিভাইসে অনুপস্থিত।"</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play পরিষেবা পান"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play পরিষেবার ত্রুটি"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Google Play পরিষেবাগুলির সাথে <ns1:g id="APP_NAME">%1$s</ns1:g> এর সমস্যা হচ্ছে৷ অনুগ্রহ করে আবার চেষ্টা করুন৷"</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Google Play পরিষেবা ছাড়া <ns1:g id="APP_NAME">%1$s</ns1:g> চলবে না, যেটি আপনার ডিভাইসে সমর্থিত নয়৷"</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"আপডেট করুন"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"আপনি Google Play পরিষেবা আপডেট না করা পর্যন্ত <ns1:g id="APP_NAME">%1$s</ns1:g> চলবে না।"</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play পরিষেবা আপডেট করুন"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Google Play পরিষেবা ছাড়া <ns1:g id="APP_NAME">%1$s</ns1:g> চলবে না যা বর্তমানে আপডেট হচ্ছে।"</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play পরিষেবার নতুন সংস্করণ প্রয়োজন৷ খুব শীঘ্রই এটা নিজেই আপডেট হবে৷"</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"ফোনে খুলুন"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"প্রবেশ করুন"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google এর মাধ্যমে প্রবেশ করুন"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-bs-rBA/values-bs-rBA.xml b/android/.build/intermediates/res/merged/debug/values-bs-rBA/values-bs-rBA.xml
deleted file mode 100644
index c1dd63a73e4842082e6655eab10f694814d4d8ca..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-bs-rBA/values-bs-rBA.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Vrati se na početnu stranicu"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigiraj prema gore"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Više opcija"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Završeno"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Vidi sve"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Odaberite aplikaciju"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ISKLJUÄŒI"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"UKLJUÄŒI"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Pretraži..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Obriši upit"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Pretraži upit"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Traži"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošalji upit"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Pretraživanje glasom"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Podijeli sa"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Podijeli sa %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skupi"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Pretraži"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-bs/values-bs.xml b/android/.build/intermediates/res/merged/debug/values-bs/values-bs.xml
deleted file mode 100644
index ab026987f87fd3dbae3cd9e96a2a600cd77491dd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-bs/values-bs.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Omogući"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> neće raditi ako ne omogućite Google Play usluge."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Omogućite Google Play usluge"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instaliraj"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> neće raditi bez Google Play usluga, kojih na vašem uređaju nema."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Nabavite Google Play usluge"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Greška Google Play usluge"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> ima problema s Google Play uslugama. Pokušajte ponovo."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> neće raditi bez Google Play usluga, koje vaš uređaj ne podržava."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Ažuriraj"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> neće raditi ako ne ažurirate Google Play usluge."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Ažuriranje Google Play usluga"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> neće raditi bez Google Play usluga, koje se trenutno ažuriraju."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Potrebna je nova verzija Google Play usluga. Ubrzo će se samo ažurirati."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Otvori na telefonu"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Prijavi se"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Prijavi se pomoću Googlea"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ca/values-ca.xml b/android/.build/intermediates/res/merged/debug/values-ca/values-ca.xml
deleted file mode 100644
index 2c009350713b5acb0e0b8fd783552a3f3660200f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ca/values-ca.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navega a la pàgina d\'inici"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navega cap a dalt"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Més opcions"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Fet"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Mostra\'ls tots"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Selecciona una aplicació"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DESACTIVAT"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ACTIVAT"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Cerca..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Esborra la consulta"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de cerca"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Cerca"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envia la consulta"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Cerca per veu"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Comparteix amb"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Comparteix amb %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Replega"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Activa"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no funcionarà si no actives els Serveis de Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Activa els Serveis de Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instal·la"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no s\'executarà si el dispositiu no té instal·lats els serveis de Google Play."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Obtén els Serveis de Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Error dels Serveis de Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> té problemes amb els serveis de Google Play. Torna-ho a provar."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no es pot executar sense els serveis de Google Play, però no són compatibles amb el teu dispositiu."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Actualitza"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no s\'executarà si no actualitzes els Serveis de Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Actualitza els Serveis de Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no s\'executarà sense els Serveis de Google Play, que s\'estan actualitzant en aquest moment."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Cal una nova versió dels Serveis de Google Play. S\'actualitzaran automàticament aviat."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Obre al telèfon"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Inicia sessió"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Inicia la sessió amb Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Cerca"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-cs/values-cs.xml b/android/.build/intermediates/res/merged/debug/values-cs/values-cs.xml
deleted file mode 100644
index 2399b9ce61d3cc1ed82eae9d0968879adcc394ab..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-cs/values-cs.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Přejít na plochu"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s – %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s – %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Přejít nahoru"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Více možností"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Hotovo"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobrazit vše"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Vybrat aplikaci"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"VYPNUTO"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ZAPNUTO"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Vyhledat…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Smazat dotaz"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Vyhledávací dotaz"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Hledat"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Odeslat dotaz"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Hlasové vyhledávání"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Sdílet pomocí"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Sdílet pomocí %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sbalit"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Povolit"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Ke spuštění aplikace <ns1:g id="APP_NAME">%1$s</ns1:g> je třeba aktivovat služby Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Aktivace služeb Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalovat"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Ke spuštění aplikace <ns1:g id="APP_NAME">%1$s</ns1:g> jsou potřeba služby Google Play, které v zařízení nemáte."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Instalace služeb Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Chyba služeb Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Aplikace <ns1:g id="APP_NAME">%1$s</ns1:g> má potíže se službami Google Play. Zkuste to prosím znovu."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Ke spuštění aplikace <ns1:g id="APP_NAME">%1$s</ns1:g> jsou potřeba služby Google Play, které v tomto zařízení nejsou podporovány."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Aktualizovat"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Ke spuštění aplikace <ns1:g id="APP_NAME">%1$s</ns1:g> je třeba aktualizovat služby Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Aktualizace služeb Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Ke spuštění aplikace <ns1:g id="APP_NAME">%1$s</ns1:g> jsou potřeba služby Google Play, které jsou právě aktualizovány."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Je vyžadována nová verze služeb Google Play. Nová verze se brzy sama nainstaluje."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Otevřít v telefonu"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Přihlásit se"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Přihlásit se k účtu Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Hledat"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-da/values-da.xml b/android/.build/intermediates/res/merged/debug/values-da/values-da.xml
deleted file mode 100644
index 7fb7c627524f42d7e52130ba968c47671f046099..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-da/values-da.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Naviger hjem"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Naviger op"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Flere muligheder"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Luk"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Se alle"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Vælg en app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"FRA"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"TIL"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Søg…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ryd forespørgslen"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Søgeforespørgsel"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Søg"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Indsend forespørgslen"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Talesøgning"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Del med"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Del med %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skjul"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Aktivér"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Du skal aktivere Google Play-tjenester, for at <ns1:g id="APP_NAME">%1$s</ns1:g> kan fungere."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Aktivér Google Play-tjenester"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installer"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Du skal installere Google Play-tjenester, før <ns1:g id="APP_NAME">%1$s</ns1:g> kan køre på din enhed."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Hent Google Play-tjenester"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Fejl i Google Play-tjenester"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> har problemer med Google Play-tjenester. Prøv igen."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> fungerer ikke uden Google Play-tjenester, som ikke understøttes på din enhed."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Opdater"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan ikke køre, medmindre du opdaterer Google Play-tjenester."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Opdater Google Play-tjenester"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan ikke køre uden Google Play-tjenester, som i øjeblikket opdateres."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Du skal bruge en ny version af Google Play-tjenester. Opdateringen gennemføres automatisk om et øjeblik."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Åbn på telefonen"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Log ind"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Log ind med Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Søg"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-de/values-de.xml b/android/.build/intermediates/res/merged/debug/values-de/values-de.xml
deleted file mode 100644
index 7674f8c0d94a8c2ee61cf2476c38df13ef1250c4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-de/values-de.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Zur Startseite"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s: %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s: %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Nach oben"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Weitere Optionen"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Fertig"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Alle ansehen"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"App auswählen"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"Aus"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"An"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Suchen…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Suchanfrage löschen"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Suchanfrage"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Suchen"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Suchanfrage senden"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Sprachsuche"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Freigeben für"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Freigeben für %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Minimieren"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Aktivieren"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> funktioniert erst nach der Aktivierung der Google Play-Dienste."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play-Dienste aktivieren"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installieren"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Zur Nutzung von <ns1:g id="APP_NAME">%1$s</ns1:g> sind die Google Play-Dienste erforderlich, die auf deinem Gerät nicht installiert sind."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play-Dienste installieren"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Fehler bei Zugriff auf Google Play-Dienste"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> hat Probleme mit Google Play-Diensten. Bitte versuche es noch einmal."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Zur Nutzung von <ns1:g id="APP_NAME">%1$s</ns1:g> sind Google Play-Dienste erforderlich, die auf deinem Gerät nicht unterstützt werden."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Aktualisieren"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> wird nur ausgeführt, wenn du die Google Play-Dienste aktualisierst."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play-Dienste aktualisieren"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Zur Nutzung von <ns1:g id="APP_NAME">%1$s</ns1:g> sind Google Play-Dienste erforderlich, die gerade aktualisiert werden."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Eine neue Version der Google Play-Dienste wird benötigt. Diese wird in Kürze automatisch aktualisiert."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Auf Smartphone öffnen"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Anmelden"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Ãœber Google anmelden"</string>
-    <string name="fatal_error_msg">In Ihrer Anwendung ist ein schwerwiegender Fehler aufgetreten, sie kann nicht fortgesetzt werden</string>
-    <string name="ministro_needed_msg">Diese Anwendung benötigt den Ministro-Dienst. Möchten Sie ihn installieren?</string>
-    <string name="ministro_not_found_msg">Ministro-Dienst wurde nicht gefunden.\nAnwendung kann nicht gestartet werden</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Suchen"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-el/values-el.xml b/android/.build/intermediates/res/merged/debug/values-el/values-el.xml
deleted file mode 100644
index be920a876af96bb39a2f820180e8282d53c4336f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-el/values-el.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Πλοήγηση στην αρχική σελίδα"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Πλοήγηση προς τα επάνω"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Περισσότερες επιλογές"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Τέλος"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Προβολή όλων"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Επιλέξτε κάποια εφαρμογή"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ΕΝΕΡΓΟΠΟΙΗΣΗ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Αναζήτηση…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Διαγραφή ερωτήματος"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Ερώτημα αναζήτησης"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Αναζήτηση"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Υποβολή ερωτήματος"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Φωνητική αναζήτηση"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Κοινή χρήση με"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Κοινή χρήση με %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Σύμπτυξη"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Ενεργοποίηση"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Η εφαρμογή <ns1:g id="APP_NAME">%1$s</ns1:g> δεν θα λειτουργήσει εάν δεν έχετε ενεργοποιήσει τις υπηρεσίες Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Ενεργοποίηση υπηρεσιών Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Εγκατάσταση"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Η εφαρμογή <ns1:g id="APP_NAME">%1$s</ns1:g> δεν μπορεί να εκτελεστεί χωρίς τις υπηρεσίες Google Play, οι οποίες λείπουν από τη συσκευή σας."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Λήψη υπηρεσιών Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Σφάλμα Υπηρεσιών Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Η εφαρμογή <ns1:g id="APP_NAME">%1$s</ns1:g> αντιμετωπίζει κάποιο πρόβλημα με τις υπηρεσίες Google Play. Προσπαθήστε ξανά."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Η εφαρμογή <ns1:g id="APP_NAME">%1$s</ns1:g> δεν θα εκτελεστεί χωρίς τις υπηρεσίες Google Play, οι οποίες δεν υποστηρίζονται από τη συσκευή σας."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Ενημέρωση"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Η εφαρμογή <ns1:g id="APP_NAME">%1$s</ns1:g> θα εκτελεστεί αφού ενημερώσετε τις Υπηρεσίες Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Ενημέρωση υπηρεσιών Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Η εφαρμογή <ns1:g id="APP_NAME">%1$s</ns1:g> δεν θα εκτελεστεί χωρίς τις υπηρεσίες Google Play, οι οποίες ενημερώνονται αυτήν τη στιγμή."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Απαιτείται νέα έκδοση των υπηρεσιών Google Play. Θα ενημερωθεί σύντομα."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Άνοιγμα σε τηλέφωνο"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Σύνδεση"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Συνδεθείτε με το Google"</string>
-    <string name="fatal_error_msg">Παρουσιάστηκε ένα κρίσιμο σφάλμα και η εφαρμογή δεν μπορεί να συνεχίσει.</string>
-    <string name="ministro_needed_msg">Η εφαρμογή απαιτεί την υπηρεσία Ministro. Να εγκατασταθεί η υπηρεσία?</string>
-    <string name="ministro_not_found_msg">Δεν ήταν δυνατή η εύρεση της υπηρεσίας Ministro. Δεν είναι δυνατή η εκκίνηση της εφαρμογής.</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Αναζήτηση"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-en-rAU/values-en-rAU.xml b/android/.build/intermediates/res/merged/debug/values-en-rAU/values-en-rAU.xml
deleted file mode 100644
index 35ea31a0ba5dacaded9b8a2c413ed319b6d20ca4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-en-rAU/values-en-rAU.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"OFF"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Search"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml b/android/.build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml
deleted file mode 100644
index b9f58fe31ea7e6f7ec6db761e6575945f59dd370..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"OFF"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Enable"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> won\'t work unless you enable Google Play services."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Enable Google Play services"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Install"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> won\'t run without Google Play services, which are missing from your device."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Get Google Play services"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play services error"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> is having trouble with Google Play services. Please try again."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> won\'t run without Google Play services, which are not supported by your device."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Update"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> won\'t run unless you update Google Play services."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Update Google Play services"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> won\'t run without Google Play services, which are currently updating."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"New version of Google Play services needed. It will update itself shortly."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Open on phone"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Sign In"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Sign in with Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Search"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml b/android/.build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml
deleted file mode 100644
index 35ea31a0ba5dacaded9b8a2c413ed319b6d20ca4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"OFF"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Search"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml b/android/.build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml
deleted file mode 100644
index 90d975c0f8ca9d9ed0eaa97c14fffa419fd1ab28..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar a la página principal"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar hacia arriba"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Más opciones"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Listo"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todo"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Elige una aplicación."</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DESACTIVADO"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ACTIVADO"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Eliminar la consulta"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de búsqueda"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Búsqueda"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Búsqueda por voz"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Habilitar"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no funcionará a menos que habilites los servicios de Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Habilitar servicios de Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalar"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no se ejecutará si los Servicios de Google Play no están instalados en tu dispositivo."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Obtener servicios de Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Error de Google Play Services"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> tiene problemas con los servicios de Google Play. Vuelve a intentarlo."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no se ejecutará sin los servicios de Google Play, que no son compatibles con tu dispositivo."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Actualizar"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no se ejecutará a menos que actualices los servicios de Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Actualizar servicios de Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no se ejecutará sin los servicios de Google Play. La plataforma se está actualizando en este momento."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Se necesita una nueva versión de los servicios de Google Play. Se actualizarán automáticamente en breve."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Abrir en el teléfono"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Acceder"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Acceder con Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Buscar"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-es/values-es.xml b/android/.build/intermediates/res/merged/debug/values-es/values-es.xml
deleted file mode 100644
index 0e9f1c2586bb2a556d31444fce9d9be8b1f16caa..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-es/values-es.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ir a la pantalla de inicio"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Desplazarse hacia arriba"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Más opciones"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Listo"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todo"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Seleccionar una aplicación"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"NO"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"SÍ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Borrar consulta"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Buscar"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Búsqueda por voz"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Habilitar"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no funcionará hasta que no habilites Servicios de Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Habilita Servicios de Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalar"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no se ejecutará si los Servicios de Google Play no están instalados en tu dispositivo."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Descargar Servicios de Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Error de Servicios de Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"La aplicación <ns1:g id="APP_NAME">%1$s</ns1:g> tiene problemas con los Servicios de Google Play. Vuelve a intentarlo."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"No es posible ejecutar la aplicación <ns1:g id="APP_NAME">%1$s</ns1:g> sin los Servicios de Google Play, que no son compatibles con tu dispositivo."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Actualizar"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no funcionará hasta que no actualices Servicios de Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Actualiza Servicios de Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> no se ejecutará hasta que finalice la actualización en curso de Servicios de Google Play."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Se necesita una nueva versión de Servicios de Google Play. Se actualizará en breve."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Abrir en teléfono"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Iniciar sesión"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Iniciar sesión con Google"</string>
-    <string name="fatal_error_msg">La aplicación ha causado un error grave y no es posible continuar.</string>
-    <string name="ministro_needed_msg">Esta aplicación requiere el servicio Ministro. Instalarlo?</string>
-    <string name="ministro_not_found_msg">Servicio Ministro inesistente. Imposible ejecutar la aplicación.</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Buscar"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml b/android/.build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml
deleted file mode 100644
index b4cfc016bc180c25d56d92b395ca65b0b2c8172c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeerimine avaekraanile"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigeerimine üles"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Rohkem valikuid"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Valmis"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Kuva kõik"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Valige rakendus"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"VÄLJAS"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"SEES"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Otsige …"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Päringu tühistamine"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Otsingupäring"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Otsing"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Päringu esitamine"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Häälotsing"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Jagamine:"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Jagamine kasutajaga %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Ahendamine"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Otsing"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-et/values-et.xml b/android/.build/intermediates/res/merged/debug/values-et/values-et.xml
deleted file mode 100644
index c8c44ed8d2f8898e47abcd3220ece0a78c6e2d2e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-et/values-et.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Luba"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Rakendus <ns1:g id="APP_NAME">%1$s</ns1:g> töötab ainult siis, kui lubate Google Play teenused."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play teenuste lubamine"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installi"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Rakendus <ns1:g id="APP_NAME">%1$s</ns1:g> töötab ainult koos Google Play teenustega, mida teie seadmes pole."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play teenuste hankimine"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Viga Google Play teenustes"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Rakendusel <ns1:g id="APP_NAME">%1$s</ns1:g> on probleeme Google Play teenustega. Proovige uuesti."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Rakendus <ns1:g id="APP_NAME">%1$s</ns1:g> töötab ainult koos Google Play teenustega, mida teie seadmes ei toetata."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Värskenda"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Rakenduse <ns1:g id="APP_NAME">%1$s</ns1:g> töötamiseks peate värskendama Google Play teenuseid."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play teenuste värskendamine"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Rakendus <ns1:g id="APP_NAME">%1$s</ns1:g> töötab ainult koos Google Play teenustega, mida praegu värskendatakse."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Vajalik on Google Play teenuste uus versioon. See värskendab end peagi."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Ava telefonis"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Logi sisse"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Logi sisse Google\'i kontoga"</string>
-    <string name="fatal_error_msg">Programmiga juhtus fataalne viga.\nKahjuks ei saa jätkata.</string>
-    <string name="ministro_needed_msg">See programm vajab Ministro teenust.\nKas soovite paigaldada?</string>
-    <string name="ministro_not_found_msg">Ei suuda leida Ministro teenust.\nProgrammi ei saa käivitada.</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml b/android/.build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml
deleted file mode 100644
index 74fc58b7e3dd1c5bb48b22f84feb83d9025a21ff..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Joan orri nagusira"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Joan gora"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Aukera gehiago"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Eginda"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ikusi guztiak"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Aukeratu aplikazio bat"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DESAKTIBATUTA"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"AKTIBATUTA"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Bilatu…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Garbitu kontsulta"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Bilaketa-kontsulta"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Bilatu"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Bidali kontsulta"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Ahots bidezko bilaketa"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partekatu hauekin"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partekatu %s erabiltzailearekin"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Tolestu"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Bilatu"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-eu/values-eu.xml b/android/.build/intermediates/res/merged/debug/values-eu/values-eu.xml
deleted file mode 100644
index ac94d0aa60c492d7ab51631b57742d70960dddff..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-eu/values-eu.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Gaitu"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> aplikazioak ez du funtzionatuko Google Play zerbitzuak gaitzen ez badituzu."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Gaitu Google Play zerbitzuak"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalatu"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ez da exekutatuko Google Play zerbitzurik gabe, baina ez dituzu gailuan."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Lortu Google Play zerbitzuak"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play zerbitzuen errorea"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> aplikazioak arazoak ditu Google Play zerbitzuekin. Saiatu berriro."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> aplikazioa ezin da erabili Google Play zerbitzurik gabe, eta zure gailua ez da zerbitzuokin bateragarria."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Eguneratu"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ez da exekutatuko Google Play zerbitzuak eguneratzen ez badituzu."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Eguneratu Google Play zerbitzuak"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ez da exekutatuko Google Play zerbitzurik gabe; une honetan eguneratzen ari dira zerbitzuok."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play zerbitzuen bertsio berria behar da. Berehala eguneratuko da automatikoki."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Ireki telefonoan"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Hasi saioa"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Hasi saioa Google-n"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-fa/values-fa.xml b/android/.build/intermediates/res/merged/debug/values-fa/values-fa.xml
deleted file mode 100644
index 546646181f24027564c1981709fe2d20bb63663d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-fa/values-fa.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"پیمایش به صفحه اصلی"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"‏%1$s‏، %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"‏%1$s‏، %2$s‏، %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"پیمایش به بالا"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"گزینه‌های بیشتر"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"تمام"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"مشاهده همه"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"انتخاب برنامه"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"خاموش"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"روشن"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"جستجو…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"پاک کردن عبارت جستجو"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"عبارت جستجو"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"جستجو"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ارسال عبارت جستجو"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"جستجوی شفاهی"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"اشتراک‌گذاری با"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏اشتراک‌گذاری با %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"کوچک کردن"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"فعال کردن"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"‏تا وقتی سرویس‌های Google Play را فعال نکنید، <ns1:g id="APP_NAME">%1$s</ns1:g> کار نمی‌کند."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"‏‫فعال کردن سرویس‌های Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"نصب"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> بدون خدمات Google Play که در دستگاه شما وجود ندارد اجرا نمی‌شود."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"‏دریافت سرویس‌های Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"‏خطا در خدمات Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> برای استفاده از خدمات Google Play با مشکل روبرو است. لطفاً دوباره امتحان کنید."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> بدون خدمات Google Play که در دستگاه شما پشتیبانی نمی‌شود، اجرا نخواهد شد."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"به‌روزرسانی"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"‏تاز مانی که سرویس‌های Google Play را به‌روزرسانی نکنید، <ns1:g id="APP_NAME">%1$s</ns1:g> اجرا نمی‌شود."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"‏‫به‌روزرسانی سرویس‌های Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> بدون سرویس‌های Google Play که درحال حاضر درحال به‌روزرسانی هستند، کار نمی‌کند."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"‏نسخه جدید سرویس‌های Google Play نیاز است. به‌زودی به‌طور خودکار به‌روزرسانی می‌شود."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"باز کردن در تلفن"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"ورود به سیستم"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"‏ورود به سیستم با Google‎"</string>
-    <string name="fatal_error_msg">خطایی اساسی در برنامه‌تان رخ داد و اجرای برنامه نمی‌تواند ادامه یابد.</string>
-    <string name="ministro_needed_msg">این نرم‌افزار به سرویس Ministro احتیاج دارد. آیا دوست دارید آن را نصب کنید؟</string>
-    <string name="ministro_not_found_msg">سرویس Ministro را پیدا نمی‌کند. برنامه نمی‌تواند آغاز شود.</string>
-    <string msgid="146198913615257606" name="search_menu_title">"جستجو"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"Û¹Û¹Û¹+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-fi/values-fi.xml b/android/.build/intermediates/res/merged/debug/values-fi/values-fi.xml
deleted file mode 100644
index 2c6ead3e6e8937ff27235ed9575b949893a5e419..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-fi/values-fi.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Siirry etusivulle"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Siirry ylös"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Lisää"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Valmis"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Näytä kaikki"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Valitse sovellus"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"POIS KÄYTÖSTÄ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"KÄYTÖSSÄ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Haku…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Tyhjennä kysely"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Hakulauseke"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Haku"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Lähetä kysely"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Puhehaku"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Jakaminen:"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Jakaminen: %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Kutista"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Ota käyttöön"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ei toimi, ellet ota Google Play Palveluita käyttöön."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Ota Google Play Palvelut käyttöön"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Asenna"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ei toimi ilman Google Play Palveluita, jotka puuttuvat laitteeltasi."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Asenna Google Play Palvelut"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Virhe Google Play -palveluissa"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Sovelluksella <ns1:g id="APP_NAME">%1$s</ns1:g> on ongelmia Google Play Palveluiden kanssa. Yritä uudelleen."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ei toimi ilman Google Play Palveluita, joita laitteesi ei tue."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Päivitä"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ei toimi, ellet päivitä Google Play Palveluita."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Päivitä Google Play Palvelut"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ei toimi ilman Google Play Palveluita, joita päivitetään tällä hetkellä."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Uusi Google Play Palveluiden versio tarvitaan. Se päivittyy pian."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Avaa puhelimessa"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Kirjaudu sisään"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Kirjaudu Google-tilille"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Haku"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml b/android/.build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml
deleted file mode 100644
index 3659a5a2e2bb1538ba154661bed20e4b77d8a08a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Revenir en haut de la page"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Plus d\'options"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Terminé"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Voir toutes les chaînes"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Sélectionnez une application"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DÉSACTIVÉ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ACTIVÉ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Recherche en cours..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Effacer la requête"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Requête de recherche"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Rechercher"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envoyer la requête"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Recherche vocale"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partager"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partager avec %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Réduire"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Activer"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas tant que vous n\'aurez pas activé les services Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Activer les services Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installer"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas sans les services Google Play, qui ne sont pas installés sur votre appareil."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Installer les services Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Erreur liée aux services Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"L\'application <ns1:g id="APP_NAME">%1$s</ns1:g> éprouve un problème avec les services Google Play. Veuillez réessayer."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"L\'application <ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas sans les services Google Play, qui ne sont pas pris en charge par votre appareil."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Mettre à jour"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas tant que vous n\'aurez pas mis à jour les services Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Mettre à jour les services Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas sans les services Google Play, qui sont actuellement mis à jour."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"La nouvelle version des services Google Play est nécessaire. Elle sera bientôt installée automatiquement."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Ouvrir sur le téléphone"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Connexion"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Se connecter avec Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Rechercher"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-fr/values-fr.xml b/android/.build/intermediates/res/merged/debug/values-fr/values-fr.xml
deleted file mode 100644
index 0757901f4444eef5a58c3bb5283de31a3e1de099..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-fr/values-fr.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Revenir en haut de la page"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Plus d\'options"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"OK"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tout afficher"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Sélectionner une application"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DÉSACTIVÉ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ACTIVÉ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Rechercher…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Effacer la requête"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Requête de recherche"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Rechercher"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envoyer la requête"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Recherche vocale"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partager avec"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partager avec %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Réduire"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Activer"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas tant que vous n\'aurez pas activé les services Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Activer les services Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installer"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas sans les services Google Play, qui ne sont pas installés sur votre appareil."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Installer les services Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Erreur liée aux services Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"L\'application <ns1:g id="APP_NAME">%1$s</ns1:g> rencontre des problèmes avec les services Google Play. Veuillez réessayer."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas sans les services Google Play, qui ne sont pas compatibles avec votre appareil."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Mettre à jour"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas tant que vous n\'aurez pas mis à jour les services Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Mettre à jour les services Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ne fonctionnera pas sans les services Google Play, qui sont en cours de mise à jour."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"La nouvelle version des services Google Play est nécessaire. Elle sera bientôt installée automatiquement."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Ouvrir sur le téléphone"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Se connecter"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Se connecter avec Google"</string>
-    <string name="fatal_error_msg">Votre application a rencontré une erreur fatale et ne peut pas continuer.</string>
-    <string name="ministro_needed_msg">Cette application requiert le service Ministro. Voulez-vous l\'installer?</string>
-    <string name="ministro_not_found_msg">Le service Ministro est introuvable.\nL\'application ne peut pas démarrer.</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Rechercher"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml b/android/.build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml
deleted file mode 100644
index d79bedf36560421613dc8205d929519bb091f04d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ir á páxina de inicio"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Desprazarse cara arriba"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Máis opcións"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Feito"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todas"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Escoller unha aplicación"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DESACTIVAR"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ACTIVAR"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Borrar consulta"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de busca"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Buscar"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Busca de voz"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Buscar"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-gl/values-gl.xml b/android/.build/intermediates/res/merged/debug/values-gl/values-gl.xml
deleted file mode 100644
index d291ebec59c4e2b9dae7a42bd847c2e67e88e971..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-gl/values-gl.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Activar"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non funcionará a menos que actives os servizos de Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Activar servizos de Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalar"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non se executará se o teu dispositivo non ten instalados os servizos de Google Play."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Descargar servizos de Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Erro nos servizos de Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ten problemas cos servizos de Google Play. Téntao de novo."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non se executará sen os servizos de Google Play, que non son compatibles co teu dispositivo."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Actualizar"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non se executará a menos que actualices os servizos de Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Actualizar os servizos de Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non se executará sen os servizos de Google Play, que se están actualizando neste momento."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Necesítase a nova versión dos servizos de Google Play. Actualizarase en breve."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Abrir no teléfono"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Iniciar sesión"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Iniciar sesión con Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-gu-rIN/values-gu-rIN.xml b/android/.build/intermediates/res/merged/debug/values-gu-rIN/values-gu-rIN.xml
deleted file mode 100644
index 00e9de34e69953585f3161c9c7ea557070215140..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-gu-rIN/values-gu-rIN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"હોમ પર નેવિગેટ કરો"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ઉપર નેવિગેટ કરો"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"વધુ વિકલ્પો"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"થઈ ગયું"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"બધું જુઓ"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"એક ઍપ્લિકેશન પસંદ કરો"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"બંધ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ચાલુ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"શોધો…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"ક્વેરી સાફ કરો"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"શોધ ક્વેરી"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"શોધો"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ક્વેરી સબમિટ કરો"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"વૉઇસ શોધ"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"આની સાથે શેર કરો"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s સાથે શેર કરો"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"સંકુચિત કરો"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"શોધો"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-gu/values-gu.xml b/android/.build/intermediates/res/merged/debug/values-gu/values-gu.xml
deleted file mode 100644
index bf3c3acf47c03085af17919683e578a25e102d49..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-gu/values-gu.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"સક્ષમ કરો"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"તમે Google Play સેવાઓ સક્ષમ કરશો નહીં ત્યાં સુધી <ns1:g id="APP_NAME">%1$s</ns1:g> કાર્ય કરશે નહીં."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play સેવાઓ સક્ષમ કરો"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"ઇન્સ્ટૉલ કરો"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>, Google Play સેવાઓ વગર ચાલશે નહીં, જે તમારા ઉપકરણમાંથી ખૂટે છે."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play સેવાઓ મેળવો"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play સેવાઓની ભૂલ"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ને Google Play સેવાઓમાં મુશ્કેલી આવી રહી છે. કૃપા કરીને ફરી પ્રયાસ કરો."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>, Google Play સેવાઓ વગર ચાલશે નહીં, જે તમારા ઉપકરણ દ્વારા સમર્થિત નથી."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"અપડેટ કરો"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"તમે Google Play સેવાઓ અપડેટ કરશો નહીં ત્યાં સુધી <ns1:g id="APP_NAME">%1$s</ns1:g> શરૂ થશે નહીં."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play સેવાઓ અપડેટ કરો"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>, Google Play સેવાઓ વગર શરૂ થશે નહીં, જે વર્તમાનમાં અપડેટ થઈ રહી છે."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play સેવાઓના નવા સંસ્કરણની જરૂર છે. તે ટૂંક સમયમાં પોતાને અપડેટ કરશે."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"ફોનમાં ખોલો"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"સાઇન ઇન કરો"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google માં સાઇન ઇન કરો"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-h720dp-v13/values-h720dp-v13.xml b/android/.build/intermediates/res/merged/debug/values-h720dp-v13/values-h720dp-v13.xml
deleted file mode 100644
index e38bb90b3581627d059565973a7443441a887fe9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-h720dp-v13/values-h720dp-v13.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <dimen name="abc_alert_dialog_button_bar_height">54dip</dimen>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-hdpi-v4/values-hdpi-v4.xml b/android/.build/intermediates/res/merged/debug/values-hdpi-v4/values-hdpi-v4.xml
deleted file mode 100644
index d5a138ef9b4a8d1276f694e95d0e0293771d92ae..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-hdpi-v4/values-hdpi-v4.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
-          <item name="barLength">18.66dp</item>
-          <item name="gapBetweenBars">3.33dp</item>
-          <item name="drawableSize">24dp</item>
-     </style>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-hi/values-hi.xml b/android/.build/intermediates/res/merged/debug/values-hi/values-hi.xml
deleted file mode 100644
index 25e57b9139b0428262420d28a9db720be0120ca4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-hi/values-hi.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"मुख्यपृष्ठ पर नेविगेट करें"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ऊपर नेविगेट करें"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"अधिक विकल्प"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"पूर्ण"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सभी देखें"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"कोई एप्‍लिकेशन चुनें"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"बंद"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"चालू"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"खोजा जा रहा है…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"क्‍वेरी साफ़ करें"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"खोज क्वेरी"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"खोजें"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"क्वेरी सबमिट करें"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ध्वनि खोज"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"इसके द्वारा साझा करें"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s के साथ साझा करें"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"संक्षिप्त करें"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"सक्षम करें"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> तब तक कार्य नहीं करेगा जब तक आप Google Play सेवाओं को सक्षम नहीं करते."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play सेवाएं सक्षम करना"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"इंस्टॉल करें"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> उन Google Play सेवाओं के बिना नहीं चलेगा जो आपके डिवाइस में उपलब्ध नहीं हैं."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play सेवाएं प्राप्त करना"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play सेवाएं त्रुटि"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> को Google Play सेवाओं के साथ समस्या आ रही है. कृपया फिर से प्रयास करें."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> उन Google Play सेवाओं के बिना नहीं चलेगा, जो आपके डिवाइस द्वारा समर्थित नहीं हैं."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"अपडेट करें"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> तब तक नहीं चलेगा जब तक आप Google Play सेवाओं को अपडेट नहीं करते."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play सेवाओं को अपडेट करें"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> उन Google Play सेवाओं के बिना नहीं चलेगा जो वर्तमान में अपडेट हो रही हैं."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play सेवाओं के नए वर्शन की आवश्यकता है. यह स्वयं को जल्दी ही अपडेट करेगा."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"फ़ोन पर खोलें"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"प्रवेश करें"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google के साथ प्रवेश करें"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"खोज"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-hr/values-hr.xml b/android/.build/intermediates/res/merged/debug/values-hr/values-hr.xml
deleted file mode 100644
index 8e0709e7247afc9b42b613dbe728a2021fab038a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-hr/values-hr.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Idi na početnu"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Idi gore"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Dodatne opcije"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Gotovo"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Odabir aplikacije"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ISKLJUÄŒENO"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"UKLJUÄŒENO"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Pretražite…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Izbriši upit"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Upit za pretraživanje"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Pretraživanje"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošalji upit"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovno pretraživanje"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Dijeljenje sa"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Dijeljenje sa: %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sažmi"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Omogući"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> neće funkcionirati ako ne omogućite usluge Google Playa."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Omogućivanje usluga Google Playa"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instaliraj"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> neće funkcionirati bez usluga Google Playa koje nisu instalirane na vašem uređaju."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Preuzimanje usluga Google Playa"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Pogreška Usluga za Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ima poteškoća s uslugama Google Playa. Pokušajte ponovo."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> neće funkcionirati bez usluga Google Playa koje vaš uređaj ne podržava."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Ažuriraj"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> neće funkcionirati ako ne ažurirate Google Play usluge."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Ažuriranje usluga Google Playa"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> neće se pokrenuti bez usluga Google Playa koje se trenutačno ažuriraju."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Potrebna je nova verzija usluga Google Playa. Uskoro će se ažurirati."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Otvori na telefonu"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Prijava"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Prijava putem Googlea"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Pretraživanje"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-hu/values-hu.xml b/android/.build/intermediates/res/merged/debug/values-hu/values-hu.xml
deleted file mode 100644
index 494f20db191006eccc8cc772c25f0efa25b8ff3b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-hu/values-hu.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ugrás a főoldalra"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Felfelé mozgatás"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"További lehetőségek"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Kész"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Összes megtekintése"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Válasszon ki egy alkalmazást"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"KI"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"BE"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Keresés…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Lekérdezés törlése"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Keresési lekérdezés"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Keresés"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Lekérdezés küldése"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Hangalapú keresés"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Megosztás a következővel:"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Megosztás a következővel: %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Összecsukás"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Engedélyezés"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"A(z) <ns1:g id="APP_NAME">%1$s</ns1:g> alkalmazás csak akkor működik, ha  engedélyezi a Google Play-szolgáltatásokat."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play-szolgáltatások engedélyezése"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Telepítés"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"A(z) <ns1:g id="APP_NAME">%1$s</ns1:g> alkalmazás nem fut a Google Play-szolgáltatások nélkül, amelyek hiányoznak az eszközről."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"A Google Play-szolgáltatások beszerzése"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play-szolgáltatások – hiba"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"A(z) <ns1:g id="APP_NAME">%1$s</ns1:g> alkalmazás problémába ütközött a Google Play-szolgáltatások használata során. Próbálkozzon újra."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"A(z) <ns1:g id="APP_NAME">%1$s</ns1:g> alkalmazás nem fut a Google Play-szolgáltatások nélkül, amelyeket eszköze nem támogat."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Frissítés"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"A(z) <ns1:g id="APP_NAME">%1$s</ns1:g> alkalmazás csak akkor fog működni, ha frissíti a Google Play-szolgáltatásokat."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"A Google Play-szolgáltatások frissítése"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"A(z) <ns1:g id="APP_NAME">%1$s</ns1:g> alkalmazás nem fut a Google Play-szolgáltatások nélkül, amelyek frissítése folyamatban van."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"A Google Play-szolgáltatások új verziójára van szükség. A szolgáltatás hamarosan frissíti önmagát."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Megnyitás a telefonon"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Bejelentkezés"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Bejelentkezés Google-fiókkal"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Keresés"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml b/android/.build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml
deleted file mode 100644
index ffaeec02c5c5a8e3a77247159ffacb8d8402d8c4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ÕˆÖ‚Õ²Õ²Õ¾Õ¥Õ¬ Õ¿Õ¸Ö‚Õ¶"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ÕˆÖ‚Õ²Õ²Õ¾Õ¥Õ¬ Õ¾Õ¥Ö€Ö‡"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Ô±ÕµÕ¬ Õ¨Õ¶Õ¿Ö€Õ¡Õ¶Ö„Õ¶Õ¥Ö€"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"ÕŠÕ¡Õ¿Ö€Õ¡Õ½Õ¿ Õ§"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Տեսնել բոլորը"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Ô¸Õ¶Õ¿Ö€Õ¥Õ¬ Õ®Ö€Õ¡Õ£Õ«Ö€"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ԱՆՋԱՏՎԱԾ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"Õ„Ô»Ô±Õ‘ÕŽÔ±Ô¾"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ÕˆÖ€Õ¸Õ¶Õ¸Ö‚Õ´..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Մաքրել հարցումը"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Որոնման հարցում"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ÕˆÖ€Õ¸Õ¶Õ¥Õ¬"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Ուղարկել հարցումը"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Ձայնային որոնում"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Ô¿Õ«Õ½Õ¾Õ¥Õ¬"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Կիսվել %s-ի միջոցով"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Թաքցնել"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ÕˆÖ€Õ¸Õ¶Õ¥Õ¬"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-hy/values-hy.xml b/android/.build/intermediates/res/merged/debug/values-hy/values-hy.xml
deleted file mode 100644
index 3aae53514601252f6d7f48ced8ccf34eeb184760..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-hy/values-hy.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Միացնել"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> հավելվածը չի աշխատի մինչև չմիացնեք Google Play ծառայությունները:"</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Միացնել Google Play ծառայությունները"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Տեղադրել"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> հավելվածը չի աշխատի առանց Google Play ծառայությունների, որոնք չկան ձեր սարքում:"</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Տեղադրել Google Play ծառայությունները"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play Õ®Õ¡Õ¼Õ¡ÕµÕ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« Õ½Õ­Õ¡Õ¬ Õ¯Õ¡"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> հավելվածը Google Play ծառայությունների հետ կապված խնդիր ունի: Փորձեք նորից:"</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> հավելվածը չի աշխատի առանց Google Play ծառայությունների, որոնք ձեր սարքում չեն աջակցվում:"</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Թարմացնել"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> հավելվածը չի աշխատի մինչև չթարմացնեք Google Play ծառայությունները:"</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Թարմացնել Google Play ծառայությունները"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> հավելվածը չի աշխատի առանց Google Play ծառայությունների, որոնք այս պահին թարմացվում են:"</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Անհրաժեշտ է Google Play ծառայությունների նոր տարբերակը: Այն շուտով կթարմացվի ավտոմատ կերպով:"</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Բացել հեռախոսով"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Õ„Õ¸Ö‚Õ¿Ö„ Õ£Õ¸Ö€Õ®Õ¥Õ¬"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Õ„Õ¸Ö‚Õ¿Ö„ Õ£Õ¸Ö€Õ®Õ¥Õ¬ Google-Õ¸Õ¾"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-id/values-id.xml b/android/.build/intermediates/res/merged/debug/values-id/values-id.xml
deleted file mode 100644
index a2d58befdf233051f7bc1099b6619619ab022b6c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-id/values-id.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string name="fatal_error_msg">Aplikasi Anda mengalami kesalahan fatal dan tidak dapat melanjutkan.</string>
-    <string name="ministro_needed_msg">Aplikasi ini membutuhkan layanan Ministro. Apakah Anda ingin menginstalnya?</string>
-    <string name="ministro_not_found_msg">Layanan Ministro tidak bisa ditemukan.\nAplikasi tidak bisa dimulai.</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-in/values-in.xml b/android/.build/intermediates/res/merged/debug/values-in/values-in.xml
deleted file mode 100644
index 47251d22502ed410cc4da89ca171e6d9f93b25e7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-in/values-in.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigasi ke beranda"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigasi naik"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Opsi lain"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Selesai"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Lihat semua"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pilih aplikasi"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"NONAKTIF"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"AKTIF"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Telusuri..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Hapus kueri"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Kueri penelusuran"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Telusuri"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Kirim kueri"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Penelusuran suara"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bagikan dengan"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Bagikan dengan %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Ciutkan"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Aktifkan"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berfungsi jika layanan Google Play tidak diaktifkan."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Aktifkan layanan Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Pasang"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berjalan tanpa layanan Google Play, yang tidak ada di perangkat Anda."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Dapatkan layanan Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Kesalahan layanan Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> mengalami masalah dengan layanan Google Play. Coba lagi."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berjalan tanpa layanan Google Play, yang tidak didukung oleh perangkat Anda."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Perbarui"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berjalan jika layanan Google Play tidak diperbarui."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Perbarui layanan Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berjalan tanpa layanan Google Play, yang saat ini sedang diperbarui."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Perlu versi baru layanan Google Play. Akan segera memperbarui sendiri."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Buka di ponsel"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Masuk"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Masuk dengan Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Telusuri"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml b/android/.build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml
deleted file mode 100644
index 6cd2b46626020a5efb0e08fedf29c57fc678415b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Fara heim"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Fara upp"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Fleiri valkostir"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Lokið"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Sjá allt"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Veldu forrit"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"SLÖKKT"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"KVEIKT"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Leita…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Hreinsa fyrirspurn"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Leitarfyrirspurn"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Leita"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Senda fyrirspurn"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Raddleit"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deila með"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deila með %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Minnka"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Leita"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-is/values-is.xml b/android/.build/intermediates/res/merged/debug/values-is/values-is.xml
deleted file mode 100644
index e3a7b1121ffa835f77e6310433174bfbc3261ccd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-is/values-is.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Kveikja"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> virkar ekki nema þú gerir þjónustu Google Play virka."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Virkja þjónustu Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Setja upp"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> getur ekki keyrt án þjónustu Google Play, sem vantar í tækið þitt."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Sækja þjónustu Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Villa í þjónustu Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> á í vandræðum með þjónustu Google Play. Reyndu aftur."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> getur ekki keyrt án þjónustu Google Play, sem er ekki studd af tækinu þínu."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Uppfæra"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> getur ekki keyrt nema þú uppfærir þjónustu Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Uppfæra þjónustu Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> getur ekki keyrt án þjónustu Google Play, sem verið er að uppfæra."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Nýja útgáfu af þjónustu Google Play vantar. Hún uppfærir sig sjálf innan skamms."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Opna í símanum"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Skrá inn"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Skrá inn með Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-it/values-it.xml b/android/.build/intermediates/res/merged/debug/values-it/values-it.xml
deleted file mode 100644
index 4903df730192fbb2e504191a862756d524f325a9..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-it/values-it.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Vai alla home page"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Vai in alto"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Altre opzioni"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Fine"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Visualizza tutte"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Scegli un\'applicazione"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"OFF"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Cerca…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Cancella query"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Query di ricerca"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Cerca"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Invia query"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Ricerca vocale"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Condividi con"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Condividi con %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Comprimi"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Attiva"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non funzionerà se non attivi Google Play Services."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Attiva Google Play Services"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installa"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"L\'app <ns1:g id="APP_NAME">%1$s</ns1:g> non funzionerà senza Google Play Services, non presente sul tuo dispositivo."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Installa Google Play Services"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Errore Google Play Services"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> sta riscontrando problemi con Google Play Services. Riprova."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non funzionerà senza Google Play Services, non supportati dal tuo dispositivo."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Aggiorna"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non funzionerà se non aggiorni Google Play Services."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Aggiorna Google Play Services"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> non funzionerà senza Google Play Services, attualmente in fase di aggiornamento."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"È richiesta una nuova versione di Google Play Services. L\'aggiornamento automatico verrà eseguito a breve."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Apri sul telefono"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Accedi"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Accedi con Google"</string>
-    <string name="fatal_error_msg">L\'applicazione ha provocato un errore grave e non puo\' continuare.</string>
-    <string name="ministro_needed_msg">Questa applicazione richiede il servizio Ministro.Installarlo?</string>
-    <string name="ministro_not_found_msg">Servizio Ministro inesistente. Impossibile eseguire \nl\'applicazione.</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Ricerca"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-iw/values-iw.xml b/android/.build/intermediates/res/merged/debug/values-iw/values-iw.xml
deleted file mode 100644
index dff8625c4efb59d927540ffa5ff048b266b21c13..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-iw/values-iw.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"נווט לדף הבית"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"‏%1$s‏, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"‏%1$s‏, %2$s‏, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"נווט למעלה"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"עוד אפשרויות"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"בוצע"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ראה הכל"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"בחר אפליקציה"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"כבוי"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"פועל"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"חפש…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"מחק שאילתה"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"שאילתת חיפוש"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"חפש"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"שלח שאילתה"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"חיפוש קולי"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"שתף עם"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏שתף עם %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"כווץ"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"הפעל"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"‏האפליקציה <ns1:g id="APP_NAME">%1$s</ns1:g> לא תפעל אם לא תפעיל את שירותי Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"‏הפעל את שירותי Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"התקן"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"‏האפליקציה <ns1:g id="APP_NAME">%1$s</ns1:g> לא תפעל ללא שירותי Google Play, שאינם מותקנים במכשיר."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"‏קבל את שירותי Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"‏שגיאה בשירותי Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> נתקלה בבעיה בשירותי Google Play. נסה שוב."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> לא תפעל ללא שירותי Google Play, שאינם נתמכים במכשיר שלך."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"עדכן"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> לא יפעל אם לא תעדכן את שירותי Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"‏עדכון שירותי Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"‏האפליקציה <ns1:g id="APP_NAME">%1$s</ns1:g> לא תפעל ללא שירותי Google Play, שמתעדכנים כרגע."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"‏דרושה גרסה חדשה של שירותי Google Play. הגרסה תתעדכן בעצמה תוך זמן קצר."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"פתח בטלפון"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"היכנס"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"‏היכנס באמצעות Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"חפש"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"‎999+‎"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ja/values-ja.xml b/android/.build/intermediates/res/merged/debug/values-ja/values-ja.xml
deleted file mode 100644
index a975a374456079ca8d254207a389301334a13f3f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ja/values-ja.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ホームへ移動"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s、%2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s、%2$s、%3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"上へ移動"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"その他のオプション"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"完了"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"すべて表示"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"アプリの選択"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"OFF"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"検索…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"検索キーワードを削除"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"検索キーワード"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"検索"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"検索キーワードを送信"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"音声検索"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"共有"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%sと共有"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"折りたたむ"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"有効にする"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>の実行には、Google Play開発者サービスの有効化が必要です。"</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play開発者サービスの有効化"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"インストール"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"「<ns1:g id="APP_NAME">%1$s</ns1:g>」の実行には Google Play 開発者サービスが必要ですが、お使いの端末にはインストールされていません。"</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play開発者サービスの入手"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play開発者サービスのエラー"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"「<ns1:g id="APP_NAME">%1$s</ns1:g>」で Google Play 開発者サービスに問題が発生しています。もう一度お試しください。"</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"「<ns1:g id="APP_NAME">%1$s</ns1:g>」の実行には Google Play 開発者サービスが必要ですが、お使いの端末ではサポートされていません。"</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"æ›´æ–°"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>の実行にはGoogle Play開発者サービスの更新が必要です。"</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play開発者サービスの更新"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>の実行にはGoogle Play開発者サービスが必要ですが、このサービスは現在更新中です。"</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play開発者サービスの新しいバージョンが必要です。まもなく自動更新されます。"</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"スマートフォンで開く"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"ログイン"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Googleにログイン"</string>
-    <string name="fatal_error_msg">アプリケーションで致命的なエラーが発生したため続行できません。</string>
-    <string name="ministro_needed_msg">このアプリケーションにはMinistroサービスが必要です。 インストールしてもよろしいですか?</string>
-    <string name="ministro_not_found_msg">Ministroサービスが見つかりません。\nアプリケーションが起動できません。</string>
-    <string msgid="146198913615257606" name="search_menu_title">"検索"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml b/android/.build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml
deleted file mode 100644
index 3f321189d390da4ecd9772ed9ccc36e5e7c531b4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"მთავარზე ნავიგაცია"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ზემოთ ნავიგაცია"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"მეტი ვარიანტები"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"დასრულდა"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ყველას ნახვა"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"აპის არჩევა"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"გამორთულია"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ჩართულია"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ძიება..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"მოთხოვნის გასუფთავება"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ძიების მოთხოვნა"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ძიება"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"მოთხოვნის გადაგზავნა"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ხმოვანი ძიება"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"გაზიარება:"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s-თან გაზიარება"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"აკეცვა"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ძიება"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ka/values-ka.xml b/android/.build/intermediates/res/merged/debug/values-ka/values-ka.xml
deleted file mode 100644
index 874dfe93a9831c42aa7aef579d1227308a5c9231..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ka/values-ka.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"ჩართვა"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ვერ იმუშავებს Google Play Services-ის ჩართვამდე."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play Services-ის ჩართვა"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"ინსტალაცია"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ვერ გაეშვება Google Play Services-ის გარეშე, რომელიც აკლია თქვენს მოწყობილობას."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play Services-ის ჩამოტვირთვა"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play Services-ის შეცდომა"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g>-ს Google Play Services-თან პრობლემა შეექმნა. გთხოვთ, ცადოთ ხელახლა."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ვერ გაეშვება Google Play Services-ის გარეშე, რომლებიც მხარდაუჭერელია თქვენი მოწყობილობის მიერ."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"განახლება"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ვერ გაეშვება, თუ Google Play სერვისებს არ განაახლებთ."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"განაახლეთ Google Play Services"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ვერ გაეშვება Google Play Services-ის გარეშე, რომელთა განახლებაც ამჟამად მიმდინარეობს."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"საჭიროა Google Play Services-ის ახალი ვერსია. ის მალე განახლდება."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"ტელეფონში გახსნა"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"შესვლა"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google-ით შესვლა"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml b/android/.build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml
deleted file mode 100644
index a00d111a3e5ec49e15a90784080a5b9c4ea226be..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Негізгі бетте қозғалу"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Жоғары қозғалу"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Басқа опциялар"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Дайын"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Барлығын көру"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Қолданбаны таңдау"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ӨШІРУЛІ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ҚОСУЛЫ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Іздеу…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Сұрақты жою"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Сұрақты іздеу"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Іздеу"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Сұрақты жіберу"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Дауыс арқылы іздеу"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Бөлісу"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s бөлісу"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Тасалау"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Іздеу"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-kk/values-kk.xml b/android/.build/intermediates/res/merged/debug/values-kk/values-kk.xml
deleted file mode 100644
index a9172bd4a9499e5652649ffe2d3596184bbe5183..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-kk/values-kk.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Қосу"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play қызметтерін қоспасаңыз, <ns1:g id="APP_NAME">%1$s</ns1:g> жұмыс істемейді."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play қызметтерін қосу"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Орнату"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Google Play қызметтері құрылғыда болмағандықтан, <ns1:g id="APP_NAME">%1$s</ns1:g> іске қосылмайды."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play қызметтерін алу"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play қызметтерінің қатесі"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> қолданбасында Google Play қызметіне байланысты белгісіз қате шықты. Әрекетті қайталаңыз."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> қолданбасы құрылғыңызда қолдау көрсетілмейтін Google Play қызметінсіз жұмыс істемейді."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Жаңарту"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play қызметтерін жаңартпасаңыз, <ns1:g id="APP_NAME">%1$s</ns1:g> іске қосылмайды."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play қызметтерін жаңарту"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Қазіргі уақытта жаңартылып жатқан Google Play қызметтерінсіз <ns1:g id="APP_NAME">%1$s</ns1:g> іске қосылмайды."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play қызметтерінің жаңа нұсқасы қажет. Ол қысқа уақыттан кейін өзі жаңарады."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Телефонда ашу"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Кіру"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google арқылы кіру"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml b/android/.build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml
deleted file mode 100644
index a2dd37a14ed76793791b17c95a6073b130ed83b6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"រកមើល​ទៅ​ដើម"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"រកមើល​ឡើងលើ"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ជម្រើស​ច្រើន​ទៀត"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"រួចរាល់"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"មើល​ទាំងអស់"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ជ្រើស​កម្មវិធី​​"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"បិទ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"បើក"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ស្វែងរក…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"សម្អាត​សំណួរ"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ស្វែងរក​សំណួរ"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ស្វែងរក"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ដាក់​​​ស្នើ​សំណួរ"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ការស្វែងរក​សំឡេង"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ចែករំលែក​ជាមួយ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"ចែករំលែក​ជាមួយ %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"បង្រួម"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ស្វែងរក"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-km/values-km.xml b/android/.build/intermediates/res/merged/debug/values-km/values-km.xml
deleted file mode 100644
index 729e65bf745b4c7cef93c231a4325e0e0ee7f6e3..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-km/values-km.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"បើក"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> នឹងមិនដំណើរការទេ លុះត្រាតែអ្នកបើកសេវាកម្ម Google Play។"</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"បើកសេវាកម្ម Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"ដំឡើង"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> នឹងមិនដំណើរការទេ ប្រសិនបើមិនមានសេវាកម្មនានារបស់ Google Play ដែលបានបាត់ពីឧបករណ៍របស់អ្នក។"</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"ទាញយកសេវាកម្ម Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"កំហុស​​សេវាកម្ម​ Google កម្សាន្ត"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> កំពុងមានបញ្ហាជាមួយសេវាកម្មរបស់ Google Play ។ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ។"</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> នឹងមិនដំណើរការដោយគ្មានសេវាកម្មរបស់ Google Play ដែលឧបករណ៍របស់អ្នកមិនគាំទ្រនោះទេ។"</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"អាប់ដេត"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> នឹងមិនដំណើរការទេ លុះត្រាតែអ្នកធ្វើបច្ចុប្បន្នភាពសេវាកម្ម Google Play។"</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"អាប់ដេតសេវាកម្ម Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> នឹងមិនដំណើរការទេ បើមិនមានសេវាកម្ម Google Play ដោយសារតែវាកំពុងអាប់ដេត។"</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"តម្រូវឲ្យមានកំណែថ្មីនៃសេវាកម្ម Google Play។ វានឹងអាប់ដេតដោយខ្លួនវានៅពេលបន្តិចទៀតនេះ។"</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"បើកតាមទូរស័ព្ទ"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"ចូល"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"ចូលដោយប្រើ Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml b/android/.build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml
deleted file mode 100644
index 99cdffd61b6791f3bb08cc20800054576dc9603d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"ಮುಗಿದಿದೆ"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ಎಲ್ಲವನ್ನೂ ನೋಡಿ"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ಆಫ್"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ಆನ್"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ಹುಡುಕಿ…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ಹುಡುಕಿ"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ಧ್ವನಿ ಹುಡುಕಾಟ"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ಸಂಕುಚಿಸು"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ಹುಡುಕಿ"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-kn/values-kn.xml b/android/.build/intermediates/res/merged/debug/values-kn/values-kn.xml
deleted file mode 100644
index b8a9e57829ec37bfeb4c146c54ba1700b8092342..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-kn/values-kn.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"ಸಕ್ರಿಯಗೊಳಿಸು"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play ಸೇವೆಗಳನ್ನು ನೀವು ಸಕ್ರಿಯಗೊಳಿಸದ ಹೊರತು <ns1:g id="APP_NAME">%1$s</ns1:g> ಕಾರ್ಯನಿರ್ವಹಿಸುವುದಿಲ್ಲ."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play ಸೇವೆಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"ಸ್ಥಾಪಿಸು"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"ನಿಮ್ಮ ಸಾಧನದಿಂದ ಕಾಣೆಯಾಗಿರುವ <ns1:g id="APP_NAME">%1$s</ns1:g>, Google Play ಸೇವೆಗಳಿಲ್ಲದೆ ರನ್ ಆಗುವುದಿಲ್ಲ."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play ಸೇವೆಗಳನ್ನು ಪಡೆಯಿರಿ"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play ಸೇವೆಗಳ ದೋಷ"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Google Play ಸೇವೆಗಳಲ್ಲಿ <ns1:g id="APP_NAME">%1$s</ns1:g> ಸಮಸ್ಯೆಯನ್ನು ಹೊಂದಿದೆ. ದಯವಿಟ್ಟು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"ನಿಮ್ಮ ಸಾಧನದ ಮೂಲಕ ಬೆಂಬಲಿಸದಿರುವ Google Play ಸೇವೆಗಳಿಲ್ಲದೆ <ns1:g id="APP_NAME">%1$s</ns1:g> ರನ್‌ ಆಗುವುದಿಲ್ಲ."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"ಅಪ್‌ಡೇಟ್‌ ಮಾಡು"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"ನೀವು Google Play ಸೇವೆಗಳನ್ನು ನವೀಕರಿಸದ ಹೊರತು <ns1:g id="APP_NAME">%1$s</ns1:g> ರನ್ ಆಗುವುದಿಲ್ಲ."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play ಸೇವೆಗಳನ್ನು ಅಪ್‌ಡೇಟ್‌ ಮಾಡಿ"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Google Play ಸೇವೆಗಳಿಲ್ಲದೆ ಪ್ರಸ್ತುತ ಅಪ್‌ಡೇಟ್ ಆಗುತ್ತಿರುವ <ns1:g id="APP_NAME">%1$s</ns1:g> ರನ್ ಆಗುವುದಿಲ್ಲ."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play ಸೇವೆಗಳ ಹೊಸ ಆವೃತ್ತಿ ಅಗತ್ಯವಿದೆ. ಸದ್ಯದಲ್ಲೇ ಅದು ತಾನಾಗಿಯೇ ಅಪ್‌ಡೇಟ್ ಆಗುತ್ತದೆ."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"ಫೋನ್‌ನಲ್ಲಿ ತೆರೆಯಿರಿ"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"ಸೈನ್ ಇನ್"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google ಮೂಲಕ ಸೈನ್ ಇನ್ ಮಾಡಿ"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ko/values-ko.xml b/android/.build/intermediates/res/merged/debug/values-ko/values-ko.xml
deleted file mode 100644
index e721dfd33b7445da5a35648f5286347a944a6344..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ko/values-ko.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"홈 탐색"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"위로 탐색"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"옵션 더보기"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"완료"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"전체 보기"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"앱 선택"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"사용 안함"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"사용"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"검색..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"검색어 삭제"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"검색어"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"검색"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"검색어 보내기"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"음성 검색"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"공유 대상"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s와(과) 공유"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"접기"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"사용 설정"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play 서비스를 사용하도록 설정해야 <ns1:g id="APP_NAME">%1$s</ns1:g>이(가) 작동합니다."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play 서비스 사용"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"설치"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"기기에 Google Play 서비스가 설치되어 있어야 <ns1:g id="APP_NAME">%1$s</ns1:g>이(가) 실행됩니다."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play 서비스 설치"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play 서비스 오류"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g>에서 Google Play 서비스를 사용하는 데 문제가 있습니다. 다시 시도하세요."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>은(는) Google Play 서비스 없이는 실행되지 않으나, 기기에서 Google Play 서비스를 지원하지 않습니다."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"업데이트"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play 서비스를 업데이트해야 <ns1:g id="APP_NAME">%1$s</ns1:g>이(가) 실행됩니다."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play 서비스 업데이트"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"현재 업데이트 중인 Google Play 서비스가 있어야 <ns1:g id="APP_NAME">%1$s</ns1:g>이(가) 실행됩니다."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"새 버전의 Google Play 서비스가 필요합니다. 곧 자동으로 업데이트됩니다."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"스마트폰에서 열기"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"로그인"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google 계정으로 로그인"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"검색"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml b/android/.build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml
deleted file mode 100644
index 2493032a11c8d91bd39ca64d0d71a70c4b8a5277..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Үйгө багыттоо"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Жогору"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Көбүрөөк мүмкүнчүлүктөр"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Даяр"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Бардыгын көрүү"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Колдонмо тандоо"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ӨЧҮК"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"КҮЙҮК"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Издөө…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Талаптарды тазалоо"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Издөө талаптары"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Издөө"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Талап жөнөтүү"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Үн аркылуу издөө"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Бөлүшүү"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s аркылуу бөлүшүү"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Жыйнап коюу"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Издөө"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ky/values-ky.xml b/android/.build/intermediates/res/merged/debug/values-ky/values-ky.xml
deleted file mode 100644
index 55613406303f7d6c03026d15fe846f24234e48c6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ky/values-ky.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Иштетүү"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play кызматтарын иштетмейиңизче <ns1:g id="APP_NAME">%1$s</ns1:g> иштебейт."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play кызматтарын иштетүү"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Орнотуу"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Google Play кызматтарысыз <ns1:g id="APP_NAME">%1$s</ns1:g> иштебейт. Алар түзмөгүңүздө жок болуп жатат."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play кызматтарын алуу"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play кызматтарынын катасы"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> колдонмосунун Google Play кызматтары менен иштөөдө көйгөй чыкты. Кайра аракет кылыңыз."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> колдонмосу сиздин түзмөгүңүздө колдоого алынбаган Google Play кызматтары болбосо иштебейт."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Жаңыртуу"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play кызматтары жаңыртылмайынча <ns1:g id="APP_NAME">%1$s</ns1:g> иштебейт."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play кызматтарын жаңыртуу"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Google Play кызматтарысыз <ns1:g id="APP_NAME">%1$s</ns1:g> иштебейт, алар учурда жаңыртылууда."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play кызматтарынын жаңы версиясы талап кылынат. Бир аздан кийин ал өзү эле жаңыртылат."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Телефондо ачык"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Кирүү"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google менен кирүү"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-land/values-land.xml b/android/.build/intermediates/res/merged/debug/values-land/values-land.xml
deleted file mode 100644
index b337bad0d9b2d4f98be3b375ee7051c0cc433bde..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-land/values-land.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <dimen name="abc_action_bar_default_height_material">48dp</dimen>
-    <dimen name="abc_action_bar_progress_bar_size">32dp</dimen>
-    <dimen name="abc_text_size_subtitle_material_toolbar">12dp</dimen>
-    <dimen name="abc_text_size_title_material_toolbar">14dp</dimen>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-large-v4/values-large-v4.xml b/android/.build/intermediates/res/merged/debug/values-large-v4/values-large-v4.xml
deleted file mode 100644
index cc236ebd9c9bfc4d57f8e5eb3ce5f16c233569ec..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-large-v4/values-large-v4.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <dimen name="abc_config_prefDialogWidth">440dp</dimen>
-    <item name="abc_dialog_fixed_height_major" type="dimen">60%</item>
-    <item name="abc_dialog_fixed_height_minor" type="dimen">90%</item>
-    <item name="abc_dialog_fixed_width_major" type="dimen">60%</item>
-    <item name="abc_dialog_fixed_width_minor" type="dimen">90%</item>
-    <item name="abc_dialog_min_width_major" type="dimen">55%</item>
-    <item name="abc_dialog_min_width_minor" type="dimen">80%</item>
-    <style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.Dialog.FixedSize"/>
-    <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.Dialog.FixedSize"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ldltr-v21/values-ldltr-v21.xml b/android/.build/intermediates/res/merged/debug/values-ldltr-v21/values-ldltr-v21.xml
deleted file mode 100644
index 1bdd835a6ea700cebab37f5242380ebd379f5612..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ldltr-v21/values-ldltr-v21.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Base.Widget.AppCompat.Spinner.Underlined" parent="android:Widget.Material.Spinner.Underlined"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml b/android/.build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml
deleted file mode 100644
index 933aed34a6d2dc58f888647269e2a3531c00b0c6..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ກັບໄປໜ້າຫຼັກ"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ຂຶ້ນເທິງ"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ໂຕເລືອກອື່ນ"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"ແລ້ວໆ"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ເບິ່ງທັງຫມົດ"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ເລືອກແອັບຯ"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ປິດ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ເປີດ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ຊອກຫາ"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"ລຶບຂໍ້ຄວາມຊອກຫາ"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ຊອກຫາ"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ຊອກຫາ"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ສົ່ງການຊອກຫາ"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ຊອກຫາດ້ວຍສຽງ"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ແບ່ງປັນກັບ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"ແບ່ງ​ປັນ​ກັບ​ %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ຫຍໍ້"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ຊອກຫາ"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-lo/values-lo.xml b/android/.build/intermediates/res/merged/debug/values-lo/values-lo.xml
deleted file mode 100644
index 2cf8aad0ed1ee4f9cac45bb12f3a6cbbc0925705..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-lo/values-lo.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"ເປີດນຳໃຊ້"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ຈະບໍ່ສາມາດໃຊ້ງານໄດ້ຈົນກວ່າທ່ານຈະເປີດໃຊ້ງານ​ການ​ບໍ​ລິ​ການ Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"ເປີດໃຊ້ການ​ບໍ​ລິ​ການ Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"ຕິດຕັ້ງ"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ຈະບໍ່ສາມາດເປີດໃຊ້ໄດ້ຫາກບໍ່ມີການບໍລິການ Google Play ເຊິ່ງແທັບເລັດຂອງທ່ານບໍ່ມີ."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"ຕິດຕັ້ງບໍລິການ Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play Services ​ເກີດ​ຄວາມ​ຜິດ​ພາດ"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ກຳລັງມີບັນຫາກັບບໍລິການ Google Play. ກະລຸນາລອງໃໝ່ອີກຄັ້ງ."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ຈະບໍ່ສາມາດໃຊ້ໄດ້ຫາກບໍ່ມີບໍລິການ Google Play ເຊິ່ງອຸປະກອນຂອງທ່ານບໍ່ຮອງຮັບ."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"ອັບເດດ"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ຈະບໍ່ສາມາດເຮັດວຽກໄດ້ຈົນກວ່າທ່ານຈະອັບເດດການ​ບໍ​ລິ​ການ Google Play"</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"ອັບເດດການ​ບໍ​ລິ​ການ Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ຈະບໍ່ສາມາດໃຊ້ງານໄດ້ໂດຍທີ່ບໍ່ມີການ​ບໍ​ລິ​ການ Google Play, ເຊິ່ງ​ກຳ​ລັງ​ອັບ​ເດດ​ຢູ່​ໃນ​ປະ​ຈຸ​ບັນ."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"ຈຳ​ເປັນ​ຕ້ອງ​ມີ​ກາ​ນ​ບໍ​ລິ​ການ Google Play ເວີ​ຊັນ​ໃໝ່. ມັນ​ຈະ​ອັບ​ເດດ​ຕົວ​ເອງ​ໄວໆ​ນີ້."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"​ເປີດ​ໃນ​ໂທ​ລະ​ສັບ"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"ລົງຊື່ເຂົ້າໃຊ້"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"ລົງຊື່ເຂົ້າໃຊ້ດ້ວຍ Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-lt/values-lt.xml b/android/.build/intermediates/res/merged/debug/values-lt/values-lt.xml
deleted file mode 100644
index 3d5944e3543a344f91e2dee95433bda763da64cd..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-lt/values-lt.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Eiti į pagrindinį puslapį"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Eiti į viršų"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Daugiau parinkčių"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Atlikta"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Peržiūrėti viską"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pasirinkti programÄ…"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"IÅ JUNGTA"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ĮJUNGTI"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Ieškoti..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Išvalyti užklausą"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Paieškos užklausa"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Paieška"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pateikti užklausą"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Paieška balsu"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bendrinti naudojant"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Bendrinti naudojant „%s“"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sutraukti"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Įgalinti"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"„<ns1:g id="APP_NAME">%1$s</ns1:g>“ neveiks, jei neįgalinsite „Google Play“ paslaugų."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Įgalinkite „Google Play“ paslaugas"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Įdiegti"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Programa „<ns1:g id="APP_NAME">%1$s</ns1:g>“ nebus paleidžiama be „Google Play“ paslaugų, kurių nėra įrenginyje."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Gaukite „Google Play“ paslaugas"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"„Google Play“ paslaugų klaida"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Naudojant programą „<ns1:g id="APP_NAME">%1$s</ns1:g>“ kilo problemų dėl „Google Play“ paslaugų. Bandykite dar kartą."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Programa „<ns1:g id="APP_NAME">%1$s</ns1:g>“ nebus paleidžiama be „Google Play“ paslaugų, kurių jūsų įrenginys nepalaiko."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Atnaujinti"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"„<ns1:g id="APP_NAME">%1$s</ns1:g>“ nebus paleidžiama, jei neatnaujinsite „Google Play“ paslaugų."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Atnaujinkite „Google Play“ paslaugas"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"„<ns1:g id="APP_NAME">%1$s</ns1:g>“ nebus paleidžiama be „Google Play“ paslaugų, kurios šiuo metu atnaujinamos."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Reikia naujos versijos „Google Play“ paslaugų. Jos netrukus bus atnaujintos."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Atidaryti telefone"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Prisijungti"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Prisijungti naudojant „Google“"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Paieška"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-lv/values-lv.xml b/android/.build/intermediates/res/merged/debug/values-lv/values-lv.xml
deleted file mode 100644
index f50f1b272b948e1f78118f55c46cf133b1ea728d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-lv/values-lv.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Pārvietoties uz sākuma ekrānu"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s: %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s: %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Pārvietoties augšup"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Vairāk opciju"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Gatavs"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Skatīt visu"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Izvēlieties lietotni"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"IZSLÄ’GTS"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"IESLÄ’GTS"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Meklējiet…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Notīrīt vaicājumu"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Meklēšanas vaicājums"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Meklēt"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Iesniegt vaicājumu"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Meklēšana ar balsi"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Kopīgot ar:"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Kopīgot ar %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sakļaut"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Iespējot"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Lai lietotne <ns1:g id="APP_NAME">%1$s</ns1:g> darbotos, ir jāiespējo Google Play pakalpojumi."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play pakalpojumu iespējošana"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalēt"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Lai lietotne <ns1:g id="APP_NAME">%1$s</ns1:g> darbotos, ierīcē ir jāinstalē Google Play pakalpojumi."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play pakalpojumu iegūšana"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play pakalpojumu kļūda"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Lietotnē <ns1:g id="APP_NAME">%1$s</ns1:g> ir radusies problēma ar Google Play pakalpojumu darbību. Lūdzu, mēģiniet vēlreiz."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Lai lietotne <ns1:g id="APP_NAME">%1$s</ns1:g> darbotos, ir nepieciešami Google Play pakalpojumi, taču jūsu ierīce tos neatbalsta."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Atjaunināt"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Lai lietotne <ns1:g id="APP_NAME">%1$s</ns1:g> darbotos, jums ir jāatjaunina Google Play pakalpojumi."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play pakalpojumu atjaunināšana"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Lai lietotne <ns1:g id="APP_NAME">%1$s</ns1:g> darbotos, ir jāinstalē Google Play pakalpojumi. Pašlaik notiek to atjaunināšana."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Ir nepieciešama jauna Google Play pakalpojumu versija. Drīzumā tā tiks instalēta."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Atvērt tālrunī"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Pierakstīties"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Pierakstīties ar Google kontu"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Meklēt"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml b/android/.build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml
deleted file mode 100644
index b993d0eab5a636a475786df8ce1439535d88dafc..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Движи се кон дома"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Движи се нагоре"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Повеќе опции"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Види ги сите"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Избери апликација"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ИСКЛУЧЕНО"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ВКЛУЧЕНО"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Пребарување…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Исчисти барање"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Пребарај барање"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Пребарај"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Поднеси барање"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласовно пребарување"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Сподели со"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Собери"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Пребарај"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-mk/values-mk.xml b/android/.build/intermediates/res/merged/debug/values-mk/values-mk.xml
deleted file mode 100644
index 858e4de770340993470f8a68d20c4d3e9d08a5ea..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-mk/values-mk.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Овозможи"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> нема да се извршува ако не овозможите услуги на Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Овозможи ги услугите на Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Инсталирај"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> нема да се извршува без услугите на Google Play што ги нема на уредот."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Преземи ги услугите на Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Грешка на услугите на Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> има проблеми со услугите на Google Play. Обидете се повторно."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> нема да се извршува без услугите на Google Play, што не се подржани од уредов."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Ажурирај"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> нема да се извршува ако не ги ажурирате услугите на Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Ажурирај ги услугите на Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> нема да се извршува без услугите на Google Play што се ажурираат во моментов."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Потребна е нова верзија на услугите на Google Play. Таа наскоро самата ќе се ажурира."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Отвори на телефонот"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Најави се"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Најави се со Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml b/android/.build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml
deleted file mode 100644
index e02d1db631d8fee31fe257866fc02fe3f774a21f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"കൂടുതൽ‍ ഓപ്‌ഷനുകള്‍"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"പൂർത്തിയാക്കി"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"എല്ലാം കാണുക"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ഓഫ്"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ഓൺ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"തിരയുക…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"അന്വേഷണം മായ്‌ക്കുക"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"തിരയൽ അന്വേഷണം"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"തിരയൽ"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"അന്വേഷണം സമർപ്പിക്കുക"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ശബ്ദതിരയൽ"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ഇവരുമായി പങ്കിടുക"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s എന്നതുമായി പങ്കിടുക"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ചുരുക്കുക"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"തിരയുക"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ml/values-ml.xml b/android/.build/intermediates/res/merged/debug/values-ml/values-ml.xml
deleted file mode 100644
index 2680571b87c11449da071c1c9e2cedfcf22e3124..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ml/values-ml.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"പ്രവർത്തനക്ഷമമാക്കുക"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"നിങ്ങൾ Google Play സേവനങ്ങൾ പ്രവർത്തനക്ഷമമാക്കുന്നില്ലെങ്കിൽ <ns1:g id="APP_NAME">%1$s</ns1:g> പ്രവർത്തിക്കില്ല."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play സേവനങ്ങൾ പ്രവർത്തനക്ഷമമാക്കുക"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"ഇന്‍സ്റ്റാള്‍ ചെയ്യുക"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Google Play സേവനങ്ങളില്ലാതെ <ns1:g id="APP_NAME">%1$s</ns1:g> പ്രവർത്തിക്കില്ല, ഈ സേവനങ്ങളാകട്ടെ നിങ്ങളുടെ ഉപകരണത്തിൽ ഇല്ല."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play സേവനങ്ങൾ നേടുക"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play സേവനങ്ങളിലെ പിശക്"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Google Play സേവനങ്ങളുമായി ബന്ധപ്പെട്ട് <ns1:g id="APP_NAME">%1$s</ns1:g> ആപ്പിനെന്തോ പ്രശ്നമുണ്ട്. വീണ്ടും ശ്രമിക്കുക."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Google Play സേവനങ്ങളില്ലാതെ <ns1:g id="APP_NAME">%1$s</ns1:g> പ്രവർത്തിക്കില്ല, സേവനങ്ങളെയാകട്ടെ നിങ്ങളുടെ ഉപകരണം പിന്തുണയ്ക്കുന്നുമില്ല."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"അപ്‌ഡേറ്റുചെയ്യുക"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"നിങ്ങൾ Google Play സേവനങ്ങൾ അപ്‌ഡേറ്റുചെയ്‌തില്ലെങ്കിൽ <ns1:g id="APP_NAME">%1$s</ns1:g> പ്രവർത്തിക്കില്ല."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play സേവനങ്ങൾ അപ്‌ഡേറ്റുചെയ്യുക"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"നിലവിൽ അപ്‌ഡേറ്റുചെയ്യുന്ന Google Play സേവനങ്ങൾ ഇല്ലാതെ <ns1:g id="APP_NAME">%1$s</ns1:g> പ്രവർത്തിക്കില്ല."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play സേവനങ്ങളുടെ പുതിയ പതിപ്പ് ആവശ്യമാണ്. താമസിയാതെ ഇത് സ്വയം അപ്‌ഡേറ്റുചെയ്യും."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"ഫോണിൽ തുറക്കുക"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"സൈൻ ഇൻ ചെയ്യുക"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google ഉപയോഗിച്ച് സൈൻ ഇൻ ചെയ്യുക"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml b/android/.build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml
deleted file mode 100644
index 1697b484a4dfadec3bd0ea1ce8dc659565b4917f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Нүүр хуудас руу шилжих"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Дээш шилжих"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Нэмэлт сонголтууд"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Дууссан"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Бүгдийг харах"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Апп сонгох"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ИДЭВХГҮЙ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ИДЭВХТЭЙ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Хайх..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Асуулгыг цэвэрлэх"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Хайх асуулга"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Хайх"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Асуулгыг илгээх"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Дуут хайлт"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Хуваалцах"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s-тай хуваалцах"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Хумих"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Хайлт"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-mn/values-mn.xml b/android/.build/intermediates/res/merged/debug/values-mn/values-mn.xml
deleted file mode 100644
index 085f8eb3661208a1c722f2b98cd9357dc98ccfea..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-mn/values-mn.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Идэвхжүүлэх"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> нь Google Play үйлчилгээг идэвхжүүлэх хүртэл ажиллахгүй."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play үйлчилгээг идэвхжүүлэх"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Суулгах"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Таны төхөөрөмжид Google Play үйлчилгээ байхгүй тул <ns1:g id="APP_NAME">%1$s</ns1:g> ажиллахгүй."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play үйлчилгээг авах"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Наадаан үйлчилгээний алдаа"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g>-г Google Play-н үйлчилгээгээр ашиглахад асуудал гарлаа. Дахин оролдоно уу."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Таны төхөөрөмж Google Play үйлчилгээг дэмждэггүй учир <ns1:g id="APP_NAME">%1$s</ns1:g> ажиллахгүй."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Шинэчлэх"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> нь таныг Google Play үйлчилгээнүүдийг шинэчлэхээс нааш ажиллахгүй."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play үйлчилгээг шинэчлэх"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> нь одоогоор шинэчилж буй Google Play үйлчилгээгүйгээр ажиллахгүй."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play үйлчилгээний шинэ хувилбар хэрэгтэй. Энэ нь удахгүй өөрөө өөрийгөө шинэчлэх болно."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Утсаар нээх"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Нэвтрэх"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google-р нэвтрэх:"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml b/android/.build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml
deleted file mode 100644
index e69e00178252d0e40972a91755344da07bf90b66..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"मुख्‍यपृष्‍ठ नेव्‍हिगेट करा"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"वर नेव्‍हिगेट करा"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"अधिक पर्याय"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"पूर्ण झाले"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सर्व पहा"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"एक अ‍ॅप निवडा"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"बंद"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"चालू"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"शोधा…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"क्‍वेरी स्‍पष्‍ट करा"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"शोध क्वेरी"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"शोध"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"क्वेरी सबमिट करा"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"व्हॉइस शोध"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"यांच्यासह सामायिक करा"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s सह सामायिक करा"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"संक्षिप्त करा"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"शोधा"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-mr/values-mr.xml b/android/.build/intermediates/res/merged/debug/values-mr/values-mr.xml
deleted file mode 100644
index 8cd867ffdf33e70d495662ca2d20362f2dc09e9f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-mr/values-mr.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"सक्षम करा"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"आपण Google Play सेवा सक्षम केल्याशिवाय <ns1:g id="APP_NAME">%1$s</ns1:g> हा अॅप कार्य करणार नाही."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play सेवा सक्षम करा"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"स्‍थापित करा"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Google Play सेवा आपल्या डिव्हाइसवर उपलब्ध नाही, त्याशिवाय <ns1:g id="APP_NAME">%1$s</ns1:g> चालणार नाही."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play सेवा मिळवा"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play सेवा त्रुटी"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ला Google Play सेवांमध्ये समस्या येत आहे. कृपया पुन्हा प्रयत्न करा."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"आपले डिव्हाइस समर्थन देत नसलेल्या, Google Play सेवांशिवाय <ns1:g id="APP_NAME">%1$s</ns1:g> चालणार नाही."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"अद्यतनित करा"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"आपण Google Play सेवा अद्यतनित करेपर्यंत <ns1:g id="APP_NAME">%1$s</ns1:g> चालणार नाही."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play सेवा अद्यतनित करा"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"सध्‍या अद्यतनित होत असलेल्‍या, Google Play सेवांशिवाय <ns1:g id="APP_NAME">%1$s</ns1:g> चालणार नाही."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play सेवांच्या नवीन आवृत्तीची आवश्यकता आहे. हे स्वत:ला लवकरच अद्यतनित करेल."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"फोनवर उघडा"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"साइन इन करा"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google सह साइन इन करा"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml b/android/.build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml
deleted file mode 100644
index f9ffc5cf73f6d3e39961ba2d8032c2e460617e3c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigasi skrin utama"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigasi ke atas"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Lagi pilihan"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Selesai"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Lihat semua"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pilih apl"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"MATI"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"HIDUP"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Cari…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Kosongkan pertanyaan"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Pertanyaan carian"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Cari"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Serah pertanyaan"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Carian suara"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Kongsi dengan"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Kongsi dengan %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Runtuhkan"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Cari"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ms/values-ms.xml b/android/.build/intermediates/res/merged/debug/values-ms/values-ms.xml
deleted file mode 100644
index 4b5227dabc5050a799a1ac37d634b5ce17dcfa9e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ms/values-ms.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Dayakan"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berfungsi melainkan anda mendayakan perkhidmatan Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Dayakan perkhidmatan Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Pasang"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berfungsi tanpa perkhidmatan Google Play dan perkhidmatan ini tiada pada peranti anda."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Dapatkan perkhidmatan Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Ralat perkhidmatan Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> menghadapi masalah berhubung perkhidmatan Google Play. Sila cuba lagi."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berfungsi tanpa perkhidmatan Google Play dan perkhidmatan ini tidak disokong oleh peranti anda."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Kemas kini"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berfungsi kecuali anda mengemas kini perkhidmatan Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Kemaskinikan perkhidmatan Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> tidak akan berfungsi tanpa perkhidmatan Google Play dan perkhidmatan ini sedang dikemaskinikan."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Versi baharu perkhidmatan Google Play diperlukan. Kemas kini automatik akan dijalankan sebentar lagi."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Buka pada telefon"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Log masuk"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Log masuk dengan Google"</string>
-    <string name="fatal_error_msg">Aplikasi anda menemui ralat muat dan tidak boleh diteruskan.</string>
-    <string name="ministro_needed_msg">Aplikasi ini memerlukan servis Ministro. Adakah anda ingin pasang servis itu?</string>
-    <string name="ministro_not_found_msg">Tidak jumpa servis Ministro.\nAplikasi tidak boleh dimulakan.</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml b/android/.build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml
deleted file mode 100644
index f5e479c3f13fba7ef18b5e07a1a0c37515912d15..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"မူလနေရာကို သွားရန်"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s၊ %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s ၊ %2$s ၊ %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"အပေါ်သို့သွားရန်"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ပိုမိုရွေးချယ်စရာများ"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"ပြီးဆုံးပါပြီ"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"အားလုံးကို ကြည့်ရန်"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"အက်ပ်တစ်ခုခုကို ရွေးချယ်ပါ"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ပိတ်"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ဖွင့်"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ရှာဖွေပါ..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"ရှာစရာ အချက်အလက်များ ဖယ်ရှားရန်"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ရှာစရာ အချက်အလက်နေရာ"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ရှာဖွေရန်"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ရှာဖွေစရာ အချက်အလက်ကို ပေးပို့ရန်"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"အသံဖြင့် ရှာဖွေခြင်း"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"မျှဝေဖို့ ရွေးပါ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ကို မျှဝေပါရန်"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ခေါက်ရန်"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ရှာဖွေပါ"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"၉၉၉+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-my/values-my.xml b/android/.build/intermediates/res/merged/debug/values-my/values-my.xml
deleted file mode 100644
index d394f5bb5e5c6b8ca02b93410c172a1af0337a8e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-my/values-my.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"ဖွင့်ရန်"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play ဝန်ဆောင်မှုများကို မဖွင့်သ၍ <ns1:g id="APP_NAME">%1$s</ns1:g> သည်အလုပ်လုပ်မည်မဟုတ်ပါ။"</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play ဝန်ဆောင်မှုများ ဖွင့်ရန်"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"ထည့်သွင်းပါ"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"သင့်တက်ဘလက်တွင် Google Play ဝန်ဆောင်မှုများမရှိသောကြောင့် <ns1:g id="APP_NAME">%1$s</ns1:g> ကိုဖွင့်၍မရပါ။"</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play ဝန်ဆောင်မှုများရယူရန်"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play ဝန်ဆောင်မှုများ အမှား"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> သည် Google Play ဝန်ဆောင်မှုများနှင့် ပြဿနာအနည်းငယ် ရှိနေပါသည်။ ထပ်လုပ်ကြည့်ပါ။"</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Google Play ဝန်ဆောင်မှုများကို သင့်စက်ပစ္စည်းတွင် ပံ့ပိုးမထားသည့်အတွက် ၎င်းမရှိဘဲ <ns1:g id="APP_NAME">%1$s</ns1:g> ကို ဖွင့်၍မရပါ။"</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"အပ်ဒိတ်"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play ဝန်ဆောင်မှုများအား အပ်ဒိတ်မလုပ်ပါက <ns1:g id="APP_NAME">%1$s</ns1:g> အလုပ်လုပ်မည် မဟုတ်ပါ။"</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play ဝန်ဆောင်မှုများကို အပ်ဒိတ်လုပ်ရန်"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Google Play ဝန်ဆောင်မှုများကို လက်ရှိအပ်ဒိတ်လုပ်နေသောကြောင့် <ns1:g id="APP_NAME">%1$s</ns1:g> ကိုဖွင့်၍ရမည်မဟုတ်ပါ။"</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play ဝန်ဆောင်မှုဗားရှင်းအသစ်များ လိုအပ်နေသည်။ အချိန်အနည်းငယ်အကြာတွင် ၎င်းကိုယ်တိုင်အပ်ဒိတ်လုပ်ပါ လိမ့်မည်။"</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"ဖုန်းပေါ်မှာ ဖွင့်ပါ"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"လက်မှတ်ထိုး ဝင်ရန်"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google ဖြင့် လက်မှတ်ထိုးဝင်ရေ"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-nb/values-nb.xml b/android/.build/intermediates/res/merged/debug/values-nb/values-nb.xml
deleted file mode 100644
index ed6a10ac209c1c2ca4377b7a2dd35c6c9b7f1ef7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-nb/values-nb.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"GÃ¥ til startsiden"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s – %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s – %2$s – %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"GÃ¥ opp"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Flere alternativer"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Ferdig"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Se alle"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Velg en app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"AV"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"PÃ…"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Søk …"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Slett søket"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Søkeord"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Søk"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Utfør søket"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Talesøk"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Del med"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Del med %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skjul"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Slå på"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> fungerer ikke med mindre du slår på Google Play-tjenester."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Slå på Google Play-tjenester"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installer"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan ikke kjøre uten Google Play-tjenester, som ikke er installert på enheten din."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Installer Google Play-tjenester"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play Tjenester-feil"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> har problemer med Google Play-tjenester. Prøv på nytt."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan ikke kjøre uten Google Play-tjenester, som ikke støttes av enheten din."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Oppdater"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kjører ikke med mindre du oppdaterer Google Play Tjenester."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Oppdater Google Play-tjenester"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kjører ikke uten Google Play-tjenester, som oppdateres akkurat nå."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Du må installere en ny versjon av Google Play-tjenester. Appen oppdateres automatisk om en kort stund."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Åpne på telefonen"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Logg på"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Logg på med Google"</string>
-    <string name="fatal_error_msg">Applikasjonen fikk en kritisk feil og kan ikke fortsette</string>
-    <string name="ministro_needed_msg">Denne applikasjonen krever tjenesten Ministro. Vil du installere denne?</string>
-    <string name="ministro_not_found_msg">Kan ikke finne tjenesten Ministro. Applikasjonen kan ikke starte.</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Søk"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml b/android/.build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml
deleted file mode 100644
index 881cfefbd1b77291e91517775ce4911824a0ba47..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"गृह खोज्नुहोस्"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"माथि खोज्नुहोस्"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"थप विकल्पहरू"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"सम्पन्न भयो"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सबै हेर्नुहोस्"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"एउटा अनुप्रयोग छान्नुहोस्"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"निष्क्रिय पार्नुहोस्"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"सक्रिय गर्नुहोस्"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"खोज्नुहोस्..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"प्रश्‍न हटाउनुहोस्"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"जिज्ञासाको खोज गर्नुहोस्"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"खोज्नुहोस्"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"जिज्ञासा पेस गर्नुहोस्"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"भ्वाइस खोजी"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"साझेदारी गर्नुहोस्..."</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s सँग साझेदारी गर्नुहोस्"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"संक्षिप्त पार्नुहोस्"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"खोज्नुहोस्"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"९९९+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ne/values-ne.xml b/android/.build/intermediates/res/merged/debug/values-ne/values-ne.xml
deleted file mode 100644
index 196515c3695cff5ed0c389f2e2e8bd40ff6e10ff..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ne/values-ne.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"सक्रिय गर्नुहोस्"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ले तपाईँले Google Play सेवाहरू सक्षम नगरेसम्म काम गर्दैन।"</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play सेवाहरू सक्षम पार्नुहोस्"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"स्थापना गर्नुहोस्"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play services बिना सञ्चालन हुने छैन र तपाईँको यन्त्रमा Google Play services उपलब्ध छैनन्।"</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play सेवाहरू प्राप्त गर्नुहोस्"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play सेवाहरूका त्रुटि"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> लाई Google Play services सँग सहकार्य गर्न समस्या भइरहेको छ। कृपया फेरि प्रयास गर्नुहोस्।"</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play services बिना सञ्चालन हुने छैन र तपाईँको यन्त्रले Google Play services लाई समर्थन गर्दैन।"</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"अद्यावधिक गर्नुहोस्"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> तपाईंले Google प्ले सेवाहरू अद्यावधिक नगरेसम्म सञ्चालन हुँदैन।"</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play सेवाहरू अद्यावधिक गर्नुहोस्"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Google Play सेवाहरू <ns1:g id="APP_NAME">%1$s</ns1:g> बिना सञ्‍चालन हुँदैन, जुन हाल अद्यावधिक भइरहेका छन्।"</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play सेवाहरूको नयाँ संस्करण आवश्यक छ। यो आफै छिट्टै नै अद्यावधिक हुनेछ।"</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"फोनमा खोल्नुहोस्"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"साइन इन गर्नुहोस्"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google मार्फत साइन‍ इन गर्नुहोस्"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-night-v8/values-night-v8.xml b/android/.build/intermediates/res/merged/debug/values-night-v8/values-night-v8.xml
deleted file mode 100644
index 17a2110633be8fc0915391de67334c53df8f294c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-night-v8/values-night-v8.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat"/>
-    <style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat"/>
-    <style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Dialog"/>
-    <style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Dialog.Alert"/>
-    <style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Dialog.MinWidth"/>
-    <style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.DialogWhenLarge"/>
-    <style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.NoActionBar"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-nl/values-nl.xml b/android/.build/intermediates/res/merged/debug/values-nl/values-nl.xml
deleted file mode 100644
index cc5e1d59624accf6ec26141631dea3e89720af77..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-nl/values-nl.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeren naar startpositie"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Omhoog navigeren"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Meer opties"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Gereed"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Alles weergeven"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Een app selecteren"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"UIT"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"AAN"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Zoeken…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Zoekopdracht wissen"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Zoekopdracht"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Zoeken"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Zoekopdracht verzenden"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Gesproken zoekopdracht"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Delen met"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Delen met %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Samenvouwen"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Inschakelen"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> werkt niet, tenzij je Google Play-services inschakelt."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play-services inschakelen"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installeren"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan niet worden uitgevoerd zonder Google Play-services, die je nog niet op je apparaat hebt."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play-services ophalen"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Fout met Google Play-services"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ondervindt problemen met Google Play-services. Probeer het opnieuw."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan niet worden uitgevoerd zonder Google Play-services, die niet worden ondersteund op je apparaat."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Updaten"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan niet worden uitgevoerd, tenzij je Google Play-services updatet."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play-services updaten"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan niet worden uitgevoerd zonder Google Play-services, die momenteel worden geüpdatet."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Er is een nieuwe versie van Google Play-services vereist. De update wordt binnenkort automatisch uitgevoerd."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Openen op telefoon"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Inloggen"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Inloggen met Google"</string>
-    <string name="fatal_error_msg">Er is een fatale fout in de applicatie opgetreden. De applicatie kan niet verder gaan.</string>
-    <string name="ministro_needed_msg">Deze applicatie maakt gebruik van de Ministro service. Wilt u deze installeren?</string>
-    <string name="ministro_not_found_msg">De Ministro service is niet gevonden.\nDe applicatie kan niet starten.</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Zoeken"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-pa-rIN/values-pa-rIN.xml b/android/.build/intermediates/res/merged/debug/values-pa-rIN/values-pa-rIN.xml
deleted file mode 100644
index 9e62b2c354833d3072cf66f819f94b385ad78eb2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-pa-rIN/values-pa-rIN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ਹੋਰ ਚੋਣਾਂ"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"ਹੋ ਗਿਆ"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ਸਭ ਦੇਖੋ"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ਇੱਕ ਐਪ ਚੁਣੋ"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ਬੰਦ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ਤੇ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ਖੋਜ…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"ਸਵਾਲ ਹਟਾਓ"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ਸਵਾਲ ਖੋਜੋ"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ਖੋਜੋ"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ਵੌਇਸ ਖੋਜ"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ਇਸ ਨਾਲ ਸਾਂਝਾ ਕਰੋ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ਨਾਲ ਸਾਂਝਾ ਕਰੋ"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ਨਸ਼ਟ ਕਰੋ"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ਖੋਜ"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-pa/values-pa.xml b/android/.build/intermediates/res/merged/debug/values-pa/values-pa.xml
deleted file mode 100644
index 2229f67ab828bc29c502f58007f6bd6390365f45..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-pa/values-pa.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"ਯੋਗ ਬਣਾਓ"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ਕੰਮ ਨਹੀਂ ਕਰੇਗਾ ਜਦੋਂ ਤੱਕ ਤੁਸੀਂ Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਯੋਗ ਨਹੀਂ ਬਣਾਉਂਦੇ ਹੋ।"</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਯੋਗ ਬਣਾਓ"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"ਸਥਾਪਤ ਕਰੋ"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play ਸੇਵਾਵਾਂ ਤੋਂ ਬਿਨਾਂ ਨਹੀਂ ਚੱਲੇਗੀ, ਜੋ ਤੁਹਾਡੀ ਡੀਵਾਈਸ ਤੋਂ ਗੁੰਮ ਹਨ।"</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play ਸੇਵਾਵਾਂ ਪ੍ਰਾਪਤ ਕਰੋ"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play ਸੇਵਾਵਾਂ ਅਸ਼ੁੱਧੀ"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ਨੂੰ Google Play ਸੇਵਾਵਾਂ ਨਾਲ ਸਮੱਸਿਆ ਆ ਰਹੀ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play ਸੇਵਾਵਾਂ ਤੋਂ ਬਿਨਾਂ ਨਹੀਂ ਚੱਲ ਸਕੇਗੀ, ਜੋ ਤੁਹਾਡੀ ਡੀਵਾਈਸ \'ਤੇ ਸਮਰਥਿਤ ਨਹੀਂ ਹਨ।"</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"ਅੱਪਡੇਟ ਕਰੋ"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ਨਹੀਂ ਚੱਲੇਗਾ ਜਦੋਂ ਤੱਕ ਤੁਸੀਂ Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਅਪਡੇਟ ਨਹੀਂ ਕਰਦੇ।"</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play ਸੇਵਾਵਾਂ ਨੂੰ ਅੱਪਡੇਟ ਕਰੋ"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play ਸੇਵਾਵਾਂ ਤੋਂ ਬਿਨਾਂ ਨਹੀਂ ਚੱਲੇਗਾ, ਜੋ ਵਰਤਮਾਨ ਵਿੱਚ ਅਪਡੇਟ ਹੋ ਰਹੀਆਂ ਹਨ।"</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play ਸੇਵਾਵਾਂ ਦੇ ਨਵਾਂ ਸੰਸਕਰਨ ਦੀ ਲੋੜ ਹੈ। ਇਹ ਛੇਤੀ ਹੀ ਆਪਣੇ ਆਪ ਅਪਡੇਟ ਕਰੇਗਾ।"</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"ਫ਼ੋਨ \'ਤੇ ਖੋਲ੍ਹੋ"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"ਸਾਈਨ ਇਨ ਕਰੇ"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google ਨਾਲ ਸਾਈਨ ਇਨ ਕਰੋ"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-pl/values-pl.xml b/android/.build/intermediates/res/merged/debug/values-pl/values-pl.xml
deleted file mode 100644
index 998894a30e309e30486b3f1db503d70dbd90eb21..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-pl/values-pl.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Przejdź do strony głównej"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Przejdź wyżej"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Więcej opcji"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Gotowe"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobacz wszystkie"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Wybierz aplikacjÄ™"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"WYŁ."</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"WŁ."</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Szukaj…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Wyczyść zapytanie"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Wyszukiwane hasło"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Szukaj"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Wyślij zapytanie"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Wyszukiwanie głosowe"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Udostępnij dla"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Udostępnij dla %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Zwiń"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"WÅ‚Ä…cz"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Aplikacja <ns1:g id="APP_NAME">%1$s</ns1:g> nie będzie działać, jeśli nie włączysz Usług Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Włącz Usługi Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Zainstaluj"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nie będzie działać, jeśli nie zainstalujesz na urządzeniu Usług Google Play."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Pobierz Usługi Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Błąd Usług Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ma problem z dostępem do Usług Google Play. Spróbuj jeszcze raz."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nie będzie działać bez Usług Google Play, które nie są obecnie obsługiwane przez urządzenie."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Aktualizuj"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Aplikacja <ns1:g id="APP_NAME">%1$s</ns1:g> nie będzie działać, jeśli nie zaktualizujesz Usług Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Zaktualizuj Usługi Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Aplikacja <ns1:g id="APP_NAME">%1$s</ns1:g> nie będzie działać bez Usług Google Play, które są obecnie aktualizowane."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Wymagana jest nowa wersja Usług Google Play. Wkrótce nastąpi automatyczna aktualizacja."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Otwórz na telefonie"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Zaloguj siÄ™"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Zaloguj siÄ™ przez Google"</string>
-    <string name="fatal_error_msg">Wystąpił błąd krytyczny. Aplikacja zostanie zamknięta.</string>
-    <string name="ministro_needed_msg">Aplikacja wymaga usługi Ministro. Czy chcesz ją zainstalować?</string>
-    <string name="ministro_not_found_msg">Usługa Ministro nie została znaleziona.\nAplikacja nie może zostać uruchomiona.</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Szukaj"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-port/values-port.xml b/android/.build/intermediates/res/merged/debug/values-port/values-port.xml
deleted file mode 100644
index 7a925dc76dd9a44fcb871d2a7ed379f9c50b5a3d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-port/values-port.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <bool name="abc_action_bar_embed_tabs">false</bool>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-pt-rBR/values-pt-rBR.xml b/android/.build/intermediates/res/merged/debug/values-pt-rBR/values-pt-rBR.xml
deleted file mode 100644
index e4d160ef19d732041665de512ebc0c92687e8024..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-pt-rBR/values-pt-rBR.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar para a página inicial"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar para cima"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mais opções"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Concluído"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver tudo"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Selecione um app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DESATIVAR"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ATIVAR"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Pesquisar..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Limpar consulta"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de pesquisa"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Pesquisar"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Pesquisa por voz"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartilhar com"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartilhar com %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Recolher"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Ativar"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> só funciona com o Google Play Services ativado."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Ativar o Google Play Services"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalar"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"O app <ns1:g id="APP_NAME">%1$s</ns1:g> não funciona sem o Google Play Services, o qual não está instalado no seu dispositivo."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Instalar o Google Play Services"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Erro do Google Play Services"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"O app <ns1:g id="APP_NAME">%1$s</ns1:g> está com problemas com o Google Play Services. Tente novamente."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"O app <ns1:g id="APP_NAME">%1$s</ns1:g> não funciona sem o Google Play Services, o qual não é compatível com seu dispositivo."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Atualizar"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> só funciona com uma versão atualizada do Google Play Services."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Atualizar o Google Play Services"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> não funciona sem o Google Play Services, o qual está sendo atualizado no momento."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"É necessária uma nova versão do Google Play Services. Ele será atualizado em breve."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Abrir no smartphone"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Fazer login"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Fazer login com o Google"</string>
-    <string name="fatal_error_msg">Sua aplicação encontrou um erro fatal e não pode continuar.</string>
-    <string name="ministro_needed_msg">Essa aplicação requer o serviço Ministro. Gostaria de instalá-lo?</string>
-    <string name="ministro_not_found_msg">Não foi possível encontrar o serviço Ministro.\nA aplicação não pode iniciar.</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Pesquisar"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml b/android/.build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml
deleted file mode 100644
index a0ce43b618567d196f997e6f2e863639074b9036..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar para a página inicial"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar para cima"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mais opções"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Concluído"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver tudo"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Escolher uma aplicação"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DESATIVADO"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ATIVADO"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Pesquisar..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Limpar consulta"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de pesquisa"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Pesquisar"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Pesquisa por voz"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partilhar com"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partilhar com %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Reduzir"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Ativar"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"O <ns1:g id="APP_NAME">%1$s</ns1:g> não funciona enquanto não ativar os serviços do Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Ativar serviços do Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalar"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"O <ns1:g id="APP_NAME">%1$s</ns1:g> não é executado sem os Serviços do Google Play, os quais estão em falta no seu dispositivo."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Obter serviços do Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Erro dos Serviços do Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> está a ter problemas com os Serviços do Google Play. Tente novamente."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Não é possível executar o <ns1:g id="APP_NAME">%1$s</ns1:g> sem os Serviços do Google Play, os quais não são compatíveis com o seu dispositivo."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Atualizar"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"O <ns1:g id="APP_NAME">%1$s</ns1:g> não é executado enquanto não atualizar os serviços do Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Atualizar serviços do Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"O <ns1:g id="APP_NAME">%1$s</ns1:g> não é executado sem os serviços do Google Play, os quais estão a ser atualizados."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"É necessária uma nova versão dos serviços do Google Play. Esta será atualizada automaticamente em breve."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Abrir no telemóvel"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Iniciar sessão"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Iniciar sessão com o Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Pesquisar"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-pt/values-pt.xml b/android/.build/intermediates/res/merged/debug/values-pt/values-pt.xml
deleted file mode 100644
index fd255af3c346989c3d3339a4045a7c64f18d4ce5..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-pt/values-pt.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar para a página inicial"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar para cima"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mais opções"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Concluído"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver tudo"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Selecione um app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DESATIVAR"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ATIVAR"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Pesquisar..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Limpar consulta"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de pesquisa"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Pesquisar"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Pesquisa por voz"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartilhar com"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartilhar com %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Recolher"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Pesquisar"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ro/values-ro.xml b/android/.build/intermediates/res/merged/debug/values-ro/values-ro.xml
deleted file mode 100644
index 594c258aa145fd85ebfddfec9c84146001408256..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ro/values-ro.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigați la ecranul de pornire"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigați în sus"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Mai multe opțiuni"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Terminat"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Afișați-le pe toate"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Alegeți o aplicație"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"DEZACTIVAÈšI"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ACTIVAÈšI"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Căutați…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ștergeți interogarea"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Interogare de căutare"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Căutați"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Trimiteți interogarea"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Căutare vocală"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Trimiteți la"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Trimiteți la %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Restrângeți"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Activați"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nu va funcționa decât dacă activați serviciile Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Activați serviciile Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalați"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nu va rula fără serviciile Google Play, care lipsesc de pe dispozitivul dvs."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Descărcați serviciile Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Eroare a serviciilor Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> întâmpină probleme privind serviciile Google Play. Încercați din nou."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nu va rula fără serviciile Google Play, care nu sunt acceptate de dispozitivul dvs."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Actualizați"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nu va rula decât dacă actualizați serviciile Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Actualizați serviciile Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nu va rula fără serviciile Google Play, care momentan se actualizează."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Este necesară o nouă versiune a serviciilor Google Play. Se vor actualiza automat în curând."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Deschideți pe telefon"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Conectați-vă"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Conectați-vă cu Google"</string>
-    <string name="fatal_error_msg">Aplicaţia dumneavoastră a întâmpinat o eroare fatală şi nu poate continua.</string>
-    <string name="ministro_needed_msg">Această aplicaţie necesită serviciul Ministro.\nDoriţi să-l instalaţi?</string>
-    <string name="ministro_not_found_msg">Serviciul Ministro nu poate fi găsit.\nAplicaţia nu poate porni.</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Căutați"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"˃999"</string>
-    <string name="unsupported_android_version">Versiune Android nesuportată.</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-rs/values-rs.xml b/android/.build/intermediates/res/merged/debug/values-rs/values-rs.xml
deleted file mode 100644
index 5d53e0644c1793e46d8181d8c443142d46f57e82..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-rs/values-rs.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string name="fatal_error_msg">Vaša aplikacija je naišla na fatalnu grešku i ne može nastaviti sa radom.</string>
-    <string name="ministro_needed_msg">Ova aplikacija zahteva Ministro servis. Želite li da ga instalirate?</string>
-    <string name="ministro_not_found_msg">Ministro servise nije pronađen. Aplikacija ne može biti pokrenuta.</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ru/values-ru.xml b/android/.build/intermediates/res/merged/debug/values-ru/values-ru.xml
deleted file mode 100644
index d4bc392dbe3249587f7e1bddeec1e208626fd16e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ru/values-ru.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Перейти на главный экран"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Перейти вверх"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Другие параметры"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Показать все"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Выбрать приложение"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ОТКЛ."</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ВКЛ."</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Поиск"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Удалить запрос"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Поисковый запрос"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Поиск"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Отправить запрос"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Голосовой поиск"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Открыть доступ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Открыть доступ пользователю %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Свернуть"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Включить"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Для работы приложения \"<ns1:g id="APP_NAME">%1$s</ns1:g>\" требуется включить сервисы Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Включите сервисы Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Установить"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Для работы приложения \"<ns1:g id="APP_NAME">%1$s</ns1:g>\" требуется установить сервисы Google Play."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Установите сервисы Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Ошибка сервисов Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Приложению \"<ns1:g id="APP_NAME">%1$s</ns1:g>\" не удается подключиться к сервисам Google Play. Повторите попытку."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Для работы с приложением \"<ns1:g id="APP_NAME">%1$s</ns1:g>\" требуются сервисы Google Play. Они не поддерживаются на вашем устройстве."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Обновить"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Чтобы запустить приложение \"<ns1:g id="APP_NAME">%1$s</ns1:g>\", обновите сервисы Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Обновите сервисы Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Сервисы Google Play, необходимые для работы приложения \"<ns1:g id="APP_NAME">%1$s</ns1:g>\", в настоящий момент обновляются."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Версия сервисов Google Play устарела. Они автоматически обновятся в ближайшее время."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Открыть на телефоне"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Войти"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Войти через аккаунт Google"</string>
-    <string name="fatal_error_msg">Ваше приложение столкнулось с фатальной ошибкой и не может более работать.</string>
-    <string name="ministro_needed_msg">Этому приложению необходим сервис Ministro. Вы хотите его установить?</string>
-    <string name="ministro_not_found_msg">Сервис Ministro не найден.\nПриложение нельзя запустить.</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Поиск"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml b/android/.build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml
deleted file mode 100644
index ecd85c3e55d20ead60332d25deae2c11136e714e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ගෙදරට සංචාලනය කරන්න"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"ඉහලට සංචාලනය කරන්න"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"තවත් විකල්ප"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"අවසාන වූ"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"සියල්ල බලන්න"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"යෙදුමක් තෝරන්න"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ක්‍රියාවිරහිතයි"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ක්‍රියාත්මකයි"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"සොයන්න..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"විමසුම හිස් කරන්න"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"සෙවුම් විමසුම"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"සෙවීම"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"විමසුම යොමු කරන්න"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"හඬ සෙවීම"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"සමඟ බෙදාගන්න"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s සමඟ බෙදාගන්න"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"හකුළන්න"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"සොයන්න"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-si/values-si.xml b/android/.build/intermediates/res/merged/debug/values-si/values-si.xml
deleted file mode 100644
index 8b6d0f1f9b234ac993028d220c5cfb91465f3dee..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-si/values-si.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"සබල කරන්න"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"ඔබ Google Play සේවා සබල කරන්නේ නම් මිස <ns1:g id="APP_NAME">%1$s</ns1:g> වැඩ නොකරනු ඇත."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play සේවා සබල කරන්න"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"ස්ථාපනය කරන්න"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"ඔබගේ ටැබ්ලට් පරිගණකයේ නැති Google Play සේවා නොමැතිව <ns1:g id="APP_NAME">%1$s</ns1:g> ධාවනය නොවනු ඇත."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play සේවා ලබා ගන්න"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play සේවා දෝෂය"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> හට Google Play සේවා සමගින් ගැටලු ඇත. කරුණාකර නැවත උත්සාහ කරන්න."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"ඔබගේ උපාංගය මගින් සහාය නොදක්වන, Google Play සේවා නොමැතිව <ns1:g id="APP_NAME">%1$s</ns1:g> ධාවනය නොවනු ඇත."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"යාවත්කාලීන කරන්න"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play සේවා යාවත්කාලීන කරන්නේ නොමැතිව <ns1:g id="APP_NAME">%1$s</ns1:g> ධාවනය නොවේ."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play සේවා යාවත්කාලීන කරන්න"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"දැනට යාවත්කාලීන කරමින් ඇති, Google Play සේවා නොමැතිව <ns1:g id="APP_NAME">%1$s</ns1:g> ධාවනය නොවනු ඇත."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play සේවාවල නව අනුවාදයක් අවශ්‍යයි. එය මද වේලාවකින් එය විසින්ම යාවත්කාලීන වනු ඇත."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"දුරකථනය තුළ විවෘත කරන්න"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"පුරන්න"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google සමගින් පුරන්න"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-sk/values-sk.xml b/android/.build/intermediates/res/merged/debug/values-sk/values-sk.xml
deleted file mode 100644
index 134ecd82283316b13032acb52707c2a94d1a1a48..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-sk/values-sk.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Prejsť na plochu"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Prejsť hore"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Ďalšie možnosti"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Hotovo"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobraziť všetko"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Zvoľte aplikáciu"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"VYP."</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ZAP."</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Vyhľadať…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Vymazať dopyt"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Vyhľadávací dopyt"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Hľadať"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Odoslať dopyt"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Hlasové vyhľadávanie"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Zdieľať pomocou"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Zdieľať pomocou %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Zbaliť"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Povoliť"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Aplikácia <ns1:g id="APP_NAME">%1$s</ns1:g> bude fungovať až po povolení služieb Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Povoliť služby Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Inštalovať"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Na spustenie aplikácie <ns1:g id="APP_NAME">%1$s</ns1:g> sa vyžadujú služby Google Play, ktoré na zariadení nemáte."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Inštalovať služby Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Chyba služieb Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Aplikácia <ns1:g id="APP_NAME">%1$s</ns1:g> má problémy so službami Google Play. Skúste to znova."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Aplikáciu <ns1:g id="APP_NAME">%1$s</ns1:g> nebude možné spustiť bez služieb Google Play, ktoré vaše zariadenie nepodporuje."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Aktualizovať"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Aplikáciu <ns1:g id="APP_NAME">%1$s</ns1:g> bude možné spustiť až po aktualizácii služieb Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Aktualizácia služieb Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Na spustenie aplikácie <ns1:g id="APP_NAME">%1$s</ns1:g> sa vyžadujú služby Google Play, ktoré sa momentálne aktualizujú."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Vyžaduje sa nová verzia služieb Google Play. Aktualizujú sa automaticky v najbližšom čase."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Otvoriť v telefóne"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Prihlásiť sa"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Prihlásiť sa do účtu Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Vyhľadávanie"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-sl/values-sl.xml b/android/.build/intermediates/res/merged/debug/values-sl/values-sl.xml
deleted file mode 100644
index 6b9e9aed318b30173bcd204f2c219dd73f17b2e3..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-sl/values-sl.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Krmarjenje domov"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Krmarjenje navzgor"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Več možnosti"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Končano"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Pokaži vse"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Izbira aplikacije"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"IZKLOPLJENO"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"VKLOPLJENO"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Iskanje …"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Izbris poizvedbe"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Iskalna poizvedba"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Iskanje"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošiljanje poizvedbe"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovno iskanje"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deljenje z"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deljenje z:"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Strni"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Omogoči"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> ne bo delovala, če ne omogočite storitev Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Omogočanje storitev Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Namesti"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> ne deluje brez storitev Google Play, vendar teh ni v napravi."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Namestitev storitev Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Napaka storitev Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> ima težave s storitvami Google Play. Poskusite znova."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> ne deluje brez storitev Google Play, ki jih vaša naprava ne podpira."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Posodobi"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> ne bo delovala, če ne posodobite storitev Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Posodobitev storitev Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Aplikacija <ns1:g id="APP_NAME">%1$s</ns1:g> ne deluje brez storitev Google Play, ki se trenutno posodabljajo."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Potrebujete novo različico storitev Google Play. V kratkem se bodo posodobile."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Odpiranje v telefonu"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Prijava"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Prijava z Google Računom"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Iskanje"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-sq-rAL/values-sq-rAL.xml b/android/.build/intermediates/res/merged/debug/values-sq-rAL/values-sq-rAL.xml
deleted file mode 100644
index 0dc40eae4aa708ef4dc66746f50db0d9931400ac..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-sq-rAL/values-sq-rAL.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Orientohu për në shtëpi"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Ngjitu lart"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Opsione të tjera"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"U krye!"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Shikoji të gjitha"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Zgjidh një aplikacion"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"JOAKTIV"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"AKTIV"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Kërko..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Pastro pyetjen"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Kërko pyetjen"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Kërko"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Dërgo pyetjen"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Kërkim me zë"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Shpërnda publikisht me"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Shpërnda publikisht me %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Shpalos"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Kërko"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-sq/values-sq.xml b/android/.build/intermediates/res/merged/debug/values-sq/values-sq.xml
deleted file mode 100644
index 021b79bb2540bc466cb7130b5d9eab809ac52f95..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-sq/values-sq.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Aktivizo"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nuk do të funksionojë nëse nuk aktivizon shërbimet e \"Luaj me Google\"."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Aktivizo shërbimet e \"Luaj me Google\""</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Instalo"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nuk do të funksionojë pa shërbimet e Google Play, të cilat mungojnë në pajisjen tënde."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Merr shërbimet e \"Luaj me Google\""</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Gabim në shërbimet e \"Luaj me Google\""</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ka probleme me shërbimet e Google Play. Provo sërish."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nuk do të funksionojë pa shërbimet e Google Play, të cilat nuk mbështeten nga pajisja jote."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Përditëso"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nuk do të funksionojë nëse nuk përditëson shërbimet e \"Luaj me Google\"."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Përditëso shërbimet e \"Luaj me Google\""</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> nuk do të funksionojë pa shërbimet e \"Luaj me Google\", të cilat po përditësohen aktualisht."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Nevojitet një version i ri i shërbimeve të \"Luaj me Google\". Ai do të përditësohet automatikisht së shpejti."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Hape në telefon"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Identifikohu"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Identifikohu me Google"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-sr/values-sr.xml b/android/.build/intermediates/res/merged/debug/values-sr/values-sr.xml
deleted file mode 100644
index d28dba884ad2f9914c563224c7703f3cc3dbac90..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-sr/values-sr.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Одлазак на Почетну"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Кретање нагоре"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Још опција"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Прикажи све"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Избор апликације"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ИСКЉУЧИ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"УКЉУЧИ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Претражите..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Брисање упита"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Упит за претрагу"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Претрага"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Слање упита"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласовна претрага"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Дели са"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Дели са апликацијом %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Скупи"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Омогући"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> неће функционисати ако не омогућите Google Play услуге."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Омогућите Google Play услуге"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Инсталирај"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не може да се покрене без Google Play услуга, које нису инсталиране на уређају."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Преузмите Google Play услуге"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Грешка Google Play услуга"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> има проблема са Google Play услугама. Пробајте поново."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не може да се покрене без Google Play услуга, које уређај не подржава."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Ажурирај"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не може да се покрене ако не ажурирате Google Play услуге."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Ажурирајте Google Play услуге"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> не може да се покрене без Google Play услуга, које се тренутно ажурирају."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Потребна је нова верзија Google Play услуга. Ускоро ће се ажурирати."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Отвори на телефону"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Пријави ме"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Пријави ме на Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Претражи"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-sv/values-sv.xml b/android/.build/intermediates/res/merged/debug/values-sv/values-sv.xml
deleted file mode 100644
index fd5dc6a849e573a67aeaeebc95046bc5fd55479b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-sv/values-sv.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Visa startsidan"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigera uppåt"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Fler alternativ"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Klart"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Visa alla"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Välj en app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"AV"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"PÃ…"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Sök …"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ta bort frågan"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Sökfråga"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Sök"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Skicka fråga"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Röstsökning"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Dela med"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Dela med %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Komprimera"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Aktivera"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> fungerar inte om du inte aktiverar Google Play-tjänster."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Aktivera Google Play-tjänster"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Installera"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan inte köras utan Google Play-tjänsterna, som saknas på enheten."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Hämta Google Play-tjänster"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Fel på Google Play-tjänster"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Det har uppstått ett fel mellan <ns1:g id="APP_NAME">%1$s</ns1:g> och Google Play-tjänsterna. Försök igen."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> fungerar inte utan Google Play-tjänsterna, som inte stöds på enheten."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Uppdatera"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan inte köras om du inte uppdaterar Google Play-tjänsterna."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Uppdatera Google Play-tjänster"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> kan inte köras utan Google Play-tjänster, och dessa uppdateras för närvarande."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"En ny version av Google Play-tjänster krävs. Den uppdateras automatiskt inom kort."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Öppna på mobilen"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Logga in"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Logga in med Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Sök"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-sw/values-sw.xml b/android/.build/intermediates/res/merged/debug/values-sw/values-sw.xml
deleted file mode 100644
index 3732975f4efa00998d5e3e1495effbaaff5c320b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-sw/values-sw.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Nenda mwanzo"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Nenda juu"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Chaguo zaidi"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Nimemaliza"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Angalia zote"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Chagua programu"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"IMEZIMWA"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"IMEWASHWA"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Tafuta…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Futa hoja"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Hoja ya utafutaji"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Tafuta"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Wasilisha hoja"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Tafuta kwa kutamka"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Shiriki na:"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Shiriki na %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Kunja"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Washa"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> haitafanya kazi isipokuwa uwashe huduma za Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Washa huduma za Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Sakinisha"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> haitafanya kazi bila huduma za Google Play. Huduma hizi hazipatikani kwenye kifaa chako."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Pata huduma za Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Hitilafu kwenye huduma za Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> inakumbwa na hitilafu ya huduma za Google Play. Tafadhali jaribu tena."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> haitafanya kazi bila huduma za Google Play. Huduma hizi hazitumiki kwenye kifaa chako."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Sasisha"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> haitafanya kazi hadi usasishe huduma za Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Sasisha huduma za Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> haitafanya kazi bila huduma za Google Play. Huduma hizi zinasasishwa sasa."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Toleo jipya la huduma za Google Play linahitajika. Litajisasisha baada ya muda mfupi."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Fungua kwenye simu"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Ingia katika akaunti"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Ingia katika akaunti ukitumia Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Tafuta"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-sw600dp-v13/values-sw600dp-v13.xml b/android/.build/intermediates/res/merged/debug/values-sw600dp-v13/values-sw600dp-v13.xml
deleted file mode 100644
index be7c95f3d268a32e694dd5b5f4de09d11152a77e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-sw600dp-v13/values-sw600dp-v13.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <dimen name="abc_action_bar_content_inset_material">24dp</dimen>
-    <dimen name="abc_action_bar_content_inset_with_nav">80dp</dimen>
-    <dimen name="abc_action_bar_default_height_material">64dp</dimen>
-    <dimen name="abc_action_bar_default_padding_end_material">8dp</dimen>
-    <dimen name="abc_action_bar_default_padding_start_material">8dp</dimen>
-    <dimen name="abc_config_prefDialogWidth">580dp</dimen>
-    <dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen>
-    <dimen name="abc_text_size_title_material_toolbar">20dp</dimen>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml b/android/.build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml
deleted file mode 100644
index fd1fabfeace800dc97b54a2500f74958f53bb14a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"முகப்பிற்கு வழிசெலுத்து"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"மேலே வழிசெலுத்து"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"மேலும் விருப்பங்கள்"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"முடிந்தது"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"எல்லாம் காட்டு"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"பயன்பாட்டைத் தேர்வுசெய்க"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"முடக்கு"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"இயக்கு"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"தேடு..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"வினவலை அழி"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"தேடல் வினவல்"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"தேடு"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"வினவலைச் சமர்ப்பி"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"குரல் தேடல்"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"இதனுடன் பகிர்"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s உடன் பகிர்"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"சுருக்கு"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"தேடு"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ta/values-ta.xml b/android/.build/intermediates/res/merged/debug/values-ta/values-ta.xml
deleted file mode 100644
index 3d11efcda7271dde3758a0b3569ba2fcf025dd9a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ta/values-ta.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"இயக்கு"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play சேவைகளை இயக்கினால் மட்டுமே, <ns1:g id="APP_NAME">%1$s</ns1:g> செயல்படும்."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play சேவைகளை இயக்கவும்"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"நிறுவு"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Google Play சேவைகள் இருந்தால் மட்டுமே, <ns1:g id="APP_NAME">%1$s</ns1:g> இயங்கும். அவை உங்கள் சாதனத்தில் இல்லை."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play சேவைகளைப் பெறவும்"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play சேவைகள் பிழை"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Google Play சேவைகளில் சிக்கல் ஏற்பட்டதால், <ns1:g id="APP_NAME">%1$s</ns1:g> பயன்பாட்டை அணுக முடியவில்லை. மீண்டும் முயலவும்."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Google Play சேவைகள் இருந்தால் மட்டுமே <ns1:g id="APP_NAME">%1$s</ns1:g> பயன்பாடு இயங்கும். ஆனால், உங்கள் சாதனத்தில் அவை ஆதரிக்கப்படவில்லை."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"புதுப்பி"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play சேவைகளை இயக்கினால் மட்டுமே, <ns1:g id="APP_NAME">%1$s</ns1:g> செயல்படும்."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play சேவைகளைப் புதுப்பிக்கவும்"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"தற்போது புதுப்பிக்கப்படும், Google Play சேவைகள் இருந்தால் மட்டுமே, <ns1:g id="APP_NAME">%1$s</ns1:g> செயல்படும்."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play சேவைகளின் புதிய பதிப்பு தேவை. அது விரைவில் தானாகவே புதுப்பிக்கப்படும்."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"மொபைலில் திற"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"உள்நுழைக"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google மூலம் உள்நுழைக"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml b/android/.build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml
deleted file mode 100644
index 7e9888d77c6c6c0be32a989a39187cef282a3fb2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"హోమ్‌కు నావిగేట్ చేయండి"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"పైకి నావిగేట్ చేయండి"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"మరిన్ని ఎంపికలు"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"పూర్తయింది"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"అన్నీ చూడండి"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"అనువర్తనాన్ని ఎంచుకోండి"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ఆఫ్ చేయి"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"ఆన్ చేయి"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"శోధించు..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"ప్రశ్నను క్లియర్ చేయి"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ప్రశ్న శోధించండి"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"శోధించు"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ప్రశ్నని సమర్పించు"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"వాయిస్ శోధన"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"వీరితో భాగస్వామ్యం చేయి"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%sతో భాగస్వామ్యం చేయి"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"కుదించండి"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"శోధించు"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-te/values-te.xml b/android/.build/intermediates/res/merged/debug/values-te/values-te.xml
deleted file mode 100644
index 38c054fc8e9503783600d1ebde49a6a77aa6aac7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-te/values-te.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"ప్రారంభించు"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"మీరు Google Play సేవలను ప్రారంభిస్తే మినహా <ns1:g id="APP_NAME">%1$s</ns1:g> పని చేయదు."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play సేవలను ప్రారంభించండి"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"ఇన్‌స్టాల్ చేయి"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play సేవలు లేకుండా అమలు కాదు, ఆ సేవలు మీ పరికరంలో లేవు."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play సేవలను పొందండి"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play సేవల లోపం"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play సేవలతో సమస్య కలిగి ఉంది. దయచేసి మళ్లీ ప్రయత్నించండి."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play సేవలు లేకుండా అమలు కాదు, ఈ సేవలకు మీ పరికరంలో మద్దతు లేదు."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"నవీకరించు"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"మీరు Google Play సేవలను నవీకరిస్తే మినహా <ns1:g id="APP_NAME">%1$s</ns1:g> అమలు కాదు."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play సేవలను నవీకరించండి"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play సేవలు లేకుండా అమలు కాదు, ఆ సేవలు ప్రస్తుతం నవీకరించబడుతున్నాయి."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"కొత్త Google Play సేవల సంస్కరణ అవసరం. అది కొద్ది సేపట్లో దానంతట అదే నవీకరించబడుతుంది."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"ఫోన్‌లో తెరువు"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"సైన్ ఇన్ చేయి"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Googleతో సైన్ ఇన్ చేయి"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-th/values-th.xml b/android/.build/intermediates/res/merged/debug/values-th/values-th.xml
deleted file mode 100644
index 8aa6054d8a24904cddb8d482c3000763e3dfd9e2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-th/values-th.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"นำทางไปหน้าแรก"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"นำทางขึ้น"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ตัวเลือกอื่น"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"เสร็จสิ้น"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ดูทั้งหมด"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"เลือกแอป"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ปิด"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"เปิด"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"ค้นหา…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"ล้างข้อความค้นหา"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"ข้อความค้นหา"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"ค้นหา"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"ส่งข้อความค้นหา"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"ค้นหาด้วยเสียง"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"แชร์กับ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"แชร์กับ %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ยุบ"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"เปิดใช้"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> จะไม่ทำงานจนกว่าคุณจะเปิดใช้บริการ Google Play"</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"เปิดใช้บริการ Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"ติดตั้ง"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> จะไม่ทำงานหากไม่มีบริการ Google Play ซี่งไม่มีในอุปกรณ์ของคุณ"</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"ติดตั้งบริการ Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"ข้อผิดพลาดของบริการ Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> มีปัญหาเกี่ยวกับบริการของ Google Play โปรดลองอีกครั้ง"</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> จะไม่ทำงานหากไม่มีบริการ Google Play ซึ่งอุปกรณ์ของคุณไม่สนับสนุน"</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"อัปเดต"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> จะไม่ทำงานจนกว่าคุณจะอัปเดตบริการ Google Play"</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"อัปเดตบริการ Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> จะไม่ทำงานหากไม่มีบริการ Google Play ซึ่งกำลังอัปเดตอยู่ในขณะนี้"</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"จำเป็นต้องใช้บริการ Google Play เวอร์ชันใหม่ ซึ่งจะอัปเดตอัตโนมัติในอีกไม่ช้า"</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"เปิดบนโทรศัพท์"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"ลงชื่อเข้าใช้"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"ลงชื่อเข้าใช้ด้วย Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"ค้นหา"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-tl/values-tl.xml b/android/.build/intermediates/res/merged/debug/values-tl/values-tl.xml
deleted file mode 100644
index 4e509c9808b26dd0d830d7b747bfbc56ca5d541d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-tl/values-tl.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Mag-navigate patungo sa home"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Mag-navigate pataas"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Higit pang mga opsyon"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Tapos na"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tingnan lahat"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pumili ng isang app"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"I-OFF"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"I-ON"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Maghanap…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"I-clear ang query"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Query sa paghahanap"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Maghanap"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Isumite ang query"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Paghahanap gamit ang boses"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Ibahagi sa/kay"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Ibahagi sa/kay %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"I-collapse"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"I-enable"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Hindi gagana ang <ns1:g id="APP_NAME">%1$s</ns1:g> maliban kung ie-enable mo ang mga serbisyo ng Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"I-enable ang mga serbisyo ng Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"I-install"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Hindi gagana ang <ns1:g id="APP_NAME">%1$s</ns1:g> nang wala ang mga serbisyo ng Google Play na wala sa iyong device."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Kunin ang mga serbisyo ng Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Error sa Mga Serbisyo ng Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"Nagkakaproblema ang <ns1:g id="APP_NAME">%1$s</ns1:g> sa mga serbisyo ng Google Play. Pakisubukang muli."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Hindi gagana ang <ns1:g id="APP_NAME">%1$s</ns1:g> nang wala ang mga serbisyo ng Google Play, na hindi nasusuportahan ng iyong device."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"I-update"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Hindi gagana ang <ns1:g id="APP_NAME">%1$s</ns1:g> maliban kung i-a-update mo ang mga serbisyo ng Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"I-update ang mga serbisyo ng Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Hindi gagana ang <ns1:g id="APP_NAME">%1$s</ns1:g> nang wala ang mga serbisyo ng Google Play na kasalukuyang ina-update."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Kailangan ang bagong bersyon ng mga serbisyo ng Google Play. Mag-a-update itong mag-isa sa ilang sandali."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Buksan sa telepono"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Mag-sign in"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Mag-sign in sa Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Maghanap"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-tr/values-tr.xml b/android/.build/intermediates/res/merged/debug/values-tr/values-tr.xml
deleted file mode 100644
index 48c2748ba2efae4267d9031c231993b0f2ef382c..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-tr/values-tr.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ana ekrana git"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yukarı git"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Diğer seçenekler"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Bitti"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tümünü göster"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Bir uygulama seçin"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"KAPAT"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"AÇ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Ara…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sorguyu temizle"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Arama sorgusu"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Ara"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Sorguyu gönder"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Sesli arama"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Åžununla paylaÅŸ"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ile paylaÅŸ"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Daralt"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"EtkinleÅŸtir"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play hizmetlerini etkinleştirmezseniz <ns1:g id="APP_NAME">%1$s</ns1:g> çalışmaz."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play hizmetlerini etkinleÅŸtirin"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Yükle"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>, şu anda cihazınızda bulunmayan Google Play hizmetleri olmadan çalışmaz."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play hizmetlerini edinin"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play Hizmetleri hatası"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g>, Google Play hizmetleriyle ilgili sorun yaşıyor. Lütfen tekrar deneyin."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>, Google Play hizmetleri olmadan çalışmaz ve bu hizmetler cihazınız tarafından desteklenmiyor."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Güncelle"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play hizmetlerini güncellemezseniz <ns1:g id="APP_NAME">%1$s</ns1:g> çalışmayacak."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play hizmetlerini güncelleyin"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g>, şu anda güncellenmekte olan Google Play hizmetleri olmadan çalışmaz."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play hizmetlerinin yeni sürümü gerekiyor. Kendisini kısa süre içinde güncelleyecektir."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Telefonda aç"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Oturum aç"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google\'da oturum aç"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Ara"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-uk/values-uk.xml b/android/.build/intermediates/res/merged/debug/values-uk/values-uk.xml
deleted file mode 100644
index e57f62cef377398549ba726e097e2d26feb0a441..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-uk/values-uk.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Перейти на головний"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Перейти вгору"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Інші опції"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Переглянути всі"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Вибрати програму"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"ВИМК."</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"УВІМК."</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Пошук…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Очистити запит"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Пошуковий запит"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Пошук"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Надіслати запит"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Голосовий пошук"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Надіслати через"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Надіслати через %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Згорнути"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Увімкнути"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Додаток <ns1:g id="APP_NAME">%1$s</ns1:g> не працюватиме, якщо не ввімкнути сервіси Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Увімкнути сервіси Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Установити"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"Додаток <ns1:g id="APP_NAME">%1$s</ns1:g> не працюватиме без сервісів Google Play, яких немає на вашому пристрої."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Установити сервіси Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Помилка сервісів Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"У додатку <ns1:g id="APP_NAME">%1$s</ns1:g> виникла проблема із сервісами Google Play. Повторіть спробу."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"Додаток <ns1:g id="APP_NAME">%1$s</ns1:g> не працюватиме без сервісів Google Play, які не підтримуються на вашому пристрої."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Оновити"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Додаток <ns1:g id="APP_NAME">%1$s</ns1:g> не працюватиме, якщо не оновити сервіси Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Оновіть сервіси Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Додаток <ns1:g id="APP_NAME">%1$s</ns1:g> не працюватиме без сервісів Google Play, які зараз оновлюються."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Потрібна нова версія сервісів Google Play. Вони невдовзі оновляться."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Відкрити на телефоні"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Увійти"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Увійти в облік. запис Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Пошук"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml b/android/.build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml
deleted file mode 100644
index 2c8a2fe1801a1c9d8d4a54c92720538845f106c8..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ہوم پر نیویگیٹ کریں"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"اوپر نیویگیٹ کریں"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"مزید اختیارات"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"ہو گیا"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"سبھی دیکھیں"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ایک ایپ منتخب کریں"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"آف"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"آن"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"تلاش کریں…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"استفسار صاف کریں"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"استفسار تلاش کریں"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"تلاش کریں"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"استفسار جمع کرائیں"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"صوتی تلاش"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"اشتراک کریں مع"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏%s کے ساتھ اشتراک کریں"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"سکیڑیں"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"تلاش"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"‎999+‎"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-ur/values-ur.xml b/android/.build/intermediates/res/merged/debug/values-ur/values-ur.xml
deleted file mode 100644
index 65a338191ad2becd9bba34cba9485953c95284a3..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-ur/values-ur.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"فعال کریں"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"‏جب تک آپ Google Play سروسز فعال نہیں کر لیتے، <ns1:g id="APP_NAME">%1$s</ns1:g> کام نہیں کرے گی۔"</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"‏Google Play سروسز فعال کریں"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"انسٹال کریں"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play سروسز کے بغیر نہیں چلے گی، جو آپ کے آلہ سے غائب ہیں۔"</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"‏Google Play سروسز حاصل کریں"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"‏Google Play سروسز کی خرابی"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> کو Google Play سروسز کے ساتھ مسئلہ پیش آ رہا ہے۔ براہ کرم دوبارہ کوشش کریں۔"</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play سروسز کے بغیر نہیں چلے گی، جن کی آپ کا آلہ معاونت نہیں کرتا۔"</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"اپ ڈیٹ کریں"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"‏جب تک آپ Google Play سروسز اپ ڈیٹ نہیں کر لیتے ہیں <ns1:g id="APP_NAME">%1$s</ns1:g> تب تک نہیں چلے گی۔"</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"‏Google Play سروسز اپ ڈیٹ کریں"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"‏<ns1:g id="APP_NAME">%1$s</ns1:g> Google Play سروسز کے بغیر نہیں چلے گی، جو فی الحال اپ ڈیٹ ہو رہی ہیں۔"</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"‏Google Play سروسز کے نئے ورژن کی ضرورت ہے۔ یہ تھوڑی دیر میں خود ہی اپنے آپ کو اپ ڈیٹ کر لے گا۔"</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"فون پر کھولیں"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"سائن ان کریں"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"‏Google کے ساتھ سائن ان کریں"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml b/android/.build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml
deleted file mode 100644
index 644683613b899ced6c3d644eb7004ee83342a2be..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Boshiga o‘tish"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yuqoriga o‘tish"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Boshqa parametrlar"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Tayyor"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Barchasini ko‘rish"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Dastur tanlang"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"O‘CHIQ"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"YONIQ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Qidirish…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"So‘rovni tozalash"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"So‘rovni izlash"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Qidirish"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"So‘rov yaratish"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Ovozli qidiruv"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Ruxsat berish"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%sga ruxsat berish"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Yig‘ish"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Qidirish"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-uz/values-uz.xml b/android/.build/intermediates/res/merged/debug/values-uz/values-uz.xml
deleted file mode 100644
index e5a7eeef89ae2a0bf257649d9ccb75f510ed0856..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-uz/values-uz.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Yoqish"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"Google Play xizmatlari yoqilmaguncha, <ns1:g id="APP_NAME">%1$s</ns1:g> ishlamaydi."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Google Play xizmatlarini yoqish"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"O‘rnatish"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ishlashi uchun qurilmangizda Google Play xizmatlarini o‘rnatish lozim."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Google Play xizmatlarini o‘rnatish"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play xizmatlari xatosi"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> ilovasini Google Play xizmatlariga ulab bo‘lmadi. Qaytadan urinib ko‘ring."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ilovasi Google Play xizmatlarisiz ishlamaydi, biroq qurilmangiz ularni qo‘llab-quvvatlamaydi."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Yangilash"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"Google Play xizmatlari yangilanmaguncha, <ns1:g id="APP_NAME">%1$s</ns1:g> ishga tushmaydi."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Google Play xizmatlarini yangilash"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ilovasining ishlashi uchun zarur Google Play xizmatlari hozirda yangilanmoqda."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Google Play xizmatlarining yangi versiyasi zarur. U o‘zini qisqa vaqt ichida yangilaydi."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Telefonda ochish"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Kirish"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Google orqali kirish"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-v11/values-v11.xml b/android/.build/intermediates/res/merged/debug/values-v11/values-v11.xml
deleted file mode 100644
index 35a2c7aa4b7aa6596b1512cdddc2ba86b1198c2e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-v11/values-v11.xml
+++ /dev/null
@@ -1,191 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Base.TextAppearance.AppCompat.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Large.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Medium.Inverse">
-        <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Small.Inverse">
-        <item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Subhead.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Title.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-        <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
-        <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Dialog" parent="Base.V11.Theme.AppCompat.Dialog"/>
-    <style name="Base.Theme.AppCompat.Dialog.Alert">
-        <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Dialog.MinWidth">
-        <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V11.Theme.AppCompat.Light.Dialog"/>
-    <style name="Base.Theme.AppCompat.Light.Dialog.Alert">
-        <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Light.Dialog.MinWidth">
-        <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V11.ThemeOverlay.AppCompat.Dialog"/>
-    <style name="Base.ThemeOverlay.AppCompat.Dialog.Alert">
-        <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.V11.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog">
-        <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
-        <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="android:windowCloseOnTouchOutside">@bool/abc_config_closeDialogWhenTouchOutside</item>
-    </style>
-    <style name="Base.V11.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog">
-        <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
-        <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="android:windowCloseOnTouchOutside">@bool/abc_config_closeDialogWhenTouchOutside</item>
-    </style>
-    <style name="Base.V11.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog">
-        <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
-        <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="android:windowCloseOnTouchOutside">@bool/abc_config_closeDialogWhenTouchOutside</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Holo.ProgressBar">
-    </style>
-    <style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Holo.ProgressBar.Horizontal">
-    </style>
-    <style name="Platform.AppCompat" parent="Platform.V11.AppCompat"/>
-    <style name="Platform.AppCompat.Light" parent="Platform.V11.AppCompat.Light"/>
-    <style name="Platform.V11.AppCompat" parent="android:Theme.Holo">
-        <item name="android:windowNoTitle">true</item>
-        <item name="android:windowActionBar">false</item>
-
-        <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
-        <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
-
-        <!-- Window colors -->
-        <item name="android:colorForeground">@color/foreground_material_dark</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
-        <item name="android:colorBackground">@color/background_material_dark</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
-        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item>
-        <item name="android:backgroundDimAmount">0.6</item>
-        <item name="android:windowBackground">@color/background_material_dark</item>
-
-        <!-- Text colors -->
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
-        <item name="android:textColorHighlightInverse">@color/highlighted_text_material_light</item>
-        <item name="android:textColorLink">?attr/colorAccent</item>
-        <item name="android:textColorLinkInverse">?attr/colorAccent</item>
-        <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
-
-        <!-- Text styles -->
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
-        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
-        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
-        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
-        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
-        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
-
-        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
-        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
-
-        <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
-        <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
-        <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
-
-        <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_dark</item>
-        <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_dark</item>
-        <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_dark</item>
-    </style>
-    <style name="Platform.V11.AppCompat.Light" parent="android:Theme.Holo.Light">
-        <item name="android:windowNoTitle">true</item>
-        <item name="android:windowActionBar">false</item>
-
-        <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
-        <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
-
-        <!-- Window colors -->
-        <item name="android:colorForeground">@color/foreground_material_light</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
-        <item name="android:colorBackground">@color/background_material_light</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
-        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item>
-        <item name="android:backgroundDimAmount">0.6</item>
-        <item name="android:windowBackground">@color/background_material_light</item>
-
-        <!-- Text colors -->
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
-        <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
-        <item name="android:textColorHighlightInverse">@color/highlighted_text_material_dark</item>
-        <item name="android:textColorLink">?attr/colorAccent</item>
-        <item name="android:textColorLinkInverse">?attr/colorAccent</item>
-        <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
-
-        <!-- Text styles -->
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
-        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
-        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
-        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
-        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
-        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
-
-        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
-        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
-
-        <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
-        <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
-        <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
-
-        <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_light</item>
-        <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_light</item>
-        <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_light</item>
-    </style>
-    <style name="Platform.Widget.AppCompat.Spinner" parent="android:Widget.Holo.Spinner"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-v12/values-v12.xml b/android/.build/intermediates/res/merged/debug/values-v12/values-v12.xml
deleted file mode 100644
index 85e241664c2d9e4bd6b3698e4357d44f4ca22ff2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-v12/values-v12.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Base.V12.Widget.AppCompat.AutoCompleteTextView" parent="Base.V7.Widget.AppCompat.AutoCompleteTextView">
-        <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
-    </style>
-    <style name="Base.V12.Widget.AppCompat.EditText" parent="Base.V7.Widget.AppCompat.EditText">
-        <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="Base.V12.Widget.AppCompat.AutoCompleteTextView"/>
-    <style name="Base.Widget.AppCompat.EditText" parent="Base.V12.Widget.AppCompat.EditText"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-v13/values-v13.xml b/android/.build/intermediates/res/merged/debug/values-v13/values-v13.xml
deleted file mode 100644
index 74d14088eab2b274cb9441d196b922994435553f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-v13/values-v13.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <bool name="abc_allow_stacked_button_bar">false</bool>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-v14/values-v14.xml b/android/.build/intermediates/res/merged/debug/values-v14/values-v14.xml
deleted file mode 100644
index b1633f081d4febb0e25ba6e7ddc936e41923c578..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-v14/values-v14.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Base.TextAppearance.AppCompat.Button">
-        <item name="android:textSize">@dimen/abc_text_size_button_material</item>
-        <item name="android:textAllCaps">true</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Platform.AppCompat" parent="Platform.V14.AppCompat"/>
-    <style name="Platform.AppCompat.Light" parent="Platform.V14.AppCompat.Light"/>
-    <style name="Platform.V14.AppCompat" parent="Platform.V11.AppCompat">
-        <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
-
-        <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
-        <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
-    </style>
-    <style name="Platform.V14.AppCompat.Light" parent="Platform.V11.AppCompat.Light">
-        <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
-
-        <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
-        <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification" parent="@android:style/TextAppearance.StatusBar.EventContent"/>
-    <style name="TextAppearance.AppCompat.Notification.Title" parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/>
-    <style name="TextAppearance.StatusBar.EventContent" parent="@android:style/TextAppearance.StatusBar.EventContent"/>
-    <style name="TextAppearance.StatusBar.EventContent.Info"/>
-    <style name="TextAppearance.StatusBar.EventContent.Line2">
-        <item name="android:textSize">@dimen/notification_subtext_size</item>
-    </style>
-    <style name="TextAppearance.StatusBar.EventContent.Time"/>
-    <style name="TextAppearance.StatusBar.EventContent.Title" parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-v16/values-v16.xml b/android/.build/intermediates/res/merged/debug/values-v16/values-v16.xml
deleted file mode 100644
index 2e02d6922c4ce9689810512486e24ba3c471ddfa..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-v16/values-v16.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <dimen name="notification_right_side_padding_top">4dp</dimen>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-v17/values-v17.xml b/android/.build/intermediates/res/merged/debug/values-v17/values-v17.xml
deleted file mode 100644
index f9f23d13793c5704974e4b66096eabe82670a2f0..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-v17/values-v17.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
-        <item name="android:textAlignment">viewStart</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
-        <item name="android:layout_gravity">center_vertical|start</item>
-        <item name="android:paddingEnd">8dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
-        <item name="android:layout_marginEnd">8dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
-        <item name="android:paddingEnd">16dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
-        <item name="android:layout_marginStart">16dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
-        <item name="android:layout_alignParentStart">true</item>
-        <item name="android:textAlignment">viewStart</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
-        <item name="android:paddingStart">@dimen/abc_dropdownitem_text_padding_left</item>
-        <item name="android:paddingEnd">4dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
-        <item name="android:layout_alignParentStart">true</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
-        <item name="android:layout_toStartOf">@id/edit_query</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
-        <item name="android:layout_alignParentEnd">true</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
-        <item name="android:layout_toStartOf">@android:id/icon2</item>
-        <item name="android:layout_toEndOf">@android:id/icon1</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
-        <item name="android:layout_marginStart">@dimen/abc_dropdownitem_text_padding_left</item>
-    </style>
-    <style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget">
-        <item name="android:paddingStart">12dp</item>
-        <item name="android:paddingEnd">12dp</item>
-    </style>
-    <style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton">
-        <item name="android:paddingStart">@dimen/abc_action_bar_overflow_padding_start_material</item>
-        <item name="android:paddingEnd">@dimen/abc_action_bar_overflow_padding_end_material</item>
-    </style>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-v18/values-v18.xml b/android/.build/intermediates/res/merged/debug/values-v18/values-v18.xml
deleted file mode 100644
index 7dad77f9e2733e7725120ce7201d2728040504a2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-v18/values-v18.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <dimen name="abc_switch_padding">0px</dimen>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-v21/values-v21.xml b/android/.build/intermediates/res/merged/debug/values-v21/values-v21.xml
deleted file mode 100644
index 20d055200bddc1e8323864c22373da95a7dfccb7..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-v21/values-v21.xml
+++ /dev/null
@@ -1,288 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <color name="notification_action_color_filter">@color/secondary_text_default_material_light</color>
-    <dimen name="notification_content_margin_start">0dp</dimen>
-    <dimen name="notification_main_column_padding_top">0dp</dimen>
-    <dimen name="notification_media_narrow_margin">12dp</dimen>
-    <style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance.Material"/>
-    <style name="Base.TextAppearance.AppCompat.Body1" parent="android:TextAppearance.Material.Body1"/>
-    <style name="Base.TextAppearance.AppCompat.Body2" parent="android:TextAppearance.Material.Body2"/>
-    <style name="Base.TextAppearance.AppCompat.Button" parent="android:TextAppearance.Material.Button"/>
-    <style name="Base.TextAppearance.AppCompat.Caption" parent="android:TextAppearance.Material.Caption"/>
-    <style name="Base.TextAppearance.AppCompat.Display1" parent="android:TextAppearance.Material.Display1"/>
-    <style name="Base.TextAppearance.AppCompat.Display2" parent="android:TextAppearance.Material.Display2"/>
-    <style name="Base.TextAppearance.AppCompat.Display3" parent="android:TextAppearance.Material.Display3"/>
-    <style name="Base.TextAppearance.AppCompat.Display4" parent="android:TextAppearance.Material.Display4"/>
-    <style name="Base.TextAppearance.AppCompat.Headline" parent="android:TextAppearance.Material.Headline"/>
-    <style name="Base.TextAppearance.AppCompat.Inverse" parent="android:TextAppearance.Material.Inverse"/>
-    <style name="Base.TextAppearance.AppCompat.Large" parent="android:TextAppearance.Material.Large"/>
-    <style name="Base.TextAppearance.AppCompat.Large.Inverse" parent="android:TextAppearance.Material.Large.Inverse"/>
-    <style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="android:TextAppearance.Material.Widget.PopupMenu.Large">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="android:TextAppearance.Material.Widget.PopupMenu.Small">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Medium" parent="android:TextAppearance.Material.Medium"/>
-    <style name="Base.TextAppearance.AppCompat.Medium.Inverse" parent="android:TextAppearance.Material.Medium.Inverse"/>
-    <style name="Base.TextAppearance.AppCompat.Menu" parent="android:TextAppearance.Material.Menu"/>
-    <style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle" parent="android:TextAppearance.Material.SearchResult.Subtitle">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.SearchResult.Title" parent="android:TextAppearance.Material.SearchResult.Title">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Small" parent="android:TextAppearance.Material.Small"/>
-    <style name="Base.TextAppearance.AppCompat.Small.Inverse" parent="android:TextAppearance.Material.Small.Inverse"/>
-    <style name="Base.TextAppearance.AppCompat.Subhead" parent="android:TextAppearance.Material.Subhead"/>
-    <style name="Base.TextAppearance.AppCompat.Title" parent="android:TextAppearance.Material.Title"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle.Inverse">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="android:TextAppearance.Material.Widget.ActionBar.Title">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="android:TextAppearance.Material.Widget.ActionBar.Title.Inverse">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="android:TextAppearance.Material.Widget.ActionMode.Subtitle">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="android:TextAppearance.Material.Widget.ActionMode.Title">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button" parent="android:TextAppearance.Material.Widget.Button"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat">
-        <item name="android:fontFamily">@string/abc_font_family_title_material</item>
-        <item name="android:textSize">@dimen/abc_text_size_menu_header_material</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="android:TextAppearance.Material.Widget.PopupMenu.Large">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="android:TextAppearance.Material.Widget.PopupMenu.Small">
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="android:TextAppearance.Material.Button"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="android:TextAppearance.Material.Widget.TextView.SpinnerItem"/>
-    <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle">
-    </style>
-    <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="android:TextAppearance.Material.Widget.ActionBar.Title">
-    </style>
-    <style name="Base.Theme.AppCompat" parent="Base.V21.Theme.AppCompat"/>
-    <style name="Base.Theme.AppCompat.Dialog" parent="Base.V21.Theme.AppCompat.Dialog"/>
-    <style name="Base.Theme.AppCompat.Light" parent="Base.V21.Theme.AppCompat.Light"/>
-    <style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V21.Theme.AppCompat.Light.Dialog"/>
-    <style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V21.ThemeOverlay.AppCompat.Dialog"/>
-    <style name="Base.V21.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
-        <!-- Action Bar styling attributes -->
-        <item name="actionBarSize">?android:attr/actionBarSize</item>
-        <item name="actionBarDivider">?android:attr/actionBarDivider</item>
-        <item name="actionBarItemBackground">@drawable/abc_action_bar_item_background_material</item>
-        <item name="actionButtonStyle">?android:attr/actionButtonStyle</item>
-        <item name="actionModeBackground">?android:attr/actionModeBackground</item>
-        <item name="actionModeCloseDrawable">?android:attr/actionModeCloseDrawable</item>
-        <item name="actionOverflowButtonStyle">?android:attr/actionOverflowButtonStyle</item>
-        <item name="homeAsUpIndicator">?android:attr/homeAsUpIndicator</item>
-
-        <!-- For PopupMenu -->
-        <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item>
-        <item name="textAppearanceLargePopupMenu">?android:attr/textAppearanceLargePopupMenu</item>
-        <item name="textAppearanceSmallPopupMenu">?android:attr/textAppearanceSmallPopupMenu</item>
-
-        <!-- General view attributes -->
-        <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
-        <item name="selectableItemBackgroundBorderless">?android:attr/selectableItemBackgroundBorderless</item>
-        <item name="borderlessButtonStyle">?android:borderlessButtonStyle</item>
-        <item name="dividerHorizontal">?android:attr/dividerHorizontal</item>
-        <item name="dividerVertical">?android:attr/dividerVertical</item>
-        <item name="editTextBackground">@drawable/abc_edit_text_material</item>
-        <item name="editTextColor">?android:attr/editTextColor</item>
-        <item name="listChoiceBackgroundIndicator">?android:attr/listChoiceBackgroundIndicator</item>
-
-        <!-- Copy the platform default styles for the AppCompat widgets -->
-        <item name="buttonStyle">?android:attr/buttonStyle</item>
-        <item name="buttonStyleSmall">?android:attr/buttonStyleSmall</item>
-        <item name="checkboxStyle">?android:attr/checkboxStyle</item>
-        <item name="checkedTextViewStyle">?android:attr/checkedTextViewStyle</item>
-        <item name="radioButtonStyle">?android:attr/radioButtonStyle</item>
-        <item name="ratingBarStyle">?android:attr/ratingBarStyle</item>
-        <item name="spinnerStyle">?android:attr/spinnerStyle</item>
-
-        <!-- Copy our color theme attributes to the framework -->
-        <item name="android:colorPrimary">?attr/colorPrimary</item>
-        <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
-        <item name="android:colorAccent">?attr/colorAccent</item>
-        <item name="android:colorControlNormal">?attr/colorControlNormal</item>
-        <item name="android:colorControlActivated">?attr/colorControlActivated</item>
-        <item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
-        <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
-    </style>
-    <style name="Base.V21.Theme.AppCompat.Dialog" parent="Base.V11.Theme.AppCompat.Dialog">
-        <item name="android:windowElevation">@dimen/abc_floating_window_z</item>
-    </style>
-    <style name="Base.V21.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
-        <!-- Action Bar styling attributes -->
-        <item name="actionBarSize">?android:attr/actionBarSize</item>
-        <item name="actionBarDivider">?android:attr/actionBarDivider</item>
-        <item name="actionBarItemBackground">@drawable/abc_action_bar_item_background_material</item>
-        <item name="actionButtonStyle">?android:attr/actionButtonStyle</item>
-        <item name="actionModeBackground">?android:attr/actionModeBackground</item>
-        <item name="actionModeCloseDrawable">?android:attr/actionModeCloseDrawable</item>
-        <item name="actionOverflowButtonStyle">?android:attr/actionOverflowButtonStyle</item>
-        <item name="homeAsUpIndicator">?android:attr/homeAsUpIndicator</item>
-
-        <!-- For PopupMenu -->
-        <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item>
-        <item name="textAppearanceLargePopupMenu">?android:attr/textAppearanceLargePopupMenu</item>
-        <item name="textAppearanceSmallPopupMenu">?android:attr/textAppearanceSmallPopupMenu</item>
-
-        <!-- General view attributes -->
-        <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
-        <item name="selectableItemBackgroundBorderless">?android:attr/selectableItemBackgroundBorderless</item>
-        <item name="borderlessButtonStyle">?android:borderlessButtonStyle</item>
-        <item name="dividerHorizontal">?android:attr/dividerHorizontal</item>
-        <item name="dividerVertical">?android:attr/dividerVertical</item>
-        <item name="editTextBackground">@drawable/abc_edit_text_material</item>
-        <item name="editTextColor">?android:attr/editTextColor</item>
-        <item name="listChoiceBackgroundIndicator">?android:attr/listChoiceBackgroundIndicator</item>
-
-        <!-- Copy the platform default styles for the AppCompat widgets -->
-        <item name="buttonStyle">?android:attr/buttonStyle</item>
-        <item name="buttonStyleSmall">?android:attr/buttonStyleSmall</item>
-        <item name="checkboxStyle">?android:attr/checkboxStyle</item>
-        <item name="checkedTextViewStyle">?android:attr/checkedTextViewStyle</item>
-        <item name="radioButtonStyle">?android:attr/radioButtonStyle</item>
-        <item name="ratingBarStyle">?android:attr/ratingBarStyle</item>
-        <item name="spinnerStyle">?android:attr/spinnerStyle</item>
-
-        <!-- Copy our color theme attributes to the framework -->
-        <item name="android:colorPrimary">?attr/colorPrimary</item>
-        <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
-        <item name="android:colorAccent">?attr/colorAccent</item>
-        <item name="android:colorControlNormal">?attr/colorControlNormal</item>
-        <item name="android:colorControlActivated">?attr/colorControlActivated</item>
-        <item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
-        <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
-    </style>
-    <style name="Base.V21.Theme.AppCompat.Light.Dialog" parent="Base.V11.Theme.AppCompat.Light.Dialog">
-        <item name="android:windowElevation">@dimen/abc_floating_window_z</item>
-    </style>
-    <style name="Base.V21.ThemeOverlay.AppCompat.Dialog" parent="Base.V11.ThemeOverlay.AppCompat.Dialog">
-        <item name="android:windowElevation">@dimen/abc_floating_window_z</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar.TabText" parent="android:Widget.Material.ActionBar.TabText">
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar.TabView" parent="android:Widget.Material.ActionBar.TabView">
-    </style>
-    <style name="Base.Widget.AppCompat.ActionButton" parent="android:Widget.Material.ActionButton">
-    </style>
-    <style name="Base.Widget.AppCompat.ActionButton.CloseMode" parent="android:Widget.Material.ActionButton.CloseMode">
-        <item name="android:minWidth">56dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="android:Widget.Material.ActionButton.Overflow">
-    </style>
-    <style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.Material.AutoCompleteTextView">
-        <item name="android:background">?attr/editTextBackground</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button" parent="android:Widget.Material.Button"/>
-    <style name="Base.Widget.AppCompat.Button.Borderless" parent="android:Widget.Material.Button.Borderless"/>
-    <style name="Base.Widget.AppCompat.Button.Borderless.Colored" parent="android:Widget.Material.Button.Borderless.Colored">
-        <item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.Small" parent="android:Widget.Material.Button.Small"/>
-    <style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget.Material.ButtonBar"/>
-    <style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.Material.CompoundButton.CheckBox"/>
-    <style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.Material.CompoundButton.RadioButton"/>
-    <style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="android:Widget.Material.DropDownItem.Spinner"/>
-    <style name="Base.Widget.AppCompat.EditText" parent="android:Widget.Material.EditText">
-        <item name="android:background">?attr/editTextBackground</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.Material.ImageButton"/>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="android:Widget.Material.Light.ActionBar.TabText">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="android:Widget.Material.Light.ActionBar.TabText">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="android:Widget.Material.Light.ActionBar.TabView">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.PopupMenu" parent="android:Widget.Material.Light.PopupMenu">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
-        <item name="android:dropDownHorizontalOffset">-4dip</item>
-        <item name="android:overlapAnchor">true</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListPopupWindow" parent="android:Widget.Material.ListPopupWindow">
-    </style>
-    <style name="Base.Widget.AppCompat.ListView" parent="android:Widget.Material.ListView"/>
-    <style name="Base.Widget.AppCompat.ListView.DropDown" parent="android:Widget.Material.ListView.DropDown"/>
-    <style name="Base.Widget.AppCompat.ListView.Menu"/>
-    <style name="Base.Widget.AppCompat.PopupMenu" parent="android:Widget.Material.PopupMenu">
-    </style>
-    <style name="Base.Widget.AppCompat.PopupMenu.Overflow">
-        <item name="android:dropDownHorizontalOffset">-4dip</item>
-        <item name="android:overlapAnchor">true</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Material.ProgressBar">
-    </style>
-    <style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Material.ProgressBar.Horizontal">
-    </style>
-    <style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.Material.RatingBar"/>
-    <style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget.Material.SeekBar"/>
-    <style name="Base.Widget.AppCompat.Spinner" parent="android:Widget.Material.Spinner"/>
-    <style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.Material.TextView.SpinnerItem"/>
-    <style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget.Material.Toolbar.Button.Navigation">
-    </style>
-    <style name="Platform.AppCompat" parent="Platform.V21.AppCompat"/>
-    <style name="Platform.AppCompat.Light" parent="Platform.V21.AppCompat.Light"/>
-    <style name="Platform.ThemeOverlay.AppCompat" parent="">
-        <!-- Copy our color theme attributes to the framework -->
-        <item name="android:colorPrimary">?attr/colorPrimary</item>
-        <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
-        <item name="android:colorAccent">?attr/colorAccent</item>
-        <item name="android:colorControlNormal">?attr/colorControlNormal</item>
-        <item name="android:colorControlActivated">?attr/colorControlActivated</item>
-        <item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
-        <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
-    </style>
-    <style name="Platform.ThemeOverlay.AppCompat.Dark"/>
-    <style name="Platform.ThemeOverlay.AppCompat.Light"/>
-    <style name="Platform.V21.AppCompat" parent="android:Theme.Material.NoActionBar">
-        <!-- Update link colors pre-v23 -->
-        <item name="android:textColorLink">?android:attr/colorAccent</item>
-        <item name="android:textColorLinkInverse">?android:attr/colorAccent</item>
-
-        <!-- Update hint colors pre-v25 -->
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
-
-        <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
-        <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
-    </style>
-    <style name="Platform.V21.AppCompat.Light" parent="android:Theme.Material.Light.NoActionBar">
-        <!-- Update link colors pre-v23 -->
-        <item name="android:textColorLink">?android:attr/colorAccent</item>
-        <item name="android:textColorLinkInverse">?android:attr/colorAccent</item>
-
-        <!-- Update hint colors pre-v25 -->
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
-
-        <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
-        <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification" parent="@android:style/TextAppearance.Material.Notification"/>
-    <style name="TextAppearance.AppCompat.Notification.Info" parent="@android:style/TextAppearance.Material.Notification.Info"/>
-    <style name="TextAppearance.AppCompat.Notification.Info.Media">
-        <item name="android:textColor">@color/secondary_text_default_material_dark</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Media">
-        <item name="android:textColor">@color/secondary_text_default_material_dark</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Time" parent="@android:style/TextAppearance.Material.Notification.Time"/>
-    <style name="TextAppearance.AppCompat.Notification.Time.Media">
-        <item name="android:textColor">@color/secondary_text_default_material_dark</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Title" parent="@android:style/TextAppearance.Material.Notification.Title"/>
-    <style name="TextAppearance.AppCompat.Notification.Title.Media">
-        <item name="android:textColor">@color/primary_text_default_material_dark</item>
-    </style>
-    <style name="Widget.AppCompat.NotificationActionContainer" parent="">
-        <item name="android:background">@drawable/notification_action_background</item>
-    </style>
-    <style name="Widget.AppCompat.NotificationActionText" parent="">
-        <item name="android:textAppearance">?android:attr/textAppearanceButton</item>
-        <item name="android:textColor">@color/secondary_text_default_material_light</item>
-        <item name="android:textSize">@dimen/notification_action_text_size</item>
-    </style>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-v22/values-v22.xml b/android/.build/intermediates/res/merged/debug/values-v22/values-v22.xml
deleted file mode 100644
index d4a514a5fb6ac2cd17eeb996c4714307b1761750..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-v22/values-v22.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Base.Theme.AppCompat" parent="Base.V22.Theme.AppCompat"/>
-    <style name="Base.Theme.AppCompat.Light" parent="Base.V22.Theme.AppCompat.Light"/>
-    <style name="Base.V22.Theme.AppCompat" parent="Base.V21.Theme.AppCompat">
-        <item name="actionModeShareDrawable">?android:attr/actionModeShareDrawable</item>
-        <!-- We use the framework provided edit text background on 22+ -->
-        <item name="editTextBackground">?android:attr/editTextBackground</item>
-    </style>
-    <style name="Base.V22.Theme.AppCompat.Light" parent="Base.V21.Theme.AppCompat.Light">
-        <item name="actionModeShareDrawable">?android:attr/actionModeShareDrawable</item>
-        <!-- We use the framework provided edit text background on 22+ -->
-        <item name="editTextBackground">?android:attr/editTextBackground</item>
-    </style>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-v23/values-v23.xml b/android/.build/intermediates/res/merged/debug/values-v23/values-v23.xml
deleted file mode 100644
index d807aaeeb4544c07784154e6af50ffcb48fcfc77..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-v23/values-v23.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="android:TextAppearance.Material.Widget.ActionBar.Menu"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="android:TextAppearance.Material.Widget.Button.Inverse"/>
-    <style name="Base.Theme.AppCompat" parent="Base.V23.Theme.AppCompat"/>
-    <style name="Base.Theme.AppCompat.Light" parent="Base.V23.Theme.AppCompat.Light"/>
-    <style name="Base.V23.Theme.AppCompat" parent="Base.V22.Theme.AppCompat">
-        <!-- We can use the platform styles on API 23+ -->
-        <item name="ratingBarStyleIndicator">?android:attr/ratingBarStyleIndicator</item>
-        <item name="ratingBarStyleSmall">?android:attr/ratingBarStyleSmall</item>
-
-        <!-- We can use the platform drawable on v23+ -->
-        <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item>
-        <!-- We can use the platform styles on v23+ -->
-        <item name="actionMenuTextColor">?android:attr/actionMenuTextColor</item>
-        <item name="actionMenuTextAppearance">?android:attr/actionMenuTextAppearance</item>
-
-        <item name="controlBackground">@drawable/abc_control_background_material</item>
-    </style>
-    <style name="Base.V23.Theme.AppCompat.Light" parent="Base.V22.Theme.AppCompat.Light">
-        <!-- We can use the platform styles on API 23+ -->
-        <item name="ratingBarStyleIndicator">?android:attr/ratingBarStyleIndicator</item>
-        <item name="ratingBarStyleSmall">?android:attr/ratingBarStyleSmall</item>
-
-        <!-- We can use the platform drawable on v23+ -->
-        <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item>
-        <!-- We can use the platform styles on v23+ -->
-        <item name="actionMenuTextColor">?android:attr/actionMenuTextColor</item>
-        <item name="actionMenuTextAppearance">?android:attr/actionMenuTextAppearance</item>
-
-        <item name="controlBackground">@drawable/abc_control_background_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.Borderless.Colored" parent="android:Widget.Material.Button.Borderless.Colored"/>
-    <style name="Base.Widget.AppCompat.Button.Colored" parent="android:Widget.Material.Button.Colored"/>
-    <style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.Material.RatingBar.Indicator"/>
-    <style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.Material.RatingBar.Small"/>
-    <style name="Base.Widget.AppCompat.Spinner.Underlined" parent="android:Widget.Material.Spinner.Underlined"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-v24/values-v24.xml b/android/.build/intermediates/res/merged/debug/values-v24/values-v24.xml
deleted file mode 100644
index b41af536526ccdb48aa2c8dfa740afe3e459f756..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-v24/values-v24.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="android:TextAppearance.Material.Widget.Button.Borderless.Colored"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button.Colored" parent="android:TextAppearance.Material.Widget.Button.Colored"/>
-    <style name="TextAppearance.AppCompat.Notification.Info.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Time.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Title.Media"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-v25/values-v25.xml b/android/.build/intermediates/res/merged/debug/values-v25/values-v25.xml
deleted file mode 100644
index 483ae0c4691a442c113f1acbfb63ab6962a5f756..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-v25/values-v25.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <style name="Platform.AppCompat" parent="Platform.V25.AppCompat"/>
-    <style name="Platform.AppCompat.Light" parent="Platform.V25.AppCompat.Light"/>
-    <style name="Platform.V25.AppCompat" parent="android:Theme.Material.NoActionBar">
-    </style>
-    <style name="Platform.V25.AppCompat.Light" parent="android:Theme.Material.Light.NoActionBar">
-    </style>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-vi/values-vi.xml b/android/.build/intermediates/res/merged/debug/values-vi/values-vi.xml
deleted file mode 100644
index 612bf2c0cb148a866cf3b35d2cfbcc906309437e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-vi/values-vi.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Điều hướng về trang chủ"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Điều hướng lên trên"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Thêm tùy chọn"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Xong"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Xem tất cả"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Chọn một ứng dụng"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"TẮT"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"BẬT"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Tìm kiếm…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Xóa truy vấn"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Tìm kiếm truy vấn"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Tìm kiếm"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Gửi truy vấn"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Tìm kiếm bằng giọng nói"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Chia sẻ với"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Chia sẻ với %s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Thu gọn"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Bật"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sẽ không hoạt động nếu bạn không bật dịch vụ của Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Bật dịch vụ của Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Cài đặt"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sẽ không chạy nếu không có dịch vụ của Google Play. Thiết bị của bạn bị thiếu dịch vụ này."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Cài đặt dịch vụ của Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Lỗi dịch vụ của Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> đang gặp sự cố với các dịch vụ của Google Play. Hãy thử lại."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sẽ không chạy nếu không có các dịch vụ của Google Play. Thiết bị của bạn không hỗ trợ các dịch vụ này."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Cập nhật"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sẽ không chạy trừ khi bạn cập nhật Dịch vụ của Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Cập nhật dịch vụ của Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> sẽ không chạy nếu không có dịch vụ của Google Play. Dịch vụ này hiện đang cập nhật."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Cần phiên bản mới của dịch vụ Google Play. Dịch vụ sẽ sớm tự động cập nhật."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Mở trên điện thoại"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Đăng nhập"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Đăng nhập bằng Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Tìm kiếm"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-w820dp-v13/values-w820dp-v13.xml b/android/.build/intermediates/res/merged/debug/values-w820dp-v13/values-w820dp-v13.xml
deleted file mode 100644
index 3eda5f55d5dd48b6d54c2e35f8679d9be1b44f5b..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-w820dp-v13/values-w820dp-v13.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <dimen name="activity_horizontal_margin">64dp</dimen>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-xlarge-v4/values-xlarge-v4.xml b/android/.build/intermediates/res/merged/debug/values-xlarge-v4/values-xlarge-v4.xml
deleted file mode 100644
index b499d2cf3729a0b92b869da97322e3cb7fc544c2..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-xlarge-v4/values-xlarge-v4.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <item name="abc_dialog_fixed_height_major" type="dimen">60%</item>
-    <item name="abc_dialog_fixed_height_minor" type="dimen">90%</item>
-    <item name="abc_dialog_fixed_width_major" type="dimen">50%</item>
-    <item name="abc_dialog_fixed_width_minor" type="dimen">70%</item>
-    <item name="abc_dialog_min_width_major" type="dimen">45%</item>
-    <item name="abc_dialog_min_width_minor" type="dimen">72%</item>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml b/android/.build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml
deleted file mode 100644
index b31e74f8e69d863869aa56f83b25d753a75d27f4..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"转到主屏幕"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s:%2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s - %2$s:%3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"转到上一层级"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"更多选项"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"完成"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"查看全部"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"选择应用"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"关闭"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"开启"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"搜索…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"清除查询"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"搜索查询"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"搜索"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"提交查询"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"语音搜索"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"分享方式"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"通过%s分享"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"收起"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"启用"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"您必须先启用 Google Play 服务,然后才能运行<ns1:g id="APP_NAME">%1$s</ns1:g>。"</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"启用 Google Play 服务"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"安装"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"您的设备没有安装 Google Play 服务,因此无法运行<ns1:g id="APP_NAME">%1$s</ns1:g>。"</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"获取 Google Play 服务"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play服务出错"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g>无法访问 Google Play 服务,请重试。"</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"您的设备不支持 Google Play 服务,因此无法运行<ns1:g id="APP_NAME">%1$s</ns1:g>。"</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"æ›´æ–°"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"您必须先更新 Google Play 服务,然后才能运行<ns1:g id="APP_NAME">%1$s</ns1:g>。"</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"更新 Google Play 服务"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"Google Play 服务当前正在更新,因此您无法运行<ns1:g id="APP_NAME">%1$s</ns1:g>。"</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"必须使用新版 Google Play 服务。该服务很快就会自行更新。"</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"在手机上打开"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"登录"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"使用 Google 帐号登录"</string>
-    <string name="fatal_error_msg">您的应用程序遇到一个致命错误导致它无法继续。</string>
-    <string name="ministro_needed_msg">此应用程序需要Ministro服务。您想安装它吗?</string>
-    <string name="ministro_not_found_msg">无法找到Ministro服务。\n应用程序无法启动。</string>
-    <string msgid="146198913615257606" name="search_menu_title">"搜索"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml b/android/.build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml
deleted file mode 100644
index 0c8a019e4d2e50c3d1ea8fe33a5ca65040409b5e..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"瀏覽主頁"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s:%2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s (%2$s):%3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"向上瀏覽"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"更多選項"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"完成"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"顯示全部"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"選擇應用程式"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"關閉"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"é–‹å•Ÿ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"搜尋…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"清除查詢"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"搜尋查詢"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"搜尋"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"提交查詢"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"語音搜尋"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"分享對象"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"與「%s」分享"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"收合"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"啟用"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"您必須啟用 Google Play 服務,方可執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」。"</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"啟用 Google Play 服務"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"安裝"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"您的裝置尚未安裝 Google Play 服務,因此無法執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」。"</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"安裝 Google Play 服務"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play 服務錯誤"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"「<ns1:g id="APP_NAME">%1$s</ns1:g>」存取 Google Play 服務時發生問題。請稍後再試一次。"</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"您的裝置不支援 Google Play 服務,因此無法執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」。"</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"æ›´æ–°"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"您必須更新「Google Play 服務」,才能執行 <ns1:g id="APP_NAME">%1$s</ns1:g>。"</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"更新 Google Play 服務"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"正在更新 Google Play 服務,更新完成後方可執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」。"</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"需要使用新版本的 Google Play 服務。更新會即將自動開始。"</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"在手機開啟"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"登入"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"透過 Google 登入"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"搜尋"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999 +"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml b/android/.build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml
deleted file mode 100644
index cb9886287d54a66cf88d7b1649746428f291697d..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"瀏覽首頁"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s:%2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s - %2$s:%3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"向上瀏覽"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"更多選項"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"完成"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"查看全部"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"選擇應用程式"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"關閉"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"é–‹å•Ÿ"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"搜尋…"</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"清除查詢"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"搜尋查詢"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"搜尋"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"提交查詢"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"語音搜尋"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"選擇分享對象"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"與「%s」分享"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"收合"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"啟用"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"您必須啟用 Google Play 服務,才能執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」。"</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"啟用 Google Play 服務"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"安裝"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"您的裝置並未安裝 Google Play 服務,因此無法執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」。"</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"取得 Google Play 服務"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Google Play 服務發生錯誤"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"「<ns1:g id="APP_NAME">%1$s</ns1:g>」無法存取 Google Play 服務,請再試一次。"</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"您的裝置不支援 Google Play 服務,因此無法執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」。"</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"æ›´æ–°"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"您必須更新 Google Play 服務,才能執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」。"</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"更新 Google Play 服務"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"執行「<ns1:g id="APP_NAME">%1$s</ns1:g>」所需的 Google Play 服務正在更新。"</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"必須使用新版 Google Play 服務。該服務稍後就會自動更新。"</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"在手機上開啟"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"登入"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"使用 Google 帳戶登入"</string>
-    <string name="fatal_error_msg">您的應用程序遇到一個致命錯誤導致它無法繼續。</string>
-    <string name="ministro_needed_msg">此應用程序需要Ministro服務。您想安裝它嗎?</string>
-    <string name="ministro_not_found_msg">無法找到Ministro服務。\n應用程序無法啟動。</string>
-    <string msgid="146198913615257606" name="search_menu_title">"搜尋"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values-zu/values-zu.xml b/android/.build/intermediates/res/merged/debug/values-zu/values-zu.xml
deleted file mode 100644
index 6b993a1839b54edfc1177fd57dcf48ed96d0c7ad..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values-zu/values-zu.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
-    <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Zulazulela ekhaya"</string>
-    <string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
-    <string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
-    <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Zulazulela phezulu"</string>
-    <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Izinketho eziningi"</string>
-    <string msgid="4076576682505996667" name="abc_action_mode_done">"Kwenziwe"</string>
-    <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Buka konke"</string>
-    <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Khetha uhlelo lokusebenza"</string>
-    <string msgid="121134116657445385" name="abc_capital_off">"VALIWE"</string>
-    <string msgid="3405795526292276155" name="abc_capital_on">"VULIWE"</string>
-    <string msgid="7723749260725869598" name="abc_search_hint">"Iyasesha..."</string>
-    <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sula inkinga"</string>
-    <string msgid="2550479030709304392" name="abc_searchview_description_query">"Umbuzo wosesho"</string>
-    <string msgid="8264924765203268293" name="abc_searchview_description_search">"Sesha"</string>
-    <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Hambisa umbuzo"</string>
-    <string msgid="893419373245838918" name="abc_searchview_description_voice">"Ukusesha ngezwi"</string>
-    <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Yabelana no-"</string>
-    <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Yabelana no-%s"</string>
-    <string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Goqa"</string>
-    <string msgid="8585111718777012708" name="common_google_play_services_enable_button">"Nika amandla"</string>
-    <string msgid="7045129128108380659" name="common_google_play_services_enable_text">"I-<ns1:g id="APP_NAME">%1$s</ns1:g> ngeke isebenze ngaphandle kokuthi unike amandla amasevisi we-Google Play."</string>
-    <string msgid="3147157405986503375" name="common_google_play_services_enable_title">"Nika amandla amasevisi we-Google Play"</string>
-    <string msgid="9115728400623041681" name="common_google_play_services_install_button">"Faka"</string>
-    <string msgid="8179894293032530091" name="common_google_play_services_install_text">"I-<ns1:g id="APP_NAME">%1$s</ns1:g> ngeke ize iqalise ngaphandle kwamasevisi we-Google Play, angekho kusukela kudivayisi yakho."</string>
-    <string msgid="7442193194585196676" name="common_google_play_services_install_title">"Thola amasevisi we-Google Play"</string>
-    <string msgid="180394615667698242" name="common_google_play_services_notification_ticker">"Iphutha lamasevisi we-Google Play"</string>
-    <string msgid="2518680582564677258" name="common_google_play_services_unknown_issue">"<ns1:g id="APP_NAME">%1$s</ns1:g> inenkinga ngamasevisi e-Google Play. Sicela uzame futhi."</string>
-    <string msgid="5501187292256987189" name="common_google_play_services_unsupported_text">"<ns1:g id="APP_NAME">%1$s</ns1:g> ngeke isebenze ngaphandle kwamasevisi e-Google Play, angasekelwa idivayisi yakho."</string>
-    <string msgid="8172070149091615356" name="common_google_play_services_update_button">"Isibuyekezo"</string>
-    <string msgid="7773943415006962566" name="common_google_play_services_update_text">"I-<ns1:g id="APP_NAME">%1$s</ns1:g> ngeke ize iqalise ngaphandle kokuthi ubuyekeze i-Google Play."</string>
-    <string msgid="8706675115216073244" name="common_google_play_services_update_title">"Buyekeza amasevisi we-Google Play"</string>
-    <string msgid="7894275749778928941" name="common_google_play_services_updating_text">"I-<ns1:g id="APP_NAME">%1$s</ns1:g> ngeke ize iqalise ngaphandle kwamasevisi we-Google Play, okwamanje abuyekezwayo."</string>
-    <string msgid="2804989272736383918" name="common_google_play_services_wear_update_text">"Kudingeka inguqulo entsha yamasevisi we-Google Play. Izozibuyekeza ngokwayo maduze."</string>
-    <string msgid="5201977337835724196" name="common_open_on_phone">"Vula kufoni"</string>
-    <string msgid="3441753203274453993" name="common_signin_button_text">"Ngena ngemvume"</string>
-    <string msgid="669893613918351210" name="common_signin_button_text_long">"Ngena ngemvume nge-Google"</string>
-    <string msgid="146198913615257606" name="search_menu_title">"Sesha"</string>
-    <string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/merged/debug/values/values.xml b/android/.build/intermediates/res/merged/debug/values/values.xml
deleted file mode 100644
index 0ac11a9eb70c612639096caaae5a78253681ea3a..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/res/merged/debug/values/values.xml
+++ /dev/null
@@ -1,1812 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources xmlns:ns1="http://schemas.android.com/tools" xmlns:ns2="urn:oasis:names:tc:xliff:document:1.2">
-    <array name="bundled_in_assets">
-        
-    </array>
-    <array name="bundled_in_lib">
-        
-    </array>
-    <array name="bundled_libs">
-        
-    </array>
-    <array name="qt_libs">
-         
-     </array>
-    <array name="qt_sources">
-        <item>https://download.qt.io/ministro/android/qt5/qt-5.7</item>
-    </array>
-    <attr format="reference" name="drawerArrowStyle"/>
-    <attr format="dimension" name="height"/>
-    <attr format="boolean" name="isLightTheme"/>
-    <attr format="string" name="title"/>
-    <bool name="abc_action_bar_embed_tabs">true</bool>
-    <bool name="abc_allow_stacked_button_bar">true</bool>
-    <bool name="abc_config_actionMenuItemAllCaps">true</bool>
-    <bool name="abc_config_closeDialogWhenTouchOutside">true</bool>
-    <bool name="abc_config_showMenuShortcutsWhenKeyboardPresent">false</bool>
-    <color name="abc_input_method_navigation_guard">@android:color/black</color>
-    <color name="abc_search_url_text_normal">#7fa87f</color>
-    <color name="abc_search_url_text_pressed">@android:color/black</color>
-    <color name="abc_search_url_text_selected">@android:color/black</color>
-    <color name="accent_material_dark">@color/material_deep_teal_200</color>
-    <color name="accent_material_light">@color/material_deep_teal_500</color>
-    <color name="background_floating_material_dark">@color/material_grey_800</color>
-    <color name="background_floating_material_light">@android:color/white</color>
-    <color name="background_material_dark">@color/material_grey_850</color>
-    <color name="background_material_light">@color/material_grey_50</color>
-    <color name="bright_foreground_disabled_material_dark">#80ffffff</color>
-    <color name="bright_foreground_disabled_material_light">#80000000</color>
-    <color name="bright_foreground_inverse_material_dark">@color/bright_foreground_material_light</color>
-    <color name="bright_foreground_inverse_material_light">@color/bright_foreground_material_dark</color>
-    <color name="bright_foreground_material_dark">@android:color/white</color>
-    <color name="bright_foreground_material_light">@android:color/black</color>
-    <color name="button_material_dark">#ff5a595b</color>
-    <color name="button_material_light">#ffd6d7d7</color>
-    <color name="common_google_signin_btn_text_dark_default">@android:color/white</color>
-    <color name="common_google_signin_btn_text_dark_disabled">#1F000000</color>
-    <color name="common_google_signin_btn_text_dark_focused">@android:color/black</color>
-    <color name="common_google_signin_btn_text_dark_pressed">@android:color/white</color>
-    <color name="common_google_signin_btn_text_light_default">#90000000</color>
-    <color name="common_google_signin_btn_text_light_disabled">#1F000000</color>
-    <color name="common_google_signin_btn_text_light_focused">#90000000</color>
-    <color name="common_google_signin_btn_text_light_pressed">#DE000000</color>
-    <color name="dim_foreground_disabled_material_dark">#80bebebe</color>
-    <color name="dim_foreground_disabled_material_light">#80323232</color>
-    <color name="dim_foreground_material_dark">#ffbebebe</color>
-    <color name="dim_foreground_material_light">#ff323232</color>
-    <color name="foreground_material_dark">@android:color/white</color>
-    <color name="foreground_material_light">@android:color/black</color>
-    <color name="highlighted_text_material_dark">#6680cbc4</color>
-    <color name="highlighted_text_material_light">#66009688</color>
-    <color name="material_blue_grey_800">#ff37474f</color>
-    <color name="material_blue_grey_900">#ff263238</color>
-    <color name="material_blue_grey_950">#ff21272b</color>
-    <color name="material_deep_teal_200">#ff80cbc4</color>
-    <color name="material_deep_teal_500">#ff009688</color>
-    <color name="material_grey_100">#fff5f5f5</color>
-    <color name="material_grey_300">#ffe0e0e0</color>
-    <color name="material_grey_50">#fffafafa</color>
-    <color name="material_grey_600">#ff757575</color>
-    <color name="material_grey_800">#ff424242</color>
-    <color name="material_grey_850">#ff303030</color>
-    <color name="material_grey_900">#ff212121</color>
-    <color name="notification_action_color_filter">#ffffffff</color>
-    <color name="notification_icon_bg_color">#ff9e9e9e</color>
-    <color name="notification_material_background_media_default_color">#ff424242</color>
-    <color name="primary_dark_material_dark">@android:color/black</color>
-    <color name="primary_dark_material_light">@color/material_grey_600</color>
-    <color name="primary_material_dark">@color/material_grey_900</color>
-    <color name="primary_material_light">@color/material_grey_100</color>
-    <color name="primary_text_default_material_dark">#ffffffff</color>
-    <color name="primary_text_default_material_light">#de000000</color>
-    <color name="primary_text_disabled_material_dark">#4Dffffff</color>
-    <color name="primary_text_disabled_material_light">#39000000</color>
-    <color name="ripple_material_dark">#33ffffff</color>
-    <color name="ripple_material_light">#1f000000</color>
-    <color name="secondary_text_default_material_dark">#b3ffffff</color>
-    <color name="secondary_text_default_material_light">#8a000000</color>
-    <color name="secondary_text_disabled_material_dark">#36ffffff</color>
-    <color name="secondary_text_disabled_material_light">#24000000</color>
-    <color name="switch_thumb_disabled_material_dark">#ff616161</color>
-    <color name="switch_thumb_disabled_material_light">#ffbdbdbd</color>
-    <color name="switch_thumb_normal_material_dark">#ffbdbdbd</color>
-    <color name="switch_thumb_normal_material_light">#fff1f1f1</color>
-    <declare-styleable name="ActionBar"><attr name="navigationMode">
-            
-            <enum name="normal" value="0"/>
-            
-            <enum name="listMode" value="1"/>
-            
-            <enum name="tabMode" value="2"/>
-        </attr><attr name="displayOptions">
-            <flag name="none" value="0"/>
-            <flag name="useLogo" value="0x1"/>
-            <flag name="showHome" value="0x2"/>
-            <flag name="homeAsUp" value="0x4"/>
-            <flag name="showTitle" value="0x8"/>
-            <flag name="showCustom" value="0x10"/>
-            <flag name="disableHome" value="0x20"/>
-        </attr><attr name="title"/><attr format="string" name="subtitle"/><attr format="reference" name="titleTextStyle"/><attr format="reference" name="subtitleTextStyle"/><attr format="reference" name="icon"/><attr format="reference" name="logo"/><attr format="reference" name="divider"/><attr format="reference" name="background"/><attr format="reference|color" name="backgroundStacked"/><attr format="reference|color" name="backgroundSplit"/><attr format="reference" name="customNavigationLayout"/><attr name="height"/><attr format="reference" name="homeLayout"/><attr format="reference" name="progressBarStyle"/><attr format="reference" name="indeterminateProgressStyle"/><attr format="dimension" name="progressBarPadding"/><attr name="homeAsUpIndicator"/><attr format="dimension" name="itemPadding"/><attr format="boolean" name="hideOnContentScroll"/><attr format="dimension" name="contentInsetStart"/><attr format="dimension" name="contentInsetEnd"/><attr format="dimension" name="contentInsetLeft"/><attr format="dimension" name="contentInsetRight"/><attr format="dimension" name="contentInsetStartWithNavigation"/><attr format="dimension" name="contentInsetEndWithActions"/><attr format="dimension" name="elevation"/><attr format="reference" name="popupTheme"/></declare-styleable>
-    <declare-styleable name="ActionBarLayout"><attr name="android:layout_gravity"/></declare-styleable>
-    <declare-styleable name="ActionMenuItemView"><attr name="android:minWidth"/></declare-styleable>
-    <declare-styleable name="ActionMenuView"/>
-    <declare-styleable name="ActionMode"><attr name="titleTextStyle"/><attr name="subtitleTextStyle"/><attr name="background"/><attr name="backgroundSplit"/><attr name="height"/><attr format="reference" name="closeItemLayout"/></declare-styleable>
-    <declare-styleable name="ActivityChooserView"><attr format="string" name="initialActivityCount"/><attr format="reference" name="expandActivityOverflowButtonDrawable"/></declare-styleable>
-    <declare-styleable name="AlertDialog"><attr name="android:layout"/><attr format="reference" name="buttonPanelSideLayout"/><attr format="reference" name="listLayout"/><attr format="reference" name="multiChoiceItemLayout"/><attr format="reference" name="singleChoiceItemLayout"/><attr format="reference" name="listItemLayout"/><attr format="boolean" name="showTitle"/></declare-styleable>
-    <declare-styleable name="AppCompatImageView"><attr name="android:src"/><attr format="reference" name="srcCompat"/></declare-styleable>
-    <declare-styleable name="AppCompatSeekBar"><attr name="android:thumb"/><attr format="reference" name="tickMark"/><attr format="color" name="tickMarkTint"/><attr name="tickMarkTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-            
-            <enum name="add" value="16"/>
-        </attr></declare-styleable>
-    <declare-styleable name="AppCompatTextHelper"><attr name="android:drawableLeft"/><attr name="android:drawableTop"/><attr name="android:drawableRight"/><attr name="android:drawableBottom"/><attr name="android:drawableStart"/><attr name="android:drawableEnd"/><attr name="android:textAppearance"/></declare-styleable>
-    <declare-styleable name="AppCompatTextView"><attr format="reference|boolean" name="textAllCaps"/><attr name="android:textAppearance"/></declare-styleable>
-    <declare-styleable name="AppCompatTheme"><attr format="boolean" name="windowActionBar"/><attr format="boolean" name="windowNoTitle"/><attr format="boolean" name="windowActionBarOverlay"/><attr format="boolean" name="windowActionModeOverlay"/><attr format="dimension|fraction" name="windowFixedWidthMajor"/><attr format="dimension|fraction" name="windowFixedHeightMinor"/><attr format="dimension|fraction" name="windowFixedWidthMinor"/><attr format="dimension|fraction" name="windowFixedHeightMajor"/><attr format="dimension|fraction" name="windowMinWidthMajor"/><attr format="dimension|fraction" name="windowMinWidthMinor"/><attr name="android:windowIsFloating"/><attr name="android:windowAnimationStyle"/><attr format="reference" name="actionBarTabStyle"/><attr format="reference" name="actionBarTabBarStyle"/><attr format="reference" name="actionBarTabTextStyle"/><attr format="reference" name="actionOverflowButtonStyle"/><attr format="reference" name="actionOverflowMenuStyle"/><attr format="reference" name="actionBarPopupTheme"/><attr format="reference" name="actionBarStyle"/><attr format="reference" name="actionBarSplitStyle"/><attr format="reference" name="actionBarTheme"/><attr format="reference" name="actionBarWidgetTheme"/><attr format="dimension" name="actionBarSize">
-            <enum name="wrap_content" value="0"/>
-        </attr><attr format="reference" name="actionBarDivider"/><attr format="reference" name="actionBarItemBackground"/><attr format="reference" name="actionMenuTextAppearance"/><attr format="color|reference" name="actionMenuTextColor"/><attr format="reference" name="actionModeStyle"/><attr format="reference" name="actionModeCloseButtonStyle"/><attr format="reference" name="actionModeBackground"/><attr format="reference" name="actionModeSplitBackground"/><attr format="reference" name="actionModeCloseDrawable"/><attr format="reference" name="actionModeCutDrawable"/><attr format="reference" name="actionModeCopyDrawable"/><attr format="reference" name="actionModePasteDrawable"/><attr format="reference" name="actionModeSelectAllDrawable"/><attr format="reference" name="actionModeShareDrawable"/><attr format="reference" name="actionModeFindDrawable"/><attr format="reference" name="actionModeWebSearchDrawable"/><attr format="reference" name="actionModePopupWindowStyle"/><attr format="reference" name="textAppearanceLargePopupMenu"/><attr format="reference" name="textAppearanceSmallPopupMenu"/><attr format="reference" name="textAppearancePopupMenuHeader"/><attr format="reference" name="dialogTheme"/><attr format="dimension" name="dialogPreferredPadding"/><attr format="reference" name="listDividerAlertDialog"/><attr format="reference" name="actionDropDownStyle"/><attr format="dimension" name="dropdownListPreferredItemHeight"/><attr format="reference" name="spinnerDropDownItemStyle"/><attr format="reference" name="homeAsUpIndicator"/><attr format="reference" name="actionButtonStyle"/><attr format="reference" name="buttonBarStyle"/><attr format="reference" name="buttonBarButtonStyle"/><attr format="reference" name="selectableItemBackground"/><attr format="reference" name="selectableItemBackgroundBorderless"/><attr format="reference" name="borderlessButtonStyle"/><attr format="reference" name="dividerVertical"/><attr format="reference" name="dividerHorizontal"/><attr format="reference" name="activityChooserViewStyle"/><attr format="reference" name="toolbarStyle"/><attr format="reference" name="toolbarNavigationButtonStyle"/><attr format="reference" name="popupMenuStyle"/><attr format="reference" name="popupWindowStyle"/><attr format="reference|color" name="editTextColor"/><attr format="reference" name="editTextBackground"/><attr format="reference" name="imageButtonStyle"/><attr format="reference" name="textAppearanceSearchResultTitle"/><attr format="reference" name="textAppearanceSearchResultSubtitle"/><attr format="reference|color" name="textColorSearchUrl"/><attr format="reference" name="searchViewStyle"/><attr format="dimension" name="listPreferredItemHeight"/><attr format="dimension" name="listPreferredItemHeightSmall"/><attr format="dimension" name="listPreferredItemHeightLarge"/><attr format="dimension" name="listPreferredItemPaddingLeft"/><attr format="dimension" name="listPreferredItemPaddingRight"/><attr format="reference" name="dropDownListViewStyle"/><attr format="reference" name="listPopupWindowStyle"/><attr format="reference" name="textAppearanceListItem"/><attr format="reference" name="textAppearanceListItemSmall"/><attr format="reference" name="panelBackground"/><attr format="dimension" name="panelMenuListWidth"/><attr format="reference" name="panelMenuListTheme"/><attr format="reference" name="listChoiceBackgroundIndicator"/><attr format="color" name="colorPrimary"/><attr format="color" name="colorPrimaryDark"/><attr format="color" name="colorAccent"/><attr format="color" name="colorControlNormal"/><attr format="color" name="colorControlActivated"/><attr format="color" name="colorControlHighlight"/><attr format="color" name="colorButtonNormal"/><attr format="color" name="colorSwitchThumbNormal"/><attr format="reference" name="controlBackground"/><attr format="color" name="colorBackgroundFloating"/><attr format="reference" name="alertDialogStyle"/><attr format="reference" name="alertDialogButtonGroupStyle"/><attr format="boolean" name="alertDialogCenterButtons"/><attr format="reference" name="alertDialogTheme"/><attr format="reference|color" name="textColorAlertDialogListItem"/><attr format="reference" name="buttonBarPositiveButtonStyle"/><attr format="reference" name="buttonBarNegativeButtonStyle"/><attr format="reference" name="buttonBarNeutralButtonStyle"/><attr format="reference" name="autoCompleteTextViewStyle"/><attr format="reference" name="buttonStyle"/><attr format="reference" name="buttonStyleSmall"/><attr format="reference" name="checkboxStyle"/><attr format="reference" name="checkedTextViewStyle"/><attr format="reference" name="editTextStyle"/><attr format="reference" name="radioButtonStyle"/><attr format="reference" name="ratingBarStyle"/><attr format="reference" name="ratingBarStyleIndicator"/><attr format="reference" name="ratingBarStyleSmall"/><attr format="reference" name="seekBarStyle"/><attr format="reference" name="spinnerStyle"/><attr format="reference" name="switchStyle"/><attr format="reference" name="listMenuViewStyle"/></declare-styleable>
-    <declare-styleable name="ButtonBarLayout"><attr format="boolean" name="allowStacking"/></declare-styleable>
-    <declare-styleable name="ColorStateListItem"><attr name="android:color"/><attr format="float" name="alpha"/><attr name="android:alpha"/></declare-styleable>
-    <declare-styleable name="CompoundButton"><attr name="android:button"/><attr format="color" name="buttonTint"/><attr name="buttonTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-        </attr></declare-styleable>
-    <declare-styleable name="DrawerArrowToggle"><attr format="color" name="color"/><attr format="boolean" name="spinBars"/><attr format="dimension" name="drawableSize"/><attr format="dimension" name="gapBetweenBars"/><attr format="dimension" name="arrowHeadLength"/><attr format="dimension" name="arrowShaftLength"/><attr format="dimension" name="barLength"/><attr format="dimension" name="thickness"/></declare-styleable>
-    <declare-styleable name="LinearLayoutCompat"><attr name="android:orientation"/><attr name="android:gravity"/><attr name="android:baselineAligned"/><attr name="android:baselineAlignedChildIndex"/><attr name="android:weightSum"/><attr format="boolean" name="measureWithLargestChild"/><attr name="divider"/><attr name="showDividers">
-            <flag name="none" value="0"/>
-            <flag name="beginning" value="1"/>
-            <flag name="middle" value="2"/>
-            <flag name="end" value="4"/>
-        </attr><attr format="dimension" name="dividerPadding"/></declare-styleable>
-    <declare-styleable name="LinearLayoutCompat_Layout"><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_weight"/><attr name="android:layout_gravity"/></declare-styleable>
-    <declare-styleable name="ListPopupWindow"><attr name="android:dropDownVerticalOffset"/><attr name="android:dropDownHorizontalOffset"/></declare-styleable>
-    <declare-styleable name="LoadingImageView"><attr name="imageAspectRatioAdjust">
-<enum name="none" value="0"/>
-
-<enum name="adjust_width" value="1"/>
-
-<enum name="adjust_height" value="2"/>
-
-</attr><attr format="float" name="imageAspectRatio"/><attr format="boolean" name="circleCrop"/></declare-styleable>
-    <declare-styleable name="MenuGroup"><attr name="android:id"/><attr name="android:menuCategory"/><attr name="android:orderInCategory"/><attr name="android:checkableBehavior"/><attr name="android:visible"/><attr name="android:enabled"/></declare-styleable>
-    <declare-styleable name="MenuItem"><attr name="android:id"/><attr name="android:menuCategory"/><attr name="android:orderInCategory"/><attr name="android:title"/><attr name="android:titleCondensed"/><attr name="android:icon"/><attr name="android:alphabeticShortcut"/><attr name="android:numericShortcut"/><attr name="android:checkable"/><attr name="android:checked"/><attr name="android:visible"/><attr name="android:enabled"/><attr name="android:onClick"/><attr name="showAsAction">
-            
-            <flag name="never" value="0"/>
-            
-            <flag name="ifRoom" value="1"/>
-            
-            <flag name="always" value="2"/>
-            
-            <flag name="withText" value="4"/>
-            
-            <flag name="collapseActionView" value="8"/>
-        </attr><attr format="reference" name="actionLayout"/><attr format="string" name="actionViewClass"/><attr format="string" name="actionProviderClass"/></declare-styleable>
-    <declare-styleable name="MenuView"><attr name="android:itemTextAppearance"/><attr name="android:horizontalDivider"/><attr name="android:verticalDivider"/><attr name="android:headerBackground"/><attr name="android:itemBackground"/><attr name="android:windowAnimationStyle"/><attr name="android:itemIconDisabledAlpha"/><attr format="boolean" name="preserveIconSpacing"/><attr format="reference" name="subMenuArrow"/></declare-styleable>
-    <declare-styleable name="PopupWindow"><attr format="boolean" name="overlapAnchor"/><attr name="android:popupBackground"/><attr name="android:popupAnimationStyle"/></declare-styleable>
-    <declare-styleable name="PopupWindowBackgroundState"><attr format="boolean" name="state_above_anchor"/></declare-styleable>
-    <declare-styleable name="RecycleListView"><attr format="dimension" name="paddingBottomNoButtons"/><attr format="dimension" name="paddingTopNoTitle"/></declare-styleable>
-    <declare-styleable name="SearchView"><attr format="reference" name="layout"/><attr format="boolean" name="iconifiedByDefault"/><attr name="android:maxWidth"/><attr format="string" name="queryHint"/><attr format="string" name="defaultQueryHint"/><attr name="android:imeOptions"/><attr name="android:inputType"/><attr format="reference" name="closeIcon"/><attr format="reference" name="goIcon"/><attr format="reference" name="searchIcon"/><attr format="reference" name="searchHintIcon"/><attr format="reference" name="voiceIcon"/><attr format="reference" name="commitIcon"/><attr format="reference" name="suggestionRowLayout"/><attr format="reference" name="queryBackground"/><attr format="reference" name="submitBackground"/><attr name="android:focusable"/></declare-styleable>
-    <declare-styleable name="SignInButton"><attr format="reference" name="buttonSize">
-<enum name="standard" value="0"/>
-
-<enum name="wide" value="1"/>
-
-<enum name="icon_only" value="2"/>
-
-</attr><attr format="reference" name="colorScheme">
-<enum name="dark" value="0"/>
-
-<enum name="light" value="1"/>
-
-<enum name="auto" value="2"/>
-
-</attr><attr format="reference|string" name="scopeUris"/></declare-styleable>
-    <declare-styleable name="Spinner"><attr name="android:prompt"/><attr name="popupTheme"/><attr name="android:popupBackground"/><attr name="android:dropDownWidth"/><attr name="android:entries"/></declare-styleable>
-    <declare-styleable name="SwitchCompat"><attr name="android:thumb"/><attr format="color" name="thumbTint"/><attr name="thumbTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-            
-            <enum name="add" value="16"/>
-        </attr><attr format="reference" name="track"/><attr format="color" name="trackTint"/><attr name="trackTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-            
-            <enum name="add" value="16"/>
-        </attr><attr name="android:textOn"/><attr name="android:textOff"/><attr format="dimension" name="thumbTextPadding"/><attr format="reference" name="switchTextAppearance"/><attr format="dimension" name="switchMinWidth"/><attr format="dimension" name="switchPadding"/><attr format="boolean" name="splitTrack"/><attr format="boolean" name="showText"/></declare-styleable>
-    <declare-styleable name="TextAppearance"><attr name="android:textSize"/><attr name="android:textColor"/><attr name="android:textColorHint"/><attr name="android:textStyle"/><attr name="android:typeface"/><attr name="textAllCaps"/><attr name="android:shadowColor"/><attr name="android:shadowDy"/><attr name="android:shadowDx"/><attr name="android:shadowRadius"/></declare-styleable>
-    <declare-styleable name="Toolbar"><attr format="reference" name="titleTextAppearance"/><attr format="reference" name="subtitleTextAppearance"/><attr name="title"/><attr name="subtitle"/><attr name="android:gravity"/><attr format="dimension" name="titleMargin"/><attr format="dimension" name="titleMarginStart"/><attr format="dimension" name="titleMarginEnd"/><attr format="dimension" name="titleMarginTop"/><attr format="dimension" name="titleMarginBottom"/><attr format="dimension" name="titleMargins"/><attr name="contentInsetStart"/><attr name="contentInsetEnd"/><attr name="contentInsetLeft"/><attr name="contentInsetRight"/><attr name="contentInsetStartWithNavigation"/><attr name="contentInsetEndWithActions"/><attr format="dimension" name="maxButtonHeight"/><attr name="buttonGravity">
-            
-            <flag name="top" value="0x30"/>
-            
-            <flag name="bottom" value="0x50"/>
-        </attr><attr format="reference" name="collapseIcon"/><attr format="string" name="collapseContentDescription"/><attr name="popupTheme"/><attr format="reference" name="navigationIcon"/><attr format="string" name="navigationContentDescription"/><attr name="logo"/><attr format="string" name="logoDescription"/><attr format="color" name="titleTextColor"/><attr format="color" name="subtitleTextColor"/><attr name="android:minHeight"/></declare-styleable>
-    <declare-styleable name="View"><attr format="dimension" name="paddingStart"/><attr format="dimension" name="paddingEnd"/><attr name="android:focusable"/><attr format="reference" name="theme"/><attr name="android:theme"/></declare-styleable>
-    <declare-styleable name="ViewBackgroundHelper"><attr name="android:background"/><attr format="color" name="backgroundTint"/><attr name="backgroundTintMode">
-            
-            <enum name="src_over" value="3"/>
-            
-            <enum name="src_in" value="5"/>
-            
-            <enum name="src_atop" value="9"/>
-            
-            <enum name="multiply" value="14"/>
-            
-            <enum name="screen" value="15"/>
-        </attr></declare-styleable>
-    <declare-styleable name="ViewStubCompat"><attr name="android:layout"/><attr name="android:inflatedId"/><attr name="android:id"/></declare-styleable>
-    <dimen name="abc_action_bar_content_inset_material">16dp</dimen>
-    <dimen name="abc_action_bar_content_inset_with_nav">72dp</dimen>
-    <dimen name="abc_action_bar_default_height_material">56dp</dimen>
-    <dimen name="abc_action_bar_default_padding_end_material">0dp</dimen>
-    <dimen name="abc_action_bar_default_padding_start_material">0dp</dimen>
-    <dimen name="abc_action_bar_elevation_material">4dp</dimen>
-    <dimen name="abc_action_bar_icon_vertical_padding_material">16dp</dimen>
-    <dimen name="abc_action_bar_overflow_padding_end_material">10dp</dimen>
-    <dimen name="abc_action_bar_overflow_padding_start_material">6dp</dimen>
-    <dimen name="abc_action_bar_progress_bar_size">40dp</dimen>
-    <dimen name="abc_action_bar_stacked_max_height">48dp</dimen>
-    <dimen name="abc_action_bar_stacked_tab_max_width">180dp</dimen>
-    <dimen name="abc_action_bar_subtitle_bottom_margin_material">5dp</dimen>
-    <dimen name="abc_action_bar_subtitle_top_margin_material">-3dp</dimen>
-    <dimen name="abc_action_button_min_height_material">48dp</dimen>
-    <dimen name="abc_action_button_min_width_material">48dp</dimen>
-    <dimen name="abc_action_button_min_width_overflow_material">36dp</dimen>
-    <dimen name="abc_alert_dialog_button_bar_height">48dp</dimen>
-    <dimen name="abc_button_inset_horizontal_material">@dimen/abc_control_inset_material</dimen>
-    <dimen name="abc_button_inset_vertical_material">6dp</dimen>
-    <dimen name="abc_button_padding_horizontal_material">8dp</dimen>
-    <dimen name="abc_button_padding_vertical_material">@dimen/abc_control_padding_material</dimen>
-    <dimen name="abc_cascading_menus_min_smallest_width">720dp</dimen>
-    <dimen name="abc_config_prefDialogWidth">320dp</dimen>
-    <dimen name="abc_control_corner_material">2dp</dimen>
-    <dimen name="abc_control_inset_material">4dp</dimen>
-    <dimen name="abc_control_padding_material">4dp</dimen>
-    <item name="abc_dialog_fixed_height_major" type="dimen">80%</item>
-    <item name="abc_dialog_fixed_height_minor" type="dimen">100%</item>
-    <item name="abc_dialog_fixed_width_major" type="dimen">320dp</item>
-    <item name="abc_dialog_fixed_width_minor" type="dimen">320dp</item>
-    <dimen name="abc_dialog_list_padding_bottom_no_buttons">8dp</dimen>
-    <dimen name="abc_dialog_list_padding_top_no_title">8dp</dimen>
-    <item name="abc_dialog_min_width_major" type="dimen">65%</item>
-    <item name="abc_dialog_min_width_minor" type="dimen">95%</item>
-    <dimen name="abc_dialog_padding_material">24dp</dimen>
-    <dimen name="abc_dialog_padding_top_material">18dp</dimen>
-    <dimen name="abc_dialog_title_divider_material">8dp</dimen>
-    <item format="float" name="abc_disabled_alpha_material_dark" type="dimen">0.30</item>
-    <item format="float" name="abc_disabled_alpha_material_light" type="dimen">0.26</item>
-    <dimen name="abc_dropdownitem_icon_width">32dip</dimen>
-    <dimen name="abc_dropdownitem_text_padding_left">8dip</dimen>
-    <dimen name="abc_dropdownitem_text_padding_right">8dip</dimen>
-    <dimen name="abc_edit_text_inset_bottom_material">7dp</dimen>
-    <dimen name="abc_edit_text_inset_horizontal_material">4dp</dimen>
-    <dimen name="abc_edit_text_inset_top_material">10dp</dimen>
-    <dimen name="abc_floating_window_z">16dp</dimen>
-    <dimen name="abc_list_item_padding_horizontal_material">@dimen/abc_action_bar_content_inset_material</dimen>
-    <dimen name="abc_panel_menu_list_width">296dp</dimen>
-    <dimen name="abc_progress_bar_height_material">4dp</dimen>
-    <dimen name="abc_search_view_preferred_height">48dip</dimen>
-    <dimen name="abc_search_view_preferred_width">320dip</dimen>
-    <dimen name="abc_seekbar_track_background_height_material">2dp</dimen>
-    <dimen name="abc_seekbar_track_progress_height_material">2dp</dimen>
-    <dimen name="abc_select_dialog_padding_start_material">20dp</dimen>
-    <dimen name="abc_switch_padding">3dp</dimen>
-    <dimen name="abc_text_size_body_1_material">14sp</dimen>
-    <dimen name="abc_text_size_body_2_material">14sp</dimen>
-    <dimen name="abc_text_size_button_material">14sp</dimen>
-    <dimen name="abc_text_size_caption_material">12sp</dimen>
-    <dimen name="abc_text_size_display_1_material">34sp</dimen>
-    <dimen name="abc_text_size_display_2_material">45sp</dimen>
-    <dimen name="abc_text_size_display_3_material">56sp</dimen>
-    <dimen name="abc_text_size_display_4_material">112sp</dimen>
-    <dimen name="abc_text_size_headline_material">24sp</dimen>
-    <dimen name="abc_text_size_large_material">22sp</dimen>
-    <dimen name="abc_text_size_medium_material">18sp</dimen>
-    <dimen name="abc_text_size_menu_header_material">14sp</dimen>
-    <dimen name="abc_text_size_menu_material">16sp</dimen>
-    <dimen name="abc_text_size_small_material">14sp</dimen>
-    <dimen name="abc_text_size_subhead_material">16sp</dimen>
-    <dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen>
-    <dimen name="abc_text_size_title_material">20sp</dimen>
-    <dimen name="abc_text_size_title_material_toolbar">20dp</dimen>
-    <dimen name="activity_horizontal_margin">16dp</dimen>
-    <dimen name="activity_vertical_margin">16dp</dimen>
-    <item format="float" name="disabled_alpha_material_dark" type="dimen">0.30</item>
-    <item format="float" name="disabled_alpha_material_light" type="dimen">0.26</item>
-    <item format="float" name="highlight_alpha_material_colored" type="dimen">0.26</item>
-    <item format="float" name="highlight_alpha_material_dark" type="dimen">0.20</item>
-    <item format="float" name="highlight_alpha_material_light" type="dimen">0.12</item>
-    <item format="float" name="hint_alpha_material_dark" type="dimen">0.50</item>
-    <item format="float" name="hint_alpha_material_light" type="dimen">0.38</item>
-    <item format="float" name="hint_pressed_alpha_material_dark" type="dimen">0.70</item>
-    <item format="float" name="hint_pressed_alpha_material_light" type="dimen">0.54</item>
-    <dimen name="notification_action_icon_size">32dp</dimen>
-    <dimen name="notification_action_text_size">13sp</dimen>
-    <dimen name="notification_big_circle_margin">12dp</dimen>
-    <dimen name="notification_content_margin_start">8dp</dimen>
-    <dimen name="notification_large_icon_height">64dp</dimen>
-    <dimen name="notification_large_icon_width">64dp</dimen>
-    <dimen name="notification_main_column_padding_top">10dp</dimen>
-    <dimen name="notification_media_narrow_margin">@dimen/notification_content_margin_start</dimen>
-    <dimen name="notification_right_icon_size">16dp</dimen>
-    <dimen name="notification_right_side_padding_top">2dp</dimen>
-    <dimen name="notification_small_icon_background_padding">3dp</dimen>
-    <dimen name="notification_small_icon_size_as_large">24dp</dimen>
-    <dimen name="notification_subtext_size">13sp</dimen>
-    <dimen name="notification_top_pad">10dp</dimen>
-    <dimen name="notification_top_pad_large_text">5dp</dimen>
-    <drawable name="notification_template_icon_bg">#3333B5E5</drawable>
-    <drawable name="notification_template_icon_low_bg">#0cffffff</drawable>
-    <item name="action_bar_activity_content" type="id"/>
-    <item name="action_bar_spinner" type="id"/>
-    <item name="action_menu_divider" type="id"/>
-    <item name="action_menu_presenter" type="id"/>
-    <item name="crash_reporting_present" type="id"/>
-    <item name="home" type="id"/>
-    <item name="progress_circular" type="id"/>
-    <item name="progress_horizontal" type="id"/>
-    <item name="split_action_bar" type="id"/>
-    <item name="up" type="id"/>
-    <integer name="abc_config_activityDefaultDur">220</integer>
-    <integer name="abc_config_activityShortDur">150</integer>
-    <integer name="cancel_button_image_alpha">127</integer>
-    <integer name="google_play_services_version">10298000</integer>
-    <integer name="status_bar_notification_info_maxnum">999</integer>
-    <string name="abc_action_bar_home_description">Navigate home</string>
-    <string name="abc_action_bar_home_description_format">%1$s, %2$s</string>
-    <string name="abc_action_bar_home_subtitle_description_format">%1$s, %2$s, %3$s</string>
-    <string name="abc_action_bar_up_description">Navigate up</string>
-    <string name="abc_action_menu_overflow_description">More options</string>
-    <string name="abc_action_mode_done">Done</string>
-    <string name="abc_activity_chooser_view_see_all">See all</string>
-    <string name="abc_activitychooserview_choose_application">Choose an app</string>
-    <string name="abc_capital_off">OFF</string>
-    <string name="abc_capital_on">ON</string>
-    <string name="abc_font_family_body_1_material">sans-serif</string>
-    <string name="abc_font_family_body_2_material">sans-serif-medium</string>
-    <string name="abc_font_family_button_material">sans-serif-medium</string>
-    <string name="abc_font_family_caption_material">sans-serif</string>
-    <string name="abc_font_family_display_1_material">sans-serif</string>
-    <string name="abc_font_family_display_2_material">sans-serif</string>
-    <string name="abc_font_family_display_3_material">sans-serif</string>
-    <string name="abc_font_family_display_4_material">sans-serif-light</string>
-    <string name="abc_font_family_headline_material">sans-serif</string>
-    <string name="abc_font_family_menu_material">sans-serif</string>
-    <string name="abc_font_family_subhead_material">sans-serif</string>
-    <string name="abc_font_family_title_material">sans-serif-medium</string>
-    <string name="abc_search_hint">Search…</string>
-    <string name="abc_searchview_description_clear">Clear query</string>
-    <string name="abc_searchview_description_query">Search query</string>
-    <string name="abc_searchview_description_search">Search</string>
-    <string name="abc_searchview_description_submit">Submit query</string>
-    <string name="abc_searchview_description_voice">Voice search</string>
-    <string name="abc_shareactionprovider_share_with">Share with</string>
-    <string name="abc_shareactionprovider_share_with_application">Share with %s</string>
-    <string name="abc_toolbar_collapse_description">Collapse</string>
-    <string name="com.crashlytics.android.build_id" ns1:ignore="UnusedResources,TypographyDashes" translatable="false">630ae148-5da2-464a-abf5-bd69b290d827</string>
-    <string msgid="2523291102206661146" name="common_google_play_services_enable_button">Enable</string>
-    <string msgid="227660514972886228" name="common_google_play_services_enable_text"><ns2:g id="app_name">%1$s</ns2:g> won\'t work unless you enable Google Play services.</string>
-    <string msgid="5122002158466380389" name="common_google_play_services_enable_title">Enable Google Play services</string>
-    <string msgid="7153882981874058840" name="common_google_play_services_install_button">Install</string>
-    <string name="common_google_play_services_install_text"><ns2:g id="app_name">%1$s</ns2:g> won\'t run without Google Play services, which are missing from your device.</string>
-    <string msgid="7215213145546190223" name="common_google_play_services_install_title">Get Google Play services</string>
-    <string name="common_google_play_services_notification_ticker">Google Play services error</string>
-    <string name="common_google_play_services_unknown_issue"><ns2:g id="app_name">%1$s</ns2:g> is having trouble with Google Play services. Please try again.</string>
-    <string name="common_google_play_services_unsupported_text"><ns2:g id="app_name">%1$s</ns2:g> won\'t run without Google Play services, which are not supported by your device.</string>
-    <string msgid="6556509956452265614" name="common_google_play_services_update_button">Update</string>
-    <string msgid="9053896323427875356" name="common_google_play_services_update_text"><ns2:g id="app_name">%1$s</ns2:g> won\'t run unless you update Google Play services.</string>
-    <string msgid="6006316683626838685" name="common_google_play_services_update_title">Update Google Play services</string>
-    <string name="common_google_play_services_updating_text"><ns2:g id="app_name">%1$s</ns2:g> won\'t run without Google Play services, which are currently updating.</string>
-    <string name="common_google_play_services_wear_update_text">New version of Google Play services needed. It will update itself shortly.</string>
-    <string name="common_open_on_phone">Open on phone</string>
-    <string name="common_signin_button_text">Sign in</string>
-    <string name="common_signin_button_text_long">Sign in with Google</string>
-    <string name="default_web_client_id" translatable="false">586069884887-l6b3b2irohs39s2atqa3b9be8c0a120f.apps.googleusercontent.com</string>
-    <string name="fatal_error_msg">Your application encountered a fatal error and cannot continue.</string>
-    <string name="firebase_database_url" translatable="false">https://ucom-1349.firebaseio.com</string>
-    <string name="gcm_defaultSenderId" translatable="false">586069884887</string>
-    <string name="google_api_key" translatable="false">AIzaSyASPowC1sMH_7wXsYTIlrDyrCoDtzm4TzY</string>
-    <string name="google_app_id" translatable="false">1:586069884887:android:10894ab106465b76</string>
-    <string name="google_crash_reporting_api_key" translatable="false">AIzaSyASPowC1sMH_7wXsYTIlrDyrCoDtzm4TzY</string>
-    <string name="google_storage_bucket" translatable="false">ucom-1349.appspot.com</string>
-    <string name="ministro_needed_msg">This application requires Ministro service. Would you like to install it?</string>
-    <string name="ministro_not_found_msg">Can\'t find Ministro service.\nThe application can\'t start.</string>
-    <string name="search_menu_title">Search</string>
-    <string name="status_bar_notification_info_overflow">999+</string>
-    <string name="unsupported_android_version">Unsupported Android version.</string>
-    <style name="AlertDialog.AppCompat" parent="Base.AlertDialog.AppCompat"/>
-    <style name="AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat.Light"/>
-    <style name="Animation.AppCompat.Dialog" parent="Base.Animation.AppCompat.Dialog"/>
-    <style name="Animation.AppCompat.DropDownUp" parent="Base.Animation.AppCompat.DropDownUp"/>
-    <style name="Base.AlertDialog.AppCompat" parent="android:Widget">
-        <item name="android:layout">@layout/abc_alert_dialog_material</item>
-        <item name="listLayout">@layout/abc_select_dialog_material</item>
-        <item name="listItemLayout">@layout/select_dialog_item_material</item>
-        <item name="multiChoiceItemLayout">@layout/select_dialog_multichoice_material</item>
-        <item name="singleChoiceItemLayout">@layout/select_dialog_singlechoice_material</item>
-    </style>
-    <style name="Base.AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat"/>
-    <style name="Base.Animation.AppCompat.Dialog" parent="android:Animation">
-        <item name="android:windowEnterAnimation">@anim/abc_popup_enter</item>
-        <item name="android:windowExitAnimation">@anim/abc_popup_exit</item>
-    </style>
-    <style name="Base.Animation.AppCompat.DropDownUp" parent="android:Animation">
-        <item name="android:windowEnterAnimation">@anim/abc_grow_fade_in_from_bottom</item>
-        <item name="android:windowExitAnimation">@anim/abc_shrink_fade_out_from_bottom</item>
-    </style>
-    <style name="Base.DialogWindowTitle.AppCompat" parent="android:Widget">
-        <item name="android:maxLines">1</item>
-        <item name="android:scrollHorizontally">true</item>
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Title</item>
-    </style>
-    <style name="Base.DialogWindowTitleBackground.AppCompat" parent="android:Widget">
-        <item name="android:background">@null</item>
-        <item name="android:paddingLeft">?attr/dialogPreferredPadding</item>
-        <item name="android:paddingRight">?attr/dialogPreferredPadding</item>
-        <item name="android:paddingTop">@dimen/abc_dialog_padding_top_material</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance">
-        <item name="android:textColor">?android:textColorPrimary</item>
-        <item name="android:textColorHint">?android:textColorHint</item>
-        <item name="android:textColorHighlight">?android:textColorHighlight</item>
-        <item name="android:textColorLink">?android:textColorLink</item>
-        <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Body1">
-        <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Body2">
-        <item name="android:textSize">@dimen/abc_text_size_body_2_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Button">
-        <item name="android:textSize">@dimen/abc_text_size_button_material</item>
-        <item name="textAllCaps">true</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Caption">
-        <item name="android:textSize">@dimen/abc_text_size_caption_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Display1">
-        <item name="android:textSize">@dimen/abc_text_size_display_1_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Display2">
-        <item name="android:textSize">@dimen/abc_text_size_display_2_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Display3">
-        <item name="android:textSize">@dimen/abc_text_size_display_3_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Display4">
-        <item name="android:textSize">@dimen/abc_text_size_display_4_material</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Headline">
-        <item name="android:textSize">@dimen/abc_text_size_headline_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Large">
-        <item name="android:textSize">@dimen/abc_text_size_large_material</item>
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Large.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Medium">
-        <item name="android:textSize">@dimen/abc_text_size_medium_material</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Medium.Inverse">
-        <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Menu">
-        <item name="android:textSize">@dimen/abc_text_size_menu_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.SearchResult" parent="">
-        <item name="android:textStyle">normal</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-        <item name="android:textColorHint">?android:textColorHint</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
-        <item name="android:textSize">14sp</item>
-        <item name="android:textColor">?android:textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.SearchResult.Title">
-        <item name="android:textSize">18sp</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Small">
-        <item name="android:textSize">@dimen/abc_text_size_small_material</item>
-        <item name="android:textColor">?android:attr/textColorTertiary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Small.Inverse">
-        <item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Subhead">
-        <item name="android:textSize">@dimen/abc_text_size_subhead_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Subhead.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Title">
-        <item name="android:textSize">@dimen/abc_text_size_title_material</item>
-        <item name="android:textColor">?android:textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Title.Inverse">
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-        <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="TextAppearance.AppCompat.Button">
-        <item name="android:textColor">?attr/actionMenuTextColor</item>
-        <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="TextAppearance.AppCompat.Subhead">
-        <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="TextAppearance.AppCompat.Subhead.Inverse">
-        <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
-        <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="TextAppearance.AppCompat.Title">
-        <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="TextAppearance.AppCompat.Title.Inverse">
-        <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
-        <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button" parent="TextAppearance.AppCompat.Button"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button">
-        <item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button.Colored">
-        <item name="android:textColor">@color/abc_btn_colored_text_material</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="TextAppearance.AppCompat.Button">
-        <item name="android:textColor">?android:textColorPrimaryInverse</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.DropDownItem" parent="android:TextAppearance.Small">
-        <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat">
-        <item name="android:textSize">@dimen/abc_text_size_menu_header_material</item>
-        <item name="android:textColor">?attr/colorAccent</item>
-    </style>
-    <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Menu"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Menu"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="TextAppearance.AppCompat.Button"/>
-    <style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="TextAppearance.AppCompat.Menu"/>
-    <style name="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="android:TextAppearance.Medium">
-        <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
-    </style>
-    <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle">
-    </style>
-    <style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title">
-    </style>
-    <style name="Base.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
-    </style>
-    <style name="Base.Theme.AppCompat.CompactMenu" parent="">
-        <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item>
-        <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
-        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog"/>
-    <style name="Base.Theme.AppCompat.Dialog.Alert">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Dialog.FixedSize">
-        <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
-        <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
-        <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
-        <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Dialog.MinWidth">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Theme.AppCompat"/>
-    <style name="Base.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
-    </style>
-    <style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light">
-        <item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Light</item>
-        <item name="actionBarWidgetTheme">@null</item>
-        <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
-
-        
-        <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
-
-        <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
-        <item name="colorPrimary">@color/primary_material_dark</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog"/>
-    <style name="Base.Theme.AppCompat.Light.Dialog.Alert">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Light.Dialog.FixedSize">
-        <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
-        <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
-        <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
-        <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Light.Dialog.MinWidth">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Theme.AppCompat.Light"/>
-    <style name="Base.ThemeOverlay.AppCompat" parent="Platform.ThemeOverlay.AppCompat"/>
-    <style name="Base.ThemeOverlay.AppCompat.ActionBar">
-        <item name="colorControlNormal">?android:attr/textColorPrimary</item>
-        <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
-    </style>
-    <style name="Base.ThemeOverlay.AppCompat.Dark" parent="Platform.ThemeOverlay.AppCompat.Dark">
-        <item name="android:windowBackground">@color/background_material_dark</item>
-        <item name="android:colorForeground">@color/foreground_material_dark</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
-        <item name="android:colorBackground">@color/background_material_dark</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
-        <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
-
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
-
-        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
-        <item name="colorControlHighlight">@color/ripple_material_dark</item>
-        <item name="colorButtonNormal">@color/button_material_dark</item>
-        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
-
-        
-        <item name="isLightTheme">false</item>
-    </style>
-    <style name="Base.ThemeOverlay.AppCompat.Dark.ActionBar">
-        <item name="colorControlNormal">?android:attr/textColorPrimary</item>
-        <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
-    </style>
-    <style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog"/>
-    <style name="Base.ThemeOverlay.AppCompat.Dialog.Alert">
-        <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
-        <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
-    </style>
-    <style name="Base.ThemeOverlay.AppCompat.Light" parent="Platform.ThemeOverlay.AppCompat.Light">
-        <item name="android:windowBackground">@color/background_material_light</item>
-        <item name="android:colorForeground">@color/foreground_material_light</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
-        <item name="android:colorBackground">@color/background_material_light</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
-        <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
-
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
-        <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
-
-        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
-        <item name="colorControlHighlight">@color/ripple_material_light</item>
-        <item name="colorButtonNormal">@color/button_material_light</item>
-        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
-
-        
-        <item name="isLightTheme">true</item>
-    </style>
-    <style name="Base.V7.Theme.AppCompat" parent="Platform.AppCompat">
-        <item name="windowNoTitle">false</item>
-        <item name="windowActionBar">true</item>
-        <item name="windowActionBarOverlay">false</item>
-        <item name="windowActionModeOverlay">false</item>
-        <item name="actionBarPopupTheme">@null</item>
-
-        <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
-
-        
-        <item name="isLightTheme">false</item>
-
-        <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
-        <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
-        <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
-
-        <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
-        <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
-
-        
-        <item name="actionBarTabStyle">@style/Widget.AppCompat.ActionBar.TabView</item>
-        <item name="actionBarTabBarStyle">@style/Widget.AppCompat.ActionBar.TabBar</item>
-        <item name="actionBarTabTextStyle">@style/Widget.AppCompat.ActionBar.TabText</item>
-        <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
-        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
-        <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.PopupMenu.Overflow</item>
-        <item name="actionBarStyle">@style/Widget.AppCompat.ActionBar.Solid</item>
-        <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
-        <item name="actionBarWidgetTheme">@null</item>
-        <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
-        <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
-        <item name="actionBarDivider">?attr/dividerVertical</item>
-        <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
-        <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
-        <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
-
-        
-        <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
-
-        
-        <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
-        <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
-        <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
-        <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
-        <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
-
-        <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
-        <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
-        <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
-        <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
-        <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
-
-        
-        <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
-        <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
-        <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
-        <item name="android:panelBackground">@android:color/transparent</item>
-        <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
-
-        
-        <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
-        <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
-        <item name="listPreferredItemHeight">64dp</item>
-        <item name="listPreferredItemHeightSmall">48dp</item>
-        <item name="listPreferredItemHeightLarge">80dp</item>
-        <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
-        <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
-
-        
-        <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
-        <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
-        <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
-
-        
-        <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-        <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
-
-        
-        <item name="popupMenuStyle">@style/Widget.AppCompat.PopupMenu</item>
-        <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item>
-        <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item>
-        <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
-        <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
-        <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
-        <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
-
-        
-        <item name="searchViewStyle">@style/Widget.AppCompat.SearchView</item>
-        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-        <item name="textColorSearchUrl">@color/abc_search_url_text</item>
-        <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
-        <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
-
-        
-        <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
-
-        
-        <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
-        <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
-
-        <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
-        <item name="editTextBackground">@drawable/abc_edit_text_material</item>
-        <item name="editTextColor">?android:attr/textColorPrimary</item>
-        <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
-
-        
-        <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
-        <item name="colorPrimary">@color/primary_material_dark</item>
-        <item name="colorAccent">@color/accent_material_dark</item>
-
-        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
-        <item name="colorControlActivated">?attr/colorAccent</item>
-        <item name="colorControlHighlight">@color/ripple_material_dark</item>
-        <item name="colorButtonNormal">@color/button_material_dark</item>
-        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
-        <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
-
-        <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
-
-        <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
-        <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
-        <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
-
-        <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
-        <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
-        <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
-        <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
-
-        
-        <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
-        <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
-        <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
-
-        <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
-
-        <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
-        <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
-        <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
-        <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
-        <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
-
-        
-        <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
-        <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
-
-        <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
-        <item name="alertDialogStyle">@style/AlertDialog.AppCompat</item>
-        <item name="alertDialogCenterButtons">false</item>
-        <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
-        <item name="listDividerAlertDialog">@null</item>
-
-        
-        <item name="windowFixedWidthMajor">@null</item>
-        <item name="windowFixedWidthMinor">@null</item>
-        <item name="windowFixedHeightMajor">@null</item>
-        <item name="windowFixedHeightMinor">@null</item>
-    </style>
-    <style name="Base.V7.Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat">
-        <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
-        <item name="android:colorBackgroundCacheHint">@null</item>
-
-        <item name="android:windowFrame">@null</item>
-        <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
-        <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
-        <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
-        <item name="android:windowIsFloating">true</item>
-        <item name="android:backgroundDimEnabled">true</item>
-        <item name="android:windowContentOverlay">@null</item>
-        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
-        <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
-
-        <item name="windowActionBar">false</item>
-        <item name="windowActionModeOverlay">true</item>
-
-        <item name="listPreferredItemPaddingLeft">24dip</item>
-        <item name="listPreferredItemPaddingRight">24dip</item>
-
-        <item name="android:listDivider">@null</item>
-    </style>
-    <style name="Base.V7.Theme.AppCompat.Light" parent="Platform.AppCompat.Light">
-        <item name="windowNoTitle">false</item>
-        <item name="windowActionBar">true</item>
-        <item name="windowActionBarOverlay">false</item>
-        <item name="windowActionModeOverlay">false</item>
-        <item name="actionBarPopupTheme">@null</item>
-
-        <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
-
-        
-        <item name="isLightTheme">true</item>
-
-        <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
-        <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
-        <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
-        <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
-
-        <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
-        <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
-
-        
-        <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView</item>
-        <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar</item>
-        <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText</item>
-        <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
-        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
-        <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.Light.PopupMenu.Overflow</item>
-        <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid</item>
-        <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
-        <item name="actionBarWidgetTheme">@null</item>
-        <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
-        <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
-        <item name="actionBarDivider">?attr/dividerVertical</item>
-        <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
-        <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
-        <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
-
-        
-        <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
-        <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
-        <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
-        <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
-        <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
-
-        <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
-        <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
-        <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
-        <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
-        <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
-
-        
-        <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
-
-        
-        <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
-        <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
-        <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
-        <item name="android:panelBackground">@android:color/transparent</item>
-        <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item>
-
-        
-        <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
-        <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
-        <item name="listPreferredItemHeight">64dp</item>
-        <item name="listPreferredItemHeightSmall">48dp</item>
-        <item name="listPreferredItemHeightLarge">80dp</item>
-        <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
-        <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
-
-        
-        <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
-        <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
-        <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
-
-        
-        <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-        <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
-
-        
-        <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item>
-        <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item>
-        <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item>
-        <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
-        <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
-        <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
-        <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
-
-        
-        <item name="searchViewStyle">@style/Widget.AppCompat.Light.SearchView</item>
-        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-        <item name="textColorSearchUrl">@color/abc_search_url_text</item>
-        <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
-        <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
-
-        
-        <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
-
-        
-        <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
-        <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
-
-        <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
-        <item name="editTextBackground">@drawable/abc_edit_text_material</item>
-        <item name="editTextColor">?android:attr/textColorPrimary</item>
-        <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
-
-        
-        <item name="colorPrimaryDark">@color/primary_dark_material_light</item>
-        <item name="colorPrimary">@color/primary_material_light</item>
-        <item name="colorAccent">@color/accent_material_light</item>
-
-        <item name="colorControlNormal">?android:attr/textColorSecondary</item>
-        <item name="colorControlActivated">?attr/colorAccent</item>
-        <item name="colorControlHighlight">@color/ripple_material_light</item>
-        <item name="colorButtonNormal">@color/button_material_light</item>
-        <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
-        <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
-
-        <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
-
-        <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
-        <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
-        <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
-
-        <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
-        <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
-        <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
-        <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
-
-        
-        <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
-        <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
-        <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
-
-        <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
-
-        <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
-        <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
-        <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
-        <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
-        <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
-
-        
-        <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
-        <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
-
-        <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
-        <item name="alertDialogStyle">@style/AlertDialog.AppCompat.Light</item>
-        <item name="alertDialogCenterButtons">false</item>
-        <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
-        <item name="listDividerAlertDialog">@null</item>
-
-        
-        <item name="windowFixedWidthMajor">@null</item>
-        <item name="windowFixedWidthMinor">@null</item>
-        <item name="windowFixedHeightMajor">@null</item>
-        <item name="windowFixedHeightMinor">@null</item>
-    </style>
-    <style name="Base.V7.Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light">
-        <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
-        <item name="android:colorBackgroundCacheHint">@null</item>
-
-        <item name="android:windowFrame">@null</item>
-        <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
-        <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
-        <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
-        <item name="android:windowIsFloating">true</item>
-        <item name="android:backgroundDimEnabled">true</item>
-        <item name="android:windowContentOverlay">@null</item>
-        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
-        <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
-
-        <item name="windowActionBar">false</item>
-        <item name="windowActionModeOverlay">true</item>
-
-        <item name="listPreferredItemPaddingLeft">24dip</item>
-        <item name="listPreferredItemPaddingRight">24dip</item>
-
-        <item name="android:listDivider">@null</item>
-    </style>
-    <style name="Base.V7.ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat">
-        <item name="android:colorBackgroundCacheHint">@null</item>
-        <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
-
-        <item name="android:windowFrame">@null</item>
-        <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
-        <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
-        <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
-        <item name="android:windowIsFloating">true</item>
-        <item name="android:backgroundDimEnabled">true</item>
-        <item name="android:windowContentOverlay">@null</item>
-        <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
-        <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
-
-        <item name="windowActionBar">false</item>
-        <item name="windowActionModeOverlay">true</item>
-
-        <item name="listPreferredItemPaddingLeft">24dip</item>
-        <item name="listPreferredItemPaddingRight">24dip</item>
-
-        <item name="android:listDivider">@null</item>
-
-        <item name="windowFixedWidthMajor">@null</item>
-        <item name="windowFixedWidthMinor">@null</item>
-        <item name="windowFixedHeightMajor">@null</item>
-        <item name="windowFixedHeightMinor">@null</item>
-    </style>
-    <style name="Base.V7.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.AutoCompleteTextView">
-        <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
-        <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
-        <item name="android:background">?attr/editTextBackground</item>
-        <item name="android:textColor">?attr/editTextColor</item>
-        <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
-    </style>
-    <style name="Base.V7.Widget.AppCompat.EditText" parent="android:Widget.EditText">
-        <item name="android:background">?attr/editTextBackground</item>
-        <item name="android:textColor">?attr/editTextColor</item>
-        <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar" parent="">
-        <item name="displayOptions">showTitle</item>
-        <item name="divider">?attr/dividerVertical</item>
-        <item name="height">?attr/actionBarSize</item>
-
-        <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item>
-        <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle</item>
-
-        <item name="background">@null</item>
-        <item name="backgroundStacked">@null</item>
-        <item name="backgroundSplit">@null</item>
-
-        <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
-        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
-
-        <item name="android:gravity">center_vertical</item>
-        <item name="contentInsetStart">@dimen/abc_action_bar_content_inset_material</item>
-        <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
-        <item name="contentInsetEnd">@dimen/abc_action_bar_content_inset_material</item>
-        <item name="elevation">@dimen/abc_action_bar_elevation_material</item>
-        <item name="popupTheme">?attr/actionBarPopupTheme</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar.Solid">
-        <item name="background">?attr/colorPrimary</item>
-        <item name="backgroundStacked">?attr/colorPrimary</item>
-        <item name="backgroundSplit">?attr/colorPrimary</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar.TabBar" parent="">
-        <item name="divider">?attr/actionBarDivider</item>
-        <item name="showDividers">middle</item>
-        <item name="dividerPadding">8dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar.TabText" parent="">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
-        <item name="android:textSize">12sp</item>
-        <item name="android:textStyle">bold</item>
-        <item name="android:ellipsize">marquee</item>
-        <item name="android:maxLines">2</item>
-        <item name="android:maxWidth">180dp</item>
-        <item name="textAllCaps">true</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionBar.TabView" parent="">
-        <item name="android:background">@drawable/abc_tab_indicator_material</item>
-        <item name="android:gravity">center_horizontal</item>
-        <item name="android:paddingLeft">16dip</item>
-        <item name="android:paddingRight">16dip</item>
-        <item name="android:layout_width">0dip</item>
-        <item name="android:layout_weight">1</item>
-        <item name="android:minWidth">80dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionButton" parent="RtlUnderlay.Widget.AppCompat.ActionButton">
-        <item name="android:background">?attr/actionBarItemBackground</item>
-        <item name="android:minWidth">@dimen/abc_action_button_min_width_material</item>
-        <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
-        <item name="android:scaleType">center</item>
-        <item name="android:gravity">center</item>
-        <item name="android:maxLines">2</item>
-        <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionButton.CloseMode">
-        <item name="android:background">?attr/controlBackground</item>
-        <item name="android:minWidth">56dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow">
-        <item name="srcCompat">@drawable/abc_ic_menu_overflow_material</item>
-        <item name="android:background">?attr/actionBarItemBackground</item>
-        <item name="android:contentDescription">@string/abc_action_menu_overflow_description</item>
-        <item name="android:minWidth">@dimen/abc_action_button_min_width_overflow_material</item>
-        <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActionMode" parent="">
-        <item name="background">?attr/actionModeBackground</item>
-        <item name="backgroundSplit">?attr/actionModeSplitBackground</item>
-        <item name="height">?attr/actionBarSize</item>
-        <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Title</item>
-        <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle</item>
-        <item name="closeItemLayout">@layout/abc_action_mode_close_item_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ActivityChooserView" parent="">
-        <item name="android:gravity">center</item>
-        <item name="android:background">@drawable/abc_ab_share_pack_mtrl_alpha</item>
-        <item name="divider">?attr/dividerVertical</item>
-        <item name="showDividers">middle</item>
-        <item name="dividerPadding">6dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="Base.V7.Widget.AppCompat.AutoCompleteTextView"/>
-    <style name="Base.Widget.AppCompat.Button" parent="android:Widget">
-        <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
-        <item name="android:textAppearance">?android:attr/textAppearanceButton</item>
-        <item name="android:minHeight">48dip</item>
-        <item name="android:minWidth">88dip</item>
-        <item name="android:focusable">true</item>
-        <item name="android:clickable">true</item>
-        <item name="android:gravity">center_vertical|center_horizontal</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.Borderless">
-        <item name="android:background">@drawable/abc_btn_borderless_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.Borderless.Colored">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Widget.AppCompat.Button.Borderless.Colored">
-        <item name="android:minWidth">64dp</item>
-        <item name="android:minHeight">@dimen/abc_alert_dialog_button_bar_height</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.Colored">
-        <item name="android:background">@drawable/abc_btn_colored_material</item>
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Colored</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Button.Small">
-        <item name="android:minHeight">48dip</item>
-        <item name="android:minWidth">48dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget">
-        <item name="android:background">@null</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ButtonBar.AlertDialog"/>
-    <style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.CompoundButton.CheckBox">
-        <item name="android:button">?android:attr/listChoiceIndicatorMultiple</item>
-        <item name="android:background">?attr/controlBackground</item>
-    </style>
-    <style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.CompoundButton.RadioButton">
-        <item name="android:button">?android:attr/listChoiceIndicatorSingle</item>
-        <item name="android:background">?attr/controlBackground</item>
-    </style>
-    <style name="Base.Widget.AppCompat.CompoundButton.Switch" parent="android:Widget.CompoundButton">
-        <item name="track">@drawable/abc_switch_track_mtrl_alpha</item>
-        <item name="android:thumb">@drawable/abc_switch_thumb_material</item>
-        <item name="switchTextAppearance">@style/TextAppearance.AppCompat.Widget.Switch</item>
-        <item name="android:background">?attr/controlBackground</item>
-        <item name="showText">false</item>
-        <item name="switchPadding">@dimen/abc_switch_padding</item>
-        <item name="android:textOn">@string/abc_capital_on</item>
-        <item name="android:textOff">@string/abc_capital_off</item>
-    </style>
-    <style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
-        <item name="barLength">18dp</item>
-        <item name="gapBetweenBars">3dp</item>
-        <item name="drawableSize">24dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.DrawerArrowToggle.Common" parent="">
-        <item name="color">?android:attr/textColorSecondary</item>
-        <item name="spinBars">true</item>
-        <item name="thickness">2dp</item>
-        <item name="arrowShaftLength">16dp</item>
-        <item name="arrowHeadLength">8dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.DropDownItem</item>
-        <item name="android:paddingLeft">8dp</item>
-        <item name="android:paddingRight">8dp</item>
-        <item name="android:gravity">center_vertical</item>
-    </style>
-    <style name="Base.Widget.AppCompat.EditText" parent="Base.V7.Widget.AppCompat.EditText"/>
-    <style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.ImageButton">
-        <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
-        <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
-        <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.Solid">
-        <item name="background">?attr/colorPrimary</item>
-        <item name="backgroundStacked">?attr/colorPrimary</item>
-        <item name="backgroundSplit">?attr/colorPrimary</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
-        <item name="android:background">@drawable/abc_tab_indicator_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Light.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
-    </style>
-    <style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
-        <item name="overlapAnchor">true</item>
-        <item name="android:dropDownHorizontalOffset">-4dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListMenuView" parent="android:Widget">
-        <item name="subMenuArrow">@drawable/abc_ic_arrow_drop_right_black_24dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListPopupWindow" parent="">
-        <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
-        <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
-        <item name="android:dropDownVerticalOffset">0dip</item>
-        <item name="android:dropDownHorizontalOffset">0dip</item>
-        <item name="android:dropDownWidth">wrap_content</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListView" parent="android:Widget.ListView">
-        <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListView.DropDown">
-        <item name="android:divider">@null</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ListView.Menu" parent="android:Widget.ListView.Menu">
-        <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
-        <item name="android:divider">?attr/dividerHorizontal</item>
-    </style>
-    <style name="Base.Widget.AppCompat.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
-    </style>
-    <style name="Base.Widget.AppCompat.PopupMenu.Overflow">
-        <item name="overlapAnchor">true</item>
-        <item name="android:dropDownHorizontalOffset">-4dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.PopupWindow" parent="android:Widget.PopupWindow">
-    </style>
-    <style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.ProgressBar">
-        <item name="android:minWidth">@dimen/abc_action_bar_progress_bar_size</item>
-        <item name="android:maxWidth">@dimen/abc_action_bar_progress_bar_size</item>
-        <item name="android:minHeight">@dimen/abc_action_bar_progress_bar_size</item>
-        <item name="android:maxHeight">@dimen/abc_action_bar_progress_bar_size</item>
-    </style>
-    <style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.ProgressBar.Horizontal">
-    </style>
-    <style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.RatingBar">
-        <item name="android:progressDrawable">@drawable/abc_ratingbar_material</item>
-        <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.RatingBar">
-        <item name="android:progressDrawable">@drawable/abc_ratingbar_indicator_material</item>
-        <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_indicator_material</item>
-        <item name="android:minHeight">36dp</item>
-        <item name="android:maxHeight">36dp</item>
-        <item name="android:isIndicator">true</item>
-        <item name="android:thumb">@null</item>
-    </style>
-    <style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.RatingBar">
-        <item name="android:progressDrawable">@drawable/abc_ratingbar_small_material</item>
-        <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_small_material</item>
-        <item name="android:minHeight">16dp</item>
-        <item name="android:maxHeight">16dp</item>
-        <item name="android:isIndicator">true</item>
-        <item name="android:thumb">@null</item>
-    </style>
-    <style name="Base.Widget.AppCompat.SearchView" parent="android:Widget">
-        <item name="layout">@layout/abc_search_view</item>
-        <item name="queryBackground">@drawable/abc_textfield_search_material</item>
-        <item name="submitBackground">@drawable/abc_textfield_search_material</item>
-        <item name="closeIcon">@drawable/abc_ic_clear_material</item>
-        <item name="searchIcon">@drawable/abc_ic_search_api_material</item>
-        <item name="searchHintIcon">@drawable/abc_ic_search_api_material</item>
-        <item name="goIcon">@drawable/abc_ic_go_search_api_material</item>
-        <item name="voiceIcon">@drawable/abc_ic_voice_search_api_material</item>
-        <item name="commitIcon">@drawable/abc_ic_commit_search_api_mtrl_alpha</item>
-        <item name="suggestionRowLayout">@layout/abc_search_dropdown_item_icons_2line</item>
-    </style>
-    <style name="Base.Widget.AppCompat.SearchView.ActionBar">
-        <item name="queryBackground">@null</item>
-        <item name="submitBackground">@null</item>
-        <item name="searchHintIcon">@null</item>
-        <item name="defaultQueryHint">@string/abc_search_hint</item>
-    </style>
-    <style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget">
-        <item name="android:indeterminateOnly">false</item>
-        <item name="android:progressDrawable">@drawable/abc_seekbar_track_material</item>
-        <item name="android:indeterminateDrawable">@drawable/abc_seekbar_track_material</item>
-        <item name="android:thumb">@drawable/abc_seekbar_thumb_material</item>
-        <item name="android:focusable">true</item>
-        <item name="android:paddingLeft">16dip</item>
-        <item name="android:paddingRight">16dip</item>
-    </style>
-    <style name="Base.Widget.AppCompat.SeekBar.Discrete">
-        <item name="tickMark">@drawable/abc_seekbar_tick_mark_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Spinner" parent="Platform.Widget.AppCompat.Spinner">
-        <item name="android:background">@drawable/abc_spinner_mtrl_am_alpha</item>
-        <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
-        <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
-        <item name="android:dropDownVerticalOffset">0dip</item>
-        <item name="android:dropDownHorizontalOffset">0dip</item>
-        <item name="android:dropDownWidth">wrap_content</item>
-        <item name="android:clickable">true</item>
-        <item name="android:gravity">left|start|center_vertical</item>
-        <item name="overlapAnchor">true</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Spinner.Underlined">
-        <item name="android:background">@drawable/abc_spinner_textfield_background_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.TextView.SpinnerItem">
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem</item>
-        <item name="android:paddingLeft">8dp</item>
-        <item name="android:paddingRight">8dp</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Toolbar" parent="android:Widget">
-        <item name="titleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Title</item>
-        <item name="subtitleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle</item>
-        <item name="android:minHeight">?attr/actionBarSize</item>
-        <item name="titleMargin">4dp</item>
-        <item name="maxButtonHeight">@dimen/abc_action_bar_default_height_material</item>
-        <item name="buttonGravity">top</item>
-        <item name="collapseIcon">?attr/homeAsUpIndicator</item>
-        <item name="collapseContentDescription">@string/abc_toolbar_collapse_description</item>
-        <item name="contentInsetStart">16dp</item>
-        <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
-        <item name="android:paddingLeft">@dimen/abc_action_bar_default_padding_start_material</item>
-        <item name="android:paddingRight">@dimen/abc_action_bar_default_padding_end_material</item>
-    </style>
-    <style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget">
-        <item name="android:background">?attr/controlBackground</item>
-        <item name="android:minWidth">56dp</item>
-        <item name="android:scaleType">center</item>
-    </style>
-    <style name="Platform.AppCompat" parent="android:Theme">
-        <item name="android:windowNoTitle">true</item>
-
-        
-        <item name="android:colorForeground">@color/foreground_material_dark</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
-        <item name="android:colorBackground">@color/background_material_dark</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
-        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item>
-        <item name="android:backgroundDimAmount">0.6</item>
-        <item name="android:windowBackground">@color/background_material_dark</item>
-
-        
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
-        <item name="android:textColorLink">?attr/colorAccent</item>
-
-        
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
-        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
-        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
-        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
-        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
-        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
-
-        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
-        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
-
-        <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_dark</item>
-        <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_dark</item>
-        <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_dark</item>
-    </style>
-    <style name="Platform.AppCompat.Light" parent="android:Theme.Light">
-        <item name="android:windowNoTitle">true</item>
-
-        
-        <item name="android:colorForeground">@color/foreground_material_light</item>
-        <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
-        <item name="android:colorBackground">@color/background_material_light</item>
-        <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
-        <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item>
-        <item name="android:backgroundDimAmount">0.6</item>
-        <item name="android:windowBackground">@color/background_material_light</item>
-
-        
-        <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
-        <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
-        <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
-        <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
-        <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
-        <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
-        <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
-        <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
-        <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
-        <item name="android:textColorLink">?attr/colorAccent</item>
-
-        
-        <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
-        <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
-        <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
-        <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
-        <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
-        <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
-        <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
-        <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
-
-        <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
-        <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
-
-        <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_light</item>
-        <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_light</item>
-        <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_light</item>
-    </style>
-    <style name="Platform.ThemeOverlay.AppCompat" parent=""/>
-    <style name="Platform.ThemeOverlay.AppCompat.Dark">
-        
-        <item name="actionBarItemBackground">@drawable/abc_item_background_holo_dark</item>
-        <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
-        <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
-
-        
-        <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
-        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-    </style>
-    <style name="Platform.ThemeOverlay.AppCompat.Light">
-        <item name="actionBarItemBackground">@drawable/abc_item_background_holo_light</item>
-        <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
-        <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
-
-        
-        <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.Light.AutoCompleteTextView</item>
-        <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
-    </style>
-    <style name="Platform.Widget.AppCompat.Spinner" parent="android:Widget.Spinner"/>
-    <style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
-        <item name="android:layout_gravity">center_vertical|left</item>
-        <item name="android:paddingRight">8dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
-        <item name="android:layout_marginRight">8dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
-        <item name="android:paddingRight">16dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
-        <item name="android:layout_marginLeft">16dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
-        <item name="android:layout_alignParentLeft">true</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
-        <item name="android:paddingLeft">@dimen/abc_dropdownitem_text_padding_left</item>
-        <item name="android:paddingRight">4dp</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
-        <item name="android:layout_alignParentLeft">true</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
-        <item name="android:layout_toLeftOf">@id/edit_query</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
-        <item name="android:layout_alignParentRight">true</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
-        <item name="android:layout_toLeftOf">@android:id/icon2</item>
-        <item name="android:layout_toRightOf">@android:id/icon1</item>
-    </style>
-    <style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
-        <item name="android:layout_marginLeft">@dimen/abc_dropdownitem_text_padding_left</item>
-    </style>
-    <style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget">
-        <item name="android:paddingLeft">12dp</item>
-        <item name="android:paddingRight">12dp</item>
-    </style>
-    <style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton">
-        <item name="android:paddingLeft">@dimen/abc_action_bar_overflow_padding_start_material</item>
-        <item name="android:paddingRight">@dimen/abc_action_bar_overflow_padding_end_material</item>
-    </style>
-    <style name="TextAppearance.AppCompat" parent="Base.TextAppearance.AppCompat"/>
-    <style name="TextAppearance.AppCompat.Body1" parent="Base.TextAppearance.AppCompat.Body1"/>
-    <style name="TextAppearance.AppCompat.Body2" parent="Base.TextAppearance.AppCompat.Body2"/>
-    <style name="TextAppearance.AppCompat.Button" parent="Base.TextAppearance.AppCompat.Button"/>
-    <style name="TextAppearance.AppCompat.Caption" parent="Base.TextAppearance.AppCompat.Caption"/>
-    <style name="TextAppearance.AppCompat.Display1" parent="Base.TextAppearance.AppCompat.Display1"/>
-    <style name="TextAppearance.AppCompat.Display2" parent="Base.TextAppearance.AppCompat.Display2"/>
-    <style name="TextAppearance.AppCompat.Display3" parent="Base.TextAppearance.AppCompat.Display3"/>
-    <style name="TextAppearance.AppCompat.Display4" parent="Base.TextAppearance.AppCompat.Display4"/>
-    <style name="TextAppearance.AppCompat.Headline" parent="Base.TextAppearance.AppCompat.Headline"/>
-    <style name="TextAppearance.AppCompat.Inverse" parent="Base.TextAppearance.AppCompat.Inverse"/>
-    <style name="TextAppearance.AppCompat.Large" parent="Base.TextAppearance.AppCompat.Large"/>
-    <style name="TextAppearance.AppCompat.Large.Inverse" parent="Base.TextAppearance.AppCompat.Large.Inverse"/>
-    <style name="TextAppearance.AppCompat.Light.SearchResult.Subtitle" parent="TextAppearance.AppCompat.SearchResult.Subtitle"/>
-    <style name="TextAppearance.AppCompat.Light.SearchResult.Title" parent="TextAppearance.AppCompat.SearchResult.Title"/>
-    <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Widget.PopupMenu.Large"/>
-    <style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Widget.PopupMenu.Small"/>
-    <style name="TextAppearance.AppCompat.Medium" parent="Base.TextAppearance.AppCompat.Medium"/>
-    <style name="TextAppearance.AppCompat.Medium.Inverse" parent="Base.TextAppearance.AppCompat.Medium.Inverse"/>
-    <style name="TextAppearance.AppCompat.Menu" parent="Base.TextAppearance.AppCompat.Menu"/>
-    <style name="TextAppearance.AppCompat.Notification">
-        <item name="android:textSize">14sp</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Info">
-        <item name="android:textSize">12sp</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Info.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Line2" parent="TextAppearance.AppCompat.Notification.Info"/>
-    <style name="TextAppearance.AppCompat.Notification.Line2.Media" parent="TextAppearance.AppCompat.Notification.Info.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Time">
-        <item name="android:textSize">12sp</item>
-        <item name="android:textColor">?android:attr/textColorSecondary</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Time.Media"/>
-    <style name="TextAppearance.AppCompat.Notification.Title">
-        <item name="android:textSize">16sp</item>
-        <item name="android:textColor">?android:attr/textColorPrimary</item>
-    </style>
-    <style name="TextAppearance.AppCompat.Notification.Title.Media"/>
-    <style name="TextAppearance.AppCompat.SearchResult.Subtitle" parent="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
-    </style>
-    <style name="TextAppearance.AppCompat.SearchResult.Title" parent="Base.TextAppearance.AppCompat.SearchResult.Title">
-    </style>
-    <style name="TextAppearance.AppCompat.Small" parent="Base.TextAppearance.AppCompat.Small"/>
-    <style name="TextAppearance.AppCompat.Small.Inverse" parent="Base.TextAppearance.AppCompat.Small.Inverse"/>
-    <style name="TextAppearance.AppCompat.Subhead" parent="Base.TextAppearance.AppCompat.Subhead"/>
-    <style name="TextAppearance.AppCompat.Subhead.Inverse" parent="Base.TextAppearance.AppCompat.Subhead.Inverse"/>
-    <style name="TextAppearance.AppCompat.Title" parent="Base.TextAppearance.AppCompat.Title"/>
-    <style name="TextAppearance.AppCompat.Title.Inverse" parent="Base.TextAppearance.AppCompat.Title.Inverse"/>
-    <style name="TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/>
-    <style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.ActionBar.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title"/>
-    <style name="TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Subtitle"/>
-    <style name="TextAppearance.AppCompat.Widget.ActionMode.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Title">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Title"/>
-    <style name="TextAppearance.AppCompat.Widget.Button" parent="Base.TextAppearance.AppCompat.Widget.Button"/>
-    <style name="TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored"/>
-    <style name="TextAppearance.AppCompat.Widget.Button.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Colored"/>
-    <style name="TextAppearance.AppCompat.Widget.Button.Inverse" parent="Base.TextAppearance.AppCompat.Widget.Button.Inverse"/>
-    <style name="TextAppearance.AppCompat.Widget.DropDownItem" parent="Base.TextAppearance.AppCompat.Widget.DropDownItem">
-    </style>
-    <style name="TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header"/>
-    <style name="TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large"/>
-    <style name="TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small"/>
-    <style name="TextAppearance.AppCompat.Widget.Switch" parent="Base.TextAppearance.AppCompat.Widget.Switch"/>
-    <style name="TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem"/>
-    <style name="TextAppearance.StatusBar.EventContent" parent=""/>
-    <style name="TextAppearance.StatusBar.EventContent.Info" parent=""/>
-    <style name="TextAppearance.StatusBar.EventContent.Line2" parent=""/>
-    <style name="TextAppearance.StatusBar.EventContent.Time" parent=""/>
-    <style name="TextAppearance.StatusBar.EventContent.Title" parent=""/>
-    <style name="TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item">
-    </style>
-    <style name="TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle">
-    </style>
-    <style name="TextAppearance.Widget.AppCompat.Toolbar.Title" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Title">
-    </style>
-    <style name="Theme.AppCompat" parent="Base.Theme.AppCompat"/>
-    <style name="Theme.AppCompat.CompactMenu" parent="Base.Theme.AppCompat.CompactMenu"/>
-    <style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat.Light"/>
-    <style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat.Light.DarkActionBar"/>
-    <style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Light.Dialog"/>
-    <style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Light.Dialog.Alert"/>
-    <style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Light.Dialog.MinWidth"/>
-    <style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.Light.DialogWhenLarge"/>
-    <style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar"/>
-    <style name="Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat.Dialog"/>
-    <style name="Theme.AppCompat.Dialog.Alert" parent="Base.Theme.AppCompat.Dialog.Alert"/>
-    <style name="Theme.AppCompat.Dialog.MinWidth" parent="Base.Theme.AppCompat.Dialog.MinWidth"/>
-    <style name="Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.DialogWhenLarge">
-    </style>
-    <style name="Theme.AppCompat.Light" parent="Base.Theme.AppCompat.Light"/>
-    <style name="Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light.DarkActionBar"/>
-    <style name="Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light.Dialog"/>
-    <style name="Theme.AppCompat.Light.Dialog.Alert" parent="Base.Theme.AppCompat.Light.Dialog.Alert"/>
-    <style name="Theme.AppCompat.Light.Dialog.MinWidth" parent="Base.Theme.AppCompat.Light.Dialog.MinWidth"/>
-    <style name="Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.DialogWhenLarge">
-    </style>
-    <style name="Theme.AppCompat.Light.NoActionBar">
-        <item name="windowActionBar">false</item>
-        <item name="windowNoTitle">true</item>
-    </style>
-    <style name="Theme.AppCompat.NoActionBar">
-        <item name="windowActionBar">false</item>
-        <item name="windowNoTitle">true</item>
-    </style>
-    <style name="ThemeOverlay.AppCompat" parent="Base.ThemeOverlay.AppCompat"/>
-    <style name="ThemeOverlay.AppCompat.ActionBar" parent="Base.ThemeOverlay.AppCompat.ActionBar"/>
-    <style name="ThemeOverlay.AppCompat.Dark" parent="Base.ThemeOverlay.AppCompat.Dark"/>
-    <style name="ThemeOverlay.AppCompat.Dark.ActionBar" parent="Base.ThemeOverlay.AppCompat.Dark.ActionBar"/>
-    <style name="ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat.Dialog"/>
-    <style name="ThemeOverlay.AppCompat.Dialog.Alert" parent="Base.ThemeOverlay.AppCompat.Dialog.Alert"/>
-    <style name="ThemeOverlay.AppCompat.Light" parent="Base.ThemeOverlay.AppCompat.Light"/>
-    <style name="Widget.AppCompat.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
-    </style>
-    <style name="Widget.AppCompat.ActionBar.Solid" parent="Base.Widget.AppCompat.ActionBar.Solid">
-    </style>
-    <style name="Widget.AppCompat.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
-    </style>
-    <style name="Widget.AppCompat.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
-    </style>
-    <style name="Widget.AppCompat.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
-    </style>
-    <style name="Widget.AppCompat.ActionButton" parent="Base.Widget.AppCompat.ActionButton"/>
-    <style name="Widget.AppCompat.ActionButton.CloseMode" parent="Base.Widget.AppCompat.ActionButton.CloseMode"/>
-    <style name="Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton.Overflow"/>
-    <style name="Widget.AppCompat.ActionMode" parent="Base.Widget.AppCompat.ActionMode">
-    </style>
-    <style name="Widget.AppCompat.ActivityChooserView" parent="Base.Widget.AppCompat.ActivityChooserView">
-    </style>
-    <style name="Widget.AppCompat.AutoCompleteTextView" parent="Base.Widget.AppCompat.AutoCompleteTextView">
-    </style>
-    <style name="Widget.AppCompat.Button" parent="Base.Widget.AppCompat.Button"/>
-    <style name="Widget.AppCompat.Button.Borderless" parent="Base.Widget.AppCompat.Button.Borderless"/>
-    <style name="Widget.AppCompat.Button.Borderless.Colored" parent="Base.Widget.AppCompat.Button.Borderless.Colored"/>
-    <style name="Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog"/>
-    <style name="Widget.AppCompat.Button.Colored" parent="Base.Widget.AppCompat.Button.Colored"/>
-    <style name="Widget.AppCompat.Button.Small" parent="Base.Widget.AppCompat.Button.Small"/>
-    <style name="Widget.AppCompat.ButtonBar" parent="Base.Widget.AppCompat.ButtonBar"/>
-    <style name="Widget.AppCompat.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.ButtonBar.AlertDialog"/>
-    <style name="Widget.AppCompat.CompoundButton.CheckBox" parent="Base.Widget.AppCompat.CompoundButton.CheckBox"/>
-    <style name="Widget.AppCompat.CompoundButton.RadioButton" parent="Base.Widget.AppCompat.CompoundButton.RadioButton"/>
-    <style name="Widget.AppCompat.CompoundButton.Switch" parent="Base.Widget.AppCompat.CompoundButton.Switch"/>
-    <style name="Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle">
-        <item name="color">?attr/colorControlNormal</item>
-    </style>
-    <style name="Widget.AppCompat.DropDownItem.Spinner" parent="RtlOverlay.Widget.AppCompat.Search.DropDown.Text"/>
-    <style name="Widget.AppCompat.EditText" parent="Base.Widget.AppCompat.EditText"/>
-    <style name="Widget.AppCompat.ImageButton" parent="Base.Widget.AppCompat.ImageButton"/>
-    <style name="Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.Light.ActionBar">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.Solid" parent="Base.Widget.AppCompat.Light.ActionBar.Solid">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.Solid.Inverse"/>
-    <style name="Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.Light.ActionBar.TabBar">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.TabBar.Inverse"/>
-    <style name="Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.Light.ActionBar.TabView">
-    </style>
-    <style name="Widget.AppCompat.Light.ActionBar.TabView.Inverse"/>
-    <style name="Widget.AppCompat.Light.ActionButton" parent="Widget.AppCompat.ActionButton"/>
-    <style name="Widget.AppCompat.Light.ActionButton.CloseMode" parent="Widget.AppCompat.ActionButton.CloseMode"/>
-    <style name="Widget.AppCompat.Light.ActionButton.Overflow" parent="Widget.AppCompat.ActionButton.Overflow"/>
-    <style name="Widget.AppCompat.Light.ActionMode.Inverse" parent="Widget.AppCompat.ActionMode"/>
-    <style name="Widget.AppCompat.Light.ActivityChooserView" parent="Widget.AppCompat.ActivityChooserView"/>
-    <style name="Widget.AppCompat.Light.AutoCompleteTextView" parent="Widget.AppCompat.AutoCompleteTextView"/>
-    <style name="Widget.AppCompat.Light.DropDownItem.Spinner" parent="Widget.AppCompat.DropDownItem.Spinner"/>
-    <style name="Widget.AppCompat.Light.ListPopupWindow" parent="Widget.AppCompat.ListPopupWindow"/>
-    <style name="Widget.AppCompat.Light.ListView.DropDown" parent="Widget.AppCompat.ListView.DropDown"/>
-    <style name="Widget.AppCompat.Light.PopupMenu" parent="Base.Widget.AppCompat.Light.PopupMenu"/>
-    <style name="Widget.AppCompat.Light.PopupMenu.Overflow" parent="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
-    </style>
-    <style name="Widget.AppCompat.Light.SearchView" parent="Widget.AppCompat.SearchView"/>
-    <style name="Widget.AppCompat.Light.Spinner.DropDown.ActionBar" parent="Widget.AppCompat.Spinner.DropDown.ActionBar"/>
-    <style name="Widget.AppCompat.ListMenuView" parent="Base.Widget.AppCompat.ListMenuView"/>
-    <style name="Widget.AppCompat.ListPopupWindow" parent="Base.Widget.AppCompat.ListPopupWindow">
-    </style>
-    <style name="Widget.AppCompat.ListView" parent="Base.Widget.AppCompat.ListView"/>
-    <style name="Widget.AppCompat.ListView.DropDown" parent="Base.Widget.AppCompat.ListView.DropDown"/>
-    <style name="Widget.AppCompat.ListView.Menu" parent="Base.Widget.AppCompat.ListView.Menu"/>
-    <style name="Widget.AppCompat.NotificationActionContainer" parent=""/>
-    <style name="Widget.AppCompat.NotificationActionText" parent=""/>
-    <style name="Widget.AppCompat.PopupMenu" parent="Base.Widget.AppCompat.PopupMenu"/>
-    <style name="Widget.AppCompat.PopupMenu.Overflow" parent="Base.Widget.AppCompat.PopupMenu.Overflow">
-    </style>
-    <style name="Widget.AppCompat.PopupWindow" parent="Base.Widget.AppCompat.PopupWindow">
-    </style>
-    <style name="Widget.AppCompat.ProgressBar" parent="Base.Widget.AppCompat.ProgressBar">
-    </style>
-    <style name="Widget.AppCompat.ProgressBar.Horizontal" parent="Base.Widget.AppCompat.ProgressBar.Horizontal">
-    </style>
-    <style name="Widget.AppCompat.RatingBar" parent="Base.Widget.AppCompat.RatingBar"/>
-    <style name="Widget.AppCompat.RatingBar.Indicator" parent="Base.Widget.AppCompat.RatingBar.Indicator"/>
-    <style name="Widget.AppCompat.RatingBar.Small" parent="Base.Widget.AppCompat.RatingBar.Small"/>
-    <style name="Widget.AppCompat.SearchView" parent="Base.Widget.AppCompat.SearchView"/>
-    <style name="Widget.AppCompat.SearchView.ActionBar" parent="Base.Widget.AppCompat.SearchView.ActionBar"/>
-    <style name="Widget.AppCompat.SeekBar" parent="Base.Widget.AppCompat.SeekBar"/>
-    <style name="Widget.AppCompat.SeekBar.Discrete" parent="Base.Widget.AppCompat.SeekBar.Discrete"/>
-    <style name="Widget.AppCompat.Spinner" parent="Base.Widget.AppCompat.Spinner"/>
-    <style name="Widget.AppCompat.Spinner.DropDown"/>
-    <style name="Widget.AppCompat.Spinner.DropDown.ActionBar"/>
-    <style name="Widget.AppCompat.Spinner.Underlined" parent="Base.Widget.AppCompat.Spinner.Underlined"/>
-    <style name="Widget.AppCompat.TextView.SpinnerItem" parent="Base.Widget.AppCompat.TextView.SpinnerItem"/>
-    <style name="Widget.AppCompat.Toolbar" parent="Base.Widget.AppCompat.Toolbar"/>
-    <style name="Widget.AppCompat.Toolbar.Button.Navigation" parent="Base.Widget.AppCompat.Toolbar.Button.Navigation"/>
-</resources>
\ No newline at end of file
diff --git a/android/.build/intermediates/res/resources-debug-androidTest.ap_ b/android/.build/intermediates/res/resources-debug-androidTest.ap_
deleted file mode 100644
index b947310883b65cc808f3a2dbbb2fffa5470f44f7..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/resources-debug-androidTest.ap_ and /dev/null differ
diff --git a/android/.build/intermediates/res/resources-debug.ap_ b/android/.build/intermediates/res/resources-debug.ap_
deleted file mode 100644
index 8ccb6502af3c4bcab7cf6e74e643c33de194d9fc..0000000000000000000000000000000000000000
Binary files a/android/.build/intermediates/res/resources-debug.ap_ and /dev/null differ
diff --git a/android/.build/intermediates/symbols/debug/R.txt b/android/.build/intermediates/symbols/debug/R.txt
deleted file mode 100644
index d2e0ce578c81e4f5dc2c59d024b3fb52529d0c8f..0000000000000000000000000000000000000000
--- a/android/.build/intermediates/symbols/debug/R.txt
+++ /dev/null
@@ -1,1523 +0,0 @@
-int anim abc_fade_in 0x7f040000
-int anim abc_fade_out 0x7f040001
-int anim abc_grow_fade_in_from_bottom 0x7f040002
-int anim abc_popup_enter 0x7f040003
-int anim abc_popup_exit 0x7f040004
-int anim abc_shrink_fade_out_from_bottom 0x7f040005
-int anim abc_slide_in_bottom 0x7f040006
-int anim abc_slide_in_top 0x7f040007
-int anim abc_slide_out_bottom 0x7f040008
-int anim abc_slide_out_top 0x7f040009
-int array bundled_in_assets 0x7f0a0000
-int array bundled_in_lib 0x7f0a0001
-int array bundled_libs 0x7f0a0002
-int array qt_libs 0x7f0a0003
-int array qt_sources 0x7f0a0004
-int attr actionBarDivider 0x7f010041
-int attr actionBarItemBackground 0x7f010042
-int attr actionBarPopupTheme 0x7f01003b
-int attr actionBarSize 0x7f010040
-int attr actionBarSplitStyle 0x7f01003d
-int attr actionBarStyle 0x7f01003c
-int attr actionBarTabBarStyle 0x7f010037
-int attr actionBarTabStyle 0x7f010036
-int attr actionBarTabTextStyle 0x7f010038
-int attr actionBarTheme 0x7f01003e
-int attr actionBarWidgetTheme 0x7f01003f
-int attr actionButtonStyle 0x7f01005c
-int attr actionDropDownStyle 0x7f010058
-int attr actionLayout 0x7f0100b0
-int attr actionMenuTextAppearance 0x7f010043
-int attr actionMenuTextColor 0x7f010044
-int attr actionModeBackground 0x7f010047
-int attr actionModeCloseButtonStyle 0x7f010046
-int attr actionModeCloseDrawable 0x7f010049
-int attr actionModeCopyDrawable 0x7f01004b
-int attr actionModeCutDrawable 0x7f01004a
-int attr actionModeFindDrawable 0x7f01004f
-int attr actionModePasteDrawable 0x7f01004c
-int attr actionModePopupWindowStyle 0x7f010051
-int attr actionModeSelectAllDrawable 0x7f01004d
-int attr actionModeShareDrawable 0x7f01004e
-int attr actionModeSplitBackground 0x7f010048
-int attr actionModeStyle 0x7f010045
-int attr actionModeWebSearchDrawable 0x7f010050
-int attr actionOverflowButtonStyle 0x7f010039
-int attr actionOverflowMenuStyle 0x7f01003a
-int attr actionProviderClass 0x7f0100b2
-int attr actionViewClass 0x7f0100b1
-int attr activityChooserViewStyle 0x7f010064
-int attr alertDialogButtonGroupStyle 0x7f010088
-int attr alertDialogCenterButtons 0x7f010089
-int attr alertDialogStyle 0x7f010087
-int attr alertDialogTheme 0x7f01008a
-int attr allowStacking 0x7f01009d
-int attr alpha 0x7f01009e
-int attr arrowHeadLength 0x7f0100a5
-int attr arrowShaftLength 0x7f0100a6
-int attr autoCompleteTextViewStyle 0x7f01008f
-int attr background 0x7f01000c
-int attr backgroundSplit 0x7f01000e
-int attr backgroundStacked 0x7f01000d
-int attr backgroundTint 0x7f0100e8
-int attr backgroundTintMode 0x7f0100e9
-int attr barLength 0x7f0100a7
-int attr borderlessButtonStyle 0x7f010061
-int attr buttonBarButtonStyle 0x7f01005e
-int attr buttonBarNegativeButtonStyle 0x7f01008d
-int attr buttonBarNeutralButtonStyle 0x7f01008e
-int attr buttonBarPositiveButtonStyle 0x7f01008c
-int attr buttonBarStyle 0x7f01005d
-int attr buttonGravity 0x7f0100dd
-int attr buttonPanelSideLayout 0x7f010021
-int attr buttonSize 0x7f0100c6
-int attr buttonStyle 0x7f010090
-int attr buttonStyleSmall 0x7f010091
-int attr buttonTint 0x7f01009f
-int attr buttonTintMode 0x7f0100a0
-int attr checkboxStyle 0x7f010092
-int attr checkedTextViewStyle 0x7f010093
-int attr circleCrop 0x7f0100ae
-int attr closeIcon 0x7f0100bd
-int attr closeItemLayout 0x7f01001e
-int attr collapseContentDescription 0x7f0100df
-int attr collapseIcon 0x7f0100de
-int attr color 0x7f0100a1
-int attr colorAccent 0x7f01007f
-int attr colorBackgroundFloating 0x7f010086
-int attr colorButtonNormal 0x7f010083
-int attr colorControlActivated 0x7f010081
-int attr colorControlHighlight 0x7f010082
-int attr colorControlNormal 0x7f010080
-int attr colorPrimary 0x7f01007d
-int attr colorPrimaryDark 0x7f01007e
-int attr colorScheme 0x7f0100c7
-int attr colorSwitchThumbNormal 0x7f010084
-int attr commitIcon 0x7f0100c2
-int attr contentInsetEnd 0x7f010017
-int attr contentInsetEndWithActions 0x7f01001b
-int attr contentInsetLeft 0x7f010018
-int attr contentInsetRight 0x7f010019
-int attr contentInsetStart 0x7f010016
-int attr contentInsetStartWithNavigation 0x7f01001a
-int attr controlBackground 0x7f010085
-int attr customNavigationLayout 0x7f01000f
-int attr defaultQueryHint 0x7f0100bc
-int attr dialogPreferredPadding 0x7f010056
-int attr dialogTheme 0x7f010055
-int attr displayOptions 0x7f010005
-int attr divider 0x7f01000b
-int attr dividerHorizontal 0x7f010063
-int attr dividerPadding 0x7f0100ab
-int attr dividerVertical 0x7f010062
-int attr drawableSize 0x7f0100a3
-int attr drawerArrowStyle 0x7f010000
-int attr dropDownListViewStyle 0x7f010075
-int attr dropdownListPreferredItemHeight 0x7f010059
-int attr editTextBackground 0x7f01006a
-int attr editTextColor 0x7f010069
-int attr editTextStyle 0x7f010094
-int attr elevation 0x7f01001c
-int attr expandActivityOverflowButtonDrawable 0x7f010020
-int attr gapBetweenBars 0x7f0100a4
-int attr goIcon 0x7f0100be
-int attr height 0x7f010001
-int attr hideOnContentScroll 0x7f010015
-int attr homeAsUpIndicator 0x7f01005b
-int attr homeLayout 0x7f010010
-int attr icon 0x7f010009
-int attr iconifiedByDefault 0x7f0100ba
-int attr imageAspectRatio 0x7f0100ad
-int attr imageAspectRatioAdjust 0x7f0100ac
-int attr imageButtonStyle 0x7f01006b
-int attr indeterminateProgressStyle 0x7f010012
-int attr initialActivityCount 0x7f01001f
-int attr isLightTheme 0x7f010002
-int attr itemPadding 0x7f010014
-int attr layout 0x7f0100b9
-int attr listChoiceBackgroundIndicator 0x7f01007c
-int attr listDividerAlertDialog 0x7f010057
-int attr listItemLayout 0x7f010025
-int attr listLayout 0x7f010022
-int attr listMenuViewStyle 0x7f01009c
-int attr listPopupWindowStyle 0x7f010076
-int attr listPreferredItemHeight 0x7f010070
-int attr listPreferredItemHeightLarge 0x7f010072
-int attr listPreferredItemHeightSmall 0x7f010071
-int attr listPreferredItemPaddingLeft 0x7f010073
-int attr listPreferredItemPaddingRight 0x7f010074
-int attr logo 0x7f01000a
-int attr logoDescription 0x7f0100e2
-int attr maxButtonHeight 0x7f0100dc
-int attr measureWithLargestChild 0x7f0100a9
-int attr multiChoiceItemLayout 0x7f010023
-int attr navigationContentDescription 0x7f0100e1
-int attr navigationIcon 0x7f0100e0
-int attr navigationMode 0x7f010004
-int attr overlapAnchor 0x7f0100b5
-int attr paddingBottomNoButtons 0x7f0100b7
-int attr paddingEnd 0x7f0100e6
-int attr paddingStart 0x7f0100e5
-int attr paddingTopNoTitle 0x7f0100b8
-int attr panelBackground 0x7f010079
-int attr panelMenuListTheme 0x7f01007b
-int attr panelMenuListWidth 0x7f01007a
-int attr popupMenuStyle 0x7f010067
-int attr popupTheme 0x7f01001d
-int attr popupWindowStyle 0x7f010068
-int attr preserveIconSpacing 0x7f0100b3
-int attr progressBarPadding 0x7f010013
-int attr progressBarStyle 0x7f010011
-int attr queryBackground 0x7f0100c4
-int attr queryHint 0x7f0100bb
-int attr radioButtonStyle 0x7f010095
-int attr ratingBarStyle 0x7f010096
-int attr ratingBarStyleIndicator 0x7f010097
-int attr ratingBarStyleSmall 0x7f010098
-int attr scopeUris 0x7f0100c8
-int attr searchHintIcon 0x7f0100c0
-int attr searchIcon 0x7f0100bf
-int attr searchViewStyle 0x7f01006f
-int attr seekBarStyle 0x7f010099
-int attr selectableItemBackground 0x7f01005f
-int attr selectableItemBackgroundBorderless 0x7f010060
-int attr showAsAction 0x7f0100af
-int attr showDividers 0x7f0100aa
-int attr showText 0x7f0100d3
-int attr showTitle 0x7f010026
-int attr singleChoiceItemLayout 0x7f010024
-int attr spinBars 0x7f0100a2
-int attr spinnerDropDownItemStyle 0x7f01005a
-int attr spinnerStyle 0x7f01009a
-int attr splitTrack 0x7f0100d2
-int attr srcCompat 0x7f010027
-int attr state_above_anchor 0x7f0100b6
-int attr subMenuArrow 0x7f0100b4
-int attr submitBackground 0x7f0100c5
-int attr subtitle 0x7f010006
-int attr subtitleTextAppearance 0x7f0100d5
-int attr subtitleTextColor 0x7f0100e4
-int attr subtitleTextStyle 0x7f010008
-int attr suggestionRowLayout 0x7f0100c3
-int attr switchMinWidth 0x7f0100d0
-int attr switchPadding 0x7f0100d1
-int attr switchStyle 0x7f01009b
-int attr switchTextAppearance 0x7f0100cf
-int attr textAllCaps 0x7f01002b
-int attr textAppearanceLargePopupMenu 0x7f010052
-int attr textAppearanceListItem 0x7f010077
-int attr textAppearanceListItemSmall 0x7f010078
-int attr textAppearancePopupMenuHeader 0x7f010054
-int attr textAppearanceSearchResultSubtitle 0x7f01006d
-int attr textAppearanceSearchResultTitle 0x7f01006c
-int attr textAppearanceSmallPopupMenu 0x7f010053
-int attr textColorAlertDialogListItem 0x7f01008b
-int attr textColorSearchUrl 0x7f01006e
-int attr theme 0x7f0100e7
-int attr thickness 0x7f0100a8
-int attr thumbTextPadding 0x7f0100ce
-int attr thumbTint 0x7f0100c9
-int attr thumbTintMode 0x7f0100ca
-int attr tickMark 0x7f010028
-int attr tickMarkTint 0x7f010029
-int attr tickMarkTintMode 0x7f01002a
-int attr title 0x7f010003
-int attr titleMargin 0x7f0100d6
-int attr titleMarginBottom 0x7f0100da
-int attr titleMarginEnd 0x7f0100d8
-int attr titleMarginStart 0x7f0100d7
-int attr titleMarginTop 0x7f0100d9
-int attr titleMargins 0x7f0100db
-int attr titleTextAppearance 0x7f0100d4
-int attr titleTextColor 0x7f0100e3
-int attr titleTextStyle 0x7f010007
-int attr toolbarNavigationButtonStyle 0x7f010066
-int attr toolbarStyle 0x7f010065
-int attr track 0x7f0100cb
-int attr trackTint 0x7f0100cc
-int attr trackTintMode 0x7f0100cd
-int attr voiceIcon 0x7f0100c1
-int attr windowActionBar 0x7f01002c
-int attr windowActionBarOverlay 0x7f01002e
-int attr windowActionModeOverlay 0x7f01002f
-int attr windowFixedHeightMajor 0x7f010033
-int attr windowFixedHeightMinor 0x7f010031
-int attr windowFixedWidthMajor 0x7f010030
-int attr windowFixedWidthMinor 0x7f010032
-int attr windowMinWidthMajor 0x7f010034
-int attr windowMinWidthMinor 0x7f010035
-int attr windowNoTitle 0x7f01002d
-int bool abc_action_bar_embed_tabs 0x7f080000
-int bool abc_allow_stacked_button_bar 0x7f080001
-int bool abc_config_actionMenuItemAllCaps 0x7f080002
-int bool abc_config_closeDialogWhenTouchOutside 0x7f080003
-int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f080004
-int color abc_background_cache_hint_selector_material_dark 0x7f090043
-int color abc_background_cache_hint_selector_material_light 0x7f090044
-int color abc_btn_colored_borderless_text_material 0x7f090045
-int color abc_btn_colored_text_material 0x7f090046
-int color abc_color_highlight_material 0x7f090047
-int color abc_hint_foreground_material_dark 0x7f090048
-int color abc_hint_foreground_material_light 0x7f090049
-int color abc_input_method_navigation_guard 0x7f090001
-int color abc_primary_text_disable_only_material_dark 0x7f09004a
-int color abc_primary_text_disable_only_material_light 0x7f09004b
-int color abc_primary_text_material_dark 0x7f09004c
-int color abc_primary_text_material_light 0x7f09004d
-int color abc_search_url_text 0x7f09004e
-int color abc_search_url_text_normal 0x7f090002
-int color abc_search_url_text_pressed 0x7f090003
-int color abc_search_url_text_selected 0x7f090004
-int color abc_secondary_text_material_dark 0x7f09004f
-int color abc_secondary_text_material_light 0x7f090050
-int color abc_tint_btn_checkable 0x7f090051
-int color abc_tint_default 0x7f090052
-int color abc_tint_edittext 0x7f090053
-int color abc_tint_seek_thumb 0x7f090054
-int color abc_tint_spinner 0x7f090055
-int color abc_tint_switch_thumb 0x7f090056
-int color abc_tint_switch_track 0x7f090057
-int color accent_material_dark 0x7f090005
-int color accent_material_light 0x7f090006
-int color background_floating_material_dark 0x7f090007
-int color background_floating_material_light 0x7f090008
-int color background_material_dark 0x7f090009
-int color background_material_light 0x7f09000a
-int color bright_foreground_disabled_material_dark 0x7f09000b
-int color bright_foreground_disabled_material_light 0x7f09000c
-int color bright_foreground_inverse_material_dark 0x7f09000d
-int color bright_foreground_inverse_material_light 0x7f09000e
-int color bright_foreground_material_dark 0x7f09000f
-int color bright_foreground_material_light 0x7f090010
-int color button_material_dark 0x7f090011
-int color button_material_light 0x7f090012
-int color common_google_signin_btn_text_dark 0x7f090058
-int color common_google_signin_btn_text_dark_default 0x7f090013
-int color common_google_signin_btn_text_dark_disabled 0x7f090014
-int color common_google_signin_btn_text_dark_focused 0x7f090015
-int color common_google_signin_btn_text_dark_pressed 0x7f090016
-int color common_google_signin_btn_text_light 0x7f090059
-int color common_google_signin_btn_text_light_default 0x7f090017
-int color common_google_signin_btn_text_light_disabled 0x7f090018
-int color common_google_signin_btn_text_light_focused 0x7f090019
-int color common_google_signin_btn_text_light_pressed 0x7f09001a
-int color common_google_signin_btn_tint 0x7f09005a
-int color dim_foreground_disabled_material_dark 0x7f09001b
-int color dim_foreground_disabled_material_light 0x7f09001c
-int color dim_foreground_material_dark 0x7f09001d
-int color dim_foreground_material_light 0x7f09001e
-int color foreground_material_dark 0x7f09001f
-int color foreground_material_light 0x7f090020
-int color highlighted_text_material_dark 0x7f090021
-int color highlighted_text_material_light 0x7f090022
-int color material_blue_grey_800 0x7f090023
-int color material_blue_grey_900 0x7f090024
-int color material_blue_grey_950 0x7f090025
-int color material_deep_teal_200 0x7f090026
-int color material_deep_teal_500 0x7f090027
-int color material_grey_100 0x7f090028
-int color material_grey_300 0x7f090029
-int color material_grey_50 0x7f09002a
-int color material_grey_600 0x7f09002b
-int color material_grey_800 0x7f09002c
-int color material_grey_850 0x7f09002d
-int color material_grey_900 0x7f09002e
-int color notification_action_color_filter 0x7f090000
-int color notification_icon_bg_color 0x7f09002f
-int color notification_material_background_media_default_color 0x7f090030
-int color primary_dark_material_dark 0x7f090031
-int color primary_dark_material_light 0x7f090032
-int color primary_material_dark 0x7f090033
-int color primary_material_light 0x7f090034
-int color primary_text_default_material_dark 0x7f090035
-int color primary_text_default_material_light 0x7f090036
-int color primary_text_disabled_material_dark 0x7f090037
-int color primary_text_disabled_material_light 0x7f090038
-int color ripple_material_dark 0x7f090039
-int color ripple_material_light 0x7f09003a
-int color secondary_text_default_material_dark 0x7f09003b
-int color secondary_text_default_material_light 0x7f09003c
-int color secondary_text_disabled_material_dark 0x7f09003d
-int color secondary_text_disabled_material_light 0x7f09003e
-int color switch_thumb_disabled_material_dark 0x7f09003f
-int color switch_thumb_disabled_material_light 0x7f090040
-int color switch_thumb_material_dark 0x7f09005b
-int color switch_thumb_material_light 0x7f09005c
-int color switch_thumb_normal_material_dark 0x7f090041
-int color switch_thumb_normal_material_light 0x7f090042
-int dimen abc_action_bar_content_inset_material 0x7f06000c
-int dimen abc_action_bar_content_inset_with_nav 0x7f06000d
-int dimen abc_action_bar_default_height_material 0x7f060001
-int dimen abc_action_bar_default_padding_end_material 0x7f06000e
-int dimen abc_action_bar_default_padding_start_material 0x7f06000f
-int dimen abc_action_bar_elevation_material 0x7f060016
-int dimen abc_action_bar_icon_vertical_padding_material 0x7f060017
-int dimen abc_action_bar_overflow_padding_end_material 0x7f060018
-int dimen abc_action_bar_overflow_padding_start_material 0x7f060019
-int dimen abc_action_bar_progress_bar_size 0x7f060002
-int dimen abc_action_bar_stacked_max_height 0x7f06001a
-int dimen abc_action_bar_stacked_tab_max_width 0x7f06001b
-int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f06001c
-int dimen abc_action_bar_subtitle_top_margin_material 0x7f06001d
-int dimen abc_action_button_min_height_material 0x7f06001e
-int dimen abc_action_button_min_width_material 0x7f06001f
-int dimen abc_action_button_min_width_overflow_material 0x7f060020
-int dimen abc_alert_dialog_button_bar_height 0x7f060000
-int dimen abc_button_inset_horizontal_material 0x7f060021
-int dimen abc_button_inset_vertical_material 0x7f060022
-int dimen abc_button_padding_horizontal_material 0x7f060023
-int dimen abc_button_padding_vertical_material 0x7f060024
-int dimen abc_cascading_menus_min_smallest_width 0x7f060025
-int dimen abc_config_prefDialogWidth 0x7f060005
-int dimen abc_control_corner_material 0x7f060026
-int dimen abc_control_inset_material 0x7f060027
-int dimen abc_control_padding_material 0x7f060028
-int dimen abc_dialog_fixed_height_major 0x7f060006
-int dimen abc_dialog_fixed_height_minor 0x7f060007
-int dimen abc_dialog_fixed_width_major 0x7f060008
-int dimen abc_dialog_fixed_width_minor 0x7f060009
-int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f060029
-int dimen abc_dialog_list_padding_top_no_title 0x7f06002a
-int dimen abc_dialog_min_width_major 0x7f06000a
-int dimen abc_dialog_min_width_minor 0x7f06000b
-int dimen abc_dialog_padding_material 0x7f06002b
-int dimen abc_dialog_padding_top_material 0x7f06002c
-int dimen abc_dialog_title_divider_material 0x7f06002d
-int dimen abc_disabled_alpha_material_dark 0x7f06002e
-int dimen abc_disabled_alpha_material_light 0x7f06002f
-int dimen abc_dropdownitem_icon_width 0x7f060030
-int dimen abc_dropdownitem_text_padding_left 0x7f060031
-int dimen abc_dropdownitem_text_padding_right 0x7f060032
-int dimen abc_edit_text_inset_bottom_material 0x7f060033
-int dimen abc_edit_text_inset_horizontal_material 0x7f060034
-int dimen abc_edit_text_inset_top_material 0x7f060035
-int dimen abc_floating_window_z 0x7f060036
-int dimen abc_list_item_padding_horizontal_material 0x7f060037
-int dimen abc_panel_menu_list_width 0x7f060038
-int dimen abc_progress_bar_height_material 0x7f060039
-int dimen abc_search_view_preferred_height 0x7f06003a
-int dimen abc_search_view_preferred_width 0x7f06003b
-int dimen abc_seekbar_track_background_height_material 0x7f06003c
-int dimen abc_seekbar_track_progress_height_material 0x7f06003d
-int dimen abc_select_dialog_padding_start_material 0x7f06003e
-int dimen abc_switch_padding 0x7f060011
-int dimen abc_text_size_body_1_material 0x7f06003f
-int dimen abc_text_size_body_2_material 0x7f060040
-int dimen abc_text_size_button_material 0x7f060041
-int dimen abc_text_size_caption_material 0x7f060042
-int dimen abc_text_size_display_1_material 0x7f060043
-int dimen abc_text_size_display_2_material 0x7f060044
-int dimen abc_text_size_display_3_material 0x7f060045
-int dimen abc_text_size_display_4_material 0x7f060046
-int dimen abc_text_size_headline_material 0x7f060047
-int dimen abc_text_size_large_material 0x7f060048
-int dimen abc_text_size_medium_material 0x7f060049
-int dimen abc_text_size_menu_header_material 0x7f06004a
-int dimen abc_text_size_menu_material 0x7f06004b
-int dimen abc_text_size_small_material 0x7f06004c
-int dimen abc_text_size_subhead_material 0x7f06004d
-int dimen abc_text_size_subtitle_material_toolbar 0x7f060003
-int dimen abc_text_size_title_material 0x7f06004e
-int dimen abc_text_size_title_material_toolbar 0x7f060004
-int dimen activity_horizontal_margin 0x7f060015
-int dimen activity_vertical_margin 0x7f06004f
-int dimen disabled_alpha_material_dark 0x7f060050
-int dimen disabled_alpha_material_light 0x7f060051
-int dimen highlight_alpha_material_colored 0x7f060052
-int dimen highlight_alpha_material_dark 0x7f060053
-int dimen highlight_alpha_material_light 0x7f060054
-int dimen hint_alpha_material_dark 0x7f060055
-int dimen hint_alpha_material_light 0x7f060056
-int dimen hint_pressed_alpha_material_dark 0x7f060057
-int dimen hint_pressed_alpha_material_light 0x7f060058
-int dimen notification_action_icon_size 0x7f060059
-int dimen notification_action_text_size 0x7f06005a
-int dimen notification_big_circle_margin 0x7f06005b
-int dimen notification_content_margin_start 0x7f060012
-int dimen notification_large_icon_height 0x7f06005c
-int dimen notification_large_icon_width 0x7f06005d
-int dimen notification_main_column_padding_top 0x7f060013
-int dimen notification_media_narrow_margin 0x7f060014
-int dimen notification_right_icon_size 0x7f06005e
-int dimen notification_right_side_padding_top 0x7f060010
-int dimen notification_small_icon_background_padding 0x7f06005f
-int dimen notification_small_icon_size_as_large 0x7f060060
-int dimen notification_subtext_size 0x7f060061
-int dimen notification_top_pad 0x7f060062
-int dimen notification_top_pad_large_text 0x7f060063
-int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
-int drawable abc_action_bar_item_background_material 0x7f020001
-int drawable abc_btn_borderless_material 0x7f020002
-int drawable abc_btn_check_material 0x7f020003
-int drawable abc_btn_check_to_on_mtrl_000 0x7f020004
-int drawable abc_btn_check_to_on_mtrl_015 0x7f020005
-int drawable abc_btn_colored_material 0x7f020006
-int drawable abc_btn_default_mtrl_shape 0x7f020007
-int drawable abc_btn_radio_material 0x7f020008
-int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009
-int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a
-int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000b
-int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000c
-int drawable abc_cab_background_internal_bg 0x7f02000d
-int drawable abc_cab_background_top_material 0x7f02000e
-int drawable abc_cab_background_top_mtrl_alpha 0x7f02000f
-int drawable abc_control_background_material 0x7f020010
-int drawable abc_dialog_material_background 0x7f020011
-int drawable abc_edit_text_material 0x7f020012
-int drawable abc_ic_ab_back_material 0x7f020013
-int drawable abc_ic_arrow_drop_right_black_24dp 0x7f020014
-int drawable abc_ic_clear_material 0x7f020015
-int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020016
-int drawable abc_ic_go_search_api_material 0x7f020017
-int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f020018
-int drawable abc_ic_menu_cut_mtrl_alpha 0x7f020019
-int drawable abc_ic_menu_overflow_material 0x7f02001a
-int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001b
-int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001c
-int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001d
-int drawable abc_ic_search_api_material 0x7f02001e
-int drawable abc_ic_star_black_16dp 0x7f02001f
-int drawable abc_ic_star_black_36dp 0x7f020020
-int drawable abc_ic_star_black_48dp 0x7f020021
-int drawable abc_ic_star_half_black_16dp 0x7f020022
-int drawable abc_ic_star_half_black_36dp 0x7f020023
-int drawable abc_ic_star_half_black_48dp 0x7f020024
-int drawable abc_ic_voice_search_api_material 0x7f020025
-int drawable abc_item_background_holo_dark 0x7f020026
-int drawable abc_item_background_holo_light 0x7f020027
-int drawable abc_list_divider_mtrl_alpha 0x7f020028
-int drawable abc_list_focused_holo 0x7f020029
-int drawable abc_list_longpressed_holo 0x7f02002a
-int drawable abc_list_pressed_holo_dark 0x7f02002b
-int drawable abc_list_pressed_holo_light 0x7f02002c
-int drawable abc_list_selector_background_transition_holo_dark 0x7f02002d
-int drawable abc_list_selector_background_transition_holo_light 0x7f02002e
-int drawable abc_list_selector_disabled_holo_dark 0x7f02002f
-int drawable abc_list_selector_disabled_holo_light 0x7f020030
-int drawable abc_list_selector_holo_dark 0x7f020031
-int drawable abc_list_selector_holo_light 0x7f020032
-int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f020033
-int drawable abc_popup_background_mtrl_mult 0x7f020034
-int drawable abc_ratingbar_indicator_material 0x7f020035
-int drawable abc_ratingbar_material 0x7f020036
-int drawable abc_ratingbar_small_material 0x7f020037
-int drawable abc_scrubber_control_off_mtrl_alpha 0x7f020038
-int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f020039
-int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f02003a
-int drawable abc_scrubber_primary_mtrl_alpha 0x7f02003b
-int drawable abc_scrubber_track_mtrl_alpha 0x7f02003c
-int drawable abc_seekbar_thumb_material 0x7f02003d
-int drawable abc_seekbar_tick_mark_material 0x7f02003e
-int drawable abc_seekbar_track_material 0x7f02003f
-int drawable abc_spinner_mtrl_am_alpha 0x7f020040
-int drawable abc_spinner_textfield_background_material 0x7f020041
-int drawable abc_switch_thumb_material 0x7f020042
-int drawable abc_switch_track_mtrl_alpha 0x7f020043
-int drawable abc_tab_indicator_material 0x7f020044
-int drawable abc_tab_indicator_mtrl_alpha 0x7f020045
-int drawable abc_text_cursor_material 0x7f020046
-int drawable abc_text_select_handle_left_mtrl_dark 0x7f020047
-int drawable abc_text_select_handle_left_mtrl_light 0x7f020048
-int drawable abc_text_select_handle_middle_mtrl_dark 0x7f020049
-int drawable abc_text_select_handle_middle_mtrl_light 0x7f02004a
-int drawable abc_text_select_handle_right_mtrl_dark 0x7f02004b
-int drawable abc_text_select_handle_right_mtrl_light 0x7f02004c
-int drawable abc_textfield_activated_mtrl_alpha 0x7f02004d
-int drawable abc_textfield_default_mtrl_alpha 0x7f02004e
-int drawable abc_textfield_search_activated_mtrl_alpha 0x7f02004f
-int drawable abc_textfield_search_default_mtrl_alpha 0x7f020050
-int drawable abc_textfield_search_material 0x7f020051
-int drawable abc_vector_test 0x7f020052
-int drawable common_full_open_on_phone 0x7f020053
-int drawable common_google_signin_btn_icon_dark 0x7f020054
-int drawable common_google_signin_btn_icon_dark_focused 0x7f020055
-int drawable common_google_signin_btn_icon_dark_normal 0x7f020056
-int drawable common_google_signin_btn_icon_dark_normal_background 0x7f020057
-int drawable common_google_signin_btn_icon_disabled 0x7f020058
-int drawable common_google_signin_btn_icon_light 0x7f020059
-int drawable common_google_signin_btn_icon_light_focused 0x7f02005a
-int drawable common_google_signin_btn_icon_light_normal 0x7f02005b
-int drawable common_google_signin_btn_icon_light_normal_background 0x7f02005c
-int drawable common_google_signin_btn_text_dark 0x7f02005d
-int drawable common_google_signin_btn_text_dark_focused 0x7f02005e
-int drawable common_google_signin_btn_text_dark_normal 0x7f02005f
-int drawable common_google_signin_btn_text_dark_normal_background 0x7f020060
-int drawable common_google_signin_btn_text_disabled 0x7f020061
-int drawable common_google_signin_btn_text_light 0x7f020062
-int drawable common_google_signin_btn_text_light_focused 0x7f020063
-int drawable common_google_signin_btn_text_light_normal 0x7f020064
-int drawable common_google_signin_btn_text_light_normal_background 0x7f020065
-int drawable googleg_disabled_color_18 0x7f020066
-int drawable googleg_standard_color_18 0x7f020067
-int drawable ic_stat_name 0x7f020068
-int drawable icon 0x7f020069
-int drawable notification_action_background 0x7f02006a
-int drawable notification_bg 0x7f02006b
-int drawable notification_bg_low 0x7f02006c
-int drawable notification_bg_low_normal 0x7f02006d
-int drawable notification_bg_low_pressed 0x7f02006e
-int drawable notification_bg_normal 0x7f02006f
-int drawable notification_bg_normal_pressed 0x7f020070
-int drawable notification_icon 0x7f020071
-int drawable notification_icon_background 0x7f020072
-int drawable notification_template_icon_bg 0x7f020076
-int drawable notification_template_icon_low_bg 0x7f020077
-int drawable notification_tile_bg 0x7f020073
-int drawable notify_panel_notification_icon_bg 0x7f020074
-int drawable splash 0x7f020075
-int id action0 0x7f0b0063
-int id action_bar 0x7f0b0050
-int id action_bar_activity_content 0x7f0b0000
-int id action_bar_container 0x7f0b004f
-int id action_bar_root 0x7f0b004b
-int id action_bar_spinner 0x7f0b0001
-int id action_bar_subtitle 0x7f0b002e
-int id action_bar_title 0x7f0b002d
-int id action_container 0x7f0b0060
-int id action_context_bar 0x7f0b0051
-int id action_divider 0x7f0b0067
-int id action_image 0x7f0b0061
-int id action_menu_divider 0x7f0b0002
-int id action_menu_presenter 0x7f0b0003
-int id action_mode_bar 0x7f0b004d
-int id action_mode_bar_stub 0x7f0b004c
-int id action_mode_close_button 0x7f0b002f
-int id action_text 0x7f0b0062
-int id actions 0x7f0b0070
-int id activity_chooser_view_content 0x7f0b0030
-int id activity_jits_call 0x7f0b005f
-int id add 0x7f0b0014
-int id adjust_height 0x7f0b001e
-int id adjust_width 0x7f0b001f
-int id alertTitle 0x7f0b0044
-int id always 0x7f0b0020
-int id auto 0x7f0b0028
-int id beginning 0x7f0b001b
-int id bottom 0x7f0b002b
-int id buttonPanel 0x7f0b0037
-int id cancel_action 0x7f0b0064
-int id checkbox 0x7f0b0047
-int id chronometer 0x7f0b006c
-int id collapseActionView 0x7f0b0021
-int id contentPanel 0x7f0b003a
-int id crash_reporting_present 0x7f0b0004
-int id custom 0x7f0b0041
-int id customPanel 0x7f0b0040
-int id dark 0x7f0b0029
-int id decor_content_parent 0x7f0b004e
-int id default_activity_button 0x7f0b0033
-int id disableHome 0x7f0b000d
-int id edit_query 0x7f0b0052
-int id end 0x7f0b001c
-int id end_padder 0x7f0b0076
-int id expand_activities_button 0x7f0b0031
-int id expanded_menu 0x7f0b0046
-int id home 0x7f0b0005
-int id homeAsUp 0x7f0b000e
-int id icon 0x7f0b0035
-int id icon_group 0x7f0b0071
-int id icon_only 0x7f0b0025
-int id ifRoom 0x7f0b0022
-int id image 0x7f0b0032
-int id info 0x7f0b006d
-int id light 0x7f0b002a
-int id line1 0x7f0b0072
-int id line3 0x7f0b0074
-int id listMode 0x7f0b000a
-int id list_item 0x7f0b0034
-int id media_actions 0x7f0b0066
-int id middle 0x7f0b001d
-int id multiply 0x7f0b0015
-int id never 0x7f0b0023
-int id none 0x7f0b000f
-int id normal 0x7f0b000b
-int id notification_background 0x7f0b006e
-int id notification_main_column 0x7f0b0069
-int id notification_main_column_container 0x7f0b0068
-int id parentPanel 0x7f0b0039
-int id progress_circular 0x7f0b0006
-int id progress_horizontal 0x7f0b0007
-int id radio 0x7f0b0049
-int id right_icon 0x7f0b006f
-int id right_side 0x7f0b006a
-int id screen 0x7f0b0016
-int id scrollIndicatorDown 0x7f0b003f
-int id scrollIndicatorUp 0x7f0b003b
-int id scrollView 0x7f0b003c
-int id search_badge 0x7f0b0054
-int id search_bar 0x7f0b0053
-int id search_button 0x7f0b0055
-int id search_close_btn 0x7f0b005a
-int id search_edit_frame 0x7f0b0056
-int id search_go_btn 0x7f0b005c
-int id search_mag_icon 0x7f0b0057
-int id search_plate 0x7f0b0058
-int id search_src_text 0x7f0b0059
-int id search_voice_btn 0x7f0b005d
-int id select_dialog_listview 0x7f0b005e
-int id shortcut 0x7f0b0048
-int id showCustom 0x7f0b0010
-int id showHome 0x7f0b0011
-int id showTitle 0x7f0b0012
-int id spacer 0x7f0b0038
-int id split_action_bar 0x7f0b0008
-int id src_atop 0x7f0b0017
-int id src_in 0x7f0b0018
-int id src_over 0x7f0b0019
-int id standard 0x7f0b0026
-int id status_bar_latest_event_content 0x7f0b0065
-int id submenuarrow 0x7f0b004a
-int id submit_area 0x7f0b005b
-int id tabMode 0x7f0b000c
-int id text 0x7f0b0075
-int id text2 0x7f0b0073
-int id textSpacerNoButtons 0x7f0b003e
-int id textSpacerNoTitle 0x7f0b003d
-int id time 0x7f0b006b
-int id title 0x7f0b0036
-int id titleDividerNoCustom 0x7f0b0045
-int id title_template 0x7f0b0043
-int id top 0x7f0b002c
-int id topPanel 0x7f0b0042
-int id up 0x7f0b0009
-int id useLogo 0x7f0b0013
-int id wide 0x7f0b0027
-int id withText 0x7f0b0024
-int id wrap_content 0x7f0b001a
-int integer abc_config_activityDefaultDur 0x7f0c0000
-int integer abc_config_activityShortDur 0x7f0c0001
-int integer cancel_button_image_alpha 0x7f0c0002
-int integer google_play_services_version 0x7f0c0003
-int integer status_bar_notification_info_maxnum 0x7f0c0004
-int layout abc_action_bar_title_item 0x7f030000
-int layout abc_action_bar_up_container 0x7f030001
-int layout abc_action_bar_view_list_nav_layout 0x7f030002
-int layout abc_action_menu_item_layout 0x7f030003
-int layout abc_action_menu_layout 0x7f030004
-int layout abc_action_mode_bar 0x7f030005
-int layout abc_action_mode_close_item_material 0x7f030006
-int layout abc_activity_chooser_view 0x7f030007
-int layout abc_activity_chooser_view_list_item 0x7f030008
-int layout abc_alert_dialog_button_bar_material 0x7f030009
-int layout abc_alert_dialog_material 0x7f03000a
-int layout abc_alert_dialog_title_material 0x7f03000b
-int layout abc_dialog_title_material 0x7f03000c
-int layout abc_expanded_menu_layout 0x7f03000d
-int layout abc_list_menu_item_checkbox 0x7f03000e
-int layout abc_list_menu_item_icon 0x7f03000f
-int layout abc_list_menu_item_layout 0x7f030010
-int layout abc_list_menu_item_radio 0x7f030011
-int layout abc_popup_menu_header_item_layout 0x7f030012
-int layout abc_popup_menu_item_layout 0x7f030013
-int layout abc_screen_content_include 0x7f030014
-int layout abc_screen_simple 0x7f030015
-int layout abc_screen_simple_overlay_action_mode 0x7f030016
-int layout abc_screen_toolbar 0x7f030017
-int layout abc_search_dropdown_item_icons_2line 0x7f030018
-int layout abc_search_view 0x7f030019
-int layout abc_select_dialog_material 0x7f03001a
-int layout activity_jits_call 0x7f03001b
-int layout notification_action 0x7f03001c
-int layout notification_action_tombstone 0x7f03001d
-int layout notification_media_action 0x7f03001e
-int layout notification_media_cancel_action 0x7f03001f
-int layout notification_template_big_media 0x7f030020
-int layout notification_template_big_media_custom 0x7f030021
-int layout notification_template_big_media_narrow 0x7f030022
-int layout notification_template_big_media_narrow_custom 0x7f030023
-int layout notification_template_custom_big 0x7f030024
-int layout notification_template_icon_group 0x7f030025
-int layout notification_template_lines_media 0x7f030026
-int layout notification_template_media 0x7f030027
-int layout notification_template_media_custom 0x7f030028
-int layout notification_template_part_chronometer 0x7f030029
-int layout notification_template_part_time 0x7f03002a
-int layout select_dialog_item_material 0x7f03002b
-int layout select_dialog_multichoice_material 0x7f03002c
-int layout select_dialog_singlechoice_material 0x7f03002d
-int layout splash 0x7f03002e
-int layout support_simple_spinner_dropdown_item 0x7f03002f
-int string abc_action_bar_home_description 0x7f050000
-int string abc_action_bar_home_description_format 0x7f050001
-int string abc_action_bar_home_subtitle_description_format 0x7f050002
-int string abc_action_bar_up_description 0x7f050003
-int string abc_action_menu_overflow_description 0x7f050004
-int string abc_action_mode_done 0x7f050005
-int string abc_activity_chooser_view_see_all 0x7f050006
-int string abc_activitychooserview_choose_application 0x7f050007
-int string abc_capital_off 0x7f050008
-int string abc_capital_on 0x7f050009
-int string abc_font_family_body_1_material 0x7f05002a
-int string abc_font_family_body_2_material 0x7f05002b
-int string abc_font_family_button_material 0x7f05002c
-int string abc_font_family_caption_material 0x7f05002d
-int string abc_font_family_display_1_material 0x7f05002e
-int string abc_font_family_display_2_material 0x7f05002f
-int string abc_font_family_display_3_material 0x7f050030
-int string abc_font_family_display_4_material 0x7f050031
-int string abc_font_family_headline_material 0x7f050032
-int string abc_font_family_menu_material 0x7f050033
-int string abc_font_family_subhead_material 0x7f050034
-int string abc_font_family_title_material 0x7f050035
-int string abc_search_hint 0x7f05000a
-int string abc_searchview_description_clear 0x7f05000b
-int string abc_searchview_description_query 0x7f05000c
-int string abc_searchview_description_search 0x7f05000d
-int string abc_searchview_description_submit 0x7f05000e
-int string abc_searchview_description_voice 0x7f05000f
-int string abc_shareactionprovider_share_with 0x7f050010
-int string abc_shareactionprovider_share_with_application 0x7f050011
-int string abc_toolbar_collapse_description 0x7f050012
-int string com_crashlytics_android_build_id 0x7f050036
-int string common_google_play_services_enable_button 0x7f050013
-int string common_google_play_services_enable_text 0x7f050014
-int string common_google_play_services_enable_title 0x7f050015
-int string common_google_play_services_install_button 0x7f050016
-int string common_google_play_services_install_text 0x7f050017
-int string common_google_play_services_install_title 0x7f050018
-int string common_google_play_services_notification_ticker 0x7f050019
-int string common_google_play_services_unknown_issue 0x7f05001a
-int string common_google_play_services_unsupported_text 0x7f05001b
-int string common_google_play_services_update_button 0x7f05001c
-int string common_google_play_services_update_text 0x7f05001d
-int string common_google_play_services_update_title 0x7f05001e
-int string common_google_play_services_updating_text 0x7f05001f
-int string common_google_play_services_wear_update_text 0x7f050020
-int string common_open_on_phone 0x7f050021
-int string common_signin_button_text 0x7f050022
-int string common_signin_button_text_long 0x7f050023
-int string default_web_client_id 0x7f050037
-int string fatal_error_msg 0x7f050026
-int string firebase_database_url 0x7f050038
-int string gcm_defaultSenderId 0x7f050039
-int string google_api_key 0x7f05003a
-int string google_app_id 0x7f05003b
-int string google_crash_reporting_api_key 0x7f05003c
-int string google_storage_bucket 0x7f05003d
-int string ministro_needed_msg 0x7f050027
-int string ministro_not_found_msg 0x7f050028
-int string search_menu_title 0x7f050024
-int string status_bar_notification_info_overflow 0x7f050025
-int string unsupported_android_version 0x7f050029
-int style AlertDialog_AppCompat 0x7f07009f
-int style AlertDialog_AppCompat_Light 0x7f0700a0
-int style Animation_AppCompat_Dialog 0x7f0700a1
-int style Animation_AppCompat_DropDownUp 0x7f0700a2
-int style Base_AlertDialog_AppCompat 0x7f0700a3
-int style Base_AlertDialog_AppCompat_Light 0x7f0700a4
-int style Base_Animation_AppCompat_Dialog 0x7f0700a5
-int style Base_Animation_AppCompat_DropDownUp 0x7f0700a6
-int style Base_DialogWindowTitle_AppCompat 0x7f0700a7
-int style Base_DialogWindowTitleBackground_AppCompat 0x7f0700a8
-int style Base_TextAppearance_AppCompat 0x7f07003f
-int style Base_TextAppearance_AppCompat_Body1 0x7f070040
-int style Base_TextAppearance_AppCompat_Body2 0x7f070041
-int style Base_TextAppearance_AppCompat_Button 0x7f070027
-int style Base_TextAppearance_AppCompat_Caption 0x7f070042
-int style Base_TextAppearance_AppCompat_Display1 0x7f070043
-int style Base_TextAppearance_AppCompat_Display2 0x7f070044
-int style Base_TextAppearance_AppCompat_Display3 0x7f070045
-int style Base_TextAppearance_AppCompat_Display4 0x7f070046
-int style Base_TextAppearance_AppCompat_Headline 0x7f070047
-int style Base_TextAppearance_AppCompat_Inverse 0x7f07000b
-int style Base_TextAppearance_AppCompat_Large 0x7f070048
-int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f07000c
-int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f070049
-int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f07004a
-int style Base_TextAppearance_AppCompat_Medium 0x7f07004b
-int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f07000d
-int style Base_TextAppearance_AppCompat_Menu 0x7f07004c
-int style Base_TextAppearance_AppCompat_SearchResult 0x7f0700a9
-int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f07004d
-int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f07004e
-int style Base_TextAppearance_AppCompat_Small 0x7f07004f
-int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f07000e
-int style Base_TextAppearance_AppCompat_Subhead 0x7f070050
-int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f07000f
-int style Base_TextAppearance_AppCompat_Title 0x7f070051
-int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f070010
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f070094
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f070052
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f070053
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f070054
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f070055
-int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f070056
-int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f070057
-int style Base_TextAppearance_AppCompat_Widget_Button 0x7f070058
-int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f07009b
-int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f07009c
-int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f070095
-int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0700aa
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f070059
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f07005a
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f07005b
-int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f07005c
-int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f07005d
-int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0700ab
-int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f07005e
-int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f07005f
-int style Base_Theme_AppCompat 0x7f070060
-int style Base_Theme_AppCompat_CompactMenu 0x7f0700ac
-int style Base_Theme_AppCompat_Dialog 0x7f070011
-int style Base_Theme_AppCompat_Dialog_Alert 0x7f070012
-int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0700ad
-int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f070013
-int style Base_Theme_AppCompat_DialogWhenLarge 0x7f070001
-int style Base_Theme_AppCompat_Light 0x7f070061
-int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0700ae
-int style Base_Theme_AppCompat_Light_Dialog 0x7f070014
-int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f070015
-int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0700af
-int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f070016
-int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f070002
-int style Base_ThemeOverlay_AppCompat 0x7f0700b0
-int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0700b1
-int style Base_ThemeOverlay_AppCompat_Dark 0x7f0700b2
-int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0700b3
-int style Base_ThemeOverlay_AppCompat_Dialog 0x7f070017
-int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f070018
-int style Base_ThemeOverlay_AppCompat_Light 0x7f0700b4
-int style Base_V11_Theme_AppCompat_Dialog 0x7f070019
-int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f07001a
-int style Base_V11_ThemeOverlay_AppCompat_Dialog 0x7f07001b
-int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f070023
-int style Base_V12_Widget_AppCompat_EditText 0x7f070024
-int style Base_V21_Theme_AppCompat 0x7f070062
-int style Base_V21_Theme_AppCompat_Dialog 0x7f070063
-int style Base_V21_Theme_AppCompat_Light 0x7f070064
-int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f070065
-int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f070066
-int style Base_V22_Theme_AppCompat 0x7f070092
-int style Base_V22_Theme_AppCompat_Light 0x7f070093
-int style Base_V23_Theme_AppCompat 0x7f070096
-int style Base_V23_Theme_AppCompat_Light 0x7f070097
-int style Base_V7_Theme_AppCompat 0x7f0700b5
-int style Base_V7_Theme_AppCompat_Dialog 0x7f0700b6
-int style Base_V7_Theme_AppCompat_Light 0x7f0700b7
-int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0700b8
-int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0700b9
-int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0700ba
-int style Base_V7_Widget_AppCompat_EditText 0x7f0700bb
-int style Base_Widget_AppCompat_ActionBar 0x7f0700bc
-int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0700bd
-int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0700be
-int style Base_Widget_AppCompat_ActionBar_TabText 0x7f070067
-int style Base_Widget_AppCompat_ActionBar_TabView 0x7f070068
-int style Base_Widget_AppCompat_ActionButton 0x7f070069
-int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f07006a
-int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f07006b
-int style Base_Widget_AppCompat_ActionMode 0x7f0700bf
-int style Base_Widget_AppCompat_ActivityChooserView 0x7f0700c0
-int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f070025
-int style Base_Widget_AppCompat_Button 0x7f07006c
-int style Base_Widget_AppCompat_Button_Borderless 0x7f07006d
-int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f07006e
-int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0700c1
-int style Base_Widget_AppCompat_Button_Colored 0x7f070098
-int style Base_Widget_AppCompat_Button_Small 0x7f07006f
-int style Base_Widget_AppCompat_ButtonBar 0x7f070070
-int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0700c2
-int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f070071
-int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f070072
-int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0700c3
-int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f070000
-int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0700c4
-int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f070073
-int style Base_Widget_AppCompat_EditText 0x7f070026
-int style Base_Widget_AppCompat_ImageButton 0x7f070074
-int style Base_Widget_AppCompat_Light_ActionBar 0x7f0700c5
-int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0700c6
-int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0700c7
-int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f070075
-int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f070076
-int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f070077
-int style Base_Widget_AppCompat_Light_PopupMenu 0x7f070078
-int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f070079
-int style Base_Widget_AppCompat_ListMenuView 0x7f0700c8
-int style Base_Widget_AppCompat_ListPopupWindow 0x7f07007a
-int style Base_Widget_AppCompat_ListView 0x7f07007b
-int style Base_Widget_AppCompat_ListView_DropDown 0x7f07007c
-int style Base_Widget_AppCompat_ListView_Menu 0x7f07007d
-int style Base_Widget_AppCompat_PopupMenu 0x7f07007e
-int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f07007f
-int style Base_Widget_AppCompat_PopupWindow 0x7f0700c9
-int style Base_Widget_AppCompat_ProgressBar 0x7f07001c
-int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f07001d
-int style Base_Widget_AppCompat_RatingBar 0x7f070080
-int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f070099
-int style Base_Widget_AppCompat_RatingBar_Small 0x7f07009a
-int style Base_Widget_AppCompat_SearchView 0x7f0700ca
-int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0700cb
-int style Base_Widget_AppCompat_SeekBar 0x7f070081
-int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0700cc
-int style Base_Widget_AppCompat_Spinner 0x7f070082
-int style Base_Widget_AppCompat_Spinner_Underlined 0x7f070003
-int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f070083
-int style Base_Widget_AppCompat_Toolbar 0x7f0700cd
-int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f070084
-int style Platform_AppCompat 0x7f07001e
-int style Platform_AppCompat_Light 0x7f07001f
-int style Platform_ThemeOverlay_AppCompat 0x7f070085
-int style Platform_ThemeOverlay_AppCompat_Dark 0x7f070086
-int style Platform_ThemeOverlay_AppCompat_Light 0x7f070087
-int style Platform_V11_AppCompat 0x7f070020
-int style Platform_V11_AppCompat_Light 0x7f070021
-int style Platform_V14_AppCompat 0x7f070028
-int style Platform_V14_AppCompat_Light 0x7f070029
-int style Platform_V21_AppCompat 0x7f070088
-int style Platform_V21_AppCompat_Light 0x7f070089
-int style Platform_V25_AppCompat 0x7f07009d
-int style Platform_V25_AppCompat_Light 0x7f07009e
-int style Platform_Widget_AppCompat_Spinner 0x7f070022
-int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f070031
-int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f070032
-int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f070033
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f070034
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f070035
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f070036
-int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f070037
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f070038
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f070039
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f07003a
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f07003b
-int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f07003c
-int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f07003d
-int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f07003e
-int style TextAppearance_AppCompat 0x7f0700ce
-int style TextAppearance_AppCompat_Body1 0x7f0700cf
-int style TextAppearance_AppCompat_Body2 0x7f0700d0
-int style TextAppearance_AppCompat_Button 0x7f0700d1
-int style TextAppearance_AppCompat_Caption 0x7f0700d2
-int style TextAppearance_AppCompat_Display1 0x7f0700d3
-int style TextAppearance_AppCompat_Display2 0x7f0700d4
-int style TextAppearance_AppCompat_Display3 0x7f0700d5
-int style TextAppearance_AppCompat_Display4 0x7f0700d6
-int style TextAppearance_AppCompat_Headline 0x7f0700d7
-int style TextAppearance_AppCompat_Inverse 0x7f0700d8
-int style TextAppearance_AppCompat_Large 0x7f0700d9
-int style TextAppearance_AppCompat_Large_Inverse 0x7f0700da
-int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0700db
-int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0700dc
-int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0700dd
-int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0700de
-int style TextAppearance_AppCompat_Medium 0x7f0700df
-int style TextAppearance_AppCompat_Medium_Inverse 0x7f0700e0
-int style TextAppearance_AppCompat_Menu 0x7f0700e1
-int style TextAppearance_AppCompat_Notification 0x7f07002a
-int style TextAppearance_AppCompat_Notification_Info 0x7f07008a
-int style TextAppearance_AppCompat_Notification_Info_Media 0x7f07008b
-int style TextAppearance_AppCompat_Notification_Line2 0x7f0700e2
-int style TextAppearance_AppCompat_Notification_Line2_Media 0x7f0700e3
-int style TextAppearance_AppCompat_Notification_Media 0x7f07008c
-int style TextAppearance_AppCompat_Notification_Time 0x7f07008d
-int style TextAppearance_AppCompat_Notification_Time_Media 0x7f07008e
-int style TextAppearance_AppCompat_Notification_Title 0x7f07002b
-int style TextAppearance_AppCompat_Notification_Title_Media 0x7f07008f
-int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0700e4
-int style TextAppearance_AppCompat_SearchResult_Title 0x7f0700e5
-int style TextAppearance_AppCompat_Small 0x7f0700e6
-int style TextAppearance_AppCompat_Small_Inverse 0x7f0700e7
-int style TextAppearance_AppCompat_Subhead 0x7f0700e8
-int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0700e9
-int style TextAppearance_AppCompat_Title 0x7f0700ea
-int style TextAppearance_AppCompat_Title_Inverse 0x7f0700eb
-int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0700ec
-int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0700ed
-int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0700ee
-int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0700ef
-int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0700f0
-int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0700f1
-int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0700f2
-int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0700f3
-int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0700f4
-int style TextAppearance_AppCompat_Widget_Button 0x7f0700f5
-int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0700f6
-int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0700f7
-int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0700f8
-int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0700f9
-int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0700fa
-int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0700fb
-int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0700fc
-int style TextAppearance_AppCompat_Widget_Switch 0x7f0700fd
-int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0700fe
-int style TextAppearance_StatusBar_EventContent 0x7f07002c
-int style TextAppearance_StatusBar_EventContent_Info 0x7f07002d
-int style TextAppearance_StatusBar_EventContent_Line2 0x7f07002e
-int style TextAppearance_StatusBar_EventContent_Time 0x7f07002f
-int style TextAppearance_StatusBar_EventContent_Title 0x7f070030
-int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0700ff
-int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f070100
-int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f070101
-int style Theme_AppCompat 0x7f070102
-int style Theme_AppCompat_CompactMenu 0x7f070103
-int style Theme_AppCompat_DayNight 0x7f070004
-int style Theme_AppCompat_DayNight_DarkActionBar 0x7f070005
-int style Theme_AppCompat_DayNight_Dialog 0x7f070006
-int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f070007
-int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f070008
-int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f070009
-int style Theme_AppCompat_DayNight_NoActionBar 0x7f07000a
-int style Theme_AppCompat_Dialog 0x7f070104
-int style Theme_AppCompat_Dialog_Alert 0x7f070105
-int style Theme_AppCompat_Dialog_MinWidth 0x7f070106
-int style Theme_AppCompat_DialogWhenLarge 0x7f070107
-int style Theme_AppCompat_Light 0x7f070108
-int style Theme_AppCompat_Light_DarkActionBar 0x7f070109
-int style Theme_AppCompat_Light_Dialog 0x7f07010a
-int style Theme_AppCompat_Light_Dialog_Alert 0x7f07010b
-int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f07010c
-int style Theme_AppCompat_Light_DialogWhenLarge 0x7f07010d
-int style Theme_AppCompat_Light_NoActionBar 0x7f07010e
-int style Theme_AppCompat_NoActionBar 0x7f07010f
-int style ThemeOverlay_AppCompat 0x7f070110
-int style ThemeOverlay_AppCompat_ActionBar 0x7f070111
-int style ThemeOverlay_AppCompat_Dark 0x7f070112
-int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f070113
-int style ThemeOverlay_AppCompat_Dialog 0x7f070114
-int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f070115
-int style ThemeOverlay_AppCompat_Light 0x7f070116
-int style Widget_AppCompat_ActionBar 0x7f070117
-int style Widget_AppCompat_ActionBar_Solid 0x7f070118
-int style Widget_AppCompat_ActionBar_TabBar 0x7f070119
-int style Widget_AppCompat_ActionBar_TabText 0x7f07011a
-int style Widget_AppCompat_ActionBar_TabView 0x7f07011b
-int style Widget_AppCompat_ActionButton 0x7f07011c
-int style Widget_AppCompat_ActionButton_CloseMode 0x7f07011d
-int style Widget_AppCompat_ActionButton_Overflow 0x7f07011e
-int style Widget_AppCompat_ActionMode 0x7f07011f
-int style Widget_AppCompat_ActivityChooserView 0x7f070120
-int style Widget_AppCompat_AutoCompleteTextView 0x7f070121
-int style Widget_AppCompat_Button 0x7f070122
-int style Widget_AppCompat_Button_Borderless 0x7f070123
-int style Widget_AppCompat_Button_Borderless_Colored 0x7f070124
-int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f070125
-int style Widget_AppCompat_Button_Colored 0x7f070126
-int style Widget_AppCompat_Button_Small 0x7f070127
-int style Widget_AppCompat_ButtonBar 0x7f070128
-int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f070129
-int style Widget_AppCompat_CompoundButton_CheckBox 0x7f07012a
-int style Widget_AppCompat_CompoundButton_RadioButton 0x7f07012b
-int style Widget_AppCompat_CompoundButton_Switch 0x7f07012c
-int style Widget_AppCompat_DrawerArrowToggle 0x7f07012d
-int style Widget_AppCompat_DropDownItem_Spinner 0x7f07012e
-int style Widget_AppCompat_EditText 0x7f07012f
-int style Widget_AppCompat_ImageButton 0x7f070130
-int style Widget_AppCompat_Light_ActionBar 0x7f070131
-int style Widget_AppCompat_Light_ActionBar_Solid 0x7f070132
-int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f070133
-int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f070134
-int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f070135
-int style Widget_AppCompat_Light_ActionBar_TabText 0x7f070136
-int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f070137
-int style Widget_AppCompat_Light_ActionBar_TabView 0x7f070138
-int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f070139
-int style Widget_AppCompat_Light_ActionButton 0x7f07013a
-int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f07013b
-int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f07013c
-int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f07013d
-int style Widget_AppCompat_Light_ActivityChooserView 0x7f07013e
-int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f07013f
-int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f070140
-int style Widget_AppCompat_Light_ListPopupWindow 0x7f070141
-int style Widget_AppCompat_Light_ListView_DropDown 0x7f070142
-int style Widget_AppCompat_Light_PopupMenu 0x7f070143
-int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f070144
-int style Widget_AppCompat_Light_SearchView 0x7f070145
-int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f070146
-int style Widget_AppCompat_ListMenuView 0x7f070147
-int style Widget_AppCompat_ListPopupWindow 0x7f070148
-int style Widget_AppCompat_ListView 0x7f070149
-int style Widget_AppCompat_ListView_DropDown 0x7f07014a
-int style Widget_AppCompat_ListView_Menu 0x7f07014b
-int style Widget_AppCompat_NotificationActionContainer 0x7f070090
-int style Widget_AppCompat_NotificationActionText 0x7f070091
-int style Widget_AppCompat_PopupMenu 0x7f07014c
-int style Widget_AppCompat_PopupMenu_Overflow 0x7f07014d
-int style Widget_AppCompat_PopupWindow 0x7f07014e
-int style Widget_AppCompat_ProgressBar 0x7f07014f
-int style Widget_AppCompat_ProgressBar_Horizontal 0x7f070150
-int style Widget_AppCompat_RatingBar 0x7f070151
-int style Widget_AppCompat_RatingBar_Indicator 0x7f070152
-int style Widget_AppCompat_RatingBar_Small 0x7f070153
-int style Widget_AppCompat_SearchView 0x7f070154
-int style Widget_AppCompat_SearchView_ActionBar 0x7f070155
-int style Widget_AppCompat_SeekBar 0x7f070156
-int style Widget_AppCompat_SeekBar_Discrete 0x7f070157
-int style Widget_AppCompat_Spinner 0x7f070158
-int style Widget_AppCompat_Spinner_DropDown 0x7f070159
-int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f07015a
-int style Widget_AppCompat_Spinner_Underlined 0x7f07015b
-int style Widget_AppCompat_TextView_SpinnerItem 0x7f07015c
-int style Widget_AppCompat_Toolbar 0x7f07015d
-int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f07015e
-int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01005b }
-int styleable ActionBar_background 10
-int styleable ActionBar_backgroundSplit 12
-int styleable ActionBar_backgroundStacked 11
-int styleable ActionBar_contentInsetEnd 21
-int styleable ActionBar_contentInsetEndWithActions 25
-int styleable ActionBar_contentInsetLeft 22
-int styleable ActionBar_contentInsetRight 23
-int styleable ActionBar_contentInsetStart 20
-int styleable ActionBar_contentInsetStartWithNavigation 24
-int styleable ActionBar_customNavigationLayout 13
-int styleable ActionBar_displayOptions 3
-int styleable ActionBar_divider 9
-int styleable ActionBar_elevation 26
-int styleable ActionBar_height 0
-int styleable ActionBar_hideOnContentScroll 19
-int styleable ActionBar_homeAsUpIndicator 28
-int styleable ActionBar_homeLayout 14
-int styleable ActionBar_icon 7
-int styleable ActionBar_indeterminateProgressStyle 16
-int styleable ActionBar_itemPadding 18
-int styleable ActionBar_logo 8
-int styleable ActionBar_navigationMode 2
-int styleable ActionBar_popupTheme 27
-int styleable ActionBar_progressBarPadding 17
-int styleable ActionBar_progressBarStyle 15
-int styleable ActionBar_subtitle 4
-int styleable ActionBar_subtitleTextStyle 6
-int styleable ActionBar_title 1
-int styleable ActionBar_titleTextStyle 5
-int[] styleable ActionBarLayout { 0x010100b3 }
-int styleable ActionBarLayout_android_layout_gravity 0
-int[] styleable ActionMenuItemView { 0x0101013f }
-int styleable ActionMenuItemView_android_minWidth 0
-int[] styleable ActionMenuView { }
-int[] styleable ActionMode { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001e }
-int styleable ActionMode_background 3
-int styleable ActionMode_backgroundSplit 4
-int styleable ActionMode_closeItemLayout 5
-int styleable ActionMode_height 0
-int styleable ActionMode_subtitleTextStyle 2
-int styleable ActionMode_titleTextStyle 1
-int[] styleable ActivityChooserView { 0x7f01001f, 0x7f010020 }
-int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
-int styleable ActivityChooserView_initialActivityCount 0
-int[] styleable AlertDialog { 0x010100f2, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026 }
-int styleable AlertDialog_android_layout 0
-int styleable AlertDialog_buttonPanelSideLayout 1
-int styleable AlertDialog_listItemLayout 5
-int styleable AlertDialog_listLayout 2
-int styleable AlertDialog_multiChoiceItemLayout 3
-int styleable AlertDialog_showTitle 6
-int styleable AlertDialog_singleChoiceItemLayout 4
-int[] styleable AppCompatImageView { 0x01010119, 0x7f010027 }
-int styleable AppCompatImageView_android_src 0
-int styleable AppCompatImageView_srcCompat 1
-int[] styleable AppCompatSeekBar { 0x01010142, 0x7f010028, 0x7f010029, 0x7f01002a }
-int styleable AppCompatSeekBar_android_thumb 0
-int styleable AppCompatSeekBar_tickMark 1
-int styleable AppCompatSeekBar_tickMarkTint 2
-int styleable AppCompatSeekBar_tickMarkTintMode 3
-int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }
-int styleable AppCompatTextHelper_android_drawableBottom 2
-int styleable AppCompatTextHelper_android_drawableEnd 6
-int styleable AppCompatTextHelper_android_drawableLeft 3
-int styleable AppCompatTextHelper_android_drawableRight 4
-int styleable AppCompatTextHelper_android_drawableStart 5
-int styleable AppCompatTextHelper_android_drawableTop 1
-int styleable AppCompatTextHelper_android_textAppearance 0
-int[] styleable AppCompatTextView { 0x01010034, 0x7f01002b }
-int styleable AppCompatTextView_android_textAppearance 0
-int styleable AppCompatTextView_textAllCaps 1
-int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c }
-int styleable AppCompatTheme_actionBarDivider 23
-int styleable AppCompatTheme_actionBarItemBackground 24
-int styleable AppCompatTheme_actionBarPopupTheme 17
-int styleable AppCompatTheme_actionBarSize 22
-int styleable AppCompatTheme_actionBarSplitStyle 19
-int styleable AppCompatTheme_actionBarStyle 18
-int styleable AppCompatTheme_actionBarTabBarStyle 13
-int styleable AppCompatTheme_actionBarTabStyle 12
-int styleable AppCompatTheme_actionBarTabTextStyle 14
-int styleable AppCompatTheme_actionBarTheme 20
-int styleable AppCompatTheme_actionBarWidgetTheme 21
-int styleable AppCompatTheme_actionButtonStyle 50
-int styleable AppCompatTheme_actionDropDownStyle 46
-int styleable AppCompatTheme_actionMenuTextAppearance 25
-int styleable AppCompatTheme_actionMenuTextColor 26
-int styleable AppCompatTheme_actionModeBackground 29
-int styleable AppCompatTheme_actionModeCloseButtonStyle 28
-int styleable AppCompatTheme_actionModeCloseDrawable 31
-int styleable AppCompatTheme_actionModeCopyDrawable 33
-int styleable AppCompatTheme_actionModeCutDrawable 32
-int styleable AppCompatTheme_actionModeFindDrawable 37
-int styleable AppCompatTheme_actionModePasteDrawable 34
-int styleable AppCompatTheme_actionModePopupWindowStyle 39
-int styleable AppCompatTheme_actionModeSelectAllDrawable 35
-int styleable AppCompatTheme_actionModeShareDrawable 36
-int styleable AppCompatTheme_actionModeSplitBackground 30
-int styleable AppCompatTheme_actionModeStyle 27
-int styleable AppCompatTheme_actionModeWebSearchDrawable 38
-int styleable AppCompatTheme_actionOverflowButtonStyle 15
-int styleable AppCompatTheme_actionOverflowMenuStyle 16
-int styleable AppCompatTheme_activityChooserViewStyle 58
-int styleable AppCompatTheme_alertDialogButtonGroupStyle 94
-int styleable AppCompatTheme_alertDialogCenterButtons 95
-int styleable AppCompatTheme_alertDialogStyle 93
-int styleable AppCompatTheme_alertDialogTheme 96
-int styleable AppCompatTheme_android_windowAnimationStyle 1
-int styleable AppCompatTheme_android_windowIsFloating 0
-int styleable AppCompatTheme_autoCompleteTextViewStyle 101
-int styleable AppCompatTheme_borderlessButtonStyle 55
-int styleable AppCompatTheme_buttonBarButtonStyle 52
-int styleable AppCompatTheme_buttonBarNegativeButtonStyle 99
-int styleable AppCompatTheme_buttonBarNeutralButtonStyle 100
-int styleable AppCompatTheme_buttonBarPositiveButtonStyle 98
-int styleable AppCompatTheme_buttonBarStyle 51
-int styleable AppCompatTheme_buttonStyle 102
-int styleable AppCompatTheme_buttonStyleSmall 103
-int styleable AppCompatTheme_checkboxStyle 104
-int styleable AppCompatTheme_checkedTextViewStyle 105
-int styleable AppCompatTheme_colorAccent 85
-int styleable AppCompatTheme_colorBackgroundFloating 92
-int styleable AppCompatTheme_colorButtonNormal 89
-int styleable AppCompatTheme_colorControlActivated 87
-int styleable AppCompatTheme_colorControlHighlight 88
-int styleable AppCompatTheme_colorControlNormal 86
-int styleable AppCompatTheme_colorPrimary 83
-int styleable AppCompatTheme_colorPrimaryDark 84
-int styleable AppCompatTheme_colorSwitchThumbNormal 90
-int styleable AppCompatTheme_controlBackground 91
-int styleable AppCompatTheme_dialogPreferredPadding 44
-int styleable AppCompatTheme_dialogTheme 43
-int styleable AppCompatTheme_dividerHorizontal 57
-int styleable AppCompatTheme_dividerVertical 56
-int styleable AppCompatTheme_dropDownListViewStyle 75
-int styleable AppCompatTheme_dropdownListPreferredItemHeight 47
-int styleable AppCompatTheme_editTextBackground 64
-int styleable AppCompatTheme_editTextColor 63
-int styleable AppCompatTheme_editTextStyle 106
-int styleable AppCompatTheme_homeAsUpIndicator 49
-int styleable AppCompatTheme_imageButtonStyle 65
-int styleable AppCompatTheme_listChoiceBackgroundIndicator 82
-int styleable AppCompatTheme_listDividerAlertDialog 45
-int styleable AppCompatTheme_listMenuViewStyle 114
-int styleable AppCompatTheme_listPopupWindowStyle 76
-int styleable AppCompatTheme_listPreferredItemHeight 70
-int styleable AppCompatTheme_listPreferredItemHeightLarge 72
-int styleable AppCompatTheme_listPreferredItemHeightSmall 71
-int styleable AppCompatTheme_listPreferredItemPaddingLeft 73
-int styleable AppCompatTheme_listPreferredItemPaddingRight 74
-int styleable AppCompatTheme_panelBackground 79
-int styleable AppCompatTheme_panelMenuListTheme 81
-int styleable AppCompatTheme_panelMenuListWidth 80
-int styleable AppCompatTheme_popupMenuStyle 61
-int styleable AppCompatTheme_popupWindowStyle 62
-int styleable AppCompatTheme_radioButtonStyle 107
-int styleable AppCompatTheme_ratingBarStyle 108
-int styleable AppCompatTheme_ratingBarStyleIndicator 109
-int styleable AppCompatTheme_ratingBarStyleSmall 110
-int styleable AppCompatTheme_searchViewStyle 69
-int styleable AppCompatTheme_seekBarStyle 111
-int styleable AppCompatTheme_selectableItemBackground 53
-int styleable AppCompatTheme_selectableItemBackgroundBorderless 54
-int styleable AppCompatTheme_spinnerDropDownItemStyle 48
-int styleable AppCompatTheme_spinnerStyle 112
-int styleable AppCompatTheme_switchStyle 113
-int styleable AppCompatTheme_textAppearanceLargePopupMenu 40
-int styleable AppCompatTheme_textAppearanceListItem 77
-int styleable AppCompatTheme_textAppearanceListItemSmall 78
-int styleable AppCompatTheme_textAppearancePopupMenuHeader 42
-int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 67
-int styleable AppCompatTheme_textAppearanceSearchResultTitle 66
-int styleable AppCompatTheme_textAppearanceSmallPopupMenu 41
-int styleable AppCompatTheme_textColorAlertDialogListItem 97
-int styleable AppCompatTheme_textColorSearchUrl 68
-int styleable AppCompatTheme_toolbarNavigationButtonStyle 60
-int styleable AppCompatTheme_toolbarStyle 59
-int styleable AppCompatTheme_windowActionBar 2
-int styleable AppCompatTheme_windowActionBarOverlay 4
-int styleable AppCompatTheme_windowActionModeOverlay 5
-int styleable AppCompatTheme_windowFixedHeightMajor 9
-int styleable AppCompatTheme_windowFixedHeightMinor 7
-int styleable AppCompatTheme_windowFixedWidthMajor 6
-int styleable AppCompatTheme_windowFixedWidthMinor 8
-int styleable AppCompatTheme_windowMinWidthMajor 10
-int styleable AppCompatTheme_windowMinWidthMinor 11
-int styleable AppCompatTheme_windowNoTitle 3
-int[] styleable ButtonBarLayout { 0x7f01009d }
-int styleable ButtonBarLayout_allowStacking 0
-int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f01009e }
-int styleable ColorStateListItem_alpha 2
-int styleable ColorStateListItem_android_alpha 1
-int styleable ColorStateListItem_android_color 0
-int[] styleable CompoundButton { 0x01010107, 0x7f01009f, 0x7f0100a0 }
-int styleable CompoundButton_android_button 0
-int styleable CompoundButton_buttonTint 1
-int styleable CompoundButton_buttonTintMode 2
-int[] styleable DrawerArrowToggle { 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8 }
-int styleable DrawerArrowToggle_arrowHeadLength 4
-int styleable DrawerArrowToggle_arrowShaftLength 5
-int styleable DrawerArrowToggle_barLength 6
-int styleable DrawerArrowToggle_color 0
-int styleable DrawerArrowToggle_drawableSize 2
-int styleable DrawerArrowToggle_gapBetweenBars 3
-int styleable DrawerArrowToggle_spinBars 1
-int styleable DrawerArrowToggle_thickness 7
-int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab }
-int styleable LinearLayoutCompat_android_baselineAligned 2
-int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
-int styleable LinearLayoutCompat_android_gravity 0
-int styleable LinearLayoutCompat_android_orientation 1
-int styleable LinearLayoutCompat_android_weightSum 4
-int styleable LinearLayoutCompat_divider 5
-int styleable LinearLayoutCompat_dividerPadding 8
-int styleable LinearLayoutCompat_measureWithLargestChild 6
-int styleable LinearLayoutCompat_showDividers 7
-int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
-int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
-int styleable LinearLayoutCompat_Layout_android_layout_height 2
-int styleable LinearLayoutCompat_Layout_android_layout_weight 3
-int styleable LinearLayoutCompat_Layout_android_layout_width 1
-int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
-int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
-int styleable ListPopupWindow_android_dropDownVerticalOffset 1
-int[] styleable LoadingImageView { 0x7f0100ac, 0x7f0100ad, 0x7f0100ae }
-int styleable LoadingImageView_circleCrop 2
-int styleable LoadingImageView_imageAspectRatio 1
-int styleable LoadingImageView_imageAspectRatioAdjust 0
-int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
-int styleable MenuGroup_android_checkableBehavior 5
-int styleable MenuGroup_android_enabled 0
-int styleable MenuGroup_android_id 1
-int styleable MenuGroup_android_menuCategory 3
-int styleable MenuGroup_android_orderInCategory 4
-int styleable MenuGroup_android_visible 2
-int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2 }
-int styleable MenuItem_actionLayout 14
-int styleable MenuItem_actionProviderClass 16
-int styleable MenuItem_actionViewClass 15
-int styleable MenuItem_android_alphabeticShortcut 9
-int styleable MenuItem_android_checkable 11
-int styleable MenuItem_android_checked 3
-int styleable MenuItem_android_enabled 1
-int styleable MenuItem_android_icon 0
-int styleable MenuItem_android_id 2
-int styleable MenuItem_android_menuCategory 5
-int styleable MenuItem_android_numericShortcut 10
-int styleable MenuItem_android_onClick 12
-int styleable MenuItem_android_orderInCategory 6
-int styleable MenuItem_android_title 7
-int styleable MenuItem_android_titleCondensed 8
-int styleable MenuItem_android_visible 4
-int styleable MenuItem_showAsAction 13
-int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100b3, 0x7f0100b4 }
-int styleable MenuView_android_headerBackground 4
-int styleable MenuView_android_horizontalDivider 2
-int styleable MenuView_android_itemBackground 5
-int styleable MenuView_android_itemIconDisabledAlpha 6
-int styleable MenuView_android_itemTextAppearance 1
-int styleable MenuView_android_verticalDivider 3
-int styleable MenuView_android_windowAnimationStyle 0
-int styleable MenuView_preserveIconSpacing 7
-int styleable MenuView_subMenuArrow 8
-int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f0100b5 }
-int styleable PopupWindow_android_popupAnimationStyle 1
-int styleable PopupWindow_android_popupBackground 0
-int styleable PopupWindow_overlapAnchor 2
-int[] styleable PopupWindowBackgroundState { 0x7f0100b6 }
-int styleable PopupWindowBackgroundState_state_above_anchor 0
-int[] styleable RecycleListView { 0x7f0100b7, 0x7f0100b8 }
-int styleable RecycleListView_paddingBottomNoButtons 0
-int styleable RecycleListView_paddingTopNoTitle 1
-int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5 }
-int styleable SearchView_android_focusable 0
-int styleable SearchView_android_imeOptions 3
-int styleable SearchView_android_inputType 2
-int styleable SearchView_android_maxWidth 1
-int styleable SearchView_closeIcon 8
-int styleable SearchView_commitIcon 13
-int styleable SearchView_defaultQueryHint 7
-int styleable SearchView_goIcon 9
-int styleable SearchView_iconifiedByDefault 5
-int styleable SearchView_layout 4
-int styleable SearchView_queryBackground 15
-int styleable SearchView_queryHint 6
-int styleable SearchView_searchHintIcon 11
-int styleable SearchView_searchIcon 10
-int styleable SearchView_submitBackground 16
-int styleable SearchView_suggestionRowLayout 14
-int styleable SearchView_voiceIcon 12
-int[] styleable SignInButton { 0x7f0100c6, 0x7f0100c7, 0x7f0100c8 }
-int styleable SignInButton_buttonSize 0
-int styleable SignInButton_colorScheme 1
-int styleable SignInButton_scopeUris 2
-int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001d }
-int styleable Spinner_android_dropDownWidth 3
-int styleable Spinner_android_entries 0
-int styleable Spinner_android_popupBackground 1
-int styleable Spinner_android_prompt 2
-int styleable Spinner_popupTheme 4
-int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3 }
-int styleable SwitchCompat_android_textOff 1
-int styleable SwitchCompat_android_textOn 0
-int styleable SwitchCompat_android_thumb 2
-int styleable SwitchCompat_showText 13
-int styleable SwitchCompat_splitTrack 12
-int styleable SwitchCompat_switchMinWidth 10
-int styleable SwitchCompat_switchPadding 11
-int styleable SwitchCompat_switchTextAppearance 9
-int styleable SwitchCompat_thumbTextPadding 8
-int styleable SwitchCompat_thumbTint 3
-int styleable SwitchCompat_thumbTintMode 4
-int styleable SwitchCompat_track 5
-int styleable SwitchCompat_trackTint 6
-int styleable SwitchCompat_trackTintMode 7
-int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f01002b }
-int styleable TextAppearance_android_shadowColor 5
-int styleable TextAppearance_android_shadowDx 6
-int styleable TextAppearance_android_shadowDy 7
-int styleable TextAppearance_android_shadowRadius 8
-int styleable TextAppearance_android_textColor 3
-int styleable TextAppearance_android_textColorHint 4
-int styleable TextAppearance_android_textSize 0
-int styleable TextAppearance_android_textStyle 2
-int styleable TextAppearance_android_typeface 1
-int styleable TextAppearance_textAllCaps 9
-int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001d, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 }
-int styleable Toolbar_android_gravity 0
-int styleable Toolbar_android_minHeight 1
-int styleable Toolbar_buttonGravity 21
-int styleable Toolbar_collapseContentDescription 23
-int styleable Toolbar_collapseIcon 22
-int styleable Toolbar_contentInsetEnd 6
-int styleable Toolbar_contentInsetEndWithActions 10
-int styleable Toolbar_contentInsetLeft 7
-int styleable Toolbar_contentInsetRight 8
-int styleable Toolbar_contentInsetStart 5
-int styleable Toolbar_contentInsetStartWithNavigation 9
-int styleable Toolbar_logo 4
-int styleable Toolbar_logoDescription 26
-int styleable Toolbar_maxButtonHeight 20
-int styleable Toolbar_navigationContentDescription 25
-int styleable Toolbar_navigationIcon 24
-int styleable Toolbar_popupTheme 11
-int styleable Toolbar_subtitle 3
-int styleable Toolbar_subtitleTextAppearance 13
-int styleable Toolbar_subtitleTextColor 28
-int styleable Toolbar_title 2
-int styleable Toolbar_titleMargin 14
-int styleable Toolbar_titleMarginBottom 18
-int styleable Toolbar_titleMarginEnd 16
-int styleable Toolbar_titleMarginStart 15
-int styleable Toolbar_titleMarginTop 17
-int styleable Toolbar_titleMargins 19
-int styleable Toolbar_titleTextAppearance 12
-int styleable Toolbar_titleTextColor 27
-int[] styleable View { 0x01010000, 0x010100da, 0x7f0100e5, 0x7f0100e6, 0x7f0100e7 }
-int styleable View_android_focusable 1
-int styleable View_android_theme 0
-int styleable View_paddingEnd 3
-int styleable View_paddingStart 2
-int styleable View_theme 4
-int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f0100e8, 0x7f0100e9 }
-int styleable ViewBackgroundHelper_android_background 0
-int styleable ViewBackgroundHelper_backgroundTint 1
-int styleable ViewBackgroundHelper_backgroundTintMode 2
-int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
-int styleable ViewStubCompat_android_id 0
-int styleable ViewStubCompat_android_inflatedId 2
-int styleable ViewStubCompat_android_layout 1
diff --git a/android/.build/outputs/logs/manifest-merger-debug-report.txt b/android/.build/outputs/logs/manifest-merger-debug-report.txt
deleted file mode 100644
index d817721d5e295aba2f822895ca310d24545b6157..0000000000000000000000000000000000000000
--- a/android/.build/outputs/logs/manifest-merger-debug-report.txt
+++ /dev/null
@@ -1,515 +0,0 @@
--- Merging decision tree log ---
-manifest
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:2:1-106:12
-	package
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:2:70-90
-	android:versionName
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:2:146-171
-		INJECTED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml
-		INJECTED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml
-	android:versionCode
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:2:122-145
-		INJECTED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml
-		INJECTED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml
-	xmlns:android
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:2:11-69
-	android:installLocation
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:2:91-121
-application
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:3:5-79:19
-MERGED from [com.android.support:appcompat-v7:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/AndroidManifest.xml:25:5-20
-MERGED from [com.android.support:animated-vector-drawable:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/AndroidManifest.xml:22:5-20
-MERGED from [com.android.support:support-vector-drawable:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-vector-drawable/25.2.0/AndroidManifest.xml:23:5-20
-MERGED from [com.google.android.gms:play-services-gcm:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/AndroidManifest.xml:23:5-19
-MERGED from [com.google.android.gms:play-services-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/AndroidManifest.xml:23:5-19
-MERGED from [com.google.android.gms:play-services-base:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/AndroidManifest.xml:18:5-20:19
-MERGED from [com.google.firebase:firebase-crash:10.0.1] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/AndroidManifest.xml:22:5-23:19
-MERGED from [com.crashlytics.sdk.android:crashlytics:2.6.7] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/AndroidManifest.xml:11:5-20
-MERGED from [com.crashlytics.sdk.android:beta:1.2.4] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/AndroidManifest.xml:11:5-20
-MERGED from [com.crashlytics.sdk.android:crashlytics-ndk:1.1.6] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/AndroidManifest.xml:31:5-20
-MERGED from [com.crashlytics.sdk.android:crashlytics-core:2.3.16] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/AndroidManifest.xml:54:5-20
-MERGED from [com.crashlytics.sdk.android:answers:1.3.12] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/AndroidManifest.xml:11:5-20
-MERGED from [io.fabric.sdk.android:fabric:1.3.16] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/AndroidManifest.xml:31:5-20
-MERGED from [com.google.firebase:firebase-core:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-core/10.2.0/AndroidManifest.xml:5:5-20
-MERGED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:24:5-33:19
-MERGED from [com.google.firebase:firebase-analytics-impl:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/AndroidManifest.xml:24:5-28:19
-MERGED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:28:5-50:19
-MERGED from [com.google.firebase:firebase-common:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/AndroidManifest.xml:4:5-7:19
-MERGED from [com.google.android.gms:play-services-tasks:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/10.2.0/AndroidManifest.xml:4:5-19
-MERGED from [com.google.android.gms:play-services-basement:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/AndroidManifest.xml:19:5-21:19
-MERGED from [com.android.support:support-v4:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-v4/25.2.0/AndroidManifest.xml:25:5-20
-MERGED from [com.android.support:support-fragment:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/AndroidManifest.xml:25:5-20
-MERGED from [com.android.support:support-media-compat:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/AndroidManifest.xml:25:5-20
-MERGED from [com.android.support:support-core-ui:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/AndroidManifest.xml:25:5-20
-MERGED from [com.android.support:support-core-utils:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/AndroidManifest.xml:25:5-20
-MERGED from [com.android.support:support-compat:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/AndroidManifest.xml:25:5-20
-	android:label
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:3:147-167
-	android:hardwareAccelerated
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:3:82-116
-	android:icon
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:3:117-146
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:3:18-81
-activity#at.gv.ucom.MainActivity
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:4:9-59:20
-	android:screenOrientation
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:4:264-303
-	android:label
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:4:212-232
-	android:launchMode
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:4:233-263
-	android:configChanges
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:4:58-211
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:4:19-57
-intent-filter#android.intent.action.MAIN+android.intent.category.LAUNCHER
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:5:13-8:29
-action#android.intent.action.MAIN
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:6:17-68
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:6:25-66
-category#android.intent.category.LAUNCHER
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:7:17-76
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:7:27-74
-meta-data#android.app.lib_name
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:13:13-107
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:13:60-105
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:13:24-59
-meta-data#android.app.qt_sources_resource_id
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:14:13-112
-	android:resource
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:14:74-110
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:14:24-73
-meta-data#android.app.repository
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:15:13-87
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:15:62-85
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:15:24-61
-meta-data#android.app.qt_libs_resource_id
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:16:13-106
-	android:resource
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:16:71-104
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:16:24-70
-meta-data#android.app.bundled_libs_resource_id
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:17:13-116
-	android:resource
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:17:76-114
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:17:24-75
-meta-data#android.app.bundle_local_qt_libs
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:19:13-120
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:19:72-118
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:19:24-71
-meta-data#android.app.bundled_in_lib_resource_id
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:20:13-120
-	android:resource
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:20:78-118
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:20:24-77
-meta-data#android.app.bundled_in_assets_resource_id
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:21:13-126
-	android:resource
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:21:81-124
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:21:24-80
-meta-data#android.app.use_local_qt_libs
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:23:13-114
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:23:69-112
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:23:24-68
-meta-data#android.app.libs_prefix
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:24:13-100
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:24:63-98
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:24:24-62
-meta-data#android.app.load_local_libs
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:25:13-112
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:25:67-110
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:25:24-66
-meta-data#android.app.load_local_jars
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:26:13-112
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:26:67-110
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:26:24-66
-meta-data#android.app.static_init_classes
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:27:13-118
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:27:71-116
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:27:24-70
-meta-data#android.app.ministro_not_found_msg
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:29:13-122
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:29:74-120
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:29:24-73
-meta-data#android.app.ministro_needed_msg
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:30:13-116
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:30:71-114
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:30:24-70
-meta-data#android.app.fatal_error_msg
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:31:13-108
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:31:67-106
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:31:24-66
-meta-data#android.app.splash_screen_drawable
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:35:13-111
-	android:resource
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:35:74-109
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:35:24-73
-meta-data#android.app.splash_screen_sticky
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:36:13-95
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:36:72-93
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:36:24-71
-meta-data#android.app.background_running
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:44:13-93
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:44:70-91
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:44:24-69
-meta-data#android.app.auto_screen_scale_factor
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:48:13-99
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:48:76-97
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:48:24-75
-meta-data#android.app.extract_android_style
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:57:13-98
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:57:73-96
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:57:24-72
-receiver#at.gv.ucom.GcmBroadcastReceiver
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:60:9-67:20
-	android:permission
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:60:56-116
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:60:19-55
-intent-filter#com.google.android.c2dm.intent.RECEIVE+ucom
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:62:13-66:29
-action#com.google.android.c2dm.intent.RECEIVE
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:64:17-80
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:64:25-78
-category#ucom
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:65:17-48
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:65:27-46
-service#at.gv.ucom.GcmIntentService
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:70:9-52
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:70:18-50
-meta-data#io.fabric.ApiKey
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:71:9-74:15
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:73:13-69
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:72:13-44
-meta-data#com.google.android.gms.version
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:76:9-78:69
-MERGED from [com.google.android.gms:play-services-basement:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/AndroidManifest.xml:20:9-121
-	android:value
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:78:13-66
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:77:13-58
-uses-sdk
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:81:5-73
-MERGED from [com.android.support:appcompat-v7:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/AndroidManifest.xml:21:5-23:78
-MERGED from [com.android.support:animated-vector-drawable:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/AndroidManifest.xml:20:5-44
-MERGED from [com.android.support:support-vector-drawable:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-vector-drawable/25.2.0/AndroidManifest.xml:21:5-43
-MERGED from [com.google.android.gms:play-services-gcm:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/AndroidManifest.xml:17:5-43
-MERGED from [com.google.android.gms:play-services-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/AndroidManifest.xml:17:5-43
-MERGED from [com.google.android.gms:play-services-base:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/AndroidManifest.xml:17:5-43
-MERGED from [com.google.firebase:firebase-crash:10.0.1] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/AndroidManifest.xml:20:5-42
-MERGED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:7:5-9:41
-MERGED from [com.crashlytics.sdk.android:crashlytics:2.6.7] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/AndroidManifest.xml:7:5-43
-MERGED from [com.crashlytics.sdk.android:beta:1.2.4] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/AndroidManifest.xml:7:5-43
-MERGED from [com.crashlytics.sdk.android:crashlytics-ndk:1.1.6] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/AndroidManifest.xml:29:5-43
-MERGED from [com.crashlytics.sdk.android:crashlytics-core:2.3.16] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/AndroidManifest.xml:50:5-43
-MERGED from [com.crashlytics.sdk.android:answers:1.3.12] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/AndroidManifest.xml:7:5-43
-MERGED from [io.fabric.sdk.android:fabric:1.3.16] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/AndroidManifest.xml:27:5-43
-MERGED from [com.google.firebase:firebase-core:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-core/10.2.0/AndroidManifest.xml:4:5-43
-MERGED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:17:5-43
-MERGED from [com.google.firebase:firebase-analytics-impl:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/AndroidManifest.xml:17:5-43
-MERGED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:17:5-43
-MERGED from [com.google.firebase:firebase-common:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/AndroidManifest.xml:3:5-43
-MERGED from [com.google.android.gms:play-services-tasks:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/10.2.0/AndroidManifest.xml:3:5-43
-MERGED from [com.google.android.gms:play-services-basement:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/AndroidManifest.xml:17:5-43
-MERGED from [com.android.support:support-v4:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-v4/25.2.0/AndroidManifest.xml:21:5-23:54
-MERGED from [com.android.support:support-fragment:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/AndroidManifest.xml:21:5-23:60
-MERGED from [com.android.support:support-media-compat:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/AndroidManifest.xml:21:5-23:63
-MERGED from [com.android.support:support-core-ui:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/AndroidManifest.xml:21:5-23:58
-MERGED from [com.android.support:support-core-utils:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/AndroidManifest.xml:21:5-23:61
-MERGED from [com.android.support:support-compat:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/AndroidManifest.xml:21:5-23:58
-	tools:overrideLibrary
-		ADDED from [com.android.support:appcompat-v7:25.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/AndroidManifest.xml:23:9-75
-	android:targetSdkVersion
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:81:42-71
-	android:minSdkVersion
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:81:15-41
-supports-screens
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:82:5-135
-	android:largeScreens
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:82:49-76
-	android:smallScreens
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:82:106-133
-	android:normalScreens
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:82:77-105
-	android:anyDensity
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:82:23-48
-uses-permission#android.permission.GET_ACCOUNTS
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:92:5-70
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:92:22-68
-uses-permission#android.permission.WAKE_LOCK
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:93:5-67
-MERGED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:22:5-67
-MERGED from [com.google.firebase:firebase-analytics-impl:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/AndroidManifest.xml:22:5-67
-MERGED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:21:5-67
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:93:22-65
-uses-permission#android.permission.CAMERA
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:94:5-64
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:94:22-62
-uses-permission#android.permission.WRITE_EXTERNAL_STORAGE
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:95:5-80
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:95:22-78
-uses-permission#android.permission.ACCESS_NETWORK_STATE
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:96:5-78
-MERGED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:21:5-78
-MERGED from [com.google.firebase:firebase-analytics-impl:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/AndroidManifest.xml:21:5-78
-MERGED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:19:5-78
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:96:22-76
-uses-permission#android.permission.INTERNET
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:97:5-66
-MERGED from [com.google.android.gms:play-services-gcm:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/AndroidManifest.xml:21:5-66
-MERGED from [com.google.android.gms:play-services-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/AndroidManifest.xml:21:5-66
-MERGED from [com.google.firebase:firebase-crash:10.0.1] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/AndroidManifest.xml:18:5-66
-MERGED from [com.crashlytics.sdk.android:crashlytics:2.6.7] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/AndroidManifest.xml:9:5-67
-MERGED from [com.crashlytics.sdk.android:beta:1.2.4] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/AndroidManifest.xml:9:5-67
-MERGED from [com.crashlytics.sdk.android:crashlytics-core:2.3.16] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/AndroidManifest.xml:52:5-67
-MERGED from [com.crashlytics.sdk.android:answers:1.3.12] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/AndroidManifest.xml:9:5-67
-MERGED from [io.fabric.sdk.android:fabric:1.3.16] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/AndroidManifest.xml:29:5-67
-MERGED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:20:5-66
-MERGED from [com.google.firebase:firebase-analytics-impl:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/AndroidManifest.xml:20:5-66
-MERGED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:20:5-66
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:97:22-64
-uses-permission#android.permission.RECORD_AUDIO
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:98:5-70
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:98:22-68
-uses-permission#com.google.android.c2dm.permission.RECEIVE
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:99:5-81
-MERGED from [com.google.android.gms:play-services-gcm:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/AndroidManifest.xml:20:5-81
-MERGED from [com.google.android.gms:play-services-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/AndroidManifest.xml:20:5-81
-MERGED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:22:5-81
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:99:22-79
-uses-feature#android.hardware.camera
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:100:5-84
-	android:required
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:100:58-82
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:100:19-57
-uses-feature#android.hardware.camera.autofocus
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:101:5-94
-	android:required
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:101:68-92
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:101:19-67
-uses-feature#android.hardware.microphone
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:102:5-88
-	android:required
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:102:62-86
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:102:19-61
-uses-feature#0x00020000
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:103:5-77
-	android:glEsVersion
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:103:19-51
-	android:required
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:103:52-75
-permission#com.name.name.permission.C2D_MESSAGE
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:104:5-106
-	android:protectionLevel
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:104:69-104
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:104:17-68
-uses-permission#com.name.name.permission.C2D_MESSAGE
-ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:105:5-75
-	android:name
-		ADDED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml:105:22-73
-activity#com.google.android.gms.common.api.GoogleApiActivity
-ADDED from [com.google.android.gms:play-services-base:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/AndroidManifest.xml:19:9-172
-	android:exported
-		ADDED from [com.google.android.gms:play-services-base:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/AndroidManifest.xml:19:146-170
-	android:theme
-		ADDED from [com.google.android.gms:play-services-base:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/AndroidManifest.xml:19:86-145
-	android:name
-		ADDED from [com.google.android.gms:play-services-base:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/AndroidManifest.xml:19:19-85
-uses-permission#com.sec.android.provider.badge.permission.READ
-ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:19:5-86
-	android:name
-		ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:19:22-83
-uses-permission#com.sec.android.provider.badge.permission.WRITE
-ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:20:5-87
-	android:name
-		ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:20:22-84
-uses-permission#com.htc.launcher.permission.READ_SETTINGS
-ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:23:5-81
-	android:name
-		ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:23:22-78
-uses-permission#com.htc.launcher.permission.UPDATE_SHORTCUT
-ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:24:5-83
-	android:name
-		ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:24:22-80
-uses-permission#com.sonyericsson.home.permission.BROADCAST_BADGE
-ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:27:5-88
-	android:name
-		ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:27:22-85
-uses-permission#com.sonymobile.home.permission.PROVIDER_INSERT_BADGE
-ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:28:5-92
-	android:name
-		ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:28:22-89
-uses-permission#com.anddoes.launcher.permission.UPDATE_COUNT
-ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:31:5-84
-	android:name
-		ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:31:22-81
-uses-permission#com.majeur.launcher.permission.UPDATE_BADGE
-ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:34:5-83
-	android:name
-		ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:34:22-80
-uses-permission#com.huawei.android.launcher.permission.CHANGE_BADGE
-ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:37:5-91
-	android:name
-		ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:37:22-88
-uses-permission#com.huawei.android.launcher.permission.READ_SETTINGS
-ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:38:5-92
-	android:name
-		ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:38:22-89
-uses-permission#com.huawei.android.launcher.permission.WRITE_SETTINGS
-ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:39:5-93
-	android:name
-		ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:39:22-90
-uses-permission#android.permission.READ_APP_BADGE
-ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:42:5-73
-	android:name
-		ADDED from [me.leolin:ShortcutBadger:1.1.10] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/AndroidManifest.xml:42:22-70
-receiver#com.google.android.gms.measurement.AppMeasurementReceiver
-ADDED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:25:7-26:18
-MERGED from [com.google.firebase:firebase-analytics-impl:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/AndroidManifest.xml:25:7-26:18
-	android:enabled
-		ADDED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:25:90-112
-	android:exported
-		ADDED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:25:113-137
-	android:name
-		ADDED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:25:17-89
-receiver#com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver
-ADDED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:27:7-31:18
-	android:enabled
-		ADDED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:27:162-184
-	android:permission
-		ADDED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:27:105-161
-	android:name
-		ADDED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:27:17-104
-intent-filter#com.android.vending.INSTALL_REFERRER
-ADDED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:28:11-30:27
-action#com.android.vending.INSTALL_REFERRER
-ADDED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:29:15-76
-	android:name
-		ADDED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:29:23-74
-service#com.google.android.gms.measurement.AppMeasurementService
-ADDED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:32:7-137
-MERGED from [com.google.firebase:firebase-analytics-impl:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/AndroidManifest.xml:27:7-137
-	android:enabled
-		ADDED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:32:88-110
-	android:exported
-		ADDED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:32:111-135
-	android:name
-		ADDED from [com.google.firebase:firebase-analytics:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/AndroidManifest.xml:32:16-87
-permission#${applicationId}.permission.C2D_MESSAGE
-ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:24:5-109
-	android:protectionLevel
-		ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:24:72-107
-	android:name
-		ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:24:17-71
-		INJECTED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml
-uses-permission#${applicationId}.permission.C2D_MESSAGE
-ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:26:5-78
-	android:name
-		ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:26:22-76
-		INJECTED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml
-receiver#com.google.firebase.iid.FirebaseInstanceIdReceiver
-ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:30:9-36:20
-	android:exported
-		ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:30:85-108
-	android:permission
-		ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:30:109-169
-	android:name
-		ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:30:19-84
-intent-filter#${applicationId}+com.google.android.c2dm.intent.RECEIVE+com.google.android.c2dm.intent.REGISTRATION
-ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:31:13-35:29
-action#com.google.android.c2dm.intent.REGISTRATION
-ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:33:17-85
-	android:name
-		ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:33:25-83
-category#${applicationId}
-ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:34:17-60
-	android:name
-		ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:34:27-58
-		INJECTED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml
-receiver#com.google.firebase.iid.FirebaseInstanceIdInternalReceiver
-ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:40:9-119
-	android:exported
-		ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:40:93-117
-	android:name
-		ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:40:19-92
-service#com.google.firebase.iid.FirebaseInstanceIdService
-ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:44:9-48:19
-	android:exported
-		ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:44:83-106
-	android:name
-		ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:44:18-82
-intent-filter#com.google.firebase.INSTANCE_ID_EVENT
-ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:45:13-47:29
-	android:priority
-		ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:45:28-51
-action#com.google.firebase.INSTANCE_ID_EVENT
-ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:46:17-79
-	android:name
-		ADDED from [com.google.firebase:firebase-iid:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/AndroidManifest.xml:46:25-77
-provider#com.google.firebase.provider.FirebaseInitProvider
-ADDED from [com.google.firebase:firebase-common:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/AndroidManifest.xml:6:9-194
-	android:authorities
-		ADDED from [com.google.firebase:firebase-common:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/AndroidManifest.xml:6:19-78
-		INJECTED from /home/beij/code/RocketChatMobile/android/AndroidManifest.xml
-	android:exported
-		ADDED from [com.google.firebase:firebase-common:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/AndroidManifest.xml:6:144-168
-	android:initOrder
-		ADDED from [com.google.firebase:firebase-common:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/AndroidManifest.xml:6:169-192
-	android:name
-		ADDED from [com.google.firebase:firebase-common:10.2.0] /home/beij/code/RocketChatMobile/android/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/AndroidManifest.xml:6:79-143
diff --git a/android/.gradle/2.14.1/taskArtifacts/cache.properties b/android/.gradle/2.14.1/taskArtifacts/cache.properties
deleted file mode 100644
index 9945ba239cbb754e2e5823e5876f4f3fe1f0d129..0000000000000000000000000000000000000000
--- a/android/.gradle/2.14.1/taskArtifacts/cache.properties
+++ /dev/null
@@ -1 +0,0 @@
-#Sat Dec 10 20:25:37 CET 2016
diff --git a/android/.gradle/2.14.1/taskArtifacts/cache.properties.lock b/android/.gradle/2.14.1/taskArtifacts/cache.properties.lock
deleted file mode 100644
index 7f3aefb3e660f2e51400029a2f4e33c34cc0d727..0000000000000000000000000000000000000000
Binary files a/android/.gradle/2.14.1/taskArtifacts/cache.properties.lock and /dev/null differ
diff --git a/android/.gradle/2.14.1/taskArtifacts/fileHashes.bin b/android/.gradle/2.14.1/taskArtifacts/fileHashes.bin
deleted file mode 100644
index d0f1bf8f25d5c10231c13f86eff2aa826ca8dab1..0000000000000000000000000000000000000000
Binary files a/android/.gradle/2.14.1/taskArtifacts/fileHashes.bin and /dev/null differ
diff --git a/android/.gradle/2.14.1/taskArtifacts/fileSnapshots.bin b/android/.gradle/2.14.1/taskArtifacts/fileSnapshots.bin
deleted file mode 100644
index 212788d96ff237a3b26eacd65430a8af968332f1..0000000000000000000000000000000000000000
Binary files a/android/.gradle/2.14.1/taskArtifacts/fileSnapshots.bin and /dev/null differ
diff --git a/android/.gradle/2.14.1/taskArtifacts/fileSnapshotsToTreeSnapshotsIndex.bin b/android/.gradle/2.14.1/taskArtifacts/fileSnapshotsToTreeSnapshotsIndex.bin
deleted file mode 100644
index 604a1436e613de3f8bd5ae712c66341269af7567..0000000000000000000000000000000000000000
Binary files a/android/.gradle/2.14.1/taskArtifacts/fileSnapshotsToTreeSnapshotsIndex.bin and /dev/null differ
diff --git a/android/.gradle/2.14.1/taskArtifacts/taskArtifacts.bin b/android/.gradle/2.14.1/taskArtifacts/taskArtifacts.bin
deleted file mode 100644
index d58ba5cd2ee6f29414ff605b6de8ad139d931438..0000000000000000000000000000000000000000
Binary files a/android/.gradle/2.14.1/taskArtifacts/taskArtifacts.bin and /dev/null differ
diff --git a/android/.idea/compiler.xml b/android/.idea/compiler.xml
deleted file mode 100644
index 96cc43efa6a0885098044e976cd780bb42c68a70..0000000000000000000000000000000000000000
--- a/android/.idea/compiler.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project version="4">
-  <component name="CompilerConfiguration">
-    <resourceExtensions />
-    <wildcardResourcePatterns>
-      <entry name="!?*.java" />
-      <entry name="!?*.form" />
-      <entry name="!?*.class" />
-      <entry name="!?*.groovy" />
-      <entry name="!?*.scala" />
-      <entry name="!?*.flex" />
-      <entry name="!?*.kt" />
-      <entry name="!?*.clj" />
-      <entry name="!?*.aj" />
-    </wildcardResourcePatterns>
-    <annotationProcessing>
-      <profile default="true" name="Default" enabled="false">
-        <processorPath useClasspath="true" />
-      </profile>
-    </annotationProcessing>
-  </component>
-</project>
\ No newline at end of file
diff --git a/android/.idea/copyright/profiles_settings.xml b/android/.idea/copyright/profiles_settings.xml
deleted file mode 100644
index e7bedf3377d40335424fd605124d4761390218bb..0000000000000000000000000000000000000000
--- a/android/.idea/copyright/profiles_settings.xml
+++ /dev/null
@@ -1,3 +0,0 @@
-<component name="CopyrightManager">
-  <settings default="" />
-</component>
\ No newline at end of file
diff --git a/android/.idea/gradle.xml b/android/.idea/gradle.xml
deleted file mode 100644
index 47bd81ff324e223261acf802991656d9876f7d31..0000000000000000000000000000000000000000
--- a/android/.idea/gradle.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project version="4">
-  <component name="GradleSettings">
-    <option name="linkedExternalProjectsSettings">
-      <GradleProjectSettings>
-        <option name="distributionType" value="DEFAULT_WRAPPED" />
-        <option name="externalProjectPath" value="$PROJECT_DIR$" />
-        <option name="modules">
-          <set>
-            <option value="$PROJECT_DIR$" />
-          </set>
-        </option>
-        <option name="resolveModulePerSourceSet" value="false" />
-      </GradleProjectSettings>
-    </option>
-  </component>
-</project>
\ No newline at end of file
diff --git a/android/.idea/libraries/ShortcutBadger_1_1_10.xml b/android/.idea/libraries/ShortcutBadger_1_1_10.xml
deleted file mode 100644
index 8f021cca1c245356087eaeeaa9500e79a8b9333e..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/ShortcutBadger_1_1_10.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<component name="libraryTable">
-  <library name="ShortcutBadger-1.1.10">
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES>
-      <root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/me.leolin/ShortcutBadger/1.1.10/9e6fdd78c7f6c65b9bf836771a466fd2b8db4798/ShortcutBadger-1.1.10-sources.jar!/" />
-    </SOURCES>
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/animated_vector_drawable_25_2_0.xml b/android/.idea/libraries/animated_vector_drawable_25_2_0.xml
deleted file mode 100644
index 2dc00ddbbc583a097f516eec9fb9371ce2fa45e6..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/animated_vector_drawable_25_2_0.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<component name="libraryTable">
-  <library name="animated-vector-drawable-25.2.0">
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES>
-      <root url="jar://$USER_HOME$/Android/Sdk/extras/android/m2repository/com/android/support/animated-vector-drawable/25.2.0/animated-vector-drawable-25.2.0-sources.jar!/" />
-    </SOURCES>
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/answers_1_3_12.xml b/android/.idea/libraries/answers_1_3_12.xml
deleted file mode 100644
index 5a84f9302f71dc5bdadda5d60fb25c27ec9e815e..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/answers_1_3_12.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="answers-1.3.12">
-    <CLASSES>
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/res" />
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/jars/classes.jar!/" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/appcompat_v7_25_2_0.xml b/android/.idea/libraries/appcompat_v7_25_2_0.xml
deleted file mode 100644
index c391a5392f2fae8c5c3c31da4c96b5730ace5f79..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/appcompat_v7_25_2_0.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<component name="libraryTable">
-  <library name="appcompat-v7-25.2.0">
-    <ANNOTATIONS>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/annotations.zip!/" />
-    </ANNOTATIONS>
-    <CLASSES>
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/res" />
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/jars/classes.jar!/" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES>
-      <root url="jar://$USER_HOME$/Android/Sdk/extras/android/m2repository/com/android/support/appcompat-v7/25.2.0/appcompat-v7-25.2.0-sources.jar!/" />
-    </SOURCES>
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/beta_1_2_4.xml b/android/.idea/libraries/beta_1_2_4.xml
deleted file mode 100644
index f7ae961f8a96e1ed1ef10798d7b13ea7bc157b29..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/beta_1_2_4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="beta-1.2.4">
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/crashlytics_2_6_7.xml b/android/.idea/libraries/crashlytics_2_6_7.xml
deleted file mode 100644
index 24bece911eeb5ed12230381df37dc19831617d3e..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/crashlytics_2_6_7.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="crashlytics-2.6.7">
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/crashlytics_core_2_3_16.xml b/android/.idea/libraries/crashlytics_core_2_3_16.xml
deleted file mode 100644
index d0d557dd519b8a2d2e92f70d58ff332fe944ae58..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/crashlytics_core_2_3_16.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="crashlytics-core-2.3.16">
-    <CLASSES>
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/res" />
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/jars/classes.jar!/" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/crashlytics_ndk_1_1_6.xml b/android/.idea/libraries/crashlytics_ndk_1_1_6.xml
deleted file mode 100644
index 89d9b5b0224fe15f9c7384f6489f4f4243148605..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/crashlytics_ndk_1_1_6.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="crashlytics-ndk-1.1.6">
-    <CLASSES>
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/res" />
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jars/classes.jar!/" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/fabric_1_3_16.xml b/android/.idea/libraries/fabric_1_3_16.xml
deleted file mode 100644
index 41bf5166aaffddc9ff283a7a5802ddc542e596ca..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/fabric_1_3_16.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="fabric-1.3.16">
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/firebase_analytics_10_2_0.xml b/android/.idea/libraries/firebase_analytics_10_2_0.xml
deleted file mode 100644
index 4277ffebf85e73234f6578d64c9819a2e8d685d8..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/firebase_analytics_10_2_0.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="firebase-analytics-10.2.0">
-    <CLASSES>
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/res" />
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/jars/classes.jar!/" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/firebase_analytics_impl_10_2_0.xml b/android/.idea/libraries/firebase_analytics_impl_10_2_0.xml
deleted file mode 100644
index 516256e249a6ba5beb352e413bee2374ace62ab9..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/firebase_analytics_impl_10_2_0.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="firebase-analytics-impl-10.2.0">
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/firebase_common_10_2_0.xml b/android/.idea/libraries/firebase_common_10_2_0.xml
deleted file mode 100644
index 155b1770d6ce248297f71c8a33d6eb98629e813a..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/firebase_common_10_2_0.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="firebase-common-10.2.0">
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/firebase_core_10_2_0.xml b/android/.idea/libraries/firebase_core_10_2_0.xml
deleted file mode 100644
index 5caab6e32fd32cf7cee222c3ae4ac6ddaaba75e6..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/firebase_core_10_2_0.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="firebase-core-10.2.0">
-    <CLASSES>
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-core/10.2.0/res" />
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-core/10.2.0/jars/classes.jar!/" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/firebase_crash_10_0_1.xml b/android/.idea/libraries/firebase_crash_10_0_1.xml
deleted file mode 100644
index 6f8162c7282bc1f7994d840e4d37f64718a895f5..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/firebase_crash_10_0_1.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="firebase-crash-10.0.1">
-    <CLASSES>
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/res" />
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/jars/classes.jar!/" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/firebase_iid_10_2_0.xml b/android/.idea/libraries/firebase_iid_10_2_0.xml
deleted file mode 100644
index c2f748b6702646768c952d541b2308593d561b1b..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/firebase_iid_10_2_0.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="firebase-iid-10.2.0">
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/play_services_base_10_2_0.xml b/android/.idea/libraries/play_services_base_10_2_0.xml
deleted file mode 100644
index 4c7b4cc25d38c72dbd248a73bfe8fb685cc81866..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/play_services_base_10_2_0.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="play-services-base-10.2.0">
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/play_services_basement_10_2_0.xml b/android/.idea/libraries/play_services_basement_10_2_0.xml
deleted file mode 100644
index 032418a997cdfafa7564a53d27ebe1e896a48f1c..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/play_services_basement_10_2_0.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="play-services-basement-10.2.0">
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/play_services_gcm_10_2_0.xml b/android/.idea/libraries/play_services_gcm_10_2_0.xml
deleted file mode 100644
index 06250eeccaa264e995544e195a8d0eaf16aeccc6..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/play_services_gcm_10_2_0.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="play-services-gcm-10.2.0">
-    <CLASSES>
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/res" />
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/jars/classes.jar!/" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/play_services_iid_10_2_0.xml b/android/.idea/libraries/play_services_iid_10_2_0.xml
deleted file mode 100644
index bde2f34572eecf5fd1b6b3e8461b74dcef783e28..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/play_services_iid_10_2_0.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="play-services-iid-10.2.0">
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/play_services_tasks_10_2_0.xml b/android/.idea/libraries/play_services_tasks_10_2_0.xml
deleted file mode 100644
index db8d9ceaf32c2e6a4cd00cc089770785b46647ce..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/play_services_tasks_10_2_0.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="play-services-tasks-10.2.0">
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/10.2.0/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/10.2.0/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/support_annotations_25_2_0.xml b/android/.idea/libraries/support_annotations_25_2_0.xml
deleted file mode 100644
index d8131679c384e9c17f0ab13816eadd8ad3d22416..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/support_annotations_25_2_0.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<component name="libraryTable">
-  <library name="support-annotations-25.2.0">
-    <CLASSES>
-      <root url="jar://$USER_HOME$/Android/Sdk/extras/android/m2repository/com/android/support/support-annotations/25.2.0/support-annotations-25.2.0.jar!/" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES>
-      <root url="jar://$USER_HOME$/Android/Sdk/extras/android/m2repository/com/android/support/support-annotations/25.2.0/support-annotations-25.2.0-sources.jar!/" />
-    </SOURCES>
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/support_compat_25_2_0.xml b/android/.idea/libraries/support_compat_25_2_0.xml
deleted file mode 100644
index ef6fa539d7017b57444bf21311d4ff88bd9a0026..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/support_compat_25_2_0.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<component name="libraryTable">
-  <library name="support-compat-25.2.0">
-    <ANNOTATIONS>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/annotations.zip!/" />
-    </ANNOTATIONS>
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES>
-      <root url="jar://$USER_HOME$/Android/Sdk/extras/android/m2repository/com/android/support/support-compat/25.2.0/support-compat-25.2.0-sources.jar!/" />
-    </SOURCES>
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/support_core_ui_25_2_0.xml b/android/.idea/libraries/support_core_ui_25_2_0.xml
deleted file mode 100644
index 88b3365d83f10165bdde6a3677ea02ab4947fa85..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/support_core_ui_25_2_0.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<component name="libraryTable">
-  <library name="support-core-ui-25.2.0">
-    <ANNOTATIONS>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/annotations.zip!/" />
-    </ANNOTATIONS>
-    <CLASSES>
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/res" />
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/jars/classes.jar!/" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES>
-      <root url="jar://$USER_HOME$/Android/Sdk/extras/android/m2repository/com/android/support/support-core-ui/25.2.0/support-core-ui-25.2.0-sources.jar!/" />
-    </SOURCES>
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/support_core_utils_25_2_0.xml b/android/.idea/libraries/support_core_utils_25_2_0.xml
deleted file mode 100644
index 791557cc563a1dfa55d0742d4800b4c4bf22887b..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/support_core_utils_25_2_0.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<component name="libraryTable">
-  <library name="support-core-utils-25.2.0">
-    <ANNOTATIONS>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/annotations.zip!/" />
-    </ANNOTATIONS>
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES>
-      <root url="jar://$USER_HOME$/Android/Sdk/extras/android/m2repository/com/android/support/support-core-utils/25.2.0/support-core-utils-25.2.0-sources.jar!/" />
-    </SOURCES>
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/support_fragment_25_2_0.xml b/android/.idea/libraries/support_fragment_25_2_0.xml
deleted file mode 100644
index 5541441e1a75c1a89f8912b6a2207874525a0187..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/support_fragment_25_2_0.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<component name="libraryTable">
-  <library name="support-fragment-25.2.0">
-    <ANNOTATIONS>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/annotations.zip!/" />
-    </ANNOTATIONS>
-    <CLASSES>
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/res" />
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/jars/classes.jar!/" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES>
-      <root url="jar://$USER_HOME$/Android/Sdk/extras/android/m2repository/com/android/support/support-fragment/25.2.0/support-fragment-25.2.0-sources.jar!/" />
-    </SOURCES>
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/support_media_compat_25_2_0.xml b/android/.idea/libraries/support_media_compat_25_2_0.xml
deleted file mode 100644
index 28f17f82a61e31dd44dc205eebb6cf725b3db05f..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/support_media_compat_25_2_0.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<component name="libraryTable">
-  <library name="support-media-compat-25.2.0">
-    <ANNOTATIONS>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/annotations.zip!/" />
-    </ANNOTATIONS>
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES>
-      <root url="jar://$USER_HOME$/Android/Sdk/extras/android/m2repository/com/android/support/support-media-compat/25.2.0/support-media-compat-25.2.0-sources.jar!/" />
-    </SOURCES>
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/support_v4_25_2_0.xml b/android/.idea/libraries/support_v4_25_2_0.xml
deleted file mode 100644
index 39802c277ff3741b10fd363164e4b2641e393135..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/support_v4_25_2_0.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<component name="libraryTable">
-  <library name="support-v4-25.2.0">
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-v4/25.2.0/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-v4/25.2.0/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES />
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/libraries/support_vector_drawable_25_2_0.xml b/android/.idea/libraries/support_vector_drawable_25_2_0.xml
deleted file mode 100644
index 715d578af6dcb42f10b28deac693002f028da45d..0000000000000000000000000000000000000000
--- a/android/.idea/libraries/support_vector_drawable_25_2_0.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<component name="libraryTable">
-  <library name="support-vector-drawable-25.2.0">
-    <CLASSES>
-      <root url="jar://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-vector-drawable/25.2.0/jars/classes.jar!/" />
-      <root url="file://$PROJECT_DIR$/.build/intermediates/exploded-aar/com.android.support/support-vector-drawable/25.2.0/res" />
-    </CLASSES>
-    <JAVADOC />
-    <SOURCES>
-      <root url="jar://$USER_HOME$/Android/Sdk/extras/android/m2repository/com/android/support/support-vector-drawable/25.2.0/support-vector-drawable-25.2.0-sources.jar!/" />
-    </SOURCES>
-  </library>
-</component>
\ No newline at end of file
diff --git a/android/.idea/misc.xml b/android/.idea/misc.xml
deleted file mode 100644
index fbb68289f4352bf149aa31a2c9940faa99174224..0000000000000000000000000000000000000000
--- a/android/.idea/misc.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project version="4">
-  <component name="EntryPointsManager">
-    <entry_points version="2.0" />
-  </component>
-  <component name="NullableNotNullManager">
-    <option name="myDefaultNullable" value="android.support.annotation.Nullable" />
-    <option name="myDefaultNotNull" value="android.support.annotation.NonNull" />
-    <option name="myNullables">
-      <value>
-        <list size="4">
-          <item index="0" class="java.lang.String" itemvalue="org.jetbrains.annotations.Nullable" />
-          <item index="1" class="java.lang.String" itemvalue="javax.annotation.Nullable" />
-          <item index="2" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.Nullable" />
-          <item index="3" class="java.lang.String" itemvalue="android.support.annotation.Nullable" />
-        </list>
-      </value>
-    </option>
-    <option name="myNotNulls">
-      <value>
-        <list size="4">
-          <item index="0" class="java.lang.String" itemvalue="org.jetbrains.annotations.NotNull" />
-          <item index="1" class="java.lang.String" itemvalue="javax.annotation.Nonnull" />
-          <item index="2" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.NonNull" />
-          <item index="3" class="java.lang.String" itemvalue="android.support.annotation.NonNull" />
-        </list>
-      </value>
-    </option>
-  </component>
-  <component name="ProjectLevelVcsManager" settingsEditedManually="false">
-    <OptionsSetting value="true" id="Add" />
-    <OptionsSetting value="true" id="Remove" />
-    <OptionsSetting value="true" id="Checkout" />
-    <OptionsSetting value="true" id="Update" />
-    <OptionsSetting value="true" id="Status" />
-    <OptionsSetting value="true" id="Edit" />
-    <ConfirmationsSetting value="0" id="Add" />
-    <ConfirmationsSetting value="0" id="Remove" />
-  </component>
-  <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" assert-keyword="true" jdk-15="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
-    <output url="file://$PROJECT_DIR$/build/classes" />
-  </component>
-  <component name="ProjectType">
-    <option name="id" value="Android" />
-  </component>
-</project>
\ No newline at end of file
diff --git a/android/.idea/modules.xml b/android/.idea/modules.xml
deleted file mode 100644
index e54e28e567d0cd9dd2d50716f2257d5ee96decbf..0000000000000000000000000000000000000000
--- a/android/.idea/modules.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project version="4">
-  <component name="ProjectModuleManager">
-    <modules>
-      <module fileurl="file://$PROJECT_DIR$/android.iml" filepath="$PROJECT_DIR$/android.iml" />
-    </modules>
-  </component>
-</project>
\ No newline at end of file
diff --git a/android/.idea/runConfigurations.xml b/android/.idea/runConfigurations.xml
deleted file mode 100644
index 7f68460d8b38ac04e3a3224d7c79ef719b1991a9..0000000000000000000000000000000000000000
--- a/android/.idea/runConfigurations.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project version="4">
-  <component name="RunConfigurationProducerService">
-    <option name="ignoredProducers">
-      <set>
-        <option value="org.jetbrains.plugins.gradle.execution.test.runner.AllInPackageGradleConfigurationProducer" />
-        <option value="org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer" />
-        <option value="org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer" />
-      </set>
-    </option>
-  </component>
-</project>
\ No newline at end of file
diff --git a/android/.idea/workspace.xml b/android/.idea/workspace.xml
deleted file mode 100644
index 69d90bf7388b49f1c25c73271e5efa25913118b8..0000000000000000000000000000000000000000
--- a/android/.idea/workspace.xml
+++ /dev/null
@@ -1,1794 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project version="4">
-  <component name="AndroidLayouts">
-    <shared>
-      <config />
-    </shared>
-  </component>
-  <component name="AndroidLogFilters">
-    <option name="TOOL_WINDOW_CONFIGURED_FILTER" value="Show only selected application" />
-  </component>
-  <component name="ChangeListManager">
-    <list default="true" id="10cbdea1-aa5a-41d5-9bac-0aff718eaed4" name="Default" comment="" />
-    <ignored path="android.iws" />
-    <ignored path=".idea/workspace.xml" />
-    <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
-    <option name="TRACKING_ENABLED" value="true" />
-    <option name="SHOW_DIALOG" value="false" />
-    <option name="HIGHLIGHT_CONFLICTS" value="true" />
-    <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
-    <option name="LAST_RESOLUTION" value="IGNORE" />
-  </component>
-  <component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
-  <component name="CreatePatchCommitExecutor">
-    <option name="PATCH_PATH" value="" />
-  </component>
-  <component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
-  <component name="ExternalProjectsData">
-    <projectState path="$PROJECT_DIR$">
-      <ProjectState />
-    </projectState>
-  </component>
-  <component name="ExternalProjectsManager">
-    <system id="GRADLE">
-      <state>
-        <projects_view />
-      </state>
-    </system>
-  </component>
-  <component name="FavoritesManager">
-    <favorites_list name="android" />
-  </component>
-  <component name="FileEditorManager">
-    <leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
-      <file leaf-file-name="at.gv.ucom_2017.03.24_18.33.trace" pinned="false" current-in-tab="true">
-        <entry file="file://$PROJECT_DIR$/captures/at.gv.ucom_2017.03.24_18.33.trace">
-          <provider selected="true" editor-type-id="capture-editor">
-            <state />
-          </provider>
-        </entry>
-      </file>
-    </leaf>
-  </component>
-  <component name="FileTemplateManagerImpl">
-    <option name="RECENT_TEMPLATES">
-      <list>
-        <option value="ASClass" />
-      </list>
-    </option>
-  </component>
-  <component name="GradleLocalSettings">
-    <option name="availableProjects">
-      <map>
-        <entry>
-          <key>
-            <ExternalProjectPojo>
-              <option name="name" value="android" />
-              <option name="path" value="$PROJECT_DIR$" />
-            </ExternalProjectPojo>
-          </key>
-          <value>
-            <list>
-              <ExternalProjectPojo>
-                <option name="name" value="android" />
-                <option name="path" value="$PROJECT_DIR$" />
-              </ExternalProjectPojo>
-            </list>
-          </value>
-        </entry>
-      </map>
-    </option>
-    <option name="availableTasks">
-      <map>
-        <entry key="$PROJECT_DIR$">
-          <value>
-            <list>
-              <ExternalTaskPojo>
-                <option name="description" value="Displays the sub-projects of root project 'android'." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="projects" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="validateSigningDebugAndroidTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.android.support:support-core-utils:25.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComAndroidSupportSupportCoreUtils2520Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="assembleReleaseUnitTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareDebugDependencies" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="processReleaseJavaRes" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="generateReleaseAssets" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Runs lint on the Debug build." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="lintDebug" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="assembleDebugUnitTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Creates a version of android.jar that's suitable for unit tests." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="mockableAndroidJar" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Displays the configuration model of root project 'android'. [incubating]" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="model" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.crashlytics.sdk.android:crashlytics:2.6.7" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComCrashlyticsSdkAndroidCrashlytics267Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Displays the tasks runnable from root project 'android'." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="tasks" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileDebugSources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Initializes a new Gradle build. [incubating]" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="init" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare io.fabric.sdk.android:fabric:1.3.16" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareIoFabricSdkAndroidFabric1316Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.android.support:support-compat:25.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComAndroidSupportSupportCompat2520Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.google.firebase:firebase-analytics-impl:10.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComGoogleFirebaseFirebaseAnalyticsImpl1020Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="incrementalDebugJavaCompilationSafeguard" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Runs all device checks using Device Providers and Test Servers." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="deviceCheck" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.android.support:support-vector-drawable:25.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComAndroidSupportSupportVectorDrawable2520Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Displays all dependencies declared in root project 'android'." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="dependencies" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="processDebugResources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Runs lint on all variants." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="lint" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="packageDebug" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileReleaseNdk" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="generateDebugResources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="processDebugGoogleServices" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileDebugJavaWithJavac" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Assembles and tests this project and all projects it depends on." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="buildNeeded" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="generateDebugAndroidTestBuildConfig" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="processDebugUnitTestJavaRes" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Run unit tests for the release build." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="testReleaseUnitTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Generates Crashlytics symbol files for NDK projects." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="crashlyticsGenerateSymbolsDebug" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.crashlytics.sdk.android:crashlytics-ndk:1.1.6" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComCrashlyticsSdkAndroidCrashlyticsNdk116Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileDebugAndroidTestShaders" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="mergeDebugShaders" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.android.support:animated-vector-drawable:25.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComAndroidSupportAnimatedVectorDrawable2520Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="transformNative_libsWithMergeJniLibsForDebugAndroidTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileDebugAndroidTestJavaWithJavac" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Displays the components produced by root project 'android'. [incubating]" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="components" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.google.android.gms:play-services-tasks:10.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComGoogleAndroidGmsPlayServicesTasks1020Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileReleaseRenderscript" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Assembles all Debug builds." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="assembleDebug" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="processDebugAndroidTestManifest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileDebugUnitTestJavaWithJavac" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="transformResourcesWithMergeJavaResForReleaseUnitTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="transformClassesWithDexForDebug" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="preDebugAndroidTestBuild" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="processDebugAndroidTestJavaRes" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="processReleaseUnitTestJavaRes" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Uploads cached Crashlytics symbol files to Crashlytics." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="crashlyticsUploadSymbolsRelease" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Uninstalls the Release build." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="uninstallRelease" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileReleaseShaders" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="mergeReleaseResources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="generateDebugAndroidTestSources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareDebugAndroidTestDependencies" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="incrementalDebugAndroidTestJavaCompilationSafeguard" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="checkReleaseManifest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileDebugAndroidTestSources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="mergeReleaseJniLibFolders" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareReleaseDependencies" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="processReleaseResources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Installs and runs instrumentation tests using all Device Providers." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="deviceAndroidTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="mergeDebugAndroidTestAssets" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Injects the build id used by the Fabric SDK." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="fabricGenerateResourcesRelease" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="processReleaseManifest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Uninstalls the android (on device) tests for the Debug build." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="uninstallDebugAndroidTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Displays the insight into a specific dependency in root project 'android'." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="dependencyInsight" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="generateReleaseSources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="incrementalReleaseUnitTestJavaCompilationSafeguard" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="preReleaseBuild" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Assembles all variants of all applications and secondary packages." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="assemble" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.google.android.gms:play-services-base:10.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComGoogleAndroidGmsPlayServicesBase1020Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="incrementalDebugUnitTestJavaCompilationSafeguard" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.google.firebase:firebase-crash:10.0.1" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComGoogleFirebaseFirebaseCrash1001Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="incrementalReleaseJavaCompilationSafeguard" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.android.support:support-core-ui:25.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComAndroidSupportSupportCoreUi2520Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Displays a help message." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="help" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileReleaseUnitTestSources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Installs the android (on device) tests for the Debug build." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="installDebugAndroidTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="mergeDebugAssets" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.google.android.gms:play-services-gcm:10.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComGoogleAndroidGmsPlayServicesGcm1020Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.google.firebase:firebase-iid:10.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComGoogleFirebaseFirebaseIid1020Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.google.firebase:firebase-common:10.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComGoogleFirebaseFirebaseCommon1020Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Runs all device checks on currently connected devices." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="connectedCheck" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Installs and runs the tests for debug on connected devices." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="connectedDebugAndroidTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Uninstall all applications." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="uninstallAll" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.android.support:support-v4:25.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComAndroidSupportSupportV42520Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Assembles all the Test applications." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="assembleAndroidTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="processDebugAndroidTestResources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="transformNative_libsWithMergeJniLibsForDebug" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="packageRelease" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="validateSigningDebug" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileDebugAidl" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="mergeDebugResources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="preDebugUnitTestBuild" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Generates Gradle wrapper files. [incubating]" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="wrapper" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileLint" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="generateDebugAndroidTestResValues" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="mergeReleaseShaders" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Injects the build id used by the Fabric SDK." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="fabricGenerateResourcesDebug" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Caches generated Crashlytics symbol files for upload." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="crashlyticsCacheSymbolsDebug" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Displays the Android dependencies of the project." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="androidDependencies" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileDebugAndroidTestNdk" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileDebugUnitTestSources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="generateDebugSources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="mergeDebugAndroidTestJniLibFolders" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="extractProguardFiles" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="transformClassesWithDexForDebugAndroidTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="assembleDebugAndroidTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="processDebugJavaRes" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="generateDebugAndroidTestAssets" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileReleaseJavaWithJavac" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="jarReleaseClasses" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.android.support:support-media-compat:25.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComAndroidSupportSupportMediaCompat2520Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="transformResourcesWithMergeJavaResForDebugAndroidTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.android.support:support-fragment:25.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComAndroidSupportSupportFragment2520Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareReleaseUnitTestDependencies" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Run unit tests for all variants." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="test" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileDebugNdk" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="transformNative_libsWithMergeJniLibsForRelease" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="mergeDebugAndroidTestResources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Uploads an APK to Crashlytics for distribution." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="crashlyticsUploadDistributionDebug" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="preReleaseUnitTestBuild" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="generateDebugResValues" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Runs all checks." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="check" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.crashlytics.sdk.android:answers:1.3.12" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComCrashlyticsSdkAndroidAnswers1312Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Run unit tests for the debug build." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="testDebugUnitTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Installs and runs instrumentation tests for all flavors on connected devices." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="connectedAndroidTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="jarDebugClasses" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="transformClassesWithDexForRelease" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Installs the Debug build." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="installDebug" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare me.leolin:ShortcutBadger:1.1.10" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareMeLeolinShortcutBadger1110Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="preBuild" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="transformResourcesWithMergeJavaResForRelease" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="transformNative_libsWithStripDebugSymbolForRelease" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileReleaseSources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileReleaseUnitTestJavaWithJavac" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileDebugShaders" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="transformResourcesWithMergeJavaResForDebug" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileReleaseAidl" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Runs lint on the Release build." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="lintRelease" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Assembles and tests this project and all projects that depend on it." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="buildDependents" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="generateDebugAssets" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Displays all buildscript dependencies declared in root project 'android'." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="buildEnvironment" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="checkDebugManifest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="mergeDebugJniLibFolders" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prints out all the source sets defined in this project." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="sourceSets" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="transformResourcesWithMergeJavaResForDebugUnitTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.crashlytics.sdk.android:beta:1.2.4" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComCrashlyticsSdkAndroidBeta124Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.google.android.gms:play-services-iid:10.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComGoogleAndroidGmsPlayServicesIid1020Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="mergeReleaseAssets" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileDebugRenderscript" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="generateReleaseBuildConfig" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.android.support:appcompat-v7:25.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComAndroidSupportAppcompatV72520Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareDebugUnitTestDependencies" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.google.android.gms:play-services-basement:10.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComGoogleAndroidGmsPlayServicesBasement1020Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="transformNative_libsWithStripDebugSymbolForDebug" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="generateReleaseResources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Runs lint on just the fatal issues in the release build." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="lintVitalRelease" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Generates Crashlytics symbol files for NDK projects." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="crashlyticsGenerateSymbolsRelease" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Uninstalls the Debug build." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="uninstallDebug" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Displays the signing info for each variant." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="signingReport" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileDebugAndroidTestAidl" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="mergeDebugAndroidTestShaders" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Deletes the build directory." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="clean" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="preDebugBuild" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Uploads cached Crashlytics symbol files to Crashlytics." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="crashlyticsUploadSymbolsDebug" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="generateDebugBuildConfig" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Uploads an APK to Crashlytics for distribution." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="crashlyticsUploadDistributionRelease" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.crashlytics.sdk.android:crashlytics-core:2.3.16" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComCrashlyticsSdkAndroidCrashlyticsCore2316Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Assembles and tests this project." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="build" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Assembles all Release builds." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="assembleRelease" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="compileDebugAndroidTestRenderscript" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="generateDebugAndroidTestResources" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="processDebugManifest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Caches generated Crashlytics symbol files for upload." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="crashlyticsCacheSymbolsRelease" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="packageDebugAndroidTest" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="generateReleaseResValues" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.google.firebase:firebase-core:10.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComGoogleFirebaseFirebaseCore1020Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Prepare com.google.firebase:firebase-analytics:10.2.0" />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="prepareComGoogleFirebaseFirebaseAnalytics1020Library" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="processReleaseGoogleServices" />
-              </ExternalTaskPojo>
-              <ExternalTaskPojo>
-                <option name="description" value="Displays the properties of root project 'android'." />
-                <option name="linkedExternalProjectPath" value="$PROJECT_DIR$" />
-                <option name="name" value="properties" />
-              </ExternalTaskPojo>
-            </list>
-          </value>
-        </entry>
-      </map>
-    </option>
-    <option name="modificationStamps">
-      <map>
-        <entry key="$PROJECT_DIR$" value="1490298679605" />
-      </map>
-    </option>
-    <option name="projectBuildClasspath">
-      <map>
-        <entry key="$PROJECT_DIR$">
-          <value>
-            <ExternalProjectBuildClasspathPojo>
-              <option name="modulesBuildClasspath">
-                <map>
-                  <entry key="$PROJECT_DIR$">
-                    <value>
-                      <ExternalModuleBuildClasspathPojo>
-                        <option name="entries">
-                          <list>
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.build/gradle/2.2.3/344060a1bf4666fea5590eeee815fc2a79b5235a/gradle-2.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.build/gradle/2.2.3/7b8f79621d95e3ce1e95c0852db14d9d7e1d1951/gradle-2.2.3.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.google.gms/google-services/3.0.0/32b833222c886ecfb37d79b1a05ce1eddb702db1/google-services-3.0.0-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.google.gms/google-services/3.0.0/ee538ce9cf4148485e43017c5542202b8c78ff8e/google-services-3.0.0.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/io.fabric.tools/gradle/1.22.1/a45cb0acfa010ec924ac742ecc1c5e2997ffa692/gradle-1.22.1.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.build/gradle-core/2.2.3/bfc5ed39e7ac5890d6cf80e8c5545dab9021b810/gradle-core-2.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.build/gradle-core/2.2.3/3a777b0626810e0ccdced7d750ac4b60c279616c/gradle-core-2.2.3.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.build/builder/2.2.3/8d059a6102806269aee14d470bc73d44c0bfa4f0/builder-2.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.build/builder/2.2.3/13e7339544e824a3a5f8ecff42173c013791578b/builder-2.2.3.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.lint/lint/25.2.3/9ca2dd056b351c893bae1c7ac1232454ec328517/lint-25.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.lint/lint/25.2.3/aa03a3669f2913b9bc6f5f4fba4418f974e48cb7/lint-25.2.3.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/com/android/tools/build/transform-api/2.0.0-deprecated-use-gradle-api/transform-api-2.0.0-deprecated-use-gradle-api.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.build/gradle-api/2.2.3/9e3531016922fe9b88fb9f7ae9f5b0dd3289ae4f/gradle-api-2.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.build/gradle-api/2.2.3/9a45614f789d4aab624d2a61983263885f42b615/gradle-api-2.2.3.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.databinding/compilerCommon/2.2.3/aee7a865f76af8f91963ce3f8b3f62070f6eeeb/compilerCommon-2.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.databinding/compilerCommon/2.2.3/8c3829022a54acd042b5382a4a873ee2d64c29ee/compilerCommon-2.2.3.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/ow2/asm/asm-commons/5.0.4/asm-commons-5.0.4.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/net/sf/proguard/proguard-gradle/5.2.1/proguard-gradle-5.2.1.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/jacoco/org.jacoco.core/0.7.5.201505241946/org.jacoco.core-0.7.5.201505241946.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/jacoco/org.jacoco.report/0.7.5.201505241946/org.jacoco.report-0.7.5.201505241946.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/net/sf/jopt-simple/jopt-simple/4.9/jopt-simple-4.9.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/antlr/antlr/3.5.2/antlr-3.5.2.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.build/builder-model/2.2.3/1f3c26cd56ec3199fc49634cfa37647cd811a8c3/builder-model-2.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.build/builder-model/2.2.3/eddf6035ce0a31651527b4c3cc239428e877c43a/builder-model-2.2.3.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.build/builder-test-api/2.2.3/746c5f19def7dfc91844b3edf2f99b2356aa4610/builder-test-api-2.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.build/builder-test-api/2.2.3/700079fc243c217dbd6250ac01d2d6210ca8a0d6/builder-test-api-2.2.3.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools/sdklib/25.2.3/5743d9517e0aa71e0fbcba2a20affba66b2b2753/sdklib-25.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools/sdklib/25.2.3/9f12cfc56b1df4e42fa2b73f9936b586b9a56a2/sdklib-25.2.3.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools/sdk-common/25.2.3/30ff0547c45f5f079a7fd9c9ac69f93d3b0e955f/sdk-common-25.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools/sdk-common/25.2.3/2c49ca3df5bb961473b096bab2a615a7cda50dc/sdk-common-25.2.3.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools/common/25.2.3/3ef7cd06f588852bae10a304d3855a2d51d6d642/common-25.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools/common/25.2.3/255aa01048bebb511d828c6a5fc668df13b8f39d/common-25.2.3.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.build/manifest-merger/25.2.3/34adfc7b2d9e3ae920913b46b8b075cfa2a7afb2/manifest-merger-25.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.build/manifest-merger/25.2.3/d0212c507be4c38c39f4ee06a7df5a44f500ed3b/manifest-merger-25.2.3.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.ddms/ddmlib/25.2.3/9bb4f6b357fe6d260e5c880717c1ece8a6bae6ea/ddmlib-25.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.ddms/ddmlib/25.2.3/2b66df9156f476b0ccee44b378cd09073118ff59/ddmlib-25.2.3.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/com/android/tools/jack/jack-api/0.11.0/jack-api-0.11.0.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/com/android/tools/jill/jill-api/0.10.0/jill-api-0.10.0.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.analytics-library/protos/25.2.3/a9fba9b00f139a86bd907cad4c084686ff7b1a8/protos-25.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.analytics-library/protos/25.2.3/821098054f9667d0f2536d7f2d0200d8bdd9c898/protos-25.2.3.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.analytics-library/shared/25.2.3/9d18a216c427959ca0e5580fb1b9b7433ce01c73/shared-25.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.analytics-library/shared/25.2.3/785426dac20cfe596e4cf36d01aad930ffdcb05c/shared-25.2.3.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.analytics-library/tracker/25.2.3/8cfb7881aaada4d0fe28c6e2ab56b7150ff8bf8a/tracker-25.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.analytics-library/tracker/25.2.3/c807f7b3d9aa3cee795ecac620d22c5ca7dd92e1/tracker-25.2.3.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/com/squareup/javawriter/2.5.0/javawriter-2.5.0-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/com/squareup/javawriter/2.5.0/javawriter-2.5.0.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/bouncycastle/bcpkix-jdk15on/1.48/bcpkix-jdk15on-1.48-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/bouncycastle/bcpkix-jdk15on/1.48/bcpkix-jdk15on-1.48.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/bouncycastle/bcprov-jdk15on/1.48/bcprov-jdk15on-1.48-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/bouncycastle/bcprov-jdk15on/1.48/bcprov-jdk15on-1.48.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/ow2/asm/asm-tree/5.0.4/asm-tree-5.0.4.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.lint/lint-checks/25.2.3/819e632d46915e2772112e07b779cc878cad4a88/lint-checks-25.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.lint/lint-checks/25.2.3/eae71c1f5ce54195dc821133e3a5df8145de8ff5/lint-checks-25.2.3.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/eclipse/jdt/core/compiler/ecj/4.5.1/ecj-4.5.1.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/com/google/guava/guava/18.0/guava-18.0.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.databinding/baseLibrary/2.2.3/212ef3aaf0963bf1985c999e1daa4e8c43825a3f/baseLibrary-2.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.databinding/baseLibrary/2.2.3/b4b51d1925cdfda98fd861230c1ecb5855500129/baseLibrary-2.2.3.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/antlr/antlr4/4.5.3/antlr4-4.5.3.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/commons-io/commons-io/2.4/commons-io-2.4-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/commons-io/commons-io/2.4/commons-io-2.4.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools/annotations/25.2.3/14970b6fa3881b4622abdec9d64866a687261236/annotations-25.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools/annotations/25.2.3/a9970f79003cbf4aaaf26a5590aca7066f209347/annotations-25.2.3.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/net/sf/proguard/proguard-base/5.2.1/proguard-base-5.2.1.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/ow2/asm/asm-debug-all/5.0.1/asm-debug-all-5.0.1-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/ow2/asm/asm-debug-all/5.0.1/asm-debug-all-5.0.1.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/antlr/antlr-runtime/3.5.2/antlr-runtime-3.5.2.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/antlr/ST4/4.0.8/ST4-4.0.8.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.layoutlib/layoutlib-api/25.2.3/2688434b8868bd41526b79d49330116b2da464a9/layoutlib-api-25.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.layoutlib/layoutlib-api/25.2.3/ead9944caa7cba814184148efe69faf8896f4478/layoutlib-api-25.2.3.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools/dvlib/25.2.3/bcca419668a00afc455b481a5541c43083f1cd08/dvlib-25.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools/dvlib/25.2.3/5afd79f645811a98c0519141cc13900c659091a8/dvlib-25.2.3.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools/repository/25.2.3/b17b0ce2b6c0063ee4ebcd49becc4054cb6b7e98/repository-25.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools/repository/25.2.3/179dee8115834f40bd9b39675da3a0273174c3ca/repository-25.2.3.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/com/google/code/gson/gson/2.2.4/gson-2.2.4-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/apache/commons/commons-compress/1.8.1/commons-compress-1.8.1-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/apache/commons/commons-compress/1.8.1/commons-compress-1.8.1.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/apache/httpcomponents/httpclient/4.1.1/httpclient-4.1.1-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/apache/httpcomponents/httpclient/4.1.1/httpclient-4.1.1.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/apache/httpcomponents/httpmime/4.1/httpmime-4.1-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/apache/httpcomponents/httpmime/4.1/httpmime-4.1.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.lint/lint-api/25.2.3/1124bb83bc7f77eadf151691ece08c37ac682d3f/lint-api-25.2.3-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.lint/lint-api/25.2.3/fb7afa11dcda11d5bf0fcd3dcfec3e13ee921057/lint-api-25.2.3.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/ow2/asm/asm-analysis/5.0.4/asm-analysis-5.0.4.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/com/intellij/annotations/12.0/annotations-12.0-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/com/intellij/annotations/12.0/annotations-12.0.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/com/google/jimfs/jimfs/1.1/jimfs-1.1.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/apache/httpcomponents/httpcore/4.1/httpcore-4.1-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/org/apache/httpcomponents/httpcore/4.1/httpcore-4.1.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/commons-codec/commons-codec/1.4/commons-codec-1.4-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3-sources.jar" />
-                            <option value="$APPLICATION_HOME_DIR$/gradle/m2repository/com/android/tools/external/lombok/lombok-ast/0.2.3/lombok-ast-0.2.3.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.external.com-intellij/uast/145.597.4/252000592582dea402a8ff20b70c325315c2129d/uast-145.597.4-sources.jar" />
-                            <option value="$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.android.tools.external.com-intellij/uast/145.597.4/6b430796bdb6563146affb34fb840c64e8d1d3b1/uast-145.597.4.jar" />
-                          </list>
-                        </option>
-                        <option name="path" value="$PROJECT_DIR$" />
-                      </ExternalModuleBuildClasspathPojo>
-                    </value>
-                  </entry>
-                </map>
-              </option>
-              <option name="name" value="android" />
-              <option name="projectBuildClasspath">
-                <list>
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/build-comparison" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/scala" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/testing-jvm" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/native" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/base-services-groovy" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/resources" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/launcher" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/jvm-services" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/plugin-use" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/build-init" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/process-services" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/reporting" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/language-native" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/test-kit" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/ide-native" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/resources-sftp" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/javascript" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/sonar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/dependency-management" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/wrapper" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/internal-integ-testing" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/plugins" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/signing" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/ear" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/resources-http" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/diagnostics" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/code-quality" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/core" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/base-services" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/testing-native" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/jacoco" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/resources-s3" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/platform-native" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/ide" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/ide-play" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/platform-play" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/publish" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/osgi" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/language-jvm" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/logging" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/plugin-development" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/model-core" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/testing-base" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/tooling-api" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/model-groovy" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/jetty" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/ivy" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/platform-base" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/platform-jvm" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/installation-beacon" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/cli" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/language-scala" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/tooling-api-builders" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/language-java" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/open-api" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/language-groovy" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/antlr" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/internal-testing" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/messaging" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/maven" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/ui" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/src/announce" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-cli-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-tooling-api-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-wrapper-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-logging-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-model-core-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-resources-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-docs-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-messaging-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/groovy-all-2.4.4.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-base-services-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-open-api-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-model-groovy-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-process-services-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-installation-beacon-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-base-services-groovy-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-core-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-jvm-services-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-launcher-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/ant-launcher-1.9.6.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/ant-1.9.6.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-ui-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/gradle-native-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-language-jvm-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-testing-base-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-announce-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-plugins-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-build-comparison-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-signing-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-plugin-development-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-language-scala-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-publish-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-platform-native-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-language-groovy-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-jetty-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-diagnostics-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-reporting-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-ide-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/ivy-2.2.0.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-ide-native-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-resources-http-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-language-native-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-scala-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-platform-jvm-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-platform-base-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-dependency-management-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-code-quality-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-sonar-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-build-init-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-ear-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-ivy-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-maven-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-plugin-use-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-jacoco-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-osgi-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-javascript-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-resources-sftp-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-test-kit-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-ide-play-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-testing-native-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-platform-play-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-resources-s3-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-antlr-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-testing-jvm-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-language-java-2.14.1.jar" />
-                  <option value="$USER_HOME$/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1/lib/plugins/gradle-tooling-api-builders-2.14.1.jar" />
-                  <option value="$PROJECT_DIR$/buildSrc/src/main/java" />
-                  <option value="$PROJECT_DIR$/buildSrc/src/main/groovy" />
-                </list>
-              </option>
-            </ExternalProjectBuildClasspathPojo>
-          </value>
-        </entry>
-      </map>
-    </option>
-    <option name="externalProjectsViewState">
-      <projects_view />
-    </option>
-  </component>
-  <component name="IdeDocumentHistory">
-    <option name="CHANGED_PATHS">
-      <list>
-        <option value="$PROJECT_DIR$/src/at/gv/ucom/JitsiActivity.java" />
-        <option value="$USER_HOME$/Qt5.8.0/5.8/android_armv7/src/android/java/res/layout/activity_jits_call.xml" />
-        <option value="$PROJECT_DIR$/src/at/gv/ucom/JitsCallActivity.java" />
-        <option value="$PROJECT_DIR$/src/at/gv/ucom/MainActivity.java" />
-      </list>
-    </option>
-  </component>
-  <component name="ProjectFrameBounds">
-    <option name="width" value="1920" />
-    <option name="height" value="1164" />
-  </component>
-  <component name="ProjectLevelVcsManager" settingsEditedManually="false">
-    <OptionsSetting value="true" id="Add" />
-    <OptionsSetting value="true" id="Remove" />
-    <OptionsSetting value="true" id="Checkout" />
-    <OptionsSetting value="true" id="Update" />
-    <OptionsSetting value="true" id="Status" />
-    <OptionsSetting value="true" id="Edit" />
-    <ConfirmationsSetting value="0" id="Add" />
-    <ConfirmationsSetting value="0" id="Remove" />
-  </component>
-  <component name="ProjectView">
-    <navigator currentView="AndroidView" proportions="" version="1">
-      <flattenPackages />
-      <showMembers />
-      <showModules />
-      <showLibraryContents />
-      <hideEmptyPackages />
-      <abbreviatePackageNames />
-      <autoscrollToSource />
-      <autoscrollFromSource />
-      <sortByType />
-      <manualOrder />
-      <foldersAlwaysOnTop value="true" />
-    </navigator>
-    <panes>
-      <pane id="PackagesPane" />
-      <pane id="Scratches" />
-      <pane id="Scope" />
-      <pane id="AndroidView">
-        <subPane>
-          <PATH>
-            <PATH_ELEMENT>
-              <option name="myItemId" value="android" />
-              <option name="myItemType" value="com.android.tools.idea.navigator.nodes.AndroidViewProjectNode" />
-            </PATH_ELEMENT>
-            <PATH_ELEMENT>
-              <option name="myItemId" value="Gradle Scripts" />
-              <option name="myItemType" value="com.android.tools.idea.navigator.nodes.AndroidBuildScriptsGroupNode" />
-            </PATH_ELEMENT>
-          </PATH>
-          <PATH>
-            <PATH_ELEMENT>
-              <option name="myItemId" value="android" />
-              <option name="myItemType" value="com.android.tools.idea.navigator.nodes.AndroidViewProjectNode" />
-            </PATH_ELEMENT>
-          </PATH>
-        </subPane>
-      </pane>
-      <pane id="ProjectPane" />
-    </panes>
-  </component>
-  <component name="PropertiesComponent">
-    <property name="android.sdk.path" value="$USER_HOME$/Android/Sdk" />
-    <property name="settings.editor.selected.configurable" value="preferences.lookFeel" />
-    <property name="settings.editor.splitter.proportion" value="0.2" />
-    <property name="last_opened_file_path" value="$PROJECT_DIR$" />
-    <property name="device.picker.selection" value="Nexus_One_API_22" />
-    <property name="GpuMonitor.minimized" value="true" />
-    <property name="NetworkMonitor.minimized" value="true" />
-    <property name="MemoryMonitor.minimized" value="true" />
-  </component>
-  <component name="RecentsManager">
-    <key name="MoveClassesOrPackagesDialog.RECENTS_KEY">
-      <recent name="at.gv.ucom" />
-    </key>
-    <key name="android.template.packageName">
-      <recent name="at.gv.ucom" />
-    </key>
-  </component>
-  <component name="RunManager" selected="Android App.android">
-    <configuration default="true" type="AndroidRunConfigurationType" factoryName="Android App">
-      <module name="" />
-      <option name="DEPLOY" value="true" />
-      <option name="ARTIFACT_NAME" value="" />
-      <option name="PM_INSTALL_OPTIONS" value="" />
-      <option name="ACTIVITY_EXTRA_FLAGS" value="" />
-      <option name="MODE" value="default_activity" />
-      <option name="TARGET_SELECTION_MODE" value="SHOW_DIALOG" />
-      <option name="PREFERRED_AVD" value="" />
-      <option name="CLEAR_LOGCAT" value="false" />
-      <option name="SHOW_LOGCAT_AUTOMATICALLY" value="false" />
-      <option name="SKIP_NOOP_APK_INSTALLATIONS" value="true" />
-      <option name="FORCE_STOP_RUNNING_APP" value="true" />
-      <option name="DEBUGGER_TYPE" value="Auto" />
-      <option name="USE_LAST_SELECTED_DEVICE" value="false" />
-      <option name="PREFERRED_AVD" value="" />
-      <option name="SELECTED_CLOUD_MATRIX_CONFIGURATION_ID" value="-1" />
-      <option name="SELECTED_CLOUD_MATRIX_PROJECT_ID" value="" />
-      <Auto>
-        <option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
-        <option name="WORKING_DIR" value="" />
-        <option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
-      </Auto>
-      <Hybrid>
-        <option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
-        <option name="WORKING_DIR" value="" />
-        <option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
-      </Hybrid>
-      <Java />
-      <Native>
-        <option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
-        <option name="WORKING_DIR" value="" />
-        <option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
-      </Native>
-      <Profilers>
-        <option name="ENABLE_ADVANCED_PROFILING" value="true" />
-        <option name="GAPID_ENABLED" value="false" />
-        <option name="GAPID_DISABLE_PCS" value="false" />
-        <option name="SUPPORT_LIB_ENABLED" value="true" />
-        <option name="INSTRUMENTATION_ENABLED" value="true" />
-      </Profilers>
-      <option name="DEEP_LINK" value="" />
-      <option name="ACTIVITY_CLASS" value="" />
-      <method />
-    </configuration>
-    <configuration default="true" type="AndroidTestRunConfigurationType" factoryName="Android Tests">
-      <module name="" />
-      <option name="TESTING_TYPE" value="0" />
-      <option name="INSTRUMENTATION_RUNNER_CLASS" value="" />
-      <option name="METHOD_NAME" value="" />
-      <option name="CLASS_NAME" value="" />
-      <option name="PACKAGE_NAME" value="" />
-      <option name="EXTRA_OPTIONS" value="" />
-      <option name="TARGET_SELECTION_MODE" value="SHOW_DIALOG" />
-      <option name="PREFERRED_AVD" value="" />
-      <option name="CLEAR_LOGCAT" value="false" />
-      <option name="SHOW_LOGCAT_AUTOMATICALLY" value="false" />
-      <option name="SKIP_NOOP_APK_INSTALLATIONS" value="true" />
-      <option name="FORCE_STOP_RUNNING_APP" value="true" />
-      <option name="DEBUGGER_TYPE" value="Auto" />
-      <option name="USE_LAST_SELECTED_DEVICE" value="false" />
-      <option name="PREFERRED_AVD" value="" />
-      <option name="SELECTED_CLOUD_MATRIX_CONFIGURATION_ID" value="-1" />
-      <option name="SELECTED_CLOUD_MATRIX_PROJECT_ID" value="" />
-      <Auto>
-        <option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
-        <option name="WORKING_DIR" value="" />
-        <option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
-      </Auto>
-      <Hybrid>
-        <option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
-        <option name="WORKING_DIR" value="" />
-        <option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
-      </Hybrid>
-      <Java />
-      <Native>
-        <option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
-        <option name="WORKING_DIR" value="" />
-        <option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
-      </Native>
-      <Profilers>
-        <option name="ENABLE_ADVANCED_PROFILING" value="true" />
-        <option name="GAPID_ENABLED" value="false" />
-        <option name="GAPID_DISABLE_PCS" value="false" />
-        <option name="SUPPORT_LIB_ENABLED" value="true" />
-        <option name="INSTRUMENTATION_ENABLED" value="true" />
-      </Profilers>
-      <method />
-    </configuration>
-    <configuration default="true" type="Application" factoryName="Application">
-      <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
-      <option name="MAIN_CLASS_NAME" />
-      <option name="VM_PARAMETERS" />
-      <option name="PROGRAM_PARAMETERS" />
-      <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
-      <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
-      <option name="ALTERNATIVE_JRE_PATH" />
-      <option name="ENABLE_SWING_INSPECTOR" value="false" />
-      <option name="ENV_VARIABLES" />
-      <option name="PASS_PARENT_ENVS" value="true" />
-      <module name="" />
-      <envs />
-      <method />
-    </configuration>
-    <configuration default="true" type="GradleRunConfiguration" factoryName="Gradle">
-      <ExternalSystemSettings>
-        <option name="executionName" />
-        <option name="externalProjectPath" />
-        <option name="externalSystemIdString" value="GRADLE" />
-        <option name="scriptParameters" />
-        <option name="taskDescriptions">
-          <list />
-        </option>
-        <option name="taskNames">
-          <list />
-        </option>
-        <option name="vmOptions" />
-      </ExternalSystemSettings>
-      <method />
-    </configuration>
-    <configuration default="true" type="JUnit" factoryName="JUnit">
-      <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
-      <module name="" />
-      <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
-      <option name="ALTERNATIVE_JRE_PATH" />
-      <option name="PACKAGE_NAME" />
-      <option name="MAIN_CLASS_NAME" />
-      <option name="METHOD_NAME" />
-      <option name="TEST_OBJECT" value="class" />
-      <option name="VM_PARAMETERS" value="-ea" />
-      <option name="PARAMETERS" />
-      <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
-      <option name="ENV_VARIABLES" />
-      <option name="PASS_PARENT_ENVS" value="true" />
-      <option name="TEST_SEARCH_SCOPE">
-        <value defaultName="singleModule" />
-      </option>
-      <envs />
-      <patterns />
-      <method>
-        <option name="Make" enabled="false" />
-        <option name="Android.Gradle.BeforeRunTask" enabled="true" />
-      </method>
-    </configuration>
-    <configuration default="true" type="JarApplication" factoryName="JAR Application">
-      <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
-      <envs />
-      <method />
-    </configuration>
-    <configuration default="true" type="Java Scratch" factoryName="Java Scratch">
-      <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
-      <option name="SCRATCH_FILE_ID" value="0" />
-      <option name="MAIN_CLASS_NAME" />
-      <option name="VM_PARAMETERS" />
-      <option name="PROGRAM_PARAMETERS" />
-      <option name="WORKING_DIRECTORY" />
-      <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
-      <option name="ALTERNATIVE_JRE_PATH" />
-      <option name="ENABLE_SWING_INSPECTOR" value="false" />
-      <option name="ENV_VARIABLES" />
-      <option name="PASS_PARENT_ENVS" value="true" />
-      <module name="" />
-      <envs />
-      <method />
-    </configuration>
-    <configuration default="true" type="Remote" factoryName="Remote">
-      <option name="USE_SOCKET_TRANSPORT" value="true" />
-      <option name="SERVER_MODE" value="false" />
-      <option name="SHMEM_ADDRESS" value="javadebug" />
-      <option name="HOST" value="localhost" />
-      <option name="PORT" value="5005" />
-      <method />
-    </configuration>
-    <configuration default="true" type="TestNG" factoryName="TestNG">
-      <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
-      <module name="" />
-      <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
-      <option name="ALTERNATIVE_JRE_PATH" />
-      <option name="SUITE_NAME" />
-      <option name="PACKAGE_NAME" />
-      <option name="MAIN_CLASS_NAME" />
-      <option name="METHOD_NAME" />
-      <option name="GROUP_NAME" />
-      <option name="TEST_OBJECT" value="CLASS" />
-      <option name="VM_PARAMETERS" value="-ea" />
-      <option name="PARAMETERS" />
-      <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
-      <option name="OUTPUT_DIRECTORY" />
-      <option name="ANNOTATION_TYPE" />
-      <option name="ENV_VARIABLES" />
-      <option name="PASS_PARENT_ENVS" value="true" />
-      <option name="TEST_SEARCH_SCOPE">
-        <value defaultName="singleModule" />
-      </option>
-      <option name="USE_DEFAULT_REPORTERS" value="false" />
-      <option name="PROPERTIES_FILE" />
-      <envs />
-      <properties />
-      <listeners />
-      <method />
-    </configuration>
-    <configuration default="true" type="TestNGTestDiscovery" factoryName="TestNG Test Discovery" changeList="All">
-      <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
-      <module name="" />
-      <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
-      <option name="ALTERNATIVE_JRE_PATH" />
-      <option name="SUITE_NAME" />
-      <option name="PACKAGE_NAME" />
-      <option name="MAIN_CLASS_NAME" />
-      <option name="METHOD_NAME" />
-      <option name="GROUP_NAME" />
-      <option name="TEST_OBJECT" value="CLASS" />
-      <option name="VM_PARAMETERS" />
-      <option name="PARAMETERS" />
-      <option name="WORKING_DIRECTORY" />
-      <option name="OUTPUT_DIRECTORY" />
-      <option name="ANNOTATION_TYPE" />
-      <option name="ENV_VARIABLES" />
-      <option name="PASS_PARENT_ENVS" value="true" />
-      <option name="TEST_SEARCH_SCOPE">
-        <value defaultName="singleModule" />
-      </option>
-      <option name="USE_DEFAULT_REPORTERS" value="false" />
-      <option name="PROPERTIES_FILE" />
-      <envs />
-      <properties />
-      <listeners />
-      <method />
-    </configuration>
-    <configuration default="false" name="android" type="AndroidRunConfigurationType" factoryName="Android App">
-      <module name="android" />
-      <option name="DEPLOY" value="true" />
-      <option name="ARTIFACT_NAME" value="" />
-      <option name="PM_INSTALL_OPTIONS" value="" />
-      <option name="ACTIVITY_EXTRA_FLAGS" value="" />
-      <option name="MODE" value="default_activity" />
-      <option name="TARGET_SELECTION_MODE" value="SHOW_DIALOG" />
-      <option name="PREFERRED_AVD" value="" />
-      <option name="CLEAR_LOGCAT" value="false" />
-      <option name="SHOW_LOGCAT_AUTOMATICALLY" value="false" />
-      <option name="SKIP_NOOP_APK_INSTALLATIONS" value="true" />
-      <option name="FORCE_STOP_RUNNING_APP" value="true" />
-      <option name="DEBUGGER_TYPE" value="Auto" />
-      <option name="USE_LAST_SELECTED_DEVICE" value="false" />
-      <option name="PREFERRED_AVD" value="" />
-      <option name="SELECTED_CLOUD_MATRIX_CONFIGURATION_ID" value="-1" />
-      <option name="SELECTED_CLOUD_MATRIX_PROJECT_ID" value="" />
-      <Auto>
-        <option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
-        <option name="WORKING_DIR" value="" />
-        <option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
-      </Auto>
-      <Hybrid>
-        <option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
-        <option name="WORKING_DIR" value="" />
-        <option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
-      </Hybrid>
-      <Java />
-      <Native>
-        <option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
-        <option name="WORKING_DIR" value="" />
-        <option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
-      </Native>
-      <Profilers>
-        <option name="ENABLE_ADVANCED_PROFILING" value="true" />
-        <option name="GAPID_ENABLED" value="false" />
-        <option name="GAPID_DISABLE_PCS" value="false" />
-        <option name="SUPPORT_LIB_ENABLED" value="true" />
-        <option name="INSTRUMENTATION_ENABLED" value="true" />
-      </Profilers>
-      <option name="DEEP_LINK" value="" />
-      <option name="ACTIVITY_CLASS" value="" />
-      <method />
-    </configuration>
-    <list size="1">
-      <item index="0" class="java.lang.String" itemvalue="Android App.android" />
-    </list>
-    <configuration name="&lt;template&gt;" type="Applet" default="true" selected="false">
-      <option name="MAIN_CLASS_NAME" />
-      <option name="HTML_FILE_NAME" />
-      <option name="HTML_USED" value="false" />
-      <option name="WIDTH" value="400" />
-      <option name="HEIGHT" value="300" />
-      <option name="POLICY_FILE" value="$APPLICATION_HOME_DIR$/bin/appletviewer.policy" />
-      <option name="VM_PARAMETERS" />
-    </configuration>
-    <configuration name="&lt;template&gt;" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" default="true" selected="false">
-      <option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -XX:MaxPermSize=250m -ea" />
-    </configuration>
-  </component>
-  <component name="ShelveChangesManager" show_recycled="false">
-    <option name="remove_strategy" value="false" />
-  </component>
-  <component name="SvnConfiguration">
-    <configuration />
-  </component>
-  <component name="TaskManager">
-    <task active="true" id="Default" summary="Default task">
-      <changelist id="10cbdea1-aa5a-41d5-9bac-0aff718eaed4" name="Default" comment="" />
-      <created>1488666639585</created>
-      <option name="number" value="Default" />
-      <option name="presentableId" value="Default" />
-      <updated>1488666639585</updated>
-    </task>
-    <servers />
-  </component>
-  <component name="ToolWindowManager">
-    <frame x="0" y="0" width="1920" height="1164" extended-state="6" />
-    <editor active="false" />
-    <layout>
-      <window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
-      <window_info id="Nl-Palette" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
-      <window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.18845502" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
-      <window_info id="Build Variants" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="true" content_ui="tabs" />
-      <window_info id="Palette&#9;" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
-      <window_info id="Image Layers" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
-      <window_info id="Capture Analysis" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
-      <window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
-      <window_info id="Android Monitor" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.5724138" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
-      <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.3293718" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
-      <window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
-      <window_info id="Properties" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
-      <window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
-      <window_info id="Captures" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
-      <window_info id="Capture Tool" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
-      <window_info id="Gradle Console" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
-      <window_info id="Designer" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
-      <window_info id="Project" active="true" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.03304904" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
-      <window_info id="Gradle" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
-      <window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
-      <window_info id="Android Model" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="true" content_ui="tabs" />
-      <window_info id="Theme Preview" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
-      <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
-      <window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="true" content_ui="tabs" />
-      <window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
-      <window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
-      <window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
-      <window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
-      <window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
-      <window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
-      <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
-    </layout>
-  </component>
-  <component name="Vcs.Log.UiProperties">
-    <option name="RECENTLY_FILTERED_USER_GROUPS">
-      <collection />
-    </option>
-    <option name="RECENTLY_FILTERED_BRANCH_GROUPS">
-      <collection />
-    </option>
-  </component>
-  <component name="VcsContentAnnotationSettings">
-    <option name="myLimit" value="2678400000" />
-  </component>
-  <component name="XDebuggerManager">
-    <breakpoint-manager />
-    <watches-manager />
-  </component>
-  <component name="editorHistoryManager">
-    <entry file="file://$PROJECT_DIR$/captures/at.gv.ucom_2017.03.24_18.33.trace">
-      <provider selected="true" editor-type-id="capture-editor">
-        <state />
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/captures/at.gv.ucom_2017.03.24_18.33.trace">
-      <provider selected="true" editor-type-id="capture-editor">
-        <state />
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/.build/intermediates/manifests/full/debug/AndroidManifest.xml">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="1320">
-          <caret line="88" column="50" selection-start-line="88" selection-start-column="50" selection-end-line="88" selection-end-column="50" />
-        </state>
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/.build/intermediates/manifests/instant-run/debug/AndroidManifest.xml">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="0">
-          <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
-        </state>
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/.build/intermediates/manifests/full/debug/AndroidManifest.xml">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="1320">
-          <caret line="88" column="50" selection-start-line="88" selection-start-column="50" selection-end-line="88" selection-end-column="50" />
-        </state>
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/.build/intermediates/manifests/instant-run/debug/AndroidManifest.xml">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="1305">
-          <caret line="87" column="23" selection-start-line="87" selection-start-column="23" selection-end-line="87" selection-end-column="23" />
-        </state>
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/src/at/gv/ucom/GcmIntentService.java">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="1455">
-          <caret line="131" column="43" selection-start-line="131" selection-start-column="43" selection-end-line="131" selection-end-column="43" />
-        </state>
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/src/at/gv/ucom/MainActivity.java">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="465">
-          <caret line="82" column="24" selection-start-line="82" selection-start-column="16" selection-end-line="82" selection-end-column="24" />
-        </state>
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/src/at/gv/ucom/JitsCallActivity.java" />
-    <entry file="file://$PROJECT_DIR$/build.gradle">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="1110">
-          <caret line="74" column="33" selection-start-line="74" selection-start-column="33" selection-end-line="74" selection-end-column="33" />
-          <folding />
-        </state>
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/src/at/gv/ucom/ReceiveTextMessage.java">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="120">
-          <caret line="8" column="13" selection-start-line="8" selection-start-column="13" selection-end-line="8" selection-end-column="13" />
-        </state>
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/src/at/gv/ucom/RegisterTask.java">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="60">
-          <caret line="8" column="13" selection-start-line="8" selection-start-column="13" selection-end-line="8" selection-end-column="13" />
-        </state>
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/src/at/gv/ucom/RegisterTask.java">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="60">
-          <caret line="8" column="13" selection-start-line="8" selection-start-column="13" selection-end-line="8" selection-end-column="13" />
-        </state>
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/src/at/gv/ucom/ReceiveTextMessage.java">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="120">
-          <caret line="8" column="13" selection-start-line="8" selection-start-column="13" selection-end-line="8" selection-end-column="13" />
-        </state>
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/build.gradle">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="1110">
-          <caret line="74" column="33" selection-start-line="74" selection-start-column="33" selection-end-line="74" selection-end-column="33" />
-          <folding />
-        </state>
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/src/at/gv/ucom/JitsiActivity.java" />
-    <entry file="file://$USER_HOME$/Qt5.8.0/5.8/android_armv7/src/android/java/res/layout/activity_jits_call.xml">
-      <provider editor-type-id="text-editor">
-        <state relative-caret-position="0">
-          <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
-        </state>
-      </provider>
-      <provider selected="true" editor-type-id="android-designer2">
-        <state />
-      </provider>
-    </entry>
-    <entry file="file://$USER_HOME$/Qt5.8.0/5.8/android_armv7/src/android/java/res/layout/activity_jits_call.xml">
-      <provider editor-type-id="text-editor">
-        <state relative-caret-position="0">
-          <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
-        </state>
-      </provider>
-      <provider selected="true" editor-type-id="android-designer2">
-        <state />
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/src/at/gv/ucom/JitsCallActivity.java" />
-    <entry file="file://$PROJECT_DIR$/src/at/gv/ucom/MainActivity.java">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="150">
-          <caret line="86" column="24" selection-start-line="86" selection-start-column="24" selection-end-line="86" selection-end-column="24" />
-        </state>
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/src/at/gv/ucom/GcmIntentService.java">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="384">
-          <caret line="154" column="43" selection-start-line="154" selection-start-column="43" selection-end-line="154" selection-end-column="43" />
-        </state>
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/.build/intermediates/manifests/instant-run/debug/AndroidManifest.xml">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="-8">
-          <caret line="87" column="23" selection-start-line="87" selection-start-column="23" selection-end-line="87" selection-end-column="23" />
-        </state>
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/.build/intermediates/manifests/full/debug/AndroidManifest.xml">
-      <provider selected="true" editor-type-id="text-editor">
-        <state relative-caret-position="22">
-          <caret line="88" column="50" selection-start-line="88" selection-start-column="50" selection-end-line="88" selection-end-column="50" />
-        </state>
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/captures/at.gv.ucom_2017.03.24_17.51.li">
-      <provider selected="true" editor-type-id="capture-editor">
-        <state />
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/captures/at.gv.ucom_2017.03.24_18.30-1.trace">
-      <provider selected="true" editor-type-id="capture-editor">
-        <state />
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/captures/at.gv.ucom_2017.03.24_18.30.trace">
-      <provider selected="true" editor-type-id="capture-editor">
-        <state />
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/captures/at.gv.ucom_2017.03.24_17.51-1.li">
-      <provider selected="true" editor-type-id="capture-editor">
-        <state />
-      </provider>
-    </entry>
-    <entry file="file://$PROJECT_DIR$/captures/at.gv.ucom_2017.03.24_18.33.trace">
-      <provider selected="true" editor-type-id="capture-editor">
-        <state />
-      </provider>
-    </entry>
-  </component>
-</project>
\ No newline at end of file
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
deleted file mode 100755
index a29956c9257dbc04136fe851d34f8e784bfafa8f..0000000000000000000000000000000000000000
--- a/android/AndroidManifest.xml
+++ /dev/null
@@ -1,181 +0,0 @@
-<?xml version="1.0"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="at.gv.ucom"
-    android:installLocation="auto"
-    android:versionCode="1"
-    android:versionName="0.5">
-
-    <application
-        android:name="org.qtproject.qt5.android.bindings.QtApplication"
-        android:hardwareAccelerated="true"
-        android:icon="@drawable/icon"
-        android:label="ucom">
-        <activity
-            android:name="at.gv.ucom.MainActivity"
-            android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation"
-            android:label="ucom"
-            android:launchMode="singleTop"
-            android:screenOrientation="unspecified">
-            <intent-filter>
-                <action android:name="android.intent.action.MAIN" />
-                <category android:name="android.intent.category.LAUNCHER" />
-            </intent-filter>
-
-            <!-- Application arguments -->
-            <!-- meta-data android:name="android.app.arguments" android:value="arg1 arg2 arg3"/ -->
-            <!-- Application arguments -->
-            <meta-data
-                android:name="android.app.lib_name"
-                android:value="-- %%INSERT_APP_LIB_NAME%% --" />
-            <meta-data
-                android:name="android.app.qt_sources_resource_id"
-                android:resource="@array/qt_sources" />
-            <meta-data
-                android:name="android.app.repository"
-                android:value="default" />
-            <meta-data
-                android:name="android.app.qt_libs_resource_id"
-                android:resource="@array/qt_libs" />
-            <meta-data
-                android:name="android.app.bundled_libs_resource_id"
-                android:resource="@array/bundled_libs" />
-            <!-- Deploy Qt libs as part of package -->
-            <meta-data
-                android:name="android.app.bundle_local_qt_libs"
-                android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --" />
-            <meta-data
-                android:name="android.app.bundled_in_lib_resource_id"
-                android:resource="@array/bundled_in_lib" />
-            <meta-data
-                android:name="android.app.bundled_in_assets_resource_id"
-                android:resource="@array/bundled_in_assets" />
-            <!-- Run with local libs -->
-            <meta-data
-                android:name="android.app.use_local_qt_libs"
-                android:value="-- %%USE_LOCAL_QT_LIBS%% --" />
-            <meta-data
-                android:name="android.app.libs_prefix"
-                android:value="/data/local/tmp/qt/" />
-            <meta-data
-                android:name="android.app.load_local_libs"
-                android:value="-- %%INSERT_LOCAL_LIBS%% --" />
-            <meta-data
-                android:name="android.app.load_local_jars"
-                android:value="-- %%INSERT_LOCAL_JARS%% --" />
-            <meta-data
-                android:name="android.app.static_init_classes"
-                android:value="-- %%INSERT_INIT_CLASSES%% --" />
-            <!--  Messages maps -->
-            <meta-data
-                android:name="android.app.ministro_not_found_msg"
-                android:value="@string/ministro_not_found_msg" />
-            <meta-data
-                android:name="android.app.ministro_needed_msg"
-                android:value="@string/ministro_needed_msg" />
-            <meta-data
-                android:name="android.app.fatal_error_msg"
-                android:value="@string/fatal_error_msg" />
-            <!--  Messages maps -->
-
-            <!-- Splash screen -->
-            <meta-data
-                android:name="android.app.splash_screen_drawable"
-                android:resource="@drawable/splash" />
-            <meta-data
-                android:name="android.app.splash_screen_sticky"
-                android:value="false" />
-            <!-- Splash screen -->
-
-            <!-- Background running -->
-            <!-- Warning: changing this value to true may cause unexpected crashes if the
-                          application still try to draw after
-                          "applicationStateChanged(Qt::ApplicationSuspended)"
-                          signal is sent! -->
-            <meta-data
-                android:name="android.app.background_running"
-                android:value="false" />
-            <!-- Background running -->
-
-            <!-- auto screen scale factor -->
-            <meta-data
-                android:name="android.app.auto_screen_scale_factor"
-                android:value="false" />
-            <!-- auto screen scale factor -->
-
-            <!-- extract android style -->
-            <!-- available android:values :
-                * full - useful QWidget & Quick Controls 1 apps
-                * minimal - useful for Quick Controls 2 apps, it is much faster than "full"
-                * none - useful for apps that don't use any of the above Qt modules
-                -->
-            <meta-data
-                android:name="android.app.extract_android_style"
-                android:value="minimal" />
-            <!-- extract android style -->
-        </activity>
-        <receiver
-            android:name=".GcmBroadcastReceiver"
-            android:permission="com.google.android.c2dm.permission.SEND">
-
-            <intent-filter>
-                <!-- Receives the actual messages. -->
-                <action android:name="com.google.android.c2dm.intent.RECEIVE" />
-                <category android:name="ucom" />
-            </intent-filter>
-        </receiver>
-
-        <!-- For adding service(s) please check: https://wiki.qt.io/AndroidServices -->
-        <service android:name=".GcmIntentService" />
-        <meta-data
-            android:name="io.fabric.ApiKey"
-            android:value="955eb00aa44a7eb13db6ba408ffcae7c1680a056" /><!-- ATTENTION: This was auto-generated to add Google Play services to your project for
-     App Indexing.  See https://g.co/AppIndexing/AndroidStudio for more information. -->
-        <meta-data
-            android:name="com.google.android.gms.version"
-            android:value="@integer/google_play_services_version" />
-    </application>
-
-    <uses-sdk
-        android:minSdkVersion="17"
-        android:targetSdkVersion="23" />
-    <supports-screens
-        android:anyDensity="true"
-        android:largeScreens="true"
-        android:normalScreens="true"
-        android:smallScreens="true" />
-
-    <!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
-         Remove the comment if you do not require these default permissions. -->
-    <!-- %%INSERT_PERMISSIONS -->
-
-    <!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application.
-         Remove the comment if you do not require these default features. -->
-    <!-- %%INSERT_FEATURES -->
-
-    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
-    <uses-permission android:name="android.permission.WAKE_LOCK" />
-    <uses-permission android:name="android.permission.CAMERA" />
-    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
-    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
-    <uses-permission android:name="android.permission.INTERNET" />
-    <uses-permission android:name="android.permission.RECORD_AUDIO" />
-    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
-
-    <uses-feature
-        android:name="android.hardware.camera"
-        android:required="false" />
-    <uses-feature
-        android:name="android.hardware.camera.autofocus"
-        android:required="false" />
-    <uses-feature
-        android:name="android.hardware.microphone"
-        android:required="false" />
-    <uses-feature
-        android:glEsVersion="0x00020000"
-        android:required="true" />
-
-    <permission
-        android:name="com.name.name.permission.C2D_MESSAGE"
-        android:protectionLevel="signature" />
-    <uses-permission android:name="com.name.name.permission.C2D_MESSAGE" />
-</manifest>
diff --git a/android/android.iml b/android/android.iml
deleted file mode 100755
index 2e178684b67c7221f8dd4548acbefdc247a58407..0000000000000000000000000000000000000000
--- a/android/android.iml
+++ /dev/null
@@ -1,159 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<module external.linked.project.id="android" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" type="JAVA_MODULE" version="4">
-  <component name="FacetManager">
-    <facet type="android-gradle" name="Android-Gradle">
-      <configuration>
-        <option name="GRADLE_PROJECT_PATH" value=":" />
-      </configuration>
-    </facet>
-    <facet type="android" name="Android">
-      <configuration>
-        <option name="SELECTED_BUILD_VARIANT" value="debug" />
-        <option name="SELECTED_TEST_ARTIFACT" value="_android_test_" />
-        <option name="ASSEMBLE_TASK_NAME" value="assembleDebug" />
-        <option name="COMPILE_JAVA_TASK_NAME" value="compileDebugSources" />
-        <afterSyncTasks>
-          <task>generateDebugSources</task>
-        </afterSyncTasks>
-        <option name="ALLOW_USER_CONFIGURATION" value="false" />
-        <option name="RES_FOLDER_RELATIVE_PATH" value="/../../../Qt5.8.0/5.8/android_armv7/src/android/java/res" />
-        <option name="RES_FOLDERS_RELATIVE_PATH" value="file://$USER_HOME$/Qt5.8.0/5.8/android_armv7/src/android/java/res;file://$MODULE_DIR$/res" />
-      </configuration>
-    </facet>
-  </component>
-  <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="false">
-    <output url="file://$MODULE_DIR$/.build/intermediates/classes/debug" />
-    <output-test url="file://$MODULE_DIR$/.build/intermediates/classes/test/debug" />
-    <exclude-output />
-    <content url="file://$USER_HOME$/Qt5.8.0/5.8/android_armv7/src/android/java/res">
-      <sourceFolder url="file://$USER_HOME$/Qt5.8.0/5.8/android_armv7/src/android/java/res" type="java-resource" />
-    </content>
-    <content url="file://$USER_HOME$/Qt5.8.0/5.8/android_armv7/src/android/java/src">
-      <sourceFolder url="file://$USER_HOME$/Qt5.8.0/5.8/android_armv7/src/android/java/src" isTestSource="false" />
-    </content>
-    <content url="file://$MODULE_DIR$">
-      <sourceFolder url="file://$MODULE_DIR$/.build/generated/source/r/debug" isTestSource="false" generated="true" />
-      <sourceFolder url="file://$MODULE_DIR$/.build/generated/source/aidl/debug" isTestSource="false" generated="true" />
-      <sourceFolder url="file://$MODULE_DIR$/.build/generated/source/buildConfig/debug" isTestSource="false" generated="true" />
-      <sourceFolder url="file://$MODULE_DIR$/.build/generated/source/rs/debug" isTestSource="false" generated="true" />
-      <sourceFolder url="file://$MODULE_DIR$/.build/generated/source/apt/debug" isTestSource="false" generated="true" />
-      <sourceFolder url="file://$MODULE_DIR$/.build/generated/fabric/res/debug" type="java-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/.build/generated/res/google-services/debug" type="java-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/.build/generated/res/rs/debug" type="java-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/.build/generated/res/resValues/debug" type="java-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/.build/generated/source/r/androidTest/debug" isTestSource="true" generated="true" />
-      <sourceFolder url="file://$MODULE_DIR$/.build/generated/source/aidl/androidTest/debug" isTestSource="true" generated="true" />
-      <sourceFolder url="file://$MODULE_DIR$/.build/generated/source/buildConfig/androidTest/debug" isTestSource="true" generated="true" />
-      <sourceFolder url="file://$MODULE_DIR$/.build/generated/source/rs/androidTest/debug" isTestSource="true" generated="true" />
-      <sourceFolder url="file://$MODULE_DIR$/.build/generated/source/apt/androidTest/debug" isTestSource="true" generated="true" />
-      <sourceFolder url="file://$MODULE_DIR$/.build/generated/res/rs/androidTest/debug" type="java-test-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/.build/generated/res/resValues/androidTest/debug" type="java-test-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/src/debug/res" type="java-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/src/debug/resources" type="java-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/src/debug/assets" type="java-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/src/debug/aidl" isTestSource="false" />
-      <sourceFolder url="file://$MODULE_DIR$/src/debug/java" isTestSource="false" />
-      <sourceFolder url="file://$MODULE_DIR$/src/debug/jni" isTestSource="false" />
-      <sourceFolder url="file://$MODULE_DIR$/src/debug/rs" isTestSource="false" />
-      <sourceFolder url="file://$MODULE_DIR$/src/debug/shaders" isTestSource="false" />
-      <sourceFolder url="file://$MODULE_DIR$/src/testDebug/res" type="java-test-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/src/testDebug/resources" type="java-test-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/src/testDebug/assets" type="java-test-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/src/testDebug/aidl" isTestSource="true" />
-      <sourceFolder url="file://$MODULE_DIR$/src/testDebug/java" isTestSource="true" />
-      <sourceFolder url="file://$MODULE_DIR$/src/testDebug/jni" isTestSource="true" />
-      <sourceFolder url="file://$MODULE_DIR$/src/testDebug/rs" isTestSource="true" />
-      <sourceFolder url="file://$MODULE_DIR$/src/testDebug/shaders" isTestSource="true" />
-      <sourceFolder url="file://$MODULE_DIR$/res" type="java-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/src" type="java-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/assets" type="java-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
-      <sourceFolder url="file://$MODULE_DIR$/aidl" isTestSource="false" />
-      <sourceFolder url="file://$MODULE_DIR$/java" isTestSource="false" />
-      <sourceFolder url="file://$MODULE_DIR$/src/main/jni" isTestSource="false" />
-      <sourceFolder url="file://$MODULE_DIR$/src/main/shaders" isTestSource="false" />
-      <sourceFolder url="file://$MODULE_DIR$/src/androidTest/res" type="java-test-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/src/androidTest/resources" type="java-test-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/src/androidTest/assets" type="java-test-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/src/androidTest/aidl" isTestSource="true" />
-      <sourceFolder url="file://$MODULE_DIR$/src/androidTest/java" isTestSource="true" />
-      <sourceFolder url="file://$MODULE_DIR$/src/androidTest/jni" isTestSource="true" />
-      <sourceFolder url="file://$MODULE_DIR$/src/androidTest/rs" isTestSource="true" />
-      <sourceFolder url="file://$MODULE_DIR$/src/androidTest/shaders" isTestSource="true" />
-      <sourceFolder url="file://$MODULE_DIR$/src/test/res" type="java-test-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/src/test/resources" type="java-test-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/src/test/assets" type="java-test-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/src/test/aidl" isTestSource="true" />
-      <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
-      <sourceFolder url="file://$MODULE_DIR$/src/test/jni" isTestSource="true" />
-      <sourceFolder url="file://$MODULE_DIR$/src/test/rs" isTestSource="true" />
-      <sourceFolder url="file://$MODULE_DIR$/src/test/shaders" isTestSource="true" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/assets" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/blame" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.android.support/support-compat/25.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.android.support/support-core-ui/25.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.android.support/support-core-utils/25.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.android.support/support-fragment/25.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.android.support/support-media-compat/25.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.android.support/support-v4/25.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.android.support/support-vector-drawable/25.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/answers/1.3.12/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/beta/1.2.4/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-core/2.3.16/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics-ndk/1.1.6/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.crashlytics.sdk.android/crashlytics/2.6.7/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.google.android.gms/play-services-base/10.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/10.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/10.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/10.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/10.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics-impl/10.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-analytics/10.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-common/10.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-core/10.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-crash/10.0.1/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/com.google.firebase/firebase-iid/10.2.0/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/io.fabric.sdk.android/fabric/1.3.16/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/exploded-aar/me.leolin/ShortcutBadger/1.1.10/jars" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/incremental" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/manifests" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/res" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/rs" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/shaders" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/intermediates/symbols" />
-      <excludeFolder url="file://$MODULE_DIR$/.build/outputs" />
-    </content>
-    <orderEntry type="jdk" jdkName="Android API 25 Platform" jdkType="Android SDK" />
-    <orderEntry type="sourceFolder" forTests="false" />
-    <orderEntry type="library" exported="" name="firebase-analytics-10.2.0" level="project" />
-    <orderEntry type="library" exported="" name="firebase-core-10.2.0" level="project" />
-    <orderEntry type="library" exported="" name="play-services-tasks-10.2.0" level="project" />
-    <orderEntry type="library" exported="" name="play-services-base-10.2.0" level="project" />
-    <orderEntry type="library" exported="" name="crashlytics-core-2.3.16" level="project" />
-    <orderEntry type="library" exported="" name="support-core-ui-25.2.0" level="project" />
-    <orderEntry type="library" exported="" name="firebase-iid-10.2.0" level="project" />
-    <orderEntry type="library" exported="" name="firebase-crash-10.0.1" level="project" />
-    <orderEntry type="library" exported="" name="support-core-utils-25.2.0" level="project" />
-    <orderEntry type="library" exported="" name="support-fragment-25.2.0" level="project" />
-    <orderEntry type="library" exported="" name="crashlytics-ndk-1.1.6" level="project" />
-    <orderEntry type="library" exported="" name="fabric-1.3.16" level="project" />
-    <orderEntry type="library" exported="" name="crashlytics-2.6.7" level="project" />
-    <orderEntry type="library" exported="" name="beta-1.2.4" level="project" />
-    <orderEntry type="library" exported="" name="firebase-analytics-impl-10.2.0" level="project" />
-    <orderEntry type="library" exported="" name="firebase-common-10.2.0" level="project" />
-    <orderEntry type="library" exported="" name="play-services-iid-10.2.0" level="project" />
-    <orderEntry type="library" exported="" name="play-services-basement-10.2.0" level="project" />
-    <orderEntry type="library" exported="" name="support-v4-25.2.0" level="project" />
-    <orderEntry type="library" exported="" name="support-compat-25.2.0" level="project" />
-    <orderEntry type="library" exported="" name="answers-1.3.12" level="project" />
-    <orderEntry type="library" exported="" name="support-media-compat-25.2.0" level="project" />
-    <orderEntry type="library" exported="" name="appcompat-v7-25.2.0" level="project" />
-    <orderEntry type="library" exported="" name="ShortcutBadger-1.1.10" level="project" />
-    <orderEntry type="library" exported="" name="support-annotations-25.2.0" level="project" />
-    <orderEntry type="library" exported="" name="support-vector-drawable-25.2.0" level="project" />
-    <orderEntry type="library" exported="" name="animated-vector-drawable-25.2.0" level="project" />
-    <orderEntry type="library" exported="" name="play-services-gcm-10.2.0" level="project" />
-  </component>
-</module>
\ No newline at end of file
diff --git a/android/build.gradle b/android/build.gradle
deleted file mode 100755
index ee7b03392da750488b14b11f2536522bebf51766..0000000000000000000000000000000000000000
--- a/android/build.gradle
+++ /dev/null
@@ -1,91 +0,0 @@
-buildscript {
-    repositories {
-        jcenter()
-        maven { url 'https://maven.fabric.io/public' }
-    }
-
-    dependencies {
-        classpath 'com.android.tools.build:gradle:2.2.3'
-        classpath 'com.google.gms:google-services:3.0.0'
-        classpath 'io.fabric.tools:gradle:1.+'
-    }
-}
-
-allprojects {
-    repositories {
-        jcenter()
-        mavenCentral()
-        maven { url 'https://maven.fabric.io/public' }
-    }
-}
-
-apply plugin: 'com.android.application'
-apply plugin: 'io.fabric'
-
-crashlytics {
-    enableNdk true
-    androidNdkOut 'android-build/'
-    androidNdkLibsOut 'android-build/libs/armeabi-v7a/'
-}
-
-dependencies {
-    compile fileTree(dir: 'libs', include: ['*.jar'])
-    compile 'com.android.support:appcompat-v7:25.2.0'
-    compile 'com.google.android.gms:play-services-gcm:10.2.0'
-    compile 'com.google.firebase:firebase-core:10.0.1'
-    compile 'com.google.firebase:firebase-crash:10.0.1'
-    compile "me.leolin:ShortcutBadger:1.1.10@aar"
-    compile('com.crashlytics.sdk.android:crashlytics:2.6.7@aar') {
-        transitive = true
-    }
-    compile('com.crashlytics.sdk.android:crashlytics-ndk:1.1.6@aar') {
-        transitive = true
-    }
-}
-
-
-
-android {
-    /*******************************************************
-     * The following variables:
-     * - androidBuildToolsVersion,
-     * - androidCompileSdkVersion
-     * - qt5AndroidDir - holds the path to qt android files
-     *                   needed to build any Qt application
-     *                   on Android.
-     *
-     * are defined in gradle.properties file. This file is
-     * updated by QtCreator and androiddeployqt tools.
-     * Changing them manually might break the compilation!
-     *******************************************************/
-
-    compileSdkVersion androidCompileSdkVersion.toInteger()
-
-    buildToolsVersion androidBuildToolsVersion
-
-    defaultConfig{
-        ndk{
-            abiFilters "armeabi-v7a"
-        }
-    }
-
-    sourceSets {
-        main {
-            manifest.srcFile 'AndroidManifest.xml'
-            java.srcDirs = [qt5AndroidDir + '/src', 'src', 'java']
-            aidl.srcDirs = [qt5AndroidDir + '/src', 'src', 'aidl']
-            res.srcDirs = [qt5AndroidDir + '/res', 'res']
-            resources.srcDirs = ['src']
-            renderscript.srcDirs = ['src']
-            assets.srcDirs = ['assets']
-            jniLibs.srcDirs = ['libs']
-        }
-    }
-
-    lintOptions {
-        abortOnError false
-    }
-}
-
-
-apply plugin: 'com.google.gms.google-services'
diff --git a/android/captures/at.gv.ucom_2017.03.24_17.51-1.li b/android/captures/at.gv.ucom_2017.03.24_17.51-1.li
deleted file mode 100644
index 276dae5586821902c04db6ff68058d488503a07c..0000000000000000000000000000000000000000
Binary files a/android/captures/at.gv.ucom_2017.03.24_17.51-1.li and /dev/null differ
diff --git a/android/captures/at.gv.ucom_2017.03.24_17.51.li b/android/captures/at.gv.ucom_2017.03.24_17.51.li
deleted file mode 100644
index 276dae5586821902c04db6ff68058d488503a07c..0000000000000000000000000000000000000000
Binary files a/android/captures/at.gv.ucom_2017.03.24_17.51.li and /dev/null differ
diff --git a/android/captures/at.gv.ucom_2017.03.24_18.30-1.trace b/android/captures/at.gv.ucom_2017.03.24_18.30-1.trace
deleted file mode 100644
index 2fbbf66320db9d87184e7156fca3479231a97046..0000000000000000000000000000000000000000
--- a/android/captures/at.gv.ucom_2017.03.24_18.30-1.trace
+++ /dev/null
@@ -1,749 +0,0 @@
-*version
-3
-data-file-overflow=false
-clock=dual
-elapsed-time-usec=9119635
-num-method-calls=12613
-clock-call-overhead-nsec=2785
-vm=art
-pid=3809
-*threads
-3809	main
-3814	Signal Catcher
-3815	JDWP
-3817	FinalizerDaemon
-3818	FinalizerWatchdogDaemon
-3816	ReferenceQueueDaemon
-3819	HeapTaskDaemon
-3820	Binder_1
-3821	Binder_2
-3858	Queue
-3860	Queue
-3861	Queue
-3859	Queue
-3857	Queue
-3881	Answers Events Handler1
-3886	Crashlytics Exception Handler1
-3888	pool-3-thread-1
-3890	RenderThread
-3900	QtThread
-3904	QtThread
-3915	OkHttp ConnectionPool
-3903	QtThread
-3956	QtThread
-4090	AsyncTask #1
-*methods
-0x7c	java.lang.ref.Reference	get	()Ljava/lang/Object;	Reference.java
-0x6b0	java.lang.Throwable	fillInStackTrace	()Ljava/lang/Throwable;	Throwable.java
-0x6cc	java.lang.Throwable	getCause	()Ljava/lang/Throwable;	Throwable.java
-0x768	java.lang.Throwable	getLocalizedMessage	()Ljava/lang/String;	Throwable.java
-0x76c	java.lang.Throwable	getMessage	()Ljava/lang/String;	Throwable.java
-0x75c	java.lang.Throwable	printStackTrace	(Ljava/io/PrintWriter;)V	Throwable.java
-0x764	java.lang.Throwable	toString	()Ljava/lang/String;	Throwable.java
-0x6a4	java.lang.Exception	<init>	(Ljava/lang/String;)V	Exception.java
-0x6bc	java.lang.Exception	<init>	(Ljava/lang/String;Ljava/lang/Throwable;)V	Exception.java
-0x648	java.util.AbstractCollection	<init>	()V	AbstractCollection.java
-0x644	java.util.AbstractList	<init>	()V	AbstractList.java
-0x4e4	dalvik.system.BlockGuard$1	onReadFromDisk	()V	BlockGuard.java
-0x3b8	java.lang.ThreadLocal	get	()Ljava/lang/Object;	ThreadLocal.java
-0x3bc	java.lang.ThreadLocal	values	(Ljava/lang/Thread;)Ljava/lang/ThreadLocal$Values;	ThreadLocal.java
-0x4e0	dalvik.system.BlockGuard	getThreadPolicy	()Ldalvik/system/BlockGuard$Policy;	BlockGuard.java
-0x6d4	java.io.Writer	<init>	()V	Writer.java
-0x6ec	java.io.Writer	<init>	(Ljava/lang/Object;)V	Writer.java
-0x778	java.io.Writer	append	(Ljava/lang/CharSequence;)Ljava/lang/Appendable;	Writer.java
-0x6e8	java.io.PrintWriter	<init>	(Ljava/io/Writer;Z)V	PrintWriter.java
-0x780	java.io.PrintWriter	append	(Ljava/lang/CharSequence;)Ljava/io/PrintWriter;	PrintWriter.java
-0x77c	java.io.PrintWriter	append	(Ljava/lang/CharSequence;)Ljava/io/Writer;	PrintWriter.java
-0x6d0	java.io.StringWriter	<init>	()V	StringWriter.java
-0x7d8	java.io.StringWriter	flush	()V	StringWriter.java
-0x7fc	java.io.StringWriter	toString	()Ljava/lang/String;	StringWriter.java
-0x7d0	java.io.StringWriter	write	([CII)V	StringWriter.java
-0x660	java.lang.AbstractStringBuilder	<init>	()V	AbstractStringBuilder.java
-0x684	java.lang.AbstractStringBuilder	<init>	(I)V	AbstractStringBuilder.java
-0x670	java.lang.AbstractStringBuilder	enlargeBuffer	(I)V	AbstractStringBuilder.java
-0x690	java.lang.AbstractStringBuilder	append0	(C)V	AbstractStringBuilder.java
-0x668	java.lang.AbstractStringBuilder	append0	(Ljava/lang/String;)V	AbstractStringBuilder.java
-0x7c8	java.lang.AbstractStringBuilder	append0	([CII)V	AbstractStringBuilder.java
-0x698	java.lang.AbstractStringBuilder	toString	()Ljava/lang/String;	AbstractStringBuilder.java
-0x280	java.lang.Boolean	booleanValue	()Z	Boolean.java
-0x558	java.lang.BootClassLoader	getInstance	()Ljava/lang/BootClassLoader;	ClassLoader.java
-0x20	java.lang.Number	<init>	()V	Number.java
-0x1c	java.lang.Integer	<init>	(I)V	Integer.java
-0x7f0	java.lang.Integer	toString	(I)Ljava/lang/String;	Integer.java
-0x18	java.lang.Integer	valueOf	(I)Ljava/lang/Integer;	Integer.java
-0x38	java.lang.Integer	equals	(Ljava/lang/Object;)Z	Integer.java
-0x30	java.lang.Integer	hashCode	()I	Integer.java
-0x60c	java.lang.Integer	intValue	()I	Integer.java
-0x7c0	java.lang.IntegralToString	appendInt	(Ljava/lang/AbstractStringBuilder;I)V	IntegralToString.java
-0x7c4	java.lang.IntegralToString	convertInt	(Ljava/lang/AbstractStringBuilder;I)Ljava/lang/String;	IntegralToString.java
-0x7f4	java.lang.IntegralToString	intToString	(I)Ljava/lang/String;	IntegralToString.java
-0x7ec	java.lang.StackTraceElement	equals	(Ljava/lang/Object;)Z	StackTraceElement.java
-0x7ac	java.lang.StackTraceElement	getClassName	()Ljava/lang/String;	StackTraceElement.java
-0x7b4	java.lang.StackTraceElement	getFileName	()Ljava/lang/String;	StackTraceElement.java
-0x7b8	java.lang.StackTraceElement	getLineNumber	()I	StackTraceElement.java
-0x184	java.lang.StackTraceElement	getMethodName	()Ljava/lang/String;	StackTraceElement.java
-0x7b0	java.lang.StackTraceElement	isNativeMethod	()Z	StackTraceElement.java
-0x7a8	java.lang.StackTraceElement	toString	()Ljava/lang/String;	StackTraceElement.java
-0x6d8	java.lang.StringBuffer	<init>	(I)V	StringBuffer.java
-0x7d4	java.lang.StringBuffer	append	([CII)Ljava/lang/StringBuffer;	StringBuffer.java
-0x800	java.lang.StringBuffer	toString	()Ljava/lang/String;	StringBuffer.java
-0x65c	java.lang.StringBuilder	<init>	()V	StringBuilder.java
-0x680	java.lang.StringBuilder	<init>	(I)V	StringBuilder.java
-0x68c	java.lang.StringBuilder	append	(C)Ljava/lang/StringBuilder;	StringBuilder.java
-0x7bc	java.lang.StringBuilder	append	(I)Ljava/lang/StringBuilder;	StringBuilder.java
-0x664	java.lang.StringBuilder	append	(Ljava/lang/String;)Ljava/lang/StringBuilder;	StringBuilder.java
-0x694	java.lang.StringBuilder	toString	()Ljava/lang/String;	StringBuilder.java
-0x3c4	java.lang.ThreadLocal$Values	-get0	(Ljava/lang/ThreadLocal$Values;)I	ThreadLocal.java
-0x3c0	java.lang.ThreadLocal$Values	-get1	(Ljava/lang/ThreadLocal$Values;)[Ljava/lang/Object;	ThreadLocal.java
-0x478	java.lang.ref.ReferenceQueue	poll	()Ljava/lang/ref/Reference;	ReferenceQueue.java
-0x6c	java.nio.Buffer	<init>	(IIJ)V	Buffer.java
-0x68	java.nio.ByteBuffer	<init>	(IJ)V	ByteBuffer.java
-0x58	java.nio.ByteBuffer	wrap	([BII)Ljava/nio/ByteBuffer;	ByteBuffer.java
-0x70	java.nio.ByteBuffer	order	(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;	ByteBuffer.java
-0x64	java.nio.ByteArrayBuffer	<init>	(I[BIZ)V	ByteArrayBuffer.java
-0x60	java.nio.ByteArrayBuffer	<init>	([B)V	ByteArrayBuffer.java
-0x74	java.nio.ByteArrayBuffer	get	()B	ByteArrayBuffer.java
-0x72c	java.nio.charset.CharsetEncoder	<init>	(Ljava/nio/charset/Charset;FF[BZ)V	CharsetEncoder.java
-0x738	java.nio.charset.CharsetEncoder	malformedInputAction	()Ljava/nio/charset/CodingErrorAction;	CharsetEncoder.java
-0x74c	java.nio.charset.CharsetEncoder	onMalformedInput	(Ljava/nio/charset/CodingErrorAction;)Ljava/nio/charset/CharsetEncoder;	CharsetEncoder.java
-0x754	java.nio.charset.CharsetEncoder	onUnmappableCharacter	(Ljava/nio/charset/CodingErrorAction;)Ljava/nio/charset/CharsetEncoder;	CharsetEncoder.java
-0x744	java.nio.charset.CharsetEncoder	replacement	()[B	CharsetEncoder.java
-0x740	java.nio.charset.CharsetEncoder	unmappableCharacterAction	()Ljava/nio/charset/CodingErrorAction;	CharsetEncoder.java
-0x728	java.nio.charset.CharsetEncoderICU	<init>	(Ljava/nio/charset/Charset;FF[BJ)V	CharsetEncoderICU.java
-0x710	java.nio.charset.CharsetEncoderICU	makeReplacement	(Ljava/lang/String;J)[B	CharsetEncoderICU.java
-0x700	java.nio.charset.CharsetEncoderICU	newInstance	(Ljava/nio/charset/Charset;Ljava/lang/String;)Ljava/nio/charset/CharsetEncoderICU;	CharsetEncoderICU.java
-0x730	java.nio.charset.CharsetEncoderICU	updateCallback	()V	CharsetEncoderICU.java
-0x750	java.nio.charset.CharsetEncoderICU	implOnMalformedInput	(Ljava/nio/charset/CodingErrorAction;)V	CharsetEncoderICU.java
-0x758	java.nio.charset.CharsetEncoderICU	implOnUnmappableCharacter	(Ljava/nio/charset/CodingErrorAction;)V	CharsetEncoderICU.java
-0x420	java.util.Random	next	(I)I	Random.java
-0x41c	java.util.Random	nextInt	(I)I	Random.java
-0x640	java.util.ArrayList	<init>	(I)V	ArrayList.java
-0x3e0	java.util.ArrayList	size	()I	ArrayList.java
-0x5c	java.util.Arrays	checkOffsetAndCount	(III)V	Arrays.java
-0x4b4	java.util.Arrays	fill	([Ljava/lang/Object;Ljava/lang/Object;)V	Arrays.java
-0x7e4	java.util.Collections$1	hasNext	()Z	Collections.java
-0x7dc	java.util.Collections$EmptyList	iterator	()Ljava/util/Iterator;	Collections.java
-0x7e0	java.util.Collections	-get0	()Ljava/util/Iterator;	Collections.java
-0x6ac	java.util.Collections	emptyList	()Ljava/util/List;	Collections.java
-0x34	java.util.Collections	secondaryHash	(I)I	Collections.java
-0x2c	java.util.Collections	secondaryHash	(Ljava/lang/Object;)I	Collections.java
-0x490	java.util.HashMap$HashIterator	<init>	(Ljava/util/HashMap;)V	HashMap.java
-0x494	java.util.HashMap$HashIterator	hasNext	()Z	HashMap.java
-0x4a0	java.util.HashMap$HashIterator	nextEntry	()Ljava/util/HashMap$HashMapEntry;	HashMap.java
-0x48c	java.util.HashMap$EntryIterator	<init>	(Ljava/util/HashMap;)V	HashMap.java
-0x488	java.util.HashMap$EntryIterator	<init>	(Ljava/util/HashMap;Ljava/util/HashMap$EntryIterator;)V	HashMap.java
-0x498	java.util.HashMap$EntryIterator	next	()Ljava/lang/Object;	HashMap.java
-0x49c	java.util.HashMap$EntryIterator	next	()Ljava/util/Map$Entry;	HashMap.java
-0x480	java.util.HashMap$EntrySet	iterator	()Ljava/util/Iterator;	HashMap.java
-0x438	java.util.HashMap$HashMapEntry	<init>	(Ljava/lang/Object;Ljava/lang/Object;ILjava/util/HashMap$HashMapEntry;)V	HashMap.java
-0x4a4	java.util.HashMap$HashMapEntry	getKey	()Ljava/lang/Object;	HashMap.java
-0x4a8	java.util.HashMap$HashMapEntry	getValue	()Ljava/lang/Object;	HashMap.java
-0x434	java.util.HashMap	addNewEntry	(Ljava/lang/Object;Ljava/lang/Object;II)V	HashMap.java
-0x4b0	java.util.HashMap	clear	()V	HashMap.java
-0x188	java.util.HashMap	containsKey	(Ljava/lang/Object;)Z	HashMap.java
-0x47c	java.util.HashMap	entrySet	()Ljava/util/Set;	HashMap.java
-0x28	java.util.HashMap	get	(Ljava/lang/Object;)Ljava/lang/Object;	HashMap.java
-0x484	java.util.HashMap	newEntryIterator	()Ljava/util/Iterator;	HashMap.java
-0x430	java.util.HashMap	put	(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;	HashMap.java
-0x474	java.util.WeakHashMap	poll	()V	WeakHashMap.java
-0x470	java.util.WeakHashMap	size	()I	WeakHashMap.java
-0x458	java.util.concurrent.locks.AbstractOwnableSynchronizer	<init>	()V	AbstractOwnableSynchronizer.java
-0x454	java.util.concurrent.locks.AbstractQueuedSynchronizer	<init>	()V	AbstractQueuedSynchronizer.java
-0x504	java.util.concurrent.locks.AbstractQueuedSynchronizer	doReleaseShared	()V	AbstractQueuedSynchronizer.java
-0x50c	java.util.concurrent.locks.AbstractQueuedSynchronizer	acquireSharedInterruptibly	(I)V	AbstractQueuedSynchronizer.java
-0x500	java.util.concurrent.locks.AbstractQueuedSynchronizer	compareAndSetState	(II)Z	AbstractQueuedSynchronizer.java
-0x4fc	java.util.concurrent.locks.AbstractQueuedSynchronizer	getState	()I	AbstractQueuedSynchronizer.java
-0x4f4	java.util.concurrent.locks.AbstractQueuedSynchronizer	releaseShared	(I)Z	AbstractQueuedSynchronizer.java
-0x45c	java.util.concurrent.locks.AbstractQueuedSynchronizer	setState	(I)V	AbstractQueuedSynchronizer.java
-0x450	java.util.concurrent.CountDownLatch$Sync	<init>	(I)V	CountDownLatch.java
-0x514	java.util.concurrent.CountDownLatch$Sync	tryAcquireShared	(I)I	CountDownLatch.java
-0x4f8	java.util.concurrent.CountDownLatch$Sync	tryReleaseShared	(I)Z	CountDownLatch.java
-0x44c	java.util.concurrent.CountDownLatch	<init>	(I)V	CountDownLatch.java
-0x508	java.util.concurrent.CountDownLatch	await	()V	CountDownLatch.java
-0x4f0	java.util.concurrent.CountDownLatch	countDown	()V	CountDownLatch.java
-0x94	java.util.concurrent.atomic.AtomicInteger	compareAndSet	(II)Z	AtomicInteger.java
-0x90	java.util.concurrent.atomic.AtomicInteger	get	()I	AtomicInteger.java
-0x8c	java.util.concurrent.atomic.AtomicInteger	getAndIncrement	()I	AtomicInteger.java
-0x4dc	libcore.io.BlockGuardOs	access	(Ljava/lang/String;I)Z	BlockGuardOs.java
-0x3c	org.apache.harmony.dalvik.ddmc.Chunk	<init>	(I[BII)V	Chunk.java
-0x54	org.apache.harmony.dalvik.ddmc.ChunkHandler	wrapChunk	(Lorg/apache/harmony/dalvik/ddmc/Chunk;)Ljava/nio/ByteBuffer;	ChunkHandler.java
-0x58c	android.content.ContextWrapper	getPackageManager	()Landroid/content/pm/PackageManager;	ContextWrapper.java
-0x168	android.app.Activity	dispatchTouchEvent	(Landroid/view/MotionEvent;)Z	Activity.java
-0x198	android.app.Activity	getWindow	()Landroid/view/Window;	Activity.java
-0x194	android.app.Activity	onUserInteraction	()V	Activity.java
-0x5d8	android.content.ComponentName	writeToParcel	(Landroid/content/ComponentName;Landroid/os/Parcel;)V	ComponentName.java
-0x584	android.content.ComponentName	getClassName	()Ljava/lang/String;	ComponentName.java
-0x578	android.content.ComponentName	getPackageName	()Ljava/lang/String;	ComponentName.java
-0x52c	android.content.Intent	<init>	(Ljava/lang/String;)V	Intent.java
-0x538	android.content.Intent	putExtra	(Ljava/lang/String;I)Landroid/content/Intent;	Intent.java
-0x57c	android.content.Intent	putExtra	(Ljava/lang/String;Ljava/lang/String;)Landroid/content/Intent;	Intent.java
-0x5ac	android.content.Intent	resolveType	(Landroid/content/ContentResolver;)Ljava/lang/String;	Intent.java
-0x5a8	android.content.Intent	resolveTypeIfNeeded	(Landroid/content/ContentResolver;)Ljava/lang/String;	Intent.java
-0x530	android.content.Intent	setAction	(Ljava/lang/String;)Landroid/content/Intent;	Intent.java
-0x688	android.content.Intent	toShortString	(Ljava/lang/StringBuilder;ZZZZ)V	Intent.java
-0x67c	android.content.Intent	toString	()Ljava/lang/String;	Intent.java
-0x5c8	android.content.Intent	writeToParcel	(Landroid/os/Parcel;I)V	Intent.java
-0x5d4	android.net.Uri	writeToParcel	(Landroid/os/Parcel;Landroid/net/Uri;)V	Uri.java
-0x3ac	android.os.Handler	<init>	()V	Handler.java
-0x3b0	android.os.Handler	<init>	(Landroid/os/Handler$Callback;Z)V	Handler.java
-0x2ac	android.os.Handler	<init>	(Landroid/os/Looper;)V	Handler.java
-0x2b0	android.os.Handler	<init>	(Landroid/os/Looper;Landroid/os/Handler$Callback;Z)V	Handler.java
-0x2cc	android.os.Handler	enqueueMessage	(Landroid/os/MessageQueue;Landroid/os/Message;J)Z	Handler.java
-0x2b8	android.os.Handler	getPostMessage	(Ljava/lang/Runnable;)Landroid/os/Message;	Handler.java
-0x388	android.os.Handler	handleCallback	(Landroid/os/Message;)V	Handler.java
-0x384	android.os.Handler	dispatchMessage	(Landroid/os/Message;)V	Handler.java
-0x304	android.os.Handler	hasMessages	(I)Z	Handler.java
-0x2b4	android.os.Handler	post	(Ljava/lang/Runnable;)Z	Handler.java
-0x320	android.os.Handler	removeMessages	(I)V	Handler.java
-0x330	android.os.Handler	sendEmptyMessageAtTime	(IJ)Z	Handler.java
-0x30c	android.os.Handler	sendEmptyMessageDelayed	(IJ)Z	Handler.java
-0x2c8	android.os.Handler	sendMessageAtTime	(Landroid/os/Message;J)Z	Handler.java
-0x2c0	android.os.Handler	sendMessageDelayed	(Landroid/os/Message;J)Z	Handler.java
-0x2a8	android.os.Looper	getMainLooper	()Landroid/os/Looper;	Looper.java
-0x3b4	android.os.Looper	myLooper	()Landroid/os/Looper;	Looper.java
-0x2bc	android.os.Message	obtain	()Landroid/os/Message;	Message.java
-0x2d4	android.os.Message	isInUse	()Z	Message.java
-0x2d8	android.os.Message	markInUse	()V	Message.java
-0x39c	android.os.Message	recycleUnchecked	()V	Message.java
-0x2d0	android.os.MessageQueue	enqueueMessage	(Landroid/os/Message;J)Z	MessageQueue.java
-0x308	android.os.MessageQueue	hasMessages	(Landroid/os/Handler;ILjava/lang/Object;)Z	MessageQueue.java
-0x380	android.os.MessageQueue	next	()Landroid/os/Message;	MessageQueue.java
-0x324	android.os.MessageQueue	removeMessages	(Landroid/os/Handler;ILjava/lang/Object;)V	MessageQueue.java
-0x63c	android.os.Parcel	createTypedArrayList	(Landroid/os/Parcelable$Creator;)Ljava/util/ArrayList;	Parcel.java
-0x5f4	android.os.Parcel	dataPosition	()I	Parcel.java
-0x5e4	android.os.Parcel	pushAllowFds	(Z)Z	Parcel.java
-0x62c	android.os.Parcel	readException	()V	Parcel.java
-0x630	android.os.Parcel	readExceptionCode	()I	Parcel.java
-0x634	android.os.Parcel	readInt	()I	Parcel.java
-0x64c	android.os.Parcel	recycle	()V	Parcel.java
-0x618	android.os.Parcel	restoreAllowFds	(Z)V	Parcel.java
-0x610	android.os.Parcel	setDataPosition	(I)V	Parcel.java
-0x5fc	android.os.Parcel	writeArrayMapInternal	(Landroid/util/ArrayMap;)V	Parcel.java
-0x5dc	android.os.Parcel	writeBundle	(Landroid/os/Bundle;)V	Parcel.java
-0x5c0	android.os.Parcel	writeInt	(I)V	Parcel.java
-0x5b8	android.os.Parcel	writeInterfaceToken	(Ljava/lang/String;)V	Parcel.java
-0x5cc	android.os.Parcel	writeString	(Ljava/lang/String;)V	Parcel.java
-0x608	android.os.Parcel	writeValue	(Ljava/lang/Object;)V	Parcel.java
-0x59c	android.os.UserHandle	getIdentifier	()I	UserHandle.java
-0x548	android.util.ArrayMap	<init>	()V	ArrayMap.java
-0x56c	android.util.ArrayMap	allocArrays	(I)V	ArrayMap.java
-0x574	android.util.ArrayMap	freeArrays	([I[Ljava/lang/Object;I)V	ArrayMap.java
-0x568	android.util.ArrayMap	indexOf	(Ljava/lang/Object;I)I	ArrayMap.java
-0x600	android.util.ArrayMap	keyAt	(I)Ljava/lang/Object;	ArrayMap.java
-0x564	android.util.ArrayMap	put	(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;	ArrayMap.java
-0x5f0	android.util.ArrayMap	size	()I	ArrayMap.java
-0x604	android.util.ArrayMap	valueAt	(I)Ljava/lang/Object;	ArrayMap.java
-0x400	android.util.Pools$SimplePool	isInPool	(Ljava/lang/Object;)Z	Pools.java
-0x2f8	android.util.Pools$SimplePool	acquire	()Ljava/lang/Object;	Pools.java
-0x3fc	android.util.Pools$SimplePool	release	(Ljava/lang/Object;)Z	Pools.java
-0x2f4	android.util.Pools$SynchronizedPool	acquire	()Ljava/lang/Object;	Pools.java
-0x3f8	android.util.Pools$SynchronizedPool	release	(Ljava/lang/Object;)Z	Pools.java
-0x364	android.util.SparseIntArray	indexOfKey	(I)I	SparseIntArray.java
-0xa4	android.util.SparseIntArray	put	(II)V	SparseIntArray.java
-0x36c	android.util.SparseIntArray	removeAt	(I)V	SparseIntArray.java
-0x368	android.util.SparseIntArray	valueAt	(I)I	SparseIntArray.java
-0xe0	android.view.FrameInfo	updateInputEventTime	(JJ)V	FrameInfo.java
-0x334	android.view.GestureDetector$SimpleOnGestureListener	onDown	(Landroid/view/MotionEvent;)Z	GestureDetector.java
-0x418	android.view.GestureDetector$SimpleOnGestureListener	onSingleTapConfirmed	(Landroid/view/MotionEvent;)Z	GestureDetector.java
-0x3e8	android.view.GestureDetector$SimpleOnGestureListener	onSingleTapUp	(Landroid/view/MotionEvent;)Z	GestureDetector.java
-0x414	android.view.GestureDetector	-get0	(Landroid/view/GestureDetector;)Landroid/view/MotionEvent;	GestureDetector.java
-0x40c	android.view.GestureDetector	-get1	(Landroid/view/GestureDetector;)Landroid/view/GestureDetector$OnDoubleTapListener;	GestureDetector.java
-0x410	android.view.GestureDetector	-get3	(Landroid/view/GestureDetector;)Z	GestureDetector.java
-0x2ec	android.view.GestureDetector	onTouchEvent	(Landroid/view/MotionEvent;)Z	GestureDetector.java
-0xa0	android.view.InputEvent	getSequenceNumber	()I	InputEvent.java
-0xf4	android.view.InputEvent	isFromSource	(I)Z	InputEvent.java
-0x88	android.view.InputEvent	prepareForReuse	()V	InputEvent.java
-0x314	android.view.InputEvent	recycle	()V	InputEvent.java
-0x374	android.view.InputEvent	recycleIfNeededAfterDispatch	()V	InputEvent.java
-0x360	android.view.InputEventReceiver	finishInputEvent	(Landroid/view/InputEvent;Z)V	InputEventReceiver.java
-0x110	android.view.MotionEvent	getAction	()I	MotionEvent.java
-0x1d4	android.view.MotionEvent	getActionIndex	()I	MotionEvent.java
-0x264	android.view.MotionEvent	getActionMasked	()I	MotionEvent.java
-0x328	android.view.MotionEvent	getDownTime	()J	MotionEvent.java
-0xd0	android.view.MotionEvent	getEventTimeNano	()J	MotionEvent.java
-0x1ac	android.view.MotionEvent	getFlags	()I	MotionEvent.java
-0xd8	android.view.MotionEvent	getHistorySize	()I	MotionEvent.java
-0x288	android.view.MotionEvent	getPointerCount	()I	MotionEvent.java
-0x1d8	android.view.MotionEvent	getPointerId	(I)I	MotionEvent.java
-0x248	android.view.MotionEvent	getPointerIdBits	()I	MotionEvent.java
-0x294	android.view.MotionEvent	getPressure	(I)F	MotionEvent.java
-0x124	android.view.MotionEvent	getRawX	()F	MotionEvent.java
-0x12c	android.view.MotionEvent	getRawY	()F	MotionEvent.java
-0x290	android.view.MotionEvent	getSize	(I)F	MotionEvent.java
-0xf8	android.view.MotionEvent	getSource	()I	MotionEvent.java
-0x278	android.view.MotionEvent	getToolType	(I)I	MotionEvent.java
-0x338	android.view.MotionEvent	getX	()F	MotionEvent.java
-0x1e4	android.view.MotionEvent	getX	(I)F	MotionEvent.java
-0x33c	android.view.MotionEvent	getY	()F	MotionEvent.java
-0x1ec	android.view.MotionEvent	getY	(I)F	MotionEvent.java
-0x1a8	android.view.MotionEvent	isTargetAccessibilityFocus	()Z	MotionEvent.java
-0x11c	android.view.MotionEvent	isTouchEvent	()Z	MotionEvent.java
-0x250	android.view.MotionEvent	offsetLocation	(FF)V	MotionEvent.java
-0x310	android.view.MotionEvent	recycle	()V	MotionEvent.java
-0x1cc	android.view.MotionEvent	setAction	(I)V	MotionEvent.java
-0x238	android.view.MotionEvent	setTargetAccessibilityFocus	(Z)V	MotionEvent.java
-0x200	android.view.RenderNode	getElevation	()F	RenderNode.java
-0x20c	android.view.RenderNode	getTranslationZ	()F	RenderNode.java
-0x22c	android.view.RenderNode	hasIdentityMatrix	()Z	RenderNode.java
-0x154	android.view.View	dispatchPointerEvent	(Landroid/view/MotionEvent;)Z	View.java
-0x260	android.view.View	dispatchTouchEvent	(Landroid/view/MotionEvent;)Z	View.java
-0x258	android.view.View	getAnimation	()Landroid/view/animation/Animation;	View.java
-0x1fc	android.view.View	getElevation	()F	View.java
-0x270	android.view.View	getId	()I	View.java
-0x208	android.view.View	getTranslationZ	()F	View.java
-0x3a8	android.view.View	getWindowToken	()Landroid/os/IBinder;	View.java
-0x1f8	android.view.View	getZ	()F	View.java
-0x228	android.view.View	hasIdentityMatrix	()Z	View.java
-0x1b4	android.view.View	onFilterTouchEventForSecurity	(Landroid/view/MotionEvent;)Z	View.java
-0x234	android.view.View	pointInView	(FF)Z	View.java
-0x268	android.view.View	stopNestedScroll	()V	View.java
-0x2fc	android.view.VelocityTracker	addMovement	(Landroid/view/MotionEvent;)V	VelocityTracker.java
-0x3f0	android.view.VelocityTracker	clear	()V	VelocityTracker.java
-0x3ec	android.view.VelocityTracker	recycle	()V	VelocityTracker.java
-0x344	android.view.ViewGroup$TouchTarget	obtain	(Landroid/view/View;I)Landroid/view/ViewGroup$TouchTarget;	ViewGroup.java
-0x404	android.view.ViewGroup$TouchTarget	recycle	()V	ViewGroup.java
-0x340	android.view.ViewGroup	addTouchTarget	(Landroid/view/View;I)Landroid/view/ViewGroup$TouchTarget;	ViewGroup.java
-0x218	android.view.ViewGroup	canViewReceivePointerEvents	(Landroid/view/View;)Z	ViewGroup.java
-0x1b8	android.view.ViewGroup	cancelAndClearTouchTargets	(Landroid/view/MotionEvent;)V	ViewGroup.java
-0x1c0	android.view.ViewGroup	clearTouchTargets	()V	ViewGroup.java
-0x244	android.view.ViewGroup	dispatchTransformedTouchEvent	(Landroid/view/MotionEvent;ZLandroid/view/View;I)Z	ViewGroup.java
-0x220	android.view.ViewGroup	getTempPoint	()[F	ViewGroup.java
-0x240	android.view.ViewGroup	getTouchTarget	(Landroid/view/View;)Landroid/view/ViewGroup$TouchTarget;	ViewGroup.java
-0x1f4	android.view.ViewGroup	hasChildWithZ	()Z	ViewGroup.java
-0x1e0	android.view.ViewGroup	removePointersFromTouchTargets	(I)V	ViewGroup.java
-0x1c4	android.view.ViewGroup	resetCancelNextUpFlag	(Landroid/view/View;)Z	ViewGroup.java
-0x1bc	android.view.ViewGroup	resetTouchState	()V	ViewGroup.java
-0x1f0	android.view.ViewGroup	buildOrderedChildList	()Ljava/util/ArrayList;	ViewGroup.java
-0x1a4	android.view.ViewGroup	dispatchTouchEvent	(Landroid/view/MotionEvent;)Z	ViewGroup.java
-0x214	android.view.ViewGroup	isChildrenDrawingOrderEnabled	()Z	ViewGroup.java
-0x21c	android.view.ViewGroup	isTransformedTouchPointInView	(FFLandroid/view/View;Landroid/graphics/PointF;)Z	ViewGroup.java
-0x254	android.view.ViewGroup	onInterceptTouchEvent	(Landroid/view/MotionEvent;)Z	ViewGroup.java
-0x224	android.view.ViewGroup	transformPointToViewLocal	([FLandroid/view/View;)V	ViewGroup.java
-0x130	android.view.ViewRootImpl$InputStage	apply	(Landroid/view/ViewRootImpl$QueuedInputEvent;I)V	ViewRootImpl.java
-0x100	android.view.ViewRootImpl$InputStage	deliver	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0x348	android.view.ViewRootImpl$InputStage	finish	(Landroid/view/ViewRootImpl$QueuedInputEvent;Z)V	ViewRootImpl.java
-0x134	android.view.ViewRootImpl$InputStage	forward	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0x138	android.view.ViewRootImpl$InputStage	onDeliverToNext	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0x104	android.view.ViewRootImpl$InputStage	shouldDropInputEvent	(Landroid/view/ViewRootImpl$QueuedInputEvent;)Z	ViewRootImpl.java
-0x140	android.view.ViewRootImpl$AsyncInputStage	apply	(Landroid/view/ViewRootImpl$QueuedInputEvent;I)V	ViewRootImpl.java
-0x144	android.view.ViewRootImpl$AsyncInputStage	forward	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0x10c	android.view.ViewRootImpl$EarlyPostImeInputStage	processPointerEvent	(Landroid/view/ViewRootImpl$QueuedInputEvent;)I	ViewRootImpl.java
-0x108	android.view.ViewRootImpl$EarlyPostImeInputStage	onProcess	(Landroid/view/ViewRootImpl$QueuedInputEvent;)I	ViewRootImpl.java
-0x13c	android.view.ViewRootImpl$NativePostImeInputStage	onProcess	(Landroid/view/ViewRootImpl$QueuedInputEvent;)I	ViewRootImpl.java
-0xec	android.view.ViewRootImpl$QueuedInputEvent	shouldSendToSynthesizer	()Z	ViewRootImpl.java
-0xf0	android.view.ViewRootImpl$QueuedInputEvent	shouldSkipIme	()Z	ViewRootImpl.java
-0x350	android.view.ViewRootImpl$SyntheticInputStage	onDeliverToNext	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0x150	android.view.ViewRootImpl$ViewPostImeInputStage	processPointerEvent	(Landroid/view/ViewRootImpl$QueuedInputEvent;)I	ViewRootImpl.java
-0x34c	android.view.ViewRootImpl$ViewPostImeInputStage	onDeliverToNext	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0x148	android.view.ViewRootImpl$ViewPostImeInputStage	onProcess	(Landroid/view/ViewRootImpl$QueuedInputEvent;)I	ViewRootImpl.java
-0xb4	android.view.ViewRootImpl$WindowInputEventReceiver	onInputEvent	(Landroid/view/InputEvent;)V	ViewRootImpl.java
-0x354	android.view.ViewRootImpl	-wrap4	(Landroid/view/ViewRootImpl;Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0xbc	android.view.ViewRootImpl	adjustInputEventForCompatibility	(Landroid/view/InputEvent;)V	ViewRootImpl.java
-0xe4	android.view.ViewRootImpl	deliverInputEvent	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0x358	android.view.ViewRootImpl	finishInputEvent	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0xc0	android.view.ViewRootImpl	obtainQueuedInputEvent	(Landroid/view/InputEvent;Landroid/view/InputEventReceiver;I)Landroid/view/ViewRootImpl$QueuedInputEvent;	ViewRootImpl.java
-0x378	android.view.ViewRootImpl	recycleQueuedInputEvent	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0xcc	android.view.ViewRootImpl	doProcessInputEvents	()V	ViewRootImpl.java
-0xb8	android.view.ViewRootImpl	enqueueInputEvent	(Landroid/view/InputEvent;Landroid/view/InputEventReceiver;IZ)V	ViewRootImpl.java
-0x118	android.view.ViewRootImpl	ensureTouchMode	(Z)Z	ViewRootImpl.java
-0x14c	android.view.ViewRootImpl	handleDispatchWindowAnimationStopped	()V	ViewRootImpl.java
-0x15c	android.view.Window	getCallback	()Landroid/view/Window$Callback;	Window.java
-0x160	android.view.Window	isDestroyed	()Z	Window.java
-0x3d8	android.view.inputmethod.InputMethodManager	checkFocusNoStartInput	(ZZ)Z	InputMethodManager.java
-0x3d4	android.view.inputmethod.InputMethodManager	checkFocus	()V	InputMethodManager.java
-0x3d0	android.view.inputmethod.InputMethodManager	hideSoftInputFromWindow	(Landroid/os/IBinder;ILandroid/os/ResultReceiver;)Z	InputMethodManager.java
-0x158	com.android.internal.policy.PhoneWindow$DecorView	dispatchTouchEvent	(Landroid/view/MotionEvent;)Z	PhoneWindow.java
-0x1c8	com.android.internal.policy.PhoneWindow$DecorView	onInterceptTouchEvent	(Landroid/view/MotionEvent;)Z	PhoneWindow.java
-0x1a0	com.android.internal.policy.PhoneWindow$DecorView	superDispatchTouchEvent	(Landroid/view/MotionEvent;)Z	PhoneWindow.java
-0x6e4	com.android.internal.util.FastPrintWriter$DummyWriter	<init>	()V	FastPrintWriter.java
-0x6e0	com.android.internal.util.FastPrintWriter$DummyWriter	<init>	(Lcom/android/internal/util/FastPrintWriter$DummyWriter;)V	FastPrintWriter.java
-0x6dc	com.android.internal.util.FastPrintWriter	<init>	(Ljava/io/Writer;ZI)V	FastPrintWriter.java
-0x798	com.android.internal.util.FastPrintWriter	appendLocked	(Ljava/lang/String;II)V	FastPrintWriter.java
-0x7cc	com.android.internal.util.FastPrintWriter	flushLocked	()V	FastPrintWriter.java
-0x6f4	com.android.internal.util.FastPrintWriter	initDefaultEncoder	()V	FastPrintWriter.java
-0x784	com.android.internal.util.FastPrintWriter	append	(Ljava/lang/CharSequence;II)Ljava/io/PrintWriter;	FastPrintWriter.java
-0x7f8	com.android.internal.util.FastPrintWriter	flush	()V	FastPrintWriter.java
-0x794	com.android.internal.util.FastPrintWriter	write	(Ljava/lang/String;II)V	FastPrintWriter.java
-0xac	com.android.internal.util.GrowingArrayUtils	insert	([IIII)[I	GrowingArrayUtils.java
-0x594	android.app.ApplicationPackageManager	queryBroadcastReceivers	(Landroid/content/Intent;I)Ljava/util/List;	ApplicationPackageManager.java
-0x5a0	android.app.ApplicationPackageManager	queryBroadcastReceivers	(Landroid/content/Intent;II)Ljava/util/List;	ApplicationPackageManager.java
-0x5a4	android.app.ContextImpl	getContentResolver	()Landroid/content/ContentResolver;	ContextImpl.java
-0x590	android.app.ContextImpl	getPackageManager	()Landroid/content/pm/PackageManager;	ContextImpl.java
-0x598	android.app.ContextImpl	getUserId	()I	ContextImpl.java
-0x4c0	android.app.SharedPreferencesImpl$2	<init>	(Landroid/app/SharedPreferencesImpl;Landroid/app/SharedPreferencesImpl$MemoryCommitResult;Ljava/lang/Runnable;)V	SharedPreferencesImpl.java
-0x4c4	android.app.SharedPreferencesImpl$2	run	()V	SharedPreferencesImpl.java
-0x440	android.app.SharedPreferencesImpl$EditorImpl	commitToMemory	()Landroid/app/SharedPreferencesImpl$MemoryCommitResult;	SharedPreferencesImpl.java
-0x518	android.app.SharedPreferencesImpl$EditorImpl	notifyListeners	(Landroid/app/SharedPreferencesImpl$MemoryCommitResult;)V	SharedPreferencesImpl.java
-0x43c	android.app.SharedPreferencesImpl$EditorImpl	commit	()Z	SharedPreferencesImpl.java
-0x42c	android.app.SharedPreferencesImpl$EditorImpl	putInt	(Ljava/lang/String;I)Landroid/content/SharedPreferences$Editor;	SharedPreferencesImpl.java
-0x448	android.app.SharedPreferencesImpl$MemoryCommitResult	<init>	()V	SharedPreferencesImpl.java
-0x444	android.app.SharedPreferencesImpl$MemoryCommitResult	<init>	(Landroid/app/SharedPreferencesImpl$MemoryCommitResult;)V	SharedPreferencesImpl.java
-0x4ec	android.app.SharedPreferencesImpl$MemoryCommitResult	setDiskWriteResult	(Z)V	SharedPreferencesImpl.java
-0x460	android.app.SharedPreferencesImpl	-get0	(Landroid/app/SharedPreferencesImpl;)I	SharedPreferencesImpl.java
-0x46c	android.app.SharedPreferencesImpl	-get1	(Landroid/app/SharedPreferencesImpl;)Ljava/util/WeakHashMap;	SharedPreferencesImpl.java
-0x464	android.app.SharedPreferencesImpl	-get2	(Landroid/app/SharedPreferencesImpl;)Ljava/util/Map;	SharedPreferencesImpl.java
-0x4c8	android.app.SharedPreferencesImpl	-get3	(Landroid/app/SharedPreferencesImpl;)Ljava/lang/Object;	SharedPreferencesImpl.java
-0x468	android.app.SharedPreferencesImpl	-set0	(Landroid/app/SharedPreferencesImpl;I)I	SharedPreferencesImpl.java
-0x4b8	android.app.SharedPreferencesImpl	-wrap0	(Landroid/app/SharedPreferencesImpl;Landroid/app/SharedPreferencesImpl$MemoryCommitResult;Ljava/lang/Runnable;)V	SharedPreferencesImpl.java
-0x4cc	android.app.SharedPreferencesImpl	-wrap2	(Landroid/app/SharedPreferencesImpl;Landroid/app/SharedPreferencesImpl$MemoryCommitResult;)V	SharedPreferencesImpl.java
-0x4bc	android.app.SharedPreferencesImpl	enqueueDiskWrite	(Landroid/app/SharedPreferencesImpl$MemoryCommitResult;Ljava/lang/Runnable;)V	SharedPreferencesImpl.java
-0x4d0	android.app.SharedPreferencesImpl	writeToFile	(Landroid/app/SharedPreferencesImpl$MemoryCommitResult;)V	SharedPreferencesImpl.java
-0x5b0	android.content.pm.IPackageManager$Stub$Proxy	queryIntentReceivers	(Landroid/content/Intent;Ljava/lang/String;II)Ljava/util/List;	IPackageManager.java
-0x50	android.ddm.DdmHandleHeap	handleHPIF	(Lorg/apache/harmony/dalvik/ddmc/Chunk;)Lorg/apache/harmony/dalvik/ddmc/Chunk;	DdmHandleHeap.java
-0x4c	android.ddm.DdmHandleHeap	handleChunk	(Lorg/apache/harmony/dalvik/ddmc/Chunk;)Lorg/apache/harmony/dalvik/ddmc/Chunk;	DdmHandleHeap.java
-0x40	android.ddm.DdmHandleProfiling	handleMPRQ	(Lorg/apache/harmony/dalvik/ddmc/Chunk;)Lorg/apache/harmony/dalvik/ddmc/Chunk;	DdmHandleProfiling.java
-0x810	android.ddm.DdmHandleProfiling	handleMPSEOrSPSE	(Lorg/apache/harmony/dalvik/ddmc/Chunk;Ljava/lang/String;)Lorg/apache/harmony/dalvik/ddmc/Chunk;	DdmHandleProfiling.java
-0xc	android.ddm.DdmHandleProfiling	handleMPSS	(Lorg/apache/harmony/dalvik/ddmc/Chunk;)Lorg/apache/harmony/dalvik/ddmc/Chunk;	DdmHandleProfiling.java
-0x10	android.ddm.DdmHandleProfiling	handleChunk	(Lorg/apache/harmony/dalvik/ddmc/Chunk;)Lorg/apache/harmony/dalvik/ddmc/Chunk;	DdmHandleProfiling.java
-0xa8	android.util.ContainerHelpers	binarySearch	([III)I	ContainerHelpers.java
-0x408	android.view.GestureDetector$GestureHandler	handleMessage	(Landroid/os/Message;)V	GestureDetector.java
-0x24	java.lang.Object	<init>	()V	Object.java
-0x718	java.lang.Object	internalClone	()Ljava/lang/Object;	Object.java
-0x714	java.lang.Object	clone	()Ljava/lang/Object;	Object.java
-0x54c	java.lang.Object	getClass	()Ljava/lang/Class;	Object.java
-0x190	java.lang.String	charAt	(I)C	String.java
-0x4ac	java.lang.String	equals	(Ljava/lang/Object;)Z	String.java
-0x79c	java.lang.String	getChars	(II[CI)V	String.java
-0x678	java.lang.String	getCharsNoCheck	(II[CI)V	String.java
-0x18c	java.lang.String	hashCode	()I	String.java
-0x534	java.lang.String	intern	()Ljava/lang/String;	String.java
-0x66c	java.lang.String	length	()I	String.java
-0x788	java.lang.String	subSequence	(II)Ljava/lang/CharSequence;	String.java
-0x78c	java.lang.String	substring	(II)Ljava/lang/String;	String.java
-0x790	java.lang.String	toString	()Ljava/lang/String;	String.java
-0x724	java.lang.ref.Reference	<init>	(Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V	Reference.java
-0x80	java.lang.ref.Reference	getReferent	()Ljava/lang/Object;	Reference.java
-0x6a8	java.lang.Throwable	<init>	(Ljava/lang/String;)V	Throwable.java
-0x6c0	java.lang.Throwable	<init>	(Ljava/lang/String;Ljava/lang/Throwable;)V	Throwable.java
-0x7e8	java.lang.Throwable	countDuplicates	([Ljava/lang/StackTraceElement;[Ljava/lang/StackTraceElement;)I	Throwable.java
-0x7a0	java.lang.Throwable	getInternalStackTrace	()[Ljava/lang/StackTraceElement;	Throwable.java
-0x6b4	java.lang.Throwable	nativeFillInStackTrace	()Ljava/lang/Object;	Throwable.java
-0x7a4	java.lang.Throwable	nativeGetStackTrace	(Ljava/lang/Object;)[Ljava/lang/StackTraceElement;	Throwable.java
-0x760	java.lang.Throwable	printStackTrace	(Ljava/lang/Appendable;Ljava/lang/String;[Ljava/lang/StackTraceElement;)V	Throwable.java
-0x48	dalvik.system.VMDebug	getMethodTracingMode	()I	VMDebug.java
-0x4	dalvik.system.VMDebug	startMethodTracingDdms	(IIZI)V	VMDebug.java
-0x0	dalvik.system.VMDebug	startMethodTracingDdmsImpl	(IIZI)V	VMDebug.java
-0x818	dalvik.system.VMDebug	stopMethodTracing	()V	VMDebug.java
-0x180	dalvik.system.VMStack	getThreadStackTrace	(Ljava/lang/Thread;)[Ljava/lang/StackTraceElement;	VMStack.java
-0x4d8	java.io.File	doAccess	(I)Z	File.java
-0x4d4	java.io.File	exists	()Z	File.java
-0x3dc	java.lang.Math	min	(JJ)J	Math.java
-0x69c	java.lang.StringFactory	newStringFromChars	(II[C)Ljava/lang/String;	StringFactory.java
-0x428	java.lang.StringFactory	newStringFromString	(Ljava/lang/String;)Ljava/lang/String;	StringFactory.java
-0x570	java.lang.System	arraycopy	(Ljava/lang/Object;ILjava/lang/Object;II)V	System.java
-0x674	java.lang.System	arraycopy	([CI[CII)V	System.java
-0xb0	java.lang.System	arraycopy	([II[III)V	System.java
-0x774	java.lang.System	arraycopyCharUnchecked	([CI[CII)V	System.java
-0x6f0	java.lang.System	lineSeparator	()Ljava/lang/String;	System.java
-0x178	java.lang.Thread	currentThread	()Ljava/lang/Thread;	Thread.java
-0x510	java.lang.Thread	interrupted	()Z	Thread.java
-0x17c	java.lang.Thread	getStackTrace	()[Ljava/lang/StackTraceElement;	Thread.java
-0x720	java.lang.ref.FinalizerReference	<init>	(Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V	FinalizerReference.java
-0x71c	java.lang.ref.FinalizerReference	add	(Ljava/lang/Object;)V	FinalizerReference.java
-0x6f8	java.nio.charset.Charset	defaultCharset	()Ljava/nio/charset/Charset;	Charset.java
-0x6fc	java.nio.charset.CharsetICU	newEncoder	()Ljava/nio/charset/CharsetEncoder;	CharsetICU.java
-0x708	libcore.icu.NativeConverter	getAveBytesPerChar	(J)F	NativeConverter.java
-0x70c	libcore.icu.NativeConverter	getMaxBytesPerChar	(J)I	NativeConverter.java
-0x704	libcore.icu.NativeConverter	openConverter	(Ljava/lang/String;)J	NativeConverter.java
-0x748	libcore.icu.NativeConverter	setCallbackEncode	(JII[B)V	NativeConverter.java
-0x734	libcore.icu.NativeConverter	setCallbackEncode	(JLjava/nio/charset/CharsetEncoder;)V	NativeConverter.java
-0x73c	libcore.icu.NativeConverter	translateCodingErrorAction	(Ljava/nio/charset/CodingErrorAction;)I	NativeConverter.java
-0x4e8	libcore.io.Posix	access	(Ljava/lang/String;I)Z	Posix.java
-0x14	org.apache.harmony.dalvik.ddmc.DdmServer	dispatch	(I[BII)Lorg/apache/harmony/dalvik/ddmc/Chunk;	DdmServer.java
-0x78	org.apache.harmony.dalvik.ddmc.DdmVmInternal	heapInfoNotify	(I)Z	DdmVmInternal.java
-0x98	sun.misc.Unsafe	compareAndSwapInt	(Ljava/lang/Object;JII)Z	Unsafe.java
-0x550	java.lang.Class	getClassLoader	()Ljava/lang/ClassLoader;	Class.java
-0x770	java.lang.Class	getName	()Ljava/lang/String;	Class.java
-0x554	java.lang.Class	isPrimitive	()Z	Class.java
-0x624	android.os.Binder	checkParcel	(Landroid/os/IBinder;ILandroid/os/Parcel;Ljava/lang/String;)V	Binder.java
-0x398	android.os.Binder	clearCallingIdentity	()J	Binder.java
-0x3e4	android.os.Binder	flushPendingCommands	()V	Binder.java
-0x540	android.os.BaseBundle	<init>	()V	BaseBundle.java
-0x544	android.os.BaseBundle	<init>	(Ljava/lang/ClassLoader;I)V	BaseBundle.java
-0x55c	android.os.BaseBundle	putInt	(Ljava/lang/String;I)V	BaseBundle.java
-0x580	android.os.BaseBundle	putString	(Ljava/lang/String;Ljava/lang/String;)V	BaseBundle.java
-0x560	android.os.BaseBundle	unparcel	()V	BaseBundle.java
-0x5ec	android.os.BaseBundle	writeToParcelInner	(Landroid/os/Parcel;I)V	BaseBundle.java
-0x53c	android.os.Bundle	<init>	()V	Bundle.java
-0x5e0	android.os.Bundle	writeToParcel	(Landroid/os/Parcel;I)V	Bundle.java
-0x44	android.os.Debug	getMethodTracingMode	()I	Debug.java
-0x8	android.os.Debug	startMethodTracingDdms	(IIZI)V	Debug.java
-0x814	android.os.Debug	stopMethodTracing	()V	Debug.java
-0x37c	android.os.MessageQueue	nativePollOnce	(JI)V	MessageQueue.java
-0x2dc	android.os.MessageQueue	nativeWake	(J)V	MessageQueue.java
-0x650	android.os.Parcel	freeBuffer	()V	Parcel.java
-0x5f8	android.os.Parcel	nativeDataPosition	(J)I	Parcel.java
-0x654	android.os.Parcel	nativeFreeBuffer	(J)J	Parcel.java
-0x5e8	android.os.Parcel	nativePushAllowFds	(JZ)Z	Parcel.java
-0x638	android.os.Parcel	nativeReadInt	(J)I	Parcel.java
-0x61c	android.os.Parcel	nativeRestoreAllowFds	(JZ)V	Parcel.java
-0x614	android.os.Parcel	nativeSetDataPosition	(JI)V	Parcel.java
-0x5c4	android.os.Parcel	nativeWriteInt	(JI)V	Parcel.java
-0x5bc	android.os.Parcel	nativeWriteInterfaceToken	(JLjava/lang/String;)V	Parcel.java
-0x5d0	android.os.Parcel	nativeWriteString	(JLjava/lang/String;)V	Parcel.java
-0x5b4	android.os.Parcel	obtain	()Landroid/os/Parcel;	Parcel.java
-0x658	android.os.Parcel	updateNativeSize	(J)V	Parcel.java
-0x2c4	android.os.SystemClock	uptimeMillis	()J	SystemClock.java
-0xe8	android.os.Trace	asyncTraceBegin	(JLjava/lang/String;I)V	Trace.java
-0x35c	android.os.Trace	asyncTraceEnd	(JLjava/lang/String;I)V	Trace.java
-0xc8	android.os.Trace	isTagEnabled	(J)Z	Trace.java
-0xc4	android.os.Trace	traceCounter	(JLjava/lang/String;I)V	Trace.java
-0x6c4	android.util.Log	e	(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)I	Log.java
-0x6c8	android.util.Log	getStackTraceString	(Ljava/lang/Throwable;)Ljava/lang/String;	Log.java
-0x808	android.util.Log	logCheckin	(ILjava/lang/String;Ljava/lang/String;)V	Log.java
-0x804	android.util.Log	println_native	(IILjava/lang/String;Ljava/lang/String;)I	Log.java
-0x80c	android.util.Log	println_native_inner	(IILjava/lang/String;Ljava/lang/String;)I	Log.java
-0x9c	android.view.InputEventReceiver	dispatchInputEvent	(ILandroid/view/InputEvent;)V	InputEventReceiver.java
-0x370	android.view.InputEventReceiver	nativeFinishInputEvent	(JIZ)V	InputEventReceiver.java
-0x31c	android.view.MotionEvent	nativeCopy	(JJZ)J	MotionEvent.java
-0x114	android.view.MotionEvent	nativeGetAction	(J)I	MotionEvent.java
-0x1e8	android.view.MotionEvent	nativeGetAxisValue	(JIII)F	MotionEvent.java
-0x32c	android.view.MotionEvent	nativeGetDownTimeNanos	(J)J	MotionEvent.java
-0xd4	android.view.MotionEvent	nativeGetEventTimeNanos	(JI)J	MotionEvent.java
-0x1b0	android.view.MotionEvent	nativeGetFlags	(J)I	MotionEvent.java
-0xdc	android.view.MotionEvent	nativeGetHistorySize	(J)I	MotionEvent.java
-0x24c	android.view.MotionEvent	nativeGetPointerCount	(J)I	MotionEvent.java
-0x1dc	android.view.MotionEvent	nativeGetPointerId	(JI)I	MotionEvent.java
-0x128	android.view.MotionEvent	nativeGetRawAxisValue	(JIII)F	MotionEvent.java
-0xfc	android.view.MotionEvent	nativeGetSource	(J)I	MotionEvent.java
-0x27c	android.view.MotionEvent	nativeGetToolType	(JI)I	MotionEvent.java
-0x120	android.view.MotionEvent	nativeIsTouchEvent	(J)Z	MotionEvent.java
-0x25c	android.view.MotionEvent	nativeOffsetLocation	(JFF)V	MotionEvent.java
-0x1d0	android.view.MotionEvent	nativeSetAction	(JI)V	MotionEvent.java
-0x23c	android.view.MotionEvent	nativeSetFlags	(JI)V	MotionEvent.java
-0x84	android.view.MotionEvent	obtain	()Landroid/view/MotionEvent;	MotionEvent.java
-0x318	android.view.MotionEvent	obtain	(Landroid/view/MotionEvent;)Landroid/view/MotionEvent;	MotionEvent.java
-0x204	android.view.RenderNode	nGetElevation	(J)F	RenderNode.java
-0x210	android.view.RenderNode	nGetTranslationZ	(J)F	RenderNode.java
-0x230	android.view.RenderNode	nHasIdentityMatrix	(J)Z	RenderNode.java
-0x300	android.view.VelocityTracker	nativeAddMovement	(JLandroid/view/MotionEvent;)V	VelocityTracker.java
-0x3f4	android.view.VelocityTracker	nativeClear	(J)V	VelocityTracker.java
-0x2f0	android.view.VelocityTracker	obtain	()Landroid/view/VelocityTracker;	VelocityTracker.java
-0x19c	com.android.internal.policy.PhoneWindow	superDispatchTouchEvent	(Landroid/view/MotionEvent;)Z	PhoneWindow.java
-0x620	android.os.BinderProxy	transact	(ILandroid/os/Parcel;Landroid/os/Parcel;I)Z	Binder.java
-0x628	android.os.BinderProxy	transactNative	(ILandroid/os/Parcel;Landroid/os/Parcel;I)Z	Binder.java
-0x2e8	org.qtproject.qt5.android.QtNative$8	<init>	()V	QtNative.java
-0x3a0	org.qtproject.qt5.android.QtNative$8	run	()V	QtNative.java
-0x2a0	org.qtproject.qt5.android.QtNative$5	<init>	(IIIII)V	QtNative.java
-0x38c	org.qtproject.qt5.android.QtNative$5	run	()V	QtNative.java
-0x3c8	org.qtproject.qt5.android.QtActivityDelegate$3	<init>	(Lorg/qtproject/qt5/android/QtActivityDelegate;Landroid/os/Handler;)V	QtActivityDelegate.java
-0x3cc	android.os.ResultReceiver	<init>	(Landroid/os/Handler;)V	ResultReceiver.java
-0x26c	org.qtproject.qt5.android.QtSurface	onTouchEvent	(Landroid/view/MotionEvent;)Z	QtSurface.java
-0x520	me.leolin.shortcutbadger.ShortcutBadger	applyCount	(Landroid/content/Context;I)Z	ShortcutBadger.java
-0x524	me.leolin.shortcutbadger.ShortcutBadger	applyCountOrThrow	(Landroid/content/Context;I)V	ShortcutBadger.java
-0x6a0	me.leolin.shortcutbadger.ShortcutBadgeException	<init>	(Ljava/lang/String;)V	ShortcutBadgeException.java
-0x6b8	me.leolin.shortcutbadger.ShortcutBadgeException	<init>	(Ljava/lang/String;Ljava/lang/Exception;)V	ShortcutBadgeException.java
-0x528	me.leolin.shortcutbadger.impl.DefaultBadger	executeBadge	(Landroid/content/Context;Landroid/content/ComponentName;I)V	DefaultBadger.java
-0x588	me.leolin.shortcutbadger.util.BroadcastHelper	canResolveBroadcast	(Landroid/content/Context;Landroid/content/Intent;)Z	BroadcastHelper.java
-0x3a4	org.qtproject.qt5.android.QtActivityDelegate	hideSoftwareKeyboard	()V	QtActivityDelegate.java
-0x394	org.qtproject.qt5.android.QtActivityDelegate	updateHandles	(IIIII)V	QtActivityDelegate.java
-0x390	org.qtproject.qt5.android.QtNative	access$200	()Lorg/qtproject/qt5/android/QtActivityDelegate;	QtNative.java
-0x28c	org.qtproject.qt5.android.QtNative	getAction	(ILandroid/view/MotionEvent;)I	QtNative.java
-0x2e4	org.qtproject.qt5.android.QtNative	hideSoftwareKeyboard	()V	QtNative.java
-0x2a4	org.qtproject.qt5.android.QtNative	runAction	(Ljava/lang/Runnable;)V	QtNative.java
-0x274	org.qtproject.qt5.android.QtNative	sendTouchEvent	(Landroid/view/MotionEvent;I)V	QtNative.java
-0x298	org.qtproject.qt5.android.QtNative	touchAdd	(IIIZIIFF)V	QtNative.java
-0x284	org.qtproject.qt5.android.QtNative	touchBegin	(I)V	QtNative.java
-0x2e0	org.qtproject.qt5.android.QtNative	touchEnd	(II)V	QtNative.java
-0x29c	org.qtproject.qt5.android.QtNative	updateHandles	(IIIII)V	QtNative.java
-0x170	org.qtproject.qt5.android.bindings.QtApplication	invokeDelegate	([Ljava/lang/Object;)Lorg/qtproject/qt5/android/bindings/QtApplication$InvokeResult;	QtApplication.java
-0x424	at.gv.ucom.MainActivity	setBadgeNumber	(I)V	MainActivity.java
-0x51c	at.gv.ucom.MainActivity	setShortCutBadge	()V	MainActivity.java
-0x164	org.qtproject.qt5.android.bindings.QtActivity	dispatchTouchEvent	(Landroid/view/MotionEvent;)Z	QtActivity.java
-0x16c	org.qtproject.qt5.android.bindings.QtActivity	onUserInteraction	()V	QtActivity.java
-0x174	org.qtproject.qt5.android.bindings.QtApplication$InvokeResult	<init>	()V	QtApplication.java
-*end
-SLOW� �§˜q������������������ç���è�§�ç���´�tª�ç	���Á�ª�ç
���Ñ�Žª�ç���×�•ª�ç���Ý�šª�ç���d�g¬�ç���˜�›¬�ç���¨�«¬�ç ���¯�²¬�ç$���¹�¼¬�ç%���¾�Á¬�ç!���Â�Ŭ�ç���Ç�ʬ�ç���Ë�ά�ç(���Ñ�Ô¬�ç,���Ù�ܬ�ç0���ê�í¬�ç1���ð�ó¬�ç4���õ�ø¬�ç5���ü�ÿ¬�ç-���ÿ�­�ç8����­�ç9����­�ç)����­�ç<��� �#­�ç$���%�(­�ç%���(�+­�ç=���.�1­�ç���4�7­�ç@���L�³­�çD���V�¾­�çH���g�Ï­�çI���q�Ø­�çE���w�Þ­�ç<���ƒ�ë­�ç$���ˆ�ï­�ç%���Œ�ó­�ç=���‘�ù­�çA���•�ü­�ç���™��®�ç����®�ç���}�Øø�ç���™�òø�ç���§��ù�ç ���°�ù�ç$���·�ù�ç%���¿�ù�ç!���Å�ù�ç���Í�%ù�ç���Ó�+ù�ç(���Ý�5ù�ç,���æ�>ù�ç0���í�Fù�ç1���ô�Mù�ç4���û�Tù�ç5����]ù�ç-���
-�bù�ç8����où�ç9����vù�ç)���$�|ù�ç<���1�‰ù�ç$���7�ù�ç%���=�•ù�ç=���E�žù�çL���M�¦ù�çP���Z�³ù�çT���c�»ù�çX���n�Æù�ç\���w�Ïù�ç]���Š�âù�ç`���“�ëù�çd���›�ôù�çh���¥�ýù�çl���­�ú�ç$���µ�
ú�ç%���º�ú�çm���Ä�ú�çi���Ë�#ú�çe���Ó�+ú�ça���Ø�0ú�çY���Þ�7ú�çp���æ�?ú�çq���î�Fú�çU���ó�Kú�çt���ú�Sú�çu���	�]ú�çx���	�pú�çy����y�çQ���,�…�çM���5��ç���<�•�ç���Ì�ê˜�ç���à�ý˜�ç���ì�™�ç ���ò�™�ç$���ø�™�ç%���þ�™�ç!����™�ç���	�%™�ç���
�*™�ç(����2™�ç,����9™�ç0���#�?™�ç1���)�E™�ç4���.�K™�ç5���5�R™�ç-���:�V™�ç8���D�`™�ç9���J�g™�ç)���O�k™�ç<���Y�u™�ç$���^�{™�ç%���b�~™�ç=���g�„™�çL���m�Š™�çP���u�‘™�çT���z�—™�çX����ž™�ç\���‡�¤™�ç]����ª™�ç`���”�°™�çd���™�¶™�çh���Ÿ�¼™�çl���¥�™�ç$���ª�Ç™�ç%���®�Ë™�çm���µ�Ñ™�çi���º�Ö™�çe���À�Ü™�ça���Ä�à™�çY���È�å™�çp���Î�ê™�çq���Ó�ð™�çU���Ø�ô™�çt���Ý�ù™�çu���ä��š�çx���ò�š�çy���Ò�îŸ�çQ���Ü�øŸ�çM���á�ýŸ�ç���æ� �ç���h��9�ç���|�9�ç���‡�9�ç ����&9�ç$���–�-9�ç%����49�ç!���£�99�ç���©�@9�ç���®�E9�ç(���·�N9�ç,���À�V9�ç0���Ç�]9�ç1���Í�d9�ç4���Ó�j9�ç5���Ü�r9�ç-���á�w9�ç8���ë�9�ç9���ò�ˆ9�ç)���÷�9�ç<����˜9�ç$����9�ç%����¢9�ç=����§9�çL����®9�çP����¶9�çT���$�»9�çX���+�Â9�ç\���2�È9�ç]���7�Î9�ç`���>�Ô9�çd���C�Ú9�çh���I�ß9�çl���O�å9�ç$���S�ê9�ç%���X�î9�çm���^�ô9�çi���c�ú9�çe���h�ÿ9�ça���m�:�çY���q�:�çp���v�
:�çq���{�:�çU���~�:�çt���ƒ�:�çu���‰�:�çx���—�.:�çy���ú�’?�çQ��� �›?�çM���	 � ?�ç��� �¥?�ç���¡ �Ü�ç���¹ �Ü�ç���Ç �,Ü�ç ���Ð �5Ü�ç$���Ù �=Ü�ç%���à �EÜ�ç!���æ �KÜ�ç���î �RÜ�ç���ô �XÜ�ç(���ý �aÜ�ç,���!�jÜ�ç0���!�rÜ�ç1���!�yÜ�ç4���!�€Ü�ç5���&!�ŠÜ�ç-���,!�Ü�ç8���8!�Ü�ç9���B!�¦Ü�ç)���H!�­Ü�ç<���V!�ºÜ�ç$���]!�ÁÜ�ç%���c!�ÇÜ�ç=���k!�ÏÜ�çL���r!�×Ü�çP���|!�áÜ�çT���ƒ!�èÜ�çX���Œ!�ñÜ�ç\���”!�ùÜ�ç]���œ!��Ý�ç`���¥!�	Ý�çd���­!�Ý�çh���´!�Ý�çl���»!�Ý�ç$���Á!�&Ý�ç%���Ç!�,Ý�çm���Ð!�5Ý�çi���Ø!�<Ý�çe���ß!�CÝ�ça���ä!�HÝ�çY���é!�MÝ�çp���ð!�UÝ�çq���ö!�[Ý�çU���ü!�`Ý�çt���"�gÝ�çu���	"�nÝ�çx���"�Ý�çy���ê(�Oä�çQ���÷(�[ä�çM���ý(�bä�ç���)�iä�ç���¡)�‘}#�ç���¹)�§}#�ç���Ç)�µ}#�ç ���Ñ)�¿}#�ç$���Ú)�È}#�ç%���â)�Ï}#�ç!���è)�Ö}#�ç���ð)�Þ}#�ç���ö)�ä}#�ç(����*�î}#�ç,���	*�÷}#�ç0���*�þ}#�ç1���*�~#�ç4���*�~#�ç5���'*�~#�ç-���,*�~#�ç8���8*�&~#�ç9���A*�/~#�ç)���G*�5~#�ç<���T*�B~#�ç$���Z*�H~#�ç%���`*�M~#�ç=���g*�U~#�çL���n*�\~#�çP���w*�e~#�çT���~*�k~#�çX���†*�s~#�ç\���*�{~#�ç]���”*�‚~#�ç`���œ*�Š~#�çd���£*�~#�çh���©*�—~#�çl���¯*�~#�ç$���µ*�¢~#�ç%���¹*�§~#�çm���Â*�¯~#�çi���È*�µ~#�çe���Î*�¼~#�ça���Ó*�Á~#�çY���Ø*�Æ~#�çp���ß*�Í~#�çq���å*�Ó~#�çU���ê*�×~#�çt���ð*�Þ~#�çu���÷*�å~#�çx���	+�÷~#�çy���Ñ1�¿…#�çQ���Ý1�Ë…#�çM���ä1�Ò…#�ç���ë1�Ø…#�ç���˜2�ã+�ç���²2�û+�ç���Á2�	 +�ç ���Ê2� +�ç$���Ò2� +�ç%���Ú2�" +�ç!���à2�' +�ç���ç2�/ +�ç���ì2�4 +�ç(���ö2�> +�ç,���ÿ2�G +�ç0���3�O +�ç1���3�V +�ç4���3�] +�ç5���3�g +�ç-���$3�l +�ç8���23�y +�ç9���;3�ƒ +�ç)���B3�Š +�ç<���O3�– +�ç$���V3� +�ç%���[3�£ +�ç=���c3�« +�çL���l3�´ +�çP���v3�¾ +�çT���~3�Å +�çX���‡3�Ï +�ç\���3�× +�ç]���—3�ß +�ç`��� 3�è +�çd���¨3�ï +�çh���¯3�÷ +�çl���·3�þ +�ç$���½3�!+�ç%���Ã3�
-!+�çm���Ë3�!+�çi���Ó3�!+�çe���Ú3�"!+�ça���ß3�'!+�çY���å3�,!+�çp���ì3�4!+�çq���ó3�;!+�çU���ø3�@!+�çt����4�H!+�çu���	4�P!+�çx���4�c!+�çy���g<�°)+�çQ���u<�½)+�çM���|<�Ä)+�ç���ƒ<�Ë)+�á|���œ���J90�á€���Ü���ˆ90�á���þ���©90�á}�����³90�á„�����ôO0�áˆ���6��P0�áŒ���ž��–R0�á���«��£R0�á‘���¹��±R0�á”���Á��¹R0�á˜���ö��îR0�á™�����	S0�á•�����S0�á�����S0�á‰���&��S0�á…���+��#S0�áœ���X��PS0�á ���g��_S0�á¡���o��fS0�á¤���x��oS0�á¨���†��~S0�á©�����‡S0�á¬���›��“S0�á°���­��¥S0�á±���·��¯S0�á­���½��µS0�á¬���Æ��¾S0�á°���Ì��ÃS0�á±���Ò��ÊS0�á­���Ö��ÎS0�á¥���Ü��ÔS0�á´���ä��ÜS0�á¸���ð��èS0�á¼���÷��îS0�á½�����T0�áÀ�����T0�áÁ���)��!T0�áÄ���6��_T0�áÈ���q��iT0�áÉ���{��sT0�áÅ���€��xT0�áÌ���‡��~T0�áÄ���’��ŠT0�áÈ���—��T0�áÉ�����•T0�áÅ���¢��™T0�áÐ���¬��¤T0�áÔ���Æ��½T0�áÕ���Ó��ËT0�áÑ���Ú��ÑT0�áØ���ä��ÛT0�áÜ���ô��ëT0�áÝ������øT0�áÙ�����ýT0�áà���j��@W0�áá���y��NW0�áä�����VW0�á ���Œ��aW0�á¡���’��gW0�áè���š��oW0�áÈ���¢��wW0�áÉ���©��~W0�áé���­��‚W0�áì���	��ßZ0�áí�����èZ0�áð�����ïZ0�áô���"��øZ0�áø���*���[0�áü���A��[0�áý���O��0[0�áù���a��7[0�áõ���f��<[0�áñ���k��A[0�á���t��J[0�á��‚��X[0�á��“��h[0�á��™��o[0�áø���£��y[0�áü���±��‡[0�áý���½��“[0�áù���Ã��™[0�á��É��Ÿ[0�á��Ò��¨[0�á��á��·[0�á��í��Ã[0�á��ó��È[0�á��ù��Ï[0�á��ÿ��Õ[0�á����Ü[0�á ����ì[0�á!��$��ú[0�á��)��ÿ[0�á$��0��\0�á(��>��\0�á)��N��$\0�á%��S��)\0�á,��[��1\0�á(��h��>\0�á)��s��I\0�á-��x��N\0�á
��}��S\0�á	����W\0�á0��‡��]\0�á4��Ž��d\0�á8��•��k\0�á���œ��r\0�á��£��y\0�á��«��\0�á<��±��‡\0�á=��·��\0�á@��½��“\0�á0��Å��›\0�áD��Ê�� \0�á4��Ó��©\0�á8��Ù��¯\0�á���ß��µ\0�á��ä��º\0�á��ë��Á\0�áH��ñ��Ç\0�áL����Ü\0�áM����â\0�áø�����è\0�áü���!��÷\0�áý���,��]0�áù���2��]0�áP��8��
]0�áT��C��]0�á��J�� ]0�á ��W��-]0�á!��b��8]0�á��g��=]0�áX��n��D]0�á\����U]0�á]��‡��]]0�á`��Ž��d]0�áa��•��k]0�ád�� ��v]0�áh��²��ˆ]0�á��»��‘]0�á��Ê�� ]0�á��Ö��¬]0�á��Û��±]0�ál��ã��¹]0�áp��ñ��Ç]0�át��ú��Ð]0�á$���
-	��à]0�á%���	��ä]0�áu��	��í]0�áx��(	��þ]0�áy��;	��^0�á|��R	��(^0�á€��b	��8^0�á��Ù
-��°_0�á}��á
-��·_0�á„��ò
-��È_0�á…����õ_0�áˆ��4��
-`0�á,���=��`0�áŒ��D��`0�á��\��2`0�á‘��i��?`0�á��y��O`0�á‘��„��Z`0�á��‘��g`0�á‘��›��q`0�á��¨��~`0�á‘��²��ˆ`0�á��¿��•`0�á‘��É��Ÿ`0�á��Õ��«`0�á‘��à��¶`0�á��ì��Â`0�á‘��ö��Ì`0�á����Ù`0�á‘��
��ã`0�á����ï`0�á‘��#��ù`0�á��0��a0�á‘��:��a0�á��F��a0�á‘��P��&a0�á��]��pa0�á‘��ª��€a0�á��º��a0�á‘��Ä��ša0�á��Ñ��§a0�á‘��Û��±a0�á��è��¾a0�á‘��ò��Èa0�á��ÿ��Õa0�á‘��	
��ßa0�á��
��ëa0�á‘�� 
��öa0�á��&
��üa0�á4���,
��b0�á5���3
��	b0�á-���8
��b0���?
��b0�áq��D
��b0���M
��#b0���T
��*b0�ám��Y
��.b0���a
��6b0���m
��Cb0���u
��Kb0�á ��
��Wb0�á¤��‰
��_b0�á¨��”
��jb0�á¬��›
��qb0�á°��¬
��‚b0�á±��¹
��b0�á­��¾
��”b0�á©��Ã
��™b0�á´��ø
��d0�áµ����"d0�á����(d0�á����:d0�á��&��Fd0�á��,��Ld0�á¸��6��Vd0�á¹��>��^d0�á¼��G��gd0�áÀ��N��nd0�áÁ��T��td0�áÄ��Y��yd0�áÅ��`��€d0�á½��f��†d0�áÈ��o��d0�á��u��•d0�á��„��¤d0�á����¯d0�á��”��´d0�áÉ��š��ºd0�áÌ�� ��Àd0�áÐ��¯��Ïd0�áÑ��¼��Üd0�áÍ��Á��ád0�áÄ��Ç��çd0�áÅ��Ì��ìd0�á¨��Ó��ód0�á¬��Ø��ød0�á°��å��e0�á±��ð��e0�á­��õ��e0�á©��ú��e0�áÔ����� e0�á����0e0�á����;e0�áÕ��!��Ae0�áØ��'��Ge0�áÜ��6��Ve0�áÝ��C��ce0�áÙ��H��he0�áà��O��oe0�áá��U��ue0�áä��\��|e0�áè��k��‹e0�áé��z��še0�áå����¡e0�áì��‡��§e0�áè��–��¶e0�áé��¡��Áe0�áí��§��Æe0�áð��­��Íe0�áô��µ��Õe0�áø��Â��âe0�áü��Ó��óe0�á���ß��ÿe0�á��ö��f0�á����#f0�á��	��)f0�áý��
��-f0�á����4f0�á����>f0�á��-��Mf0�á��;��[f0�á
��A��af0�á	��E��ef0�áù��J��jf0�áø��T��tf0�áü��Y��yf0�á���_��f0�á��k��‹f0�á��v��–f0�á��{��›f0�áý��€�� f0�á��…��¥f0�á��Š��ªf0�á��–��¶f0�á�� ��Àf0�á
��¥��Åf0�á	��©��Éf0�áù��®��Îf0�áø��µ��Õf0�áü��º��Úf0�á���¿��ßf0�á��Ì��ìf0�á��×��÷f0�á��Ü��üf0�áý��à���g0�á��æ��g0�á��ë��
-g0�á��ö��g0�á����!g0�á
����&g0�á	��
-��*g0�áù����/g0�áõ����4g0�áñ����9g0�á��"��Bg0�á��)��Ig0�á��0��Pg0�á��7��Wg0�á��>��^g0�á ��E��eg0�á!��L��lg0�á$��U��ug0�á(��a��g0�á,��h��ˆg0�á0��x��˜g0�á1��†��¦g0�á-��‹��«g0�á)����°g0�á%��”��´g0�á4����½g0�á5��§��Çg0�á��¬��Ìg0�á8��³��Óg0�á¬��¹��Ùg0�á°��Ç��çg0�á±��Ô��ôg0�á­��Ù��øg0�á<��æ��h0�á=��ó��h0�á9��ø��h0�á��þ��h0�á����#h0�á����(h0�á ����.h0�á!����3h0�á$����8h0�á(�� ��?h0�á,��%��Eh0�á0��1��Qh0�á1��<��\h0�á-��A��ah0�á)��F��fh0�á%��J��jh0�á4��O��oh0�á5��U��uh0�á��Z��zh0�á8��_��h0�á¬��d��„h0�á°��p��h0�á±��z��šh0�á­����Ÿh0�á<��Œ��¬h0�á=��—��·h0�á9��œ��¼h0�á��¢��Âh0�á��¨��Èh0�á��®��Îh0�á ��³��Óh0�á!��¸��Øh0�á$��½��Ýh0�á(��Ä��äh0�á,��É��éh0�á0��Õ��õh0�á1��á��i0�á-��æ��i0�á)��ê��
-i0�á%��ï��i0�á4��ô��i0�á5��û��i0�á����� i0�á@����%i0�áA����,i0�áÄ����2i0�áÅ����7i0�áD����=i0�á��$��Di0�á��1��Qi0�á��<��\i0�á��A��ai0�áH��G��gi0�áL��U��ui0�áM��c��ƒi0�áÜ��p��i0�áÝ��z��ši0�áI��€�� i0�á(��†��¦i0�á,��‹��«i0�á0��—��·i0�á1��¢��Âi0�á-��§��Æi0�á)��«��Ëi0�áP��²��Òi0�áQ��¹��Ùi0�á¤��¾��Þi0�á¨��Ä��äi0�á¬��É��éi0�á°��Ö��öi0�á±��à���j0�á­��æ��j0�á©��ê��
-j0�á´��ð��j0�áµ��õ��j0�á��ú��j0�á����&j0�á����1j0�á����6j0�á¸����;j0�á¹��!��Aj0�á¼��&��Fj0�áÀ��,��Lj0�áÁ��0��Pj0�áÄ��5��Uj0�áÅ��:��Zj0�á½��@��`j0�áT��J��jj0�áU��P��pj0�áÌ��U��uj0�áÐ��d��„j0�áÑ��n��Žj0�áÍ��s��“j0�áÄ��y��™j0�áÅ��~��žj0�á¨��…��¥j0�á¬��Š��ªj0�á°��–��¶j0�á±��¡��Áj0�á­��¦��Æj0�á©��«��Ëj0�áÔ��±��Ñj0�á��½��Ýj0�á��Ç��çj0�áÕ��Í��íj0�áà��Ô��ôj0�áá��Ù��ùj0�áä��à���k0�áè��ì��k0�áé��ø��k0�áå��þ��k0�áì����$k0�áè����1k0�áé����<k0�áí��!��Ak0�áð��&��Fk0�áô��,��Lk0�áø��3��Sk0�áü��8��Xk0�á���?��_k0�á��S��sk0�á��^��~k0�á��d��ƒk0�áý��h��ˆk0�á��n��Žk0�á��s��“k0�á����Ÿk0�á��Š��ªk0�á
����®k0�á	��“��³k0�áù��˜��¸k0�áø��Ÿ��Àk0�áü��¥��Åk0�á���«��Ëk0�á��¶��Ök0�á��Â��âk0�á��Ç��çk0�áý��Ë��ëk0�á��Ñ��ðk0�á��Ö��ök0�á��á��l0�á��ì��l0�á
��ð��l0�á	��õ��l0�áù��ù��l0�áø����� l0�áü����%l0�á�����+l0�á����8l0�á��#��Cl0�á��(��Hl0�áý��,��Ll0�á��1��Ql0�á��6��Vl0�á��B��bl0�á��L��ll0�á
��Q��ql0�á	��V��vl0�áù��Z��zl0�áõ��`��€l0�áñ��e��…l0�á��j��Šl0�á��o��l0�á��u��•l0�áX��€�� l0�áY��†��§l0�á��‹��«l0�á8��‘��±l0�á¬��—��¶l0�á°��¤��Äl0�á±��¯��Ïl0�á­��´��Ôl0�á<��Á��ál0�á=��Ì��ìl0�á9��Ñ��ñl0�á��×��÷l0�áX��Þ��þl0�áY��â��m0�á��ç��m0�á8��ì��m0�á¬��ñ��m0�á°��ý��m0�á±����(m0�á­��
��-m0�á<����9m0�á=��$��Dm0�á9��)��Im0�á��/��Om0�á��4��Tm0�á��:��Zm0�á ��?��_m0�á!��D��dm0�á$��I��im0�á(��Q��qm0�á,��V��vm0�á0��d��„m0�á1��o��m0�á-��t��”m0�á)��y��™m0�á%��}��m0�á4��„��¤m0�á5��‹��«m0�á����°m0�á@��•��µm0�áA��š��ºm0�áÄ��Ÿ��¿m0�áÅ��¤��Äm0�áD��©��Ém0�á��®��Îm0�á��»��Ûm0�á��Æ��æm0�á��Ë��ëm0�áH��Ð��ðm0�áL��Ü��üm0�áM��æ��n0�áÜ��ó��n0�áÝ��ý��n0�áI����#n0�á(��	��)n0�á,����.n0�á0��K��Ån0�á1��[��Õn0�á-��a��Ún0�á)��f��àn0�áP��o��én0�á\��€��ùn0�á]����	o0�áQ��”��o0�á¤��š��o0�á¨�� ��o0�á¬��¦�� o0�á°��´��-o0�á±��¾��8o0�á­��Ã��=o0�á©��È��Bo0�á´��Î��Ho0�áµ��Ó��Mo0�á��Ù��So0�á��æ��`o0�á��ñ��ko0�á��ö��po0�á¸��ü��vo0�á¹����{o0�á¼����€o0�áÀ����…o0�áÁ����Šo0�áÄ����o0�áÅ����”o0�á½�� ��šo0�áT��'��¡o0�áU��+��¥o0�áÌ��0��ªo0�áÐ��>��·o0�áÑ��H��Âo0�áÍ��M��Ço0�áÄ��S��Ío0�áÅ��Y��Òo0�á¨��_��Ùo0�á¬��d��Þo0�á°��p��êo0�á±��{��õo0�á­��€��úo0�á©��…��ÿo0�áÔ��‹��p0�á��–��p0�á��¡��p0�áÕ��§��!p0�áØ��¬��&p0�áÜ��¸��2p0�áÝ��Ã��=p0�áÙ��È��Bp0�áà��Í��Gp0�áá��Ò��Lp0�áä��Ø��Rp0�áè��å��_p0�áé��ó��mp0�áå��ø��rp0�áì��ý��wp0�áè��
-��„p0�áé����p0�áí����”p0�áð����™p0�áñ��$��žp0�á��)��£p0�á��.��¨p0�á��5��¯p0�á��:��´p0�á��@��ºp0�á ��E��¿p0�á!��J��Ãp0�á$��O��Ép0�á(��W��Ñp0�á,��]��×p0�á0��k��åp0�á1��w��ñp0�á-��|��öp0�á)��€��úp0�á%��…��ÿp0�á4��Š��q0�á5��‘��q0�á��–��q0�á@��›��q0�áA�� ��q0�áÄ��¥��q0�áÅ��ª��$q0�áD��¯��)q0�á��´��.q0�á��Á��;q0�á��Ì��Fq0�á��Ñ��Kq0�áH��Ö��Pq0�áL��â��\q0�áM��í��gq0�áÜ��ú��tq0�áÝ����~q0�áI��
-��„q0�á(����‰q0�á,����q0�á0��!��šq0�á1��+��¥q0�á-��0��ªq0�á)��4��®q0�áP��;��µq0�áQ��@��ºq0�á¤��E��¿q0�á¨��K��Äq0�á¬��P��Êq0�á°��]��×q0�á±��h��âq0�á­��m��çq0�á©��r��ìq0�á´��x��ñq0�áµ��}��÷q0�á��‚��üq0�á��Ž��r0�á��™��r0�á��ž��r0�á¸��£��r0�á¹��¨��"r0�á¼��­��'r0�áÀ��²��,r0�áÁ��·��1r0�áÄ��»��5r0�áÅ��À��:r0�á½��Æ��@r0�áT��Ì��Fr0�áU��Ð��Jr0�áÌ��Õ��Or0�áÐ��â��\r0�áÑ��ì��fr0�áÍ��ñ��kr0�áÄ��÷��qr0�áÅ��ü��vr0�á¨����|r0�á¬����‚r0�á°����Žr0�á±����˜r0�á­��$��r0�á©��(��¢r0�áÔ��.��¨r0�á��:��´r0�á��E��¾r0�áÕ��J��Är0�áØ��O��Ér0�áÜ��\��Ör0�áÝ��f��àr0�áÙ��k��år0�áà��q��ër0�áá��v��ðr0�áä��{��õr0�áè��ˆ��s0�áé��”��s0�áå��™��s0�áì��ž��s0�áè��ª��$s0�áé��µ��/s0�áí��»��4s0�áð��À��:s0�áñ��Å��?s0�á��Ê��Ds0�á��Ï��Is0�á��Ö��Ps0�á��Û��Us0�á��á��[s0�á ��æ��`s0�á!��ë��ds0�á$��ð��js0�á(��ø��rs0�á,��þ��xs0�á0����Žs0�á1�� ��šs0�á-��&�� s0�á)��*��¤s0�á%��/��©s0�á4��5��¯s0�á5��;��µs0�á��@��ºs0�á@��E��¿s0�áA��J��Äs0�áÄ��O��És0�áÅ��T��Îs0�áD��Y��Ós0�á��_��Øs0�á��m��æs0�á��x��òs0�á��}��÷s0�áH��ƒ��ýs0�áL����	t0�áM��š��t0�áÜ��¦�� t0�áÝ��±��+t0�áI��¶��0t0�á(��¼��6t0�á,��Á��;t0�á0��Í��Gt0�á1��×��Qt0�á-��Ü��Vt0�á)��á��[t0�áP��ç��at0�áQ��í��gt0�á`��ó��lt0�á¨��ú��tt0�á¬��ÿ��yt0�á°����…t0�á±����t0�á­����•t0�á©�� ��št0�ád��'��¡t0�á��6��°t0�á��A��»t0�áe��F��Àt0�áh��M��Çt0�ái��T��Ît0�á´��Y��Ót0�áµ��^��Øt0�ál��f��àt0�áp��¬��&u0�áq��²��,u0�át��º��3u0�áx��Ã��=u0�á|��Õ��Ou0�á}��â��\u0�áy��ç��au0�á€��ð��ju0�á��ø��ru0�á„��	��ƒu0�á…��!��›u0�áˆ��(��¢u0�áL��6��°u0�áM��A��»u0�á‰��F��Àu0�áØ��L��Æu0�áÜ��X��Òu0�áÝ��c��Ýu0�áÙ��h��âu0�áŒ��n��èu0�ád��v��ðu0�á��ƒ��üu0�á����v0�áe��“��v0�á��˜��v0�áä��ž��v0�áè��¬��&v0�áé��¹��3v0�áå��¾��8v0�áì��Ä��>v0�áè��Ó��Mv0�áé��ß��Yv0�áí��ä��^v0�á��ê��dv0�áè�� ��v0�áé�� ��™v0�á‘��% ��žv0�á”��+ ��¥v0�áè��: ��´v0�áé��F ��Àv0�á•��K ��Åv0�á˜��Y ��Óv0�<œ������£w0�< �����°w0�<$������½w0�<%������Âw0�<¡��#���Æw0�<¤��(���Ëw0�<¨��3���Õw0�<©��C���æw0�<¬��L���îw0�<°��T���öw0�<$���Z���üw0�<%���^����x0�<±��e���x0�<­��i���x0�<´��q���x0�<¸��x���x0�<¼�����!x0�<½��Œ���/x0�<¹��‘���3x0�<À��—���:x0�<Ä��«���Nx0�<Å��·���Zx0�<È��¾���ax0�<Ì��Å���gx0�<Ð��Î���qx0�<Ô��Ö���xx0�<Õ��Ý���x0�<Ø��å���ˆx0�<Ù��ê���x0�<Ü��õ���—x0�<Ý����ªx0�<Ñ����°x0�<Í����µx0�<É����¹x0�<Á����½x0�<µ����Áx0�<¥��$��Çx0�<��)��Ëx0�á™��Æ ��by0�áˆ��Ñ ��my0�áL��â ��~y0�áM��ï ��‹y0�á‰��õ ��y0�á��û ��–y0�á��!��£y0�á��!��®y0�á��!��³y0�áà��)!��Äy0�<œ��B��å|0�< ��N��ð|0�<$���V��ø|0�<%���Z��ü|0�<¡��^���}0�<¤��d��}0�<¨��l��}0�<©��r��}0�<¬��y��}0�<°����!}0�<$���„��&}0�<%���ˆ��*}0�<±����1}0�<­��“��5}0�<´��š��<}0�<¸��Ÿ��A}0�<¼��¥��G}0�<½��®��P}0�<¹��²��T}0�<À��·��Y}0�<Ä��Ã��e}0�<Å��Í��o}0�<È��Ó��u}0�<Ì��Ù��{}0�<Ð��ß��}0�<Ô��å��‡}0�<Õ��é��‹}0�<Ø��ñ��“}0�<Ù��õ��—}0�<Ñ��þ�� }0�<Í����¤}0�<É����§}0�<Á��	��«}0�<µ��
��¯}0�<¥����´}0�<����¸}0�<ä��Ò��u0�<è��ß��0�<$���ç��‰0�<%���ë��0�<é��ï��‘0�<¤��ô��–0�<¨��ü��ž0�<©����¤0�<¬����ª0�<°����°0�<$�����µ0�<%�����¹0�<±����¿0�<­��!��Ã0�<´��'��É0�<¸��,��Î0�<¼��1��Ó0�<½��;��Ý0�<¹��?��á0�<À��E��ç0�<Ä��P��ò0�<Å��Y��û0�<È��`��€0�<Ì��e��€0�<Ð��l��€0�<Ô��r��€0�<Õ��w��€0�<Ø��~�� €0�<Ù��ƒ��%€0�<Ñ��Œ��.€0�<Í����2€0�<É��”��6€0�<Á��˜��:€0�<µ����?€0�<¥��¢��D€0�<å��¦��H€0�<œ��Ð��r€0�< ��Ø��z€0�<$���ß��€0�<%���ã��…€0�<¡��ç��‰€0�<¤��ë��€0�<¨��ñ��“€0�<©��ö��˜€0�<¬��ý��Ÿ€0�<°����£€0�<$�����¨€0�<%���
-��«€0�<±����±€0�<­����µ€0�<´����º€0�<¸����¿€0�<¼��"��Ä€0�<½��)��Ë€0�<¹��.��Ѐ0�<À��3��Õ€0�<Ä��<��Þ€0�<Å��D��æ€0�<È��I��ë€0�<Ì��O��ñ€0�<Ð��T��ö€0�<Ô��Y��û€0�<Õ��^���0�<Ø��d��0�<Ù��h��
-0�<Ñ��q��0�<Í��u��0�<É��y��0�<Á��}��0�<µ����#0�<¥��…��'0�<��‰��+0�áá��•!��P‚0�áu��Ÿ!��Z‚0�áì��º!��u‚0�á��Æ!��‚0�á��Ú!��•‚0�á��é!��¤‚0�á��î!��©‚0�áð��"��½‚0�áô��"��΂0�áø��"��Ù‚0�áù��("��ã‚0�áõ��."��é‚0�áñ��5"��ð‚0�áü��>"��ù‚0�á���S"��ƒ0�á��v"��1ƒ0�áý��}"��8ƒ0�áˆ��†"��Aƒ0�áL��•"��Pƒ0�áM�� "��\ƒ0�á‰��§"��bƒ0�áä��®"��iƒ0�áè��½"��xƒ0�áé��Ì"��‡ƒ0�áå��Ò"��ƒ0�áì��Ú"��•ƒ0�áè��è"��£ƒ0�áé��ó"��¯ƒ0�áí��ù"��´ƒ0�á��
-#��Ń0�á��#��σ0�á	�� #��Ûƒ0�á��$#��߃0�á��-#��èƒ0�á¼��6#��ñƒ0�á½��?#��úƒ0�áÀ��D#��ÿƒ0�áÄ��U#��„0�áÅ��c#��„0�áÈ��j#��%„0�áÌ��p#��+„0�áÐ��„#��?„0�áÔ��‹#��F„0�áÕ��#��K„0�áØ��—#��R„0�áÙ��œ#��W„0�áÑ��§#��b„0�áÍ��¬#��g„0�áÉ��°#��k„0�áÁ��µ#��p„0�á
��¹#��t„0�á��Ã#��~„0�á��Ë#��†„0�á��$��Ó„0�á��"$��Ý„0�á��)$��ä„0�á„���0$��ë„0�áˆ���8$��ó„0�áŒ���@$��û„0�á���G$��…0�á‘���M$��…0�á”���R$��…0�á˜���k$��&…0�á™���y$��4…0�á•���~$��9…0�á���ƒ$��>…0�á‰���‰$��D…0�á…���$��J…0�á��ž$��Y…0�á��¸$��s…0�á��¾$��y…0�á ��É$��„…0�á$��Ø$��”…0�á%��æ$��¡…0�á!��ë$��¦…0�á(��ò$��­…0�á,��%��¿…0�á-��%��Ì…0�á)��%��Ô…0�á0��!%��Ü…0�á¼��(%��ã…0�á½��/%��ë…0�áÈ��5%��ð…0�áÌ��;%��ö…0�áÐ��A%��ü…0�áÔ��F%��†0�áÕ��K%��†0�áØ��Q%��†0�áÙ��V%��†0�áÑ��a%��†0�áÍ��e%�� †0�áÉ��j%��%†0�á1��n%��)†0�á(��t%��/†0�á,��ƒ%��>†0�á-��%��J†0�á)��•%��P†0�á0��›%��V†0�á¼�� %��[†0�á½��§%��b†0�áÈ��­%��h†0�áÌ��³%��n†0�áÐ��¸%��t†0�áÔ��¾%��y†0�áÕ��Ã%��~†0�áØ��È%��ƒ†0�áÙ��Í%��ˆ†0�áÑ��×%��’†0�áÍ��Ü%��—†0�áÉ��à%��›†0�á1��å%�� †0�á4��b&��
‹0�á5��k&��‹0�áí��s&��‹0�ám��y&��$‹0�áa��€&��*‹0�áP��‰&��3‹0�áQ��Ž&��8‹0�áE��’&��<‹0�á(��¬&��‹‹0�á,��Å&��£‹0�á-��Ð&��¯‹0�á)��×&��µ‹0�á8��à&��¾‹0�áè��ï&��Í‹0�áé��û&��Ú‹0�á9���'��ß‹0�á<��'��ä‹0�áè��'��ó‹0�áé�� '��þ‹0�á=��$'��Œ0�á@��*'��	Œ0�áD��2'��Œ0�áE��='��Œ0�áA��B'��!Œ0�á¥��K'��)Œ0�áP��Q'��/Œ0�áQ��V'��4Œ0�áE��Z'��8Œ0�á(��_'��=Œ0�á,��l'��JŒ0�á-��v'��TŒ0�á)��|'��ZŒ0�á8��‚'��aŒ0�áè��Ž'��mŒ0�áé��˜'��wŒ0�á9��'��|Œ0�á<��¢'��Œ0�áè��­'��ŒŒ0�áé��·'��–Œ0�á=��¼'��›Œ0�á@��Á'�� Œ0�áD��Æ'��¤Œ0�áE��Í'��¬Œ0�áA��Ó'��±Œ0�á¥��Ù'��¸Œ0�áP��ß'��½Œ0�á\��í'��ÌŒ0�á]��ù'��׌0�áQ��þ'��ÜŒ0�áE��(��àŒ0�á(��(��åŒ0�á,��(��ðŒ0�á-��(��ûŒ0�á)��"(���0�á8��((��0�áè��5(��0�áé��?(��0�á9��D(��"0�á<��H(��'0�áè��T(��20�áé��^(��<0�á=��b(��A0�á@��h(��F0�áD��l(��J0�áE��s(��Q0�áA��x(��W0�á¥��(��]0�áP��…(��c0�áQ��‰(��g0�áE��(��k0�á(��“(��q0�á,��ž(��|0�á-��¨(��†0�á)��­(��Œ0�á8��´(��’0�áè��¿(��0�áé��É(��§0�á9��Î(��¬0�á<��Ó(��±0�áè��Þ(��¼0�áé��è(��ƍ0�á=��ì(��ˍ0�á@��ò(��э0�áD��÷(��Ս0�áE��ý(��܍0�áA��)��á0�á¥��	)��è0�á¡��)��î0�á��)��ó0�ái��)��ú0�áe��#)��Ž0�áY��()��Ž0�áU��.)��Ž0�áQ��6)��Ž0�áI��<)��Ž0�á0��D)��#Ž0�áH��J)��)Ž0�á4��R)��1Ž0�áL��W)��5Ž0�á8��_)��=Ž0�á���f)��DŽ0�á4��k)��IŽ0�áP��p)��NŽ0�áø���w)��VŽ0�áü���‡)��eŽ0�áý���’)��qŽ0�áù���—)��vŽ0�á8��ž)��|Ž0�áT��¤)��ƒŽ0�áX��±)��Ž0�á ���¸)��—Ž0�á¡���¾)��Ž0�á\��Å)��£Ž0�áÈ���Í)��«Ž0�áÉ���Ô)��²Ž0�á]��Ø)��¶Ž0�á`��à)��¾Ž0�á ���è)��ÆŽ0�á¡���ì)��ÊŽ0�ád��ò)��ÑŽ0�á¨���ù)��ØŽ0�á©����*��ߎ0�áe��*��ãŽ0�áh��
-*��éŽ0�ái��*��ïŽ0�ál��*��ôŽ0�á°���*��üŽ0�á±���$*��0�á°���)*��0�á±���.*��0�ám��2*��0�áp��D*��#0�áq��‡*��Ï0�át��*��̏0�á��—*��ӏ0�á��*��ُ0�á��£*��ߏ0�á��«*��æ0�áu��¯*��ë0�áa��³*��î0�áx��½*��ø0�áy��Æ*��0�áY��Ê*��0�áU��Ï*��0�á9��Ô*��0�áQ��Ø*��0�á5��Ý*��0�á��â*��0�á9��ç*��#0�áM��ë*��'0�á5��ð*��,0�áI��ô*��00�á1��ú*��50�á��ÿ*��;0�á9��+��?0�á5��+��D0�áE��+��I0�á1��+��O0�áA��+��T0�á��+��Z0�á9��#+��_0�á5��(+��d0�á1��-+��i0�á��1+��m0�áå���6+��r0�áÍ���>+��z0�á¹���C+��0�áµ���I+��„0�á���O+��‹0�á}��r+��¯0�áÄ��45��O¨0�áÅ��I5��a¨0�áØ��_5��w¨0�áÙ��h5��€¨0�á��o5��‡¨0�á„��{5��“¨0�áˆ��ƒ5��›¨0�áŒ��Ž5��¦¨0�á��˜5��°¨0�á‘��¡5��¹¨0�á”��®5��ƨ0�á•��½5��Õ¨0�á��Â5��Ù¨0�á‰��Ç5��ߨ0�á…��Ë5��ã¨0�á˜��Ù5��ñ¨0�á™��å5��ý¨0�áœ��ì5��©0�á��ü5��©0�á€��6��©0�á|��6��'©0�á}��+6��C©0�áÄ��66��N©0�áÅ��?6��W©0�áØ��J6��b©0�áÙ��P6��h©0�á��U6��m©0�á„��[6��s©0�áˆ��`6��x©0�áŒ��f6��~©0�á��k6��ƒ©0�á‘��p6��ˆ©0�á”��x6��©0�á•��~6��–©0�á��ƒ6��š©0�á‰��‡6��Ÿ©0�á…��‹6��£©0�á˜��•6��­©0�á™��ž6��¶©0�áœ��¤6��¼©0�á��¯6��Ç©0�á€��´6��Ì©0�á|��¾6��ש0�á}��Ì6��ä©0�áÄ��Ö6��î©0�áÅ��Þ6��ö©0�áØ��è6��ÿ©0�áÙ��í6��ª0�á��ñ6��	ª0�á„��ø6��ª0�áˆ��ý6��ª0�á ��7��ª0�á��	7��!ª0�á‘��7��&ª0�á��7��+ª0�á‘��7��/ª0�á¤��7��7ª0�á¨��‰7��¡ª0�á©��‘7��¨ª0�á¬��ž7��¶ª0�á°��¥7��¼ª0�á$���«7��ê0�á%���±7��ɪ0�á´��¶7��Ϊ0�á¸��½7��Õª0�áx��Ð7��èª0�áy��ß7��÷ª0�á¼��æ7��þª0�á½��ì7��«0�áÀ��û7��«0�áÁ��8��«0�áÄ��
-8��"«0�áÅ��8��'«0�á¹��8��.«0�áµ��8��4«0�á±��#8��;«0�á­��(8��?«0�áÈ��.8��F«0�áÌ��78��O«0�á$���=8��U«0�á%���A8��Y«0�áÍ��8��—«0�áÉ��…8��«0�áÐ��'9��õ¯0�áÔ��69��°0�áØ��@9��
°0�áÙ��T9��"°0�áÕ��Y9��&°0�á¨��e9��2°0�á©��m9��:°0�áÑ��r9��?°0�á¥��x9��F°0�á¡��9��L°0�á‰��‰9��V°0�á…��Ž9��\°0�á˜��¤9��q°0�á™��°9��}°0�áœ��¸9��…°0�á��Ç9��”°0�á€��Í9��š°0�á|��Ý9��ª°0�á}��ð9��¾°0�áÄ���:��ΰ0�áÅ��
:��Û°0�áØ��:��æ°0�áÙ�� :��í°0�á��%:��ò°0�á„��,:��ù°0�áˆ��1:��þ°0�áŒ��9:��±0�á��?:��±0�á‘��D:��±0�á”��L:��±0�á•��S:�� ±0�á��W:��%±0�á‰��\:��)±0�á…��_:��-±0�á˜��j:��7±0�á™��u:��C±0�áœ��{:��H±0�á��‡:��U±0�á€��Ž:��[±0�á|��—:��e±0�á}��¦:��s±0�áÄ��¯:��|±0�áÅ��¸:��…±0�áÜ��Ã:��±0�áÝ��É:��–±0�áà��Ò:�� ±0�áá��ã:��°±0�áä��ð:��¾±0�áå��ú:��ȱ0�á|��;��Ò±0�á|���£;��ûK1�á€���Ï;��&L1�á���ã;��:L1�á}���ì;��CL1�á„����<��WL1�áˆ���<��mL1�áŒ���"<��yL1�á���)<��€L1�á‘���2<��‰L1�á”���9<��L1�á˜���P<��¦L1�á™���Z<��±L1�á•���`<��·L1�á���e<��¼L1�á‰���l<��ÃL1�á…���q<��ÈL1�áœ���<��çL1�á ���™<��ðL1�á¡���Ÿ<��öL1�á¤���¦<��üL1�á¨���®<��M1�á©���µ<��M1�á¬���½<��M1�á°���È<��M1�á±���Ñ<��'M1�á­���Õ<��,M1�á¬���Û<��2M1�á°���á<��8M1�á±���æ<��=M1�á­���ê<��AM1�á¥���ð<��GM1�á´���÷<��MM1�á¸���ÿ<��VM1�á¼���=��]M1�á½���=��cM1�áÀ���=��hM1�áÁ���=��qM1�áÄ���#=��zM1�áÈ���)=��€M1�áÉ���1=��ˆM1�áÅ���6=��ŒM1�áÌ���;=��’M1�áÄ���C=��™M1�áÈ���G=��žM1�áÉ���L=��¢M1�áÅ���P=��§M1�áÐ���V=��­M1�áÔ���g=��¾M1�áÕ���q=��ÈM1�áÑ���w=��ÍM1�áØ���=��ÕM1�áÜ���‹=��áM1�áÝ���•=��ìM1�áÙ���š=��ñM1�áà���£=��úM1�áá���«=��N1�áä���±=��N1�á ���¸=��N1�á¡���½=��N1�áè���Ã=��N1�áÈ���È=��N1�áÉ���Î=��%N1�áé���Ò=��)N1�áì���Ú=��1N1�áí���ß=��6N1�áð���ä=��;N1�áô���ì=��CN1�áø���ò=��IN1�áü���ÿ=��VN1�áý���	>��`N1�áù���>��eN1�áõ���>��jN1�áñ���>��nN1�á���>��vN1�á��&>��|N1�á��1>��ˆN1�á��7>��N1�áø���>>��”N1�áü���G>��N1�áý���O>��¥N1�áù���S>��ªN1�á��X>��¯N1�á��`>��·N1�á��k>��ÂN1�á��t>��ÊN1�á��x>��ÏN1�á��>��ÖN1�á ��‰>��àN1�á!��”>��ëN1�á��™>��ðN1�á$��Ÿ>��öN1�á(��ª>��O1�á)��µ>��O1�á%��»>��O1�á,��Â>��O1�á(��Í>��$O1�á)��Ö>��-O1�á-��Ü>��2O1�á
��à>��7O1�á	��å>��;O1�á0��ê>��@O1�á4��?��cO1�á8��?��iO1�á���?��pO1�á��?��vO1�á��'?��}O1�á<��,?��ƒO1�á=��2?��‰O1�á@��8?��ŽO1�á0��=?��”O1�áD��C?��™O1�á4��I?�� O1�á8��N?��¥O1�á���T?��«O1�á��Y?��°O1�á��`?��¶O1�áH��f?��¼O1�áL��m?��ÄO1�áM��r?��ÉO1�áø���w?��ÎO1�áü���„?��ÛO1�áý���?��äO1�áù���’?��éO1�áP��—?��îO1�áT��¢?��ùO1�á��¨?��ÿO1�á ��³?��	P1�á!��»?��P1�á��À?��P1�áX��Ç?��P1�á\��Ï?��&P1�á]��Õ?��,P1�á`��Û?��2P1�áa��à?��7P1�ád��ë?��BP1�áh��õ?��KP1�á��û?��QP1�á��@��\P1�á��@��eP1�á��@��jP1�á˜��@��pP1�á™��@��uP1�áœ��%@��|P1�á ��,@��ƒP1�á¤��5@��‹P1�á¨��<@��“P1�á¬��B@��™P1�á°��N@��¥P1�á±��W@��­P1�á­��\@��²P1�á©��a@��·P1�á´��g@��¾P1�áµ��m@��ÄP1�á��r@��ÉP1�á��|@��ÓP1�á��„@��ÛP1�á��‰@��àP1�áÈ��“@��éP1�á��™@��ðP1�á��£@��úP1�á��«@��Q1�á��¯@��Q1�áÉ��µ@��Q1�áÌ��º@��Q1�áÐ��Å@��Q1�áÑ��Î@��%Q1�áÍ��Ó@��*Q1�á8��Ú@��0Q1�á¬��ß@��6Q1�á°��é@��?Q1�á±��ñ@��GQ1�á­��õ@��LQ1�á<���A��WQ1�á=��	A��`Q1�á9��A��dQ1�áÄ��A��jQ1�áÅ��A��pQ1�á¨��A��vQ1�á¬��$A��{Q1�á°��.A��„Q1�á±��6A��ŒQ1�á­��:A��‘Q1�á©��?A��•Q1�áÄ��GA��žQ1�áÅ��LA��¢Q1�áD��RA��©Q1�á��XA��®Q1�á��aA��¸Q1�á��iA��ÀQ1�á��nA��ÅQ1�áH��tA��ÊQ1�áL��~A��ÕQ1�áM��‡A��ÞQ1�áÜ��“A��éQ1�áÝ��œA��óQ1�áI��£A��ùQ1�á(��©A���R1�á,��±A��R1�á0��¼A��R1�á1��ÆA��R1�á-��ËA��"R1�á)��ÏA��&R1�áP��ØA��.R1�áQ��ÞA��5R1�á¤��ãA��:R1�á¨��èA��?R1�á¬��íA��DR1�á°��÷A��NR1�á±��ÿA��VR1�á­��B��ZR1�á©��	B��_R1�á´��B��eR1�áµ��B��iR1�á��B��mR1�á�� B��wR1�á��(B��R1�á��-B��„R1�áT��4B��‹R1�áU��8B��R1�áÌ��=B��”R1�áÐ��GB��žR1�áÑ��OB��¦R1�áÍ��TB��ªR1�á8��YB��°R1�á¬��^B��´R1�á°��gB��¾R1�á±��oB��ÆR1�á­��tB��ÊR1�á<��~B��ÕR1�á=��†B��ÝR1�á9��‹B��áR1�áÄ��B��çR1�áÅ��•B��ëR1�á¨��›B��ñR1�á¬��ŸB��öR1�á°��©B���S1�á±��±B��S1�á­��¶B��S1�á©��ºB��S1�áÄ��ÁB��S1�áÅ��ÆB��S1�áD��ÌB��#S1�á��ÑB��(S1�á��ÚB��1S1�á��ãB��9S1�á��çB��>S1�áH��ìB��CS1�áL��öB��LS1�áM��þB��US1�áÜ��C��_S1�áÝ��C��gS1�áI��C��lS1�á(��C��rS1�á,�� C��wS1�á0��*C��S1�á1��3C��ŠS1�á-��8C��ŽS1�á)��<C��’S1�áP��BC��™S1�á\��MC��£S1�á]��VC��­S1�áQ��[C��²S1�á¤��aC��·S1�á¨��fC��¼S1�á¬��jC��ÁS1�á°��tC��ËS1�á±��}C��ÓS1�á­��C��ØS1�á©��†C��ÝS1�á´��‹C��âS1�áµ��C��æS1�á��”C��ëS1�á��žC��ôS1�á��¦C��ýS1�á��«C��T1�áT��±C��T1�áU��µC��T1�áÌ��ºC��T1�áÐ��ÄC��T1�áÑ��ÌC��#T1�áÍ��ÑC��'T1�á8��ÖC��-T1�á¬��ÚC��1T1�á°��äC��;T1�á±��ìC��CT1�á­��ñC��GT1�á<��ûC��QT1�á=��D��ZT1�á9��D��^T1�áÄ��
D��dT1�áÅ��D��hT1�á¨��D��nT1�á¬��D��sT1�á°��&D��}T1�á±��.D��…T1�á­��2D��‰T1�á©��7D��ŽT1�áÄ��>D��•T1�áÅ��CD��šT1�áD��JD�� T1�á��ND��¥T1�á��XD��¯T1�á��`D��·T1�á��eD��»T1�áH��jD��ÀT1�áL��sD��ÊT1�áM��{D��ÒT1�áÜ��…D��ÜT1�áÝ��ŽD��äT1�áI��“D��éT1�á(��™D��ïT1�á,��žD��õT1�á0��¨D��þT1�á1��°D��U1�á-��µD��U1�á)��¹D��U1�áP��ÀD��U1�áQ��ÄD��U1�á¤��ÉD�� U1�á¨��ÏD��%U1�á¬��ÓD��*U1�á°��ÝD��4U1�á±��æD��<U1�á­��êD��AU1�á©��ïD��FU1�á´��ôD��KU1�áµ��ùD��PU1�á��ýD��TU1�á��E��^U1�á��E��fU1�á��E��jU1�áT��E��qU1�áU��E��uU1�áÌ��#E��zU1�áÐ��-E��„U1�áÑ��5E��ŒU1�áÍ��:E��‘U1�á8��?E��–U1�á¬��DE��šU1�á°��ME��¤U1�á±��UE��¬U1�á­��ZE��°U1�á<��dE��»U1�á=��lE��ÃU1�á9��qE��ÈU1�áÄ��vE��ÍU1�áÅ��{E��ÒU1�á¨��E��×U1�á¬��…E��ÜU1�á°��E��æU1�á±��—E��îU1�á­��œE��òU1�á©�� E��÷U1�áÄ��§E��ýU1�áÅ��¬E��V1�áD��²E��	V1�á��·E��
V1�á��ÀE��V1�á��ÈE��V1�á��ÍE��$V1�áH��ÒE��(V1�áL��ÛE��2V1�áM��äE��:V1�áÜ��îE��DV1�áÝ��öE��MV1�áI��ûE��RV1�á(��F��YV1�á,��F��^V1�á0��F��hV1�á1��F��pV1�á-��F��uV1�á)��"F��yV1�áP��)F��€V1�áQ��-F��„V1�á`��2F��‰V1�á¨��7F��ŽV1�á¬��<F��“V1�á°��FF��V1�á±��NF��¥V1�á­��SF��ªV1�á©��XF��®V1�ád��^F��´V1�á��hF��¾V1�á��pF��ÇV1�áe��uF��ÌV1�á´��{F��ÑV1�áµ��F��ÖV1�ál��†F��ÝV1�áp��ŒF��ãV1�áq��‘F��èV1�át��˜F��ïV1�áx��ŸF��õV1�á|��©F���W1�á}��³F��	W1�áy��¸F��W1�á€��¿F��W1�á��ÆF��W1�á„��ÓF��*W1�á…��èF��?W1�áˆ��ïF��EW1�áL��ùF��PW1�áM��G��YW1�á‰��G��^W1�áØ��G��cW1�áÜ��G��nW1�áÝ�� G��wW1�áÙ��$G��{W1�áŒ��*G��W1�ád��/G��†W1�á��9G��W1�á��BG��˜W1�áe��FG��W1�á��LG��£W1�áä��QG��¨W1�áè��\G��³W1�áé��gG��½W1�áå��kG��ÂW1�áì��rG��ÈW1�áè��}G��ÓW1�áé��…G��ÜW1�áí��ŠG��àW1�á��G��æW1�áè��šG��ðW1�áé��¢G��ùW1�á‘��§G��þW1�á”��¬G��X1�áè��·G��X1�áé��¿G��X1�á•��ÄG��X1�á˜��ÏG��&X1�á™��àG��6X1�áˆ��æG��<X1�áL��ïG��FX1�áM��øG��OX1�á‰��ýG��TX1�á��H��XX1�á��H��aX1�á��H��jX1�á��H��nX1�áà��"H��yX1�áá��µH��Y1�áu��¾H��#Y1�áì��ÇH��,Y1�á��ÏH��5Y1�á��ÝH��CY1�á��æH��LY1�á��ëH��PY1�áü��òH��XY1�á����I��fY1�á��I��}Y1�áý��I��ƒY1�áˆ��%I��ŠY1�áL��/I��•Y1�áM��9I��ŸY1�á‰��>I��£Y1�áä��EI��«Y1�áè��PI��¶Y1�áé��ZI��ÀY1�áå��_I��ÄY1�áì��eI��ÊY1�áè��oI��ÕY1�áé��xI��ÝY1�áí��}I��âY1�á��‡I��íY1�á„���I��óY1�áˆ���™I��þY1�áŒ��� I��Z1�á���¦I��Z1�á‘���«I��Z1�á”���°I��Z1�á˜���ÀI��&Z1�á™���ÊI��0Z1�á•���ÏI��5Z1�á���ÔI��9Z1�á‰���ÙI��>Z1�á…���ÝI��BZ1�á��éI��NZ1�á��ûI��`Z1�á��J��fZ1�áè��J��rZ1�áé��J��yZ1�á��J��€Z1�á�� J��†Z1�á��%J��ŠZ1�á��.J��“Z1�áì��5J��šZ1�áð��<J��¢Z1�áô��LJ��±Z1�áõ��XJ��¾Z1�áñ��]J��ÂZ1�áø��eJ��ÊZ1�áü��nJ��ÓZ1�á���tJ��ÙZ1�á��‚J��èZ1�áý��‹J��ðZ1�áù��J��õZ1�áí��”J��ùZ1�á ��J��[1�á$��¤J��
-[1�áœ��¯J��[1�á��ºJ��[1�á%��ÂJ��'[1�á!��ÆJ��+[1�á ��ËJ��0[1�á$��ÐJ��5[1�áœ��×J��<[1�á��ßJ��D[1�á%��äJ��I[1�á!��èJ��N[1�áí��íJ��R[1�ám��óJ��X[1�áh��úJ��`[1�ái���K��e[1�áa��K��i[1�áP��K��q[1�áQ��K��v[1�áE��K��z[1�á¼��K��[1�áÀ��"K��ˆ[1�á��)K��Ž[1�á��4K��š[1�áÁ��9K��ž[1�áÄ��>K��£[1�áÅ��CK��¨[1�á½��IK��®[1�á¥��MK��²[1�áP��RK��·[1�áQ��WK��¼[1�áE��[K��À[1�á¼��`K��Æ[1�áÀ��eK��Ê[1�á��jK��Ð[1�á��qK��Ö[1�áÁ��uK��Û[1�áÄ��zK��ß[1�áÅ��K��ä[1�á½��„K��é[1�á¥��ˆK��í[1�áP��K��ò[1�á\�� K��\1�á]��ªK��\1�áQ��°K��\1�áE��µK��\1�á¼��»K�� \1�áÀ��ÀK��%\1�á��ÆK��+\1�á��ÍK��2\1�áÁ��ÑK��7\1�áÄ��ÖK��;\1�áÅ��ÛK��@\1�á½��ßK��D\1�á¥��ãK��I\1�áP��êK��O\1�áQ��îK��T\1�áE��óK��X\1�á¼��øK��]\1�áÀ��üK��b\1�á��L��g\1�á��L��m\1�áÁ��
L��r\1�áÄ��L��v\1�áÅ��L��{\1�á½��L��€\1�á¥��L��„\1�á¡��#L��ˆ\1�á��)L��Ž\1�ái��/L��”\1�áe��5L��š\1�áY��:L��Ÿ\1�áU��?L��¤\1�áQ��GL��¬\1�áI��ML��²\1�á0��SL��¸\1�áH��YL��¾\1�á4��_L��Å\1�áL��dL��Ê\1�á8��jL��Ï\1�á���pL��Ö\1�á4��vL��Û\1�áP��{L��à\1�áø���‚L��ç\1�áü���L��ö\1�áý���šL��ÿ\1�áù���ŸL��]1�á8��¥L��
-]1�áT��«L��]1�áX��±L��]1�á ���·L��]1�á¡���¼L��"]1�á\��ÂL��']1�áÈ���ÇL��,]1�áÉ���ÎL��3]1�á]��ÒL��7]1�á`��ÙL��?]1�á ���àL��E]1�á¡���äL��I]1�ád��êL��O]1�á¨���ñL��V]1�á©���øL��]]1�áe��üL��a]1�áh��M��g]1�ái��M��l]1�ál��M��q]1�á°���M��x]1�á±���M��]1�á°���M��„]1�á±���$M��‰]1�ám��(M��]1�áp��8M��]1�áq��zM��à]1�át��‚M��ç]1�á��ˆM��í]1�á��M��ò]1�á��“M��ø]1�á��œM��^1�áu��¡M��^1�áa��¥M��
-^1�áx��«M��^1�áy��´M��^1�áY��¸M��^1�áU��½M��"^1�á9��ÂM��'^1�áQ��ÇM��,^1�á5��ÌM��1^1�á��ÑM��6^1�á9��ÕM��:^1�áM��ÙM��?^1�á5��ÞM��C^1�áI��âM��G^1�á1��æM��K^1�á��ëM��P^1�á9��ïM��T^1�á5��ôM��Y^1�áE��ùM��^^1�á1��þM��c^1�áA��N��h^1�á��N��m^1�á9��N��r^1�á5��N��v^1�á1��N��z^1�á��N��^1�áå���N��„^1�áÍ���&N��‹^1�á¹���,N��‘^1�áµ���2N��—^1�á���8N��^1�á}��^N��Ã^1�áÄ��mN��Ó^1�áÅ��zN��ß^1�áÜ��…N��ë^1�áÝ��‹N��ð^1�áä��šN��ÿ^1�áå��¦N��_1�á|��®N��_1�ç���=�¦Ã2�ç���*=�¹Ã2�ç���6=�ÅÃ2�ç ���==�ÌÃ2�ç$���D=�ÓÃ2�ç%���J=�ÙÃ2�ç!���O=�ÞÃ2�ç���U=�ãÃ2�ç���Y=�èÃ2�ç(���a=�ðÃ2�ç,���h=�÷Ã2�ç0���n=�ýÃ2�ç1���t=�Ä2�ç4���y=�Ä2�ç5���=�Ä2�ç-���…=�Ä2�ç8���=�Ä2�ç9���–=�%Ä2�ç)���›=�*Ä2�ç<���¥=�4Ä2�ç$���¬=�:Ä2�ç%���°=�?Ä2�ç=���¶=�EÄ2�çL���¼=�KÄ2�çP���Ä=�SÄ2�çT���É=�XÄ2�çX���Ï=�^Ä2�ç\���Ö=�eÄ2�ç]���Ü=�jÄ2�ç`���â=�qÄ2�çd���è=�wÄ2�çh���î=�}Ä2�çl���ó=�‚Ä2�ç$���ø=�‡Ä2�ç%���û=�ŠÄ2�çm���>�Ä2�çi���>�•Ä2�çe���>�šÄ2�ça���>�žÄ2�çY���>�¢Ä2�çp���>�§Ä2�çq���>�«Ä2�çU��� >�¯Ä2�çt���%>�´Ä2�çu���,>�ºÄ2�çx���:>�ÉÄ2�çy���¼C�MÊ2�çQ���ËC�ZÊ2�çM���ÑC�`Ê2�ç���ØC�fÊ2�á}�� O��Ÿ5�áÄ��EO��Á5�áÅ��UO��Ð5�áØ��iO��ä5�áÙ��qO��ì5�á��wO��ò5�á„��ƒO��þ5�á��ŠO��5�á��£O��5�á
��­O��(5�á��²O��-5�á��ºO��55�á��¿O��:5�á
��ÃO��>5�á��ÈO��C5�á��ÎO��I5�á��ÕO��P5�á��ÚO��U5�á	��ßO��Z5�á…��ãO��^5�á˜��ñO��l5�á™��üO��w5�áœ��P��}5�á��P��Œ5�á€��P��‘5�á|��"P��5�á}��7P��²5�áÄ��AP��½5�áÅ��JP��Å5�áà��TP��Ï5�áá��YP��Ô5�áä��dP��ß5�áå��nP��é5�á|��vP��ñ5�<��­Õ�ú:5�< ��ÀÕ�;5�<!��ÏÕ�;5�<��ÕÕ�;5�<��ü�a5�< ��&ü�Ÿa5�<!��4ü�­a5�<��<ü�´a5�<$��ìý�fc5�<(��þ�”c5�<)��.þ�¦c5�<,��Òþ�Kd5�<���äþ�\d5�<���ìþ�ed5�<0��óþ�kd5�<,���úþ�sd5�<Œ���ÿ�yd5�<��ÿ�ˆd5�<‘��ÿ�d5�<��ÿ�—d5�<‘��#ÿ�›d5�<��)ÿ�¢d5�<‘��-ÿ�¦d5�<��3ÿ�¬d5�<‘��7ÿ�°d5�<��=ÿ�¶d5�<‘��Aÿ�ºd5�<��Gÿ�Àd5�<‘��Kÿ�Äd5�<��Qÿ�Êd5�<‘��Uÿ�Îd5�<��[ÿ�Ôd5�<‘��_ÿ�Ød5�<��eÿ�Þd5�<‘��iÿ�âd5�<��oÿ�çd5�<‘��sÿ�ëd5�<��xÿ�ñd5�<4���|ÿ�õd5�<5���‚ÿ�ûd5�<-���†ÿ�þd5�<4��ÿ�e5�<8��ÿ�e5�<$���£ÿ�e5�<%���§ÿ� e5�<9��­ÿ�%e5�<5��±ÿ�)e5�<1��´ÿ�-e5�<-��¹ÿ�1e5�<<��¾ÿ�7e5�<@��Åÿ�>e5�<D��Íÿ�Fe5�<H��Òÿ�Ke5�<$���×ÿ�Oe5�<%���Ûÿ�Se5�<L��âÿ�[e5�<$���èÿ�ae5�<%���ìÿ�de5�<P��òÿ�je5�<T��ùÿ�re5�<X��þÿ�ve5�<$�����{e5�<%�����~e5�<Y��	��e5�<U����„e5�<\����‰e5�<]����e5�<Q����e5�<M����•e5�<I��!��™e5�<E��$��œe5�<`��+��£e5�<a��0��©e5�<d��5��­e5�<e��:��³e5�<`��?��·e5�<a��B��ºe5�<h��F��¾e5�<i��J��Âe5�<l��M��Æe5�<m��R��Ëe5�<p��Z��Òe5�<t��_��×e5�<x��h��àe5�<y��n��æe5�<u��r��êe5�<q��v��îe5�<|��|��õe5�<}����ùe5�<€��†��ÿe5�<„��Œ��f5�<ˆ��’��
-f5�<Œ��–��f5�<��›��f5�<$��� ��f5�<%���£��f5�<‘��«��$f5�<��®��'f5�<‰��²��*f5�<…��µ��-f5�<��¸��0f5�<”��¼��5f5�<•��Â��:f5�<˜��Æ��>f5�<œ��Ë��Cf5�< ��Ð��Hf5�<¡��Ø��Qf5�<��Û��Tf5�<™��ß��Wf5�<¤��ä��\f5�<¥��é��af5�<¨��í��ef5�<©��ñ��jf5�<d��ö��nf5�<e��ù��qf5�<ˆ��ý��uf5�<,����zf5�<Œ���~f5�<��
-�‚f5�<4���
�†f5�<5����‹f5�<-����Žf5�<¬���”f5�<Œ��$�œf5�<��'�Ÿf5�<Œ��+�£f5�<��.�¦f5�<��6�®f5�<‘��:�³f5�<��@�¸f5�<‘��D�½f5�<��J�Âf5�<‘��N�Æf5�<��S�Ìf5�<‘��W�Ðf5�<��]�Õf5�<‘��a�Ùf5�<��f�Þf5�<‘��j�âf5�<��o�èf5�<‘��s�ìf5�<��x�ñf5�<‘��|�õf5�<��‚�úf5�<‘��†�þf5�<��‹�g5�<‘���g5�<��•�
g5�<‘��™�g5�<��ž�g5�<‘��¢�g5�<��§� g5�<‘��«�$g5�<��±�)g5�<‘��´�-g5�<��º�2g5�<‘��¾�6g5�<��Ã�<g5�<‘��Ç�?g5�<��Í�Eg5�<‘��Ñ�Ig5�<��Ö�Ng5�<‘��Ú�Rg5�<��ß�Xg5�<‘��ã�\g5�<��è�ag5�<‘��ì�eg5�<­��ð�ig5�<‰��ô�lg5�<d��ø�pg5�<e��û�tg5�<(�����xg5�<,����|g5�<Œ���€g5�<���ƒg5�<4����‡g5�<5����‹g5�<-����Žg5�<¬���“g5�<Œ���˜g5�<��#�›g5�<Œ��&�Ÿg5�<��*�¢g5�<��/�¨g5�<‘��3�¬g5�<��9�±g5�<‘��=�µg5�<��B�»g5�<‘��F�¿g5�<��L�Äg5�<‘��O�Èg5�<��U�Íg5�<‘��Y�Ñg5�<��^�Ög5�<‘��b�Úg5�<��g�àg5�<‘��k�äg5�<��q�ég5�<‘��u�íg5�<��z�óg5�<‘��~�÷g5�<��ƒ�üg5�<‘��‡��h5�<���h5�<‘��‘�	h5�<��–�h5�<‘��š�h5�<��Ÿ�h5�<‘��£�h5�<��¨�!h5�<‘��¬�%h5�<��²�*h5�<‘��¶�.h5�<��»�4h5�<‘��¿�7h5�<��Å�=h5�<‘��É�Ah5�<��Î�Fh5�<‘��Ò�Jh5�<��×�Ph5�<‘��Û�Th5�<��á�Yh5�<‘��ä�]h5�<­��è�ah5�<)���ì�eh5�<8���ð�ih5�<9���õ�mh5�<”��ù�rh5�<•��ý�uh5�<°���yh5�<´���…h5�<µ���Œh5�<±���h5�<A���•h5�<¸��!�šh5�<¼��,�¤h5�<À��3�«h5�<$���9�²h5�<%���=�µh5�<Á��@�¸h5�<Ä��G�¿h5�<È��M�Åh5�<É��Q�Êh5�<Ì��V�Îh5�<Ð��œ�Ci5�<Ô��¨�Oi5�<Ø��µ�[i5�<Ü��½�di5�<à��Ã�ji5�<¸��Ê�pi5�<x��×�}i5�<y��á�‡i5�<¼��æ�i5�<½��ê�‘i5�<À��ï�•i5�<Á��ô�ši5�<Ä��ø�ži5�<Å��û�¢i5�<¹���§i5�<á���¬i5�<ä��
-�±i5�<å���¶i5�<è���¿i5�<é��b�	j5�<Ý��h�j5�<Ù��k�j5�<Õ��o�j5�<ì��v�j5�<ð��|�#j5�<ô��ƒ�)j5�<ø��‰�0j5�<ü��“�9j5�<ý��˜�>j5�<���œ�wj5�<˜���â�‰j5�<™���è�j5�<��ì�“j5�<ù��ð�—j5�<��õ�œj5�<��û�¢j5�<õ��ÿ�¥j5�<ñ���©j5�<í���¬j5�<Ñ��	�°j5�<Í��
�³j5�<`���»j5�<a���¿j5�<h���Ãj5�<i��!�Çj5�<Å��%�Ëj5�<½��)�Ðj5�<¹��-�Ôj5�<��3�Ùj5�<��:�àj5�<��C�êj5�<��J�ðj5�<��O�õj5�<ü��S�új5�<ý��X�þj5�<��[�k5�<
��_�k5�<	��b�	k5�<��f�
k5�<��k�k5�<=��n�k5�<��v�k5�< ��|�#k5�<$��ƒ�)k5�<(���4k5�<,��¡�Hk5�<$���¨�Nk5�<%���«�Rk5�<0��³�Yk5�<4��¾�dk5�<5��Õ�|k5�<1��Û�k5�<-��Þ�…k5�<8��æ�k5�<<��ð�–k5�<@��õ�›k5�<D��ü�¢k5�<$����¨k5�<%����¬k5�<H���¶k5�<$����¼k5�<%����¿k5�<I���Æk5�<L��$�Ëk5�<M��+�Ñk5�<P��1�Øk5�<T��6�Ýk5�<U��>�äk5�<X��D�ëk5�<Y��M�ók5�<Q��P�÷k5�<E��T�úk5�<A��W�þk5�<=��\�l5�<\��c�
-l5�<`��i�l5�<a��m�l5�<���r�l5�<���y�l5�<d��}�$l5�<Œ��ƒ�*l5�<��ˆ�.l5�<h��Œ�3l5�<i��’�8l5�<l��›�Al5�<m��©�Pl5�<°���°�Vl5�<±���µ�\l5�<p��¾�el5�<q��Æ�ll5�<t��Ë�ql5�<u��Ð�vl5�<e��Ø�~l5�<]��Û�l5�<9��ß�†l5�<x��å�Œl5�<y��î�•l5�<|��ó�™l5�<€��ú� l5�<`��þ�¥l5�<a���©l5�<d���¬l5�<Œ��
-�±l5�<���µl5�<h���¸l5�<¨����¾l5�<©����Ãl5�<i��!�Çl5�<e��'�Íl5�<��*�Ñl5�<}��-�Ôl5�<„��1�Øl5�<…��7�Ýl5�<|��:�ál5�<€��>�ål5�<`��B�él5�<a��F�ìl5�<d��J�ðl5�<Œ��N�ôl5�<��Q�øl5�<h��U�ül5�<¨���Y��m5�<©���]�m5�<i��a�m5�<°���f�
m5�<±���l�m5�<p��u�m5�<q��{�"m5�<e���'m5�<��„�+m5�<}��‡�.m5�<ˆ��Œ�3m5�<Œ��°�Wm5�<��À�fm5�<‘��Æ�lm5�<��É�pm5�<”���¶m5�<˜���¾m5�<œ��"�Èm5�<��&�Ím5�<™��*�Ðm5�< ��.�Ôm5�<¤��3�Úm5�<¥��9�ßm5�<¨��=�äm5�<¬��B�ém5�<­��I�ðm5�<©��L�óm5�<°��V�üm5�<´��]�n5�<µ��c�
-n5�<´��g�
n5�<µ��l�n5�<¸��s�n5�<¼��€�'n5�<½��¥�Ln5�<¹��©�Pn5�<À��±�Wn5�<Ä��º�`n5�<Å��À�fn5�<Á��Ä�jn5�<È��É�on5�<Ì��Î�tn5�<Ð��Ú�€n5�<Ñ��	�¹n5�<Í��	�¾n5�<Ô��	�Ãn5�<À��"	�Èn5�<Ä��(	�În5�<Å��,	�Ón5�<Á��0	�×n5�<Õ��4	�Ún5�<Ì��8	�Þn5�<Ð��=	�än5�<Ñ��B	�èn5�<Í��E	�ìn5�<À��I	�ðn5�<Ä��O	�õn5�<Å��S	�ún5�<Á��W	�ýn5�<Ì��[	�o5�<Ð��`	�o5�<Ñ��d	�o5�<Í��h	�o5�<Ì��l	�o5�<Ð��q	�o5�<Ñ��u	�o5�<Í��y	� o5�<Ø��}	�$o5�<Ì��ƒ	�*o5�<Ð��‰	�/o5�<Ñ��	�4o5�<Í��‘	�7o5�<Ù��”	�;o5�<À��˜	�?o5�<Ä��	�Do5�<Å��¢	�Ho5�<Á��¥	�Lo5�<À��ª	�Po5�<Ä��¯	�Uo5�<Å��³	�Zo5�<Á��·	�]o5�<À��»	�bo5�<Ä��Â	�io5�<Å��Ç	�no5�<Á��Ë	�ro5�<À��Ð	�vo5�<Ä��Õ	�{o5�<Å��Ù	�€o5�<Á��Ý	�ƒo5�<À��á	�‡o5�<Ä��æ	�o5�<Å��ê	�‘o5�<Á��î	�•o5�<Ü��ò	�™o5�<à��û	�¡o5�<ä��
-�§o5�<è��
-�¯o5�<é��
-�µo5�<å��
-�¹o5�<ì��
-�¾o5�<ð��
-�Åo5�<ñ��#
-�Éo5�<ô��'
-�Îo5�<ø��/
-�Õo5�<ù��5
-�Ûo5�<õ��8
-�ßo5�<À��<
-�ão5�<Ä��B
-�èo5�<Å��F
-�ío5�<Á��J
-�ðo5�<À��N
-�ôo5�<Ä��S
-�ùo5�<Å��W
-�þo5�<Á��[
-�p5�<ô��^
-�p5�<ø��c
-�
-p5�<ù��h
-�p5�<õ��k
-�p5�<ü��p
-�p5�<ð��v
-�p5�<ñ��y
-� p5�<À��}
-�#p5�<Ä��‚
-�)p5�<Å��‡
-�-p5�<Á��Š
-�1p5�<���
-�5p5�<��•
-�;p5�<Ì��™
-�?p5�<Ð��Ÿ
-�Ep5�<Ñ��®
-�Up5�<Í��²
-�Yp5�<��·
-�]p5�<��¼
-�bp5�<��-�gp5�<À��Ç
-�np5�<Ä��Î
-�tp5�<Å��Ó
-�yp5�<Á��×
-�}p5�<Ì��Û
-�p5�<Ð��à
-�‡p5�<Ñ��é
-�p5�<Í��í
-�”p5�<	��ñ
-�—p5�<���õ
-�›p5�<��ù
-�Ÿp5�<Ì��ý
-�£p5�<Ð���©p5�<Ñ��
-�±p5�<Í���µp5�<���¸p5�<���¼p5�<���Àp5�<À���Æp5�<Ä��%�Ëp5�<Å��)�Ðp5�<Á��-�Ôp5�<��2�Ùp5�<
��7�Þp5�<À��;�âp5�<Ä��A�çp5�<Å��E�ìp5�<Á��I�ïp5�<	��L�óp5�<���P�÷p5�<��T�úp5�<Ì��X�þp5�<Ð��]�q5�<Ñ��j�q5�<Í��n�q5�<��r�q5�<��v�q5�<��y� q5�<À��}�$q5�<Ä��ƒ�*q5�<Å��ˆ�.q5�<Á��Œ�2q5�<Ì���6q5�<Ð��•�;q5�<Ñ���Dq5�<Í��¡�Gq5�<	��¤�Kq5�<ý��¨�Nq5�<ô��¬�Rq5�<ø��±�Xq5�<ù��¶�]q5�<õ��º�`q5�<��¾�dq5�<��Ç�nq5�<��Î�tq5�<��Ñ�xq5�<À��Ö�|q5�<Ä��Û�‚q5�<Å��à�†q5�<Á��ã�‹q5�<��é�q5�<��ï�•q5�<��ó�šq5�<��÷�žq5�<í��û�¡q5�<����¦q5�<���®q5�<���µq5�<���¹q5�<á���¼q5�<Ý���Àq5�<É���Äq5�<Ì��"�Éq5�<Ð��(�Ïq5�<Ñ��-�Ôq5�<Í��1�×q5�<À��5�Ûq5�<Ä��:�àq5�<Å��>�åq5�<Á��B�éq5�<À��F�ìq5�<Ä��K�ñq5�<Å��O�öq5�<Á��S�ùq5�< ��d�r5�<$��n�r5�<%��r�r5�<(��z�!r5�<)��Ó�‹s5�<!��Ü�“s5�<,��è� s5�<0��ð�¨s5�<4��ö�®s5�<8��{
�3t5�<9��ƒ
�;t5�<5��‡
�?t5�<1��‹
�Ct5�<-��
�Gt5�<<��•
�Mt5�<4��š
�Rt5�<8�� 
�Xt5�<9��¤
�\t5�<5��¨
�`t5�<@��³
�kt5�<D��½
�ut5�<H��Ä
�|t5�<$���Ê
�‚t5�<%���Í
�…t5�<I��Ñ
�ˆt5�<E��Ô
�Œt5�<A��Ú
�‘t5�<=��Ý
�•t5�<L��á
�™t5�<P��æ
�žt5�<T��ï
�§t5�<U��÷
�¯t5�<X��ü
�´t5�<Y���ºt5�<Q���½t5�<M���Ãt5�<L���Çt5�<P���Êt5�<T���Ñt5�<U��!�Ùt5�<X��&�Þt5�<Y��*�ãt5�<Q��/�çt5�<M��4�ìt5�<±��8�ðt5�<¡��<�ôt5�<•��A�øt5�<à��H�ÿt5�<á��K�u5�<‰��N�u5�<\��W�u5�<`��\�u5�<$���a�u5�<%���d�u5�<a��k�#u5�<]��o�&u5�<d��t�,u5�<h��y�1u5�<l��~�6u5�<m��„�<u5�<p��Š�Bu5�<t��’�Ju5�<u��™�Pu5�<q��œ�Tu5�<x��¦�^u5�<y��­�eu5�<i��±�iu5�<e��´�lu5�<|��¹�qu5�<€��¿�wu5�<„��Ã�{u5�<$���È�€u5�<%���Ë�ƒu5�<…��Ò�Šu5�<��Õ�u5�<d��Ù�‘u5�<h��Ý�•u5�<l��á�™u5�<m��ä�œu5�<x��ë�£u5�<y��ð�¨u5�<i��ô�¬u5�<e��÷�¯u5�<ˆ��ý�´u5�<d���»u5�<h���¿u5�<l���Ãu5�<m���Æu5�<x���Íu5�<y���Ñu5�<i���Õu5�<e��!�Øu5�<d��$�Üu5�<h��(�àu5�<l��-�åu5�<m��0�èu5�<x��6�îu5�<y��;�óu5�<i��>�öu5�<e��B�úu5�<Œ��I�v5�<��M�v5�<‘��S�v5�<��V�v5�<d��Z�v5�<h��]�v5�<l��b�v5�<m��e�v5�<x��k�#v5�<y��p�(v5�<i��s�+v5�<e��w�/v5�<‰��{�3v5�<d���7v5�<h��‚�:v5�<l��†�>v5�<m��Š�Av5�<x���Hv5�<y��”�Lv5�<i��˜�Pv5�<e��›�Sv5�<”�� �Xv5�<˜��¨�`v5�<œ��²�jv5�<��¾�vv5�<™��Â�zv5�<•��Æ�~v5�<}��É�v5�<d��Í�†v5�<h��Ñ�‰v5�<l��Õ�v5�<m��Ù�‘v5�<p��Þ�–v5�<t��å�v5�<u��ô�¬v5�<q��ø�°v5�<x��þ�¶v5�<y���»v5�<i���¿v5�<e��
-�Âv5�<”���Æv5�<˜���Êv5�<œ���Ðv5�<���Öv5�<™��"�Úv5�<•��%�Ýv5�< ��*�âv5�<¤��2�êv5�<¨��9�ñv5�<$���@�øv5�<%���C�ûv5�<¬��H��w5�<­��N�w5�<°��S�w5�<´��[�w5�<µ��k�#w5�<±��p�(w5�<©��s�+w5�<¥��w�/w5�<¡��z�2w5�<*���7w5�<¸��†�>w5�<¼��Œ�Dw5�<À��‘�~w5�<$���Ì�„w5�<%���Ð�ˆw5�<¬��Ô�Œw5�<­��Ø�w5�<°��Ý�•w5�<´��ä�œw5�<µ��ï�§w5�<±��ó�«w5�<Á��÷�¯w5�<½��ú�²w5�<¹��þ�¶w5�<&���ºw5�<Ä��
-�Âw5�<\���Éw5�<`���Íw5�<$����Ñw5�<%����Ôw5�<a��!�Ùw5�<]��$�Üw5�<d��(�àw5�<h��,�äw5�<l��0�èw5�<m��3�ëw5�<p��8�ðw5�<t��>�öw5�<u��C�ûw5�<q��G�ÿw5�<x��N�x5�<y��S�x5�<i��W�x5�<e��[�x5�<Œ��_�x5�<��b�x5�<‘��g�x5�<��j�"x5�<È��n�&x5�<Ì��x�0x5�<Í��€�8x5�<Ì��„�<x5�<Í��ˆ�?x5�<Ð���Ex5�<Ô��“�Kx5�<$���—�Ox5�<%���š�Rx5�<Õ��ž�Vx5�<Ø��£�[x5�<„��¨�`x5�<$���¬�dx5�<%���¯�gx5�<…��³�kx5�<Ù��¶�nx5�<Ñ��º�rx5�<Ü��Ù�‘x5�<à��ã�œx5�<ä��è� x5�<Ô��í�¥x5�<$���ñ�©x5�<%���ô�¬x5�<Õ��ø�°x5�<å��û�³x5�<á��þ�¶x5�<è���½x5�<ì��
-�Âx5�<$����Èx5�<%����Ìx5�<í���Ïx5�<é���Óx5�<ð��$�Üx5�<ñ��)�áx5�<ô��-�åx5�<ø��5�íx5�<ù��9�ñx5�<ü��?�÷x5�<���E�ýx5�<��O�y5�<��j�"y5�<��q�)y5�<	��w�/y5�<��}�5y5�<
��ƒ�;y5�<��ˆ�@y5�<(����Hy5�<,���•�My5�<Œ��™�Qy5�<���Uy5�<4���¡�Yy5�<5���¦�^y5�<-���ª�by5�<¬��±�iy5�<Œ��·�oy5�<��º�ry5�<Œ��¾�vy5�<��Á�yy5�<��É�y5�<‘��Î�†y5�<��Ô�Œy5�<‘��Ø�y5�<��Þ�–y5�<‘��â�šy5�<��è� y5�<‘��í�¥y5�<��ó�«y5�<‘��÷�¯y5�<��ý�µy5�<‘���¹y5�<���¿y5�<‘���Ãy5�<���Èy5�<‘���Ìy5�<���Òy5�<‘���Öy5�<��$�Üy5�<‘��(�ày5�<­��,�äy5�<)���/�çy5�<��5�íy5�<��>�öy5�<��L�z5�<��P�z5�<��S�z5�<��d�z5�< ��k�#z5�<$��q�)z5�<$���v�.z5�<%���z�2z5�<%��~�6z5�<!���9z5�<��ˆ�@z5�<(��“�Kz5�<,��š�Rz5�<$��� �Xz5�<%���£�[z5�<-��«�cz5�<0��²�jz5�<4��»�sz5�<8��À�xz5�<9��Ä�|z5�<<��È�€z5�<=��Ì�„z5�<@��Ñ�‰z5�<A��Ö�Žz5�<<��Ù�‘z5�<=��Ý�•z5�<D��á�™z5�<E��æ�žz5�<H��í�¥z5�<I���½z5�<5��
-�Âz5�<1��
�Åz5�<)���Éz5�<���Ìz5�<ý���Ðz5�<L��(�àz5�<P��.�æz5�<0��4�ìz5�<4��8�ðz5�<8��<�ôz5�<9��?�÷z5�<<��C�ûz5�<=��G�ÿz5�<@��J�{5�<A��N�{5�<<��Q�	{5�<=��U�
{5�<D��X�{5�<E��\�{5�<H��c�{5�<I��o�'{5�<5��s�+{5�<1��v�.{5�<Q��y�1{5�<M��}�6{5�<T��ƒ�:{5�<X��‰�A{5�<0���H{5�<4��”�L{5�<8��˜�P{5�<9��›�S{5�<<��Ÿ�W{5�<=��£�[{5�<@��¦�^{5�<A��ª�b{5�<<��­�e{5�<=��±�i{5�<D��µ�m{5�<E��¸�p{5�<H��¾�v{5�<I��É�{5�<5��Í�…{5�<1��Ð�ˆ{5�<Y��Ó�‹{5�<U��Ö�Ž{5�<õ��Ú�’{5�<Ý��Þ�–{5�<\��ã�›{5�<`��ë�£{5�<d��
-�ã{5�<h���é{5�<l���ñ{5�<m���÷{5�<i��!�û{5�<L��&�ÿ{5�<M��*�|5�<p��/�|5�<q��7�|5�<\��=�|5�<`��A�|5�<$���E�|5�<%���I�"|5�<a��N�'|5�<]��R�+|5�<d��V�/|5�<h��Z�3|5�<l��^�7|5�<m��b�;|5�<p��g�@|5�<t��o�H|5�<u��t�M|5�<q��x�Q|5�<x��‚�[|5�<y��‡�a|5�<i��‹�d|5�<e���h|5�<d��”�m|5�<h��˜�q|5�<l��œ�u|5�<m��Ÿ�x|5�<p��£�}|5�<t��«�„|5�<t��³�Œ|5�<u��¼�•|5�<u��¿�˜|5�<q��Ã�œ|5�<x��Ê�£|5�<y��Ï�¨|5�<i��Ò�¬|5�<e��Ö�¯|5�<d��Ú�³|5�<h��Ý�¶|5�<l��á�º|5�<m��å�¾|5�<x��ë�Ä|5�<y��ð�É|5�<i��ó�Ì|5�<e��÷�Ð|5�<”��û�Ô|5�<˜��ÿ�Ù|5�<œ���à|5�<���è|5�<™���ë|5�<•���ï|5�<e���ò|5�<x�� �ù|5�<|��'��}5�<€��.�}5�<l��2�}5�<m��6�}5�<„��:�}5�<ˆ��@�}5�<Œ��F�}5�<��J�#}5�<‰��N�'}5�<��R�+}5�<‘��U�/}5�<l��Y�2}5�<m��\�6}5�<”��a�:}5�<˜��g�@}5�<œ��m�G}5�<x��w�P}5�<y��{�T}5�<���X}5�<™��ƒ�\}5�<•��‡�`}5�<…��Š�c}5�<���f}5�<}��‘�j}5�<y��”�m}5�<x��™�r}5�<|��œ�v}5�<€�� �y}5�<l��¥�~}5�<m��©�‚}5�<„��­�‡}5�<ˆ��±�Š}5�<Œ��µ�Ž}5�<��¸�‘}5�<‰��¼�•}5�<��¿�˜}5�<‘��Â�œ}5�<l��Æ�Ÿ}5�<m��É�£}5�<”��Í�¦}5�<˜��Ñ�ª}5�<œ��Ö�°}5�<x��ß�¸}5�<y��ã�½}5�<��ç�À}5�<™��ë�Ä}5�<•��î�Ç}5�<…��ñ�Ê}5�<��õ�Î}5�<}��ø�Ñ}5�<y��û�Ô}5�< ��ÿ�Ø}5�<¤��
-�ã}5�<¥��p�J~5�<¡��y�R~5�<x���Y~5�<|��„�]~5�<€��ˆ�a~5�<l���g~5�<m��“�m~5�<„��™�s~5�<ˆ��Ÿ�y~5�<Œ��¤�}~5�<��§�€~5�<‰��ª�„~5�<��®�‡~5�<‘��±�Š~5�<l��µ�Ž~5�<m��¸�‘~5�<”��½�–~5�<˜��Â�›~5�<œ��Ç� ~5�<x��Ï�¨~5�<y��Ô�­~5�<��Ø�±~5�<™��Û�´~5�<•��ß�¸~5�<…��â�»~5�<��æ�¿~5�<}��ê�Ã~5�<y��í�Æ~5�<x��ñ�Ë~5�<|��õ�Î~5�<€��ù�Ò~5�<l��ü�Ö~5�<m����Ù~5�<„���Ý~5�<ˆ���á~5�<Œ���ä~5�<���è~5�<‰���ë~5�<���ï~5�<‘���ò~5�<l���ö~5�<m��!�ú~5�<”��%�þ~5�<˜��*�5�<œ��.�5�<x��5�5�<y��:�5�<��>�5�<™��A�5�<•��E�5�<…��H�!5�<��K�$5�<}��O�(5�<y��R�+5�<¨��W�05�<€��_�95�<„��d�=5�<$���i�B5�<%���l�E5�<…��t�M5�<��w�P5�<¬��|�U5�<­��€�Y5�<d��„�^5�<h��‰�c5�<l��Ž�g5�<m��‘�j5�<x��˜�r5�<y���v5�<i��¡�z5�<e��¤�}5�<Œ��¨�‚5�<��­�†5�<‘��²�‹5�<��µ�5�<„��º�“5�<…��¾�—5�<d��Â�›5�<h��Æ�Ÿ5�<l��É�¢5�<m��Ì�¦5�<x��Õ�®5�<y��Ú�³5�<i��Þ�·5�<e��á�º5�<°��å�¾5�<±��ê�Ã5�<´��ï�È5�<µ��ó�Ì5�<¸��ö�Ð5�<¹��û�Ô5�<Œ��ÿ�Ø5�<���Û5�<‘���à5�<��
-�ã5�<d��
�ç5�<h���ê5�<l���î5�<m���ñ5�<x���ø5�<y��#�ü5�<i��'��€5�<e��*�€5�<Œ��.�€5�<��2�€5�<‘��6�€5�<��9�€5�<¼��=�€5�<À��D�€5�<Ä��I�"€5�<h��S�,€5�<l��X�1€5�<m��\�5€5�<x��d�>€5�<y��i�B€5�<i��m�F€5�<Å��p�I€5�<Á��s�M€5�<½��w�P€5�<Œ��|�U€5�<��€�Z€5�<p��‡�`€5�<t��‘�k€5�<t��™�s€5�<u��Ÿ�x€5�<u��£�|€5�<q��§�€€5�<‘��«�„€5�<��¯�ˆ€5�<”��´�Ž€5�<˜��º�“€5�<œ��Â�›€5�<��Ì�¥€5�<™��Ð�©€5�<•��Ó�¬€5�<©��Ö�°€5�<x��Û�´€5�<|��á�º€5�<€��ç�À€5�<l��í�Æ€5�<m��ñ�Ë€5�<„��÷�Ѐ5�<ˆ��û�Õ€5�<Œ���Û€5�<���à€5�<‰���æ€5�<���ê€5�<‘���î€5�<l���ó€5�<m���ø€5�<”��%�þ€5�<˜��+�5�<œ��2�5�<x��:�5�<y��?�5�<��C�5�<™��G� 5�<•��J�#5�<…��M�'5�<��Q�*5�<}��T�-5�<y��W�05�<x��\�55�<|��`�:5�<€��e�>5�<l��i�C5�<m��n�G5�<„��s�L5�<ˆ��w�P5�<Œ��{�T5�<��~�W5�<‰���[5�<��…�^5�<‘��ˆ�a5�<l��Œ�e5�<m���i5�<”��•�n5�<˜��™�r5�<œ��ž�w5�<x��¥�5�<y��ª�„5�<��¯�ˆ5�<™��´�Ž5�<•��¹�“5�<…��¾�˜5�<��Ã�5�<}��È�¡5�<y��Ì�¥5�<x��Ñ�ª5�<|��Ô�­5�<€��Ø�±5�<l��Ü�µ5�<m��ß�¸5�<„��ã�¼5�<ˆ��æ�À5�<Œ��ê�Á5�<��ï�Ɂ5�<‰��ô�΁5�<��ú�Ӂ5�<‘��ý�ց5�<l���܁5�<m���á5�<”���æ5�<˜���ì5�<œ���ð5�<x���ø5�<y��#�ü5�<��'��‚5�<™��*�‚5�<•��.�‚5�<…��1�
-‚5�<��4�
‚5�<}��7�‚5�<y��;�‚5�<x��?�‚5�<|��C�‚5�<€��F�‚5�<l��J�#‚5�<m��M�&‚5�<„��Q�*‚5�<ˆ��U�.‚5�<Œ��X�1‚5�<��\�5‚5�<‰��_�8‚5�<��c�<‚5�<‘��f�?‚5�<l��i�B‚5�<m��m�G‚5�<”��r�K‚5�<˜��v�O‚5�<œ��z�S‚5�<x���Z‚5�<y��…�_‚5�<��‰�b‚5�<™���f‚5�<•���i‚5�<…��“�l‚5�<��—�q‚5�<}��›�u‚5�<y�� �z‚5�<¨��¥�‚5�<€��¬�…‚5�<„��°�‰‚5�<$���´�‚5�<%���·�‚5�<…��½�–‚5�<��À�™‚5�<¬��Ä�‚5�<­��È�¡‚5�<d��Ì�¥‚5�<h��Ð�©‚5�<l��Ó�­‚5�<m��×�°‚5�<x��Þ�·‚5�<y��â�»‚5�<i��æ�¿‚5�<e��é�Â5�<Œ��ï�É‚5�<��õ�΂5�<‘��ù�Ó‚5�<��ý�Ö‚5�<„���Ü‚5�<…���á‚5�<d���å‚5�<h���è‚5�<l���ì‚5�<m���ï‚5�<x���ö‚5�<y��!�ú‚5�<i��%�ÿ‚5�<e��*�ƒ5�<°��.�ƒ5�<±��2�ƒ5�<´��6�ƒ5�<µ��9�ƒ5�<¸��=�ƒ5�<¹��B�ƒ5�<Œ��F�ƒ5�<��I�#ƒ5�<‘��N�'ƒ5�<��Q�*ƒ5�<d��U�.ƒ5�<h��X�1ƒ5�<l��]�7ƒ5�<m��a�:ƒ5�<x��i�Bƒ5�<y��n�Gƒ5�<i��r�Kƒ5�<e��u�Nƒ5�<Œ��y�Rƒ5�<��|�Uƒ5�<‘���Zƒ5�<��„�]ƒ5�<¼��ˆ�bƒ5�<À���gƒ5�<Ä��‘�jƒ5�<h��—�pƒ5�<l��›�tƒ5�<m��ž�wƒ5�<x��¥�ƒ5�<y��«�„ƒ5�<i��¯�ˆƒ5�<Å��²�Œƒ5�<Á��·�ƒ5�<½��º�”ƒ5�<Œ��¾�—ƒ5�<��Â�›ƒ5�<‘��È�¡ƒ5�<��Ë�¥ƒ5�<”��Ï�©ƒ5�<˜��Ô�­ƒ5�<œ��Û�´ƒ5�<��ã�¼ƒ5�<™��ç�Àƒ5�<•��ê�Ã5�<©��î�ǃ5�<x��ò�˃5�<|��ö�σ5�<€��ú�Óƒ5�<l��þ�׃5�<m���Úƒ5�<„���Þƒ5�<ˆ���âƒ5�<Œ���åƒ5�<���éƒ5�<‰���ìƒ5�<���ðƒ5�<‘���óƒ5�<l���öƒ5�<m�� �úƒ5�<”��$�ýƒ5�<˜��)�„5�<œ��.�„5�<x��5�„5�<y��:�„5�<��>�„5�<™��A�„5�<•��E�„5�<…��H�!„5�<��K�$„5�<}��O�(„5�<y��R�+„5�<x��V�/„5�<|��Z�3„5�<€��]�6„5�<l��a�:„5�<m��d�>„5�<„��h�A„5�<ˆ��l�E„5�<Œ��o�I„5�<��s�L„5�<‰��­�†„5�<��³�Œ„5�<‘��¶�„5�<l��º�“„5�<m��¾�—„5�<”��Â�›„5�<˜��Ç� „5�<œ��Ì�¥„5�<x��Õ�®„5�<y��Ú�³„5�<��Þ�·„5�<™��â�»„5�<•��å�¾„5�<…��è�Á„5�<��ì�Å„5�<}��ï�È„5�<y��ó�Ì„5�<x��ø�Ñ„5�<|��ü�Õ„5�<€����Ù„5�<l���Ü„5�<m���à„5�<„��
-�ä„5�<ˆ���ç„5�<Œ���ë„5�<���ï„5�<‰���ò„5�<���ö„5�<‘�� �ù„5�<l��#�ý„5�<m��'��…5�<”��*�…5�<˜��.�…5�<œ��3�…5�<x��:�…5�<y��>�…5�<��B�…5�<™��F�…5�<•��I�"…5�<…��L�%…5�<��O�)…5�<}��S�,…5�<y��V�/…5�<x��Z�3…5�<|��^�7…5�<€��a�;…5�<l��e�>…5�<m��i�B…5�<„��m�F…5�<ˆ��p�J…5�<Œ��t�M…5�<��w�P…5�<‰��{�T…5�<��~�W…5�<‘���Z…5�<l��…�^…5�<m��ˆ�a…5�<”��Œ�e…5�<˜���i…5�<œ��”�m…5�<x��›�t…5�<y��Ÿ�x…5�<��£�|…5�<™��¦�…5�<•��ª�ƒ…5�<…��­�†…5�<��°�‰…5�<}��³�Œ…5�<y��·�…5�<¨��»�”…5�<€��Á�š…5�<„��Å�Ÿ…5�<$���Ê�£…5�<%���Í�§…5�<…��Õ�®…5�<��Ø�±…5�<¬��Ü�¶…5�<­��à�º…5�<d��ä�½…5�<h��é�Â…5�<l��í�Æ…5�<m��ñ�Ê…5�<x��ø�Ñ…5�<y��ý�Ö…5�<i���Ú…5�<e���Ý…5�<Œ���á…5�<���å…5�<‘���ê…5�<���í…5�<„���ñ…5�<…���õ…5�<d��!�ú…5�<h��$�ý…5�<l��(�†5�<m��+�†5�<x��2�†5�<y��8�†5�<i��>�†5�<e��C�†5�<°��H�"†5�<±��L�%†5�<´��P�)†5�<µ��T�-†5�<¸��X�1†5�<¹��[�4†5�<Œ��_�8†5�<��b�;†5�<‘��f�@†5�<��j�C†5�<d��m�F†5�<h��q�J†5�<l��t�M†5�<m��w�Q†5�<x��~�W†5�<y��ƒ�\†5�<i��†�`†5�<e��Š�c†5�<Œ��Ž�g†5�<��‘�j†5�<‘��•�o†5�<��™�r†5�<¼��œ�u†5�<À��¡�z†5�<Ä��¤�}†5�<¸��«�„†5�<x��³�†5�<y��¼�•†5�<¼��Á�š†5�<½��Å�ž†5�<À��É�£†5�<Á��Ï�¨†5�<Ä��Ò�¬†5�<Å��×�°†5�<¹��Ü�µ†5�<È��æ�À†5�<\���ó�̆5�<]���÷�ц5�<t��ý�Ö†5�<u�� �܆5�<É�� �à†5�<Å�� �ä†5�<Á�� �ç†5�<½�� �ê†5�<Œ�� �ï†5�<�� �ò†5�<‘�� �ö†5�<��  �ú†5�<”��$ �þ†5�<˜��) �‡5�<œ��1 �
-‡5�<��9 �‡5�<™��= �‡5�<•��@ �‡5�<©��D �‡5�<x��I �"‡5�<|��M �&‡5�<€��Q �*‡5�<l��U �.‡5�<m��X �1‡5�<„��] �6‡5�<ˆ��` �:‡5�<Œ��e �>‡5�<��h �B‡5�<‰��l �E‡5�<��o �I‡5�<‘��s �L‡5�<l��v �P‡5�<m��z �S‡5�<”��} �V‡5�<˜��‚ �[‡5�<Ì��† �_‡5�<Ð�� �h‡5�<\���• �n‡5�<]���™ �r‡5�<Ô��ž �w‡5�<È��¤ �}‡5�<\���¨ �‡5�<]���« �…‡5�<p��° �‰‡5�<t��¹ �’‡5�<u��½ �–‡5�<q��Á �›‡5�<t��Æ �Ÿ‡5�<t��Î �§‡5�<u��Ô �­‡5�<u��Ø �±‡5�<É��Û �´‡5�<Õ��ß �¸‡5�<Ñ��â �»‡5�<Ø��æ �¿‡5�<Ù��ì �Ň5�<Í��ï �ɇ5�<œ��ô �͇5�<x��û �Ô‡5�<y���!�Ù‡5�<��!�܇5�<™��!�à‡5�<•��
-!�ã‡5�<…��!�ç‡5�<��!�ë‡5�<}��!�î‡5�<y��!�ò‡5�<x��!�ø‡5�<|��"!�û‡5�<€��&!�ÿ‡5�<l��*!�ˆ5�<m��-!�ˆ5�<„��1!�
-ˆ5�<ˆ��5!�ˆ5�<Œ��9!�ˆ5�<��=!�ˆ5�<‰��@!�ˆ5�<��C!�ˆ5�<‘��F!� ˆ5�<l��J!�#ˆ5�<m��M!�&ˆ5�<”��Q!�*ˆ5�<˜��U!�.ˆ5�<œ��Z!�3ˆ5�<x��`!�9ˆ5�<y��d!�>ˆ5�<��h!�Aˆ5�<™��l!�Eˆ5�<•��o!�Hˆ5�<…��r!�Kˆ5�<��u!�Nˆ5�<}��y!�Rˆ5�<y��|!�Uˆ5�<x��€!�Yˆ5�<|��„!�]ˆ5�<€��‡!�`ˆ5�<l��‹!�dˆ5�<m��Ž!�gˆ5�<„��’!�kˆ5�<ˆ��–!�oˆ5�<Œ��™!�rˆ5�<��!�vˆ5�<‰�� !�yˆ5�<��£!�}ˆ5�<‘��¦!�€ˆ5�<l��ª!�ƒˆ5�<m��­!�‡ˆ5�<”��±!�Šˆ5�<˜��µ!�Žˆ5�<œ��¹!�’ˆ5�<x��À!�™ˆ5�<y��Ä!�žˆ5�<��È!�¡ˆ5�<™��Ë!�¥ˆ5�<•��Ï!�¨ˆ5�<…��Ò!�«ˆ5�<��Ö!�¯ˆ5�<}��Ù!�²ˆ5�<y��Ü!�µˆ5�<x��à!�¹ˆ5�<|��ä!�½ˆ5�<€��è!�Áˆ5�<l��ë!�Ĉ5�<m��ï!�Ȉ5�<„��ò!�̈5�<ˆ��ö!�ψ5�<Œ��ú!�Óˆ5�<��ý!�Öˆ5�<‰���"�Ùˆ5�<��"�݈5�<‘��"�àˆ5�<l��
-"�ãˆ5�<m��"�çˆ5�<”��"�êˆ5�<˜��"�îˆ5�<œ��"�óˆ5�<x�� "�ùˆ5�<y��$"�ýˆ5�<��("�‰5�<™��,"�‰5�<•��/"�‰5�<…��2"�‰5�<��5"�‰5�<}��9"�‰5�<y��<"�‰5�<¨��A"�‰5�<€��G"� ‰5�<„��K"�$‰5�<$���O"�(‰5�<%���R"�+‰5�<…��W"�0‰5�<��Z"�3‰5�<¬��^"�7‰5�<­��b"�<‰5�<d��f"�@‰5�<h��k"�D‰5�<l��n"�G‰5�<m��r"�K‰5�<x��y"�R‰5�<y��}"�V‰5�<i��"�Z‰5�<e��„"�]‰5�<Œ��ˆ"�a‰5�<��Œ"�e‰5�<‘��‘"�j‰5�<��”"�m‰5�<„��˜"�q‰5�<…��œ"�u‰5�<d�� "�y‰5�<h��£"�|‰5�<l��§"�€‰5�<m��ª"�ƒ‰5�<x��±"�Š‰5�<y��µ"�Ž‰5�<i��¹"�’‰5�<e��¼"�•‰5�<°��À"�™‰5�<±��Ä"�‰5�<´��Ç"�¡‰5�<µ��Ë"�¤‰5�<¸��Ï"�¨‰5�<¹��Ò"�«‰5�<Œ��Ö"�¯‰5�<��Ù"�²‰5�<‘��Ý"�¶‰5�<��à"�¹‰5�<d��ä"�½‰5�<h��è"�Á‰5�<l��ë"�ĉ5�<m��ï"�ȉ5�<x��õ"�Ή5�<y��ù"�Ò‰5�<i��ý"�Ö‰5�<e���#�Ù‰5�<Œ��#�݉5�<��#�á‰5�<‘��#�å‰5�<��#�è‰5�<¼��#�ì‰5�<À��#�ð‰5�<Ä��#�ó‰5�<¸�� #�ù‰5�<x��'#��Š5�<y��.#�Š5�<¼��3#�Š5�<½��6#�Š5�<À��:#�Š5�<Á��>#�Š5�<Ä��B#�Š5�<Å��F#�Š5�<¹��J#�$Š5�<È��S#�-Š5�<\���W#�1Š5�<]���[#�4Š5�<t��_#�9Š5�<u��e#�>Š5�<É��i#�BŠ5�<Å��l#�EŠ5�<Á��o#�HŠ5�<½��r#�LŠ5�<Œ��v#�OŠ5�<��z#�SŠ5�<‘��~#�WŠ5�<��#�ZŠ5�<”��…#�^Š5�<˜��‰#�bŠ5�<œ��#�iŠ5�<��—#�qŠ5�<™��›#�tŠ5�<•��Ÿ#�xŠ5�<©��¢#�{Š5�<x��¦#�Š5�<|��ª#�ƒŠ5�<€��­#�†Š5�<l��±#�ŠŠ5�<m��µ#�ŽŠ5�<„��¹#�’Š5�<ˆ��½#�–Š5�<Œ��Á#�šŠ5�<��Ä#�žŠ5�<‰��È#�¡Š5�<��Ë#�¥Š5�<‘��Î#�¨Š5�<l��Ò#�«Š5�<m��Õ#�®Š5�<”��Ù#�²Š5�<˜��Ý#�¶Š5�<œ��â#�»Š5�<x��é#�Š5�<y��í#�ÆŠ5�<��ñ#�ÊŠ5�<™��ô#�ÍŠ5�<•��ø#�ÑŠ5�<…��û#�ÔŠ5�<��þ#�׊5�<}��$�ÛŠ5�<y��$�ÞŠ5�<x��	$�âŠ5�<|��$�æŠ5�<€��$�éŠ5�<l��$�íŠ5�<m��$�ðŠ5�<„��$�ôŠ5�<ˆ��$�øŠ5�<Œ��"$�üŠ5�<��&$�ÿŠ5�<‰��)$�‹5�<��,$�‹5�<‘��0$�	‹5�<l��3$�‹5�<m��7$�‹5�<”��:$�‹5�<˜��>$�‹5�<œ��C$�‹5�<x��I$�"‹5�<y��N$�'‹5�<��Q$�*‹5�<™��U$�.‹5�<•��X$�1‹5�<…��[$�4‹5�<��^$�7‹5�<}��a$�;‹5�<y��e$�>‹5�<Ü��m$�F‹5�<à��}$�W‹5�<á��ƒ$�\‹5�<Ý��‡$�`‹5�<ä��Ž$�g‹5�<å��’$�k‹5�<Ì��—$�p‹5�<Í��›$�t‹5�<x��Ÿ$�x‹5�<|��£$�|‹5�<€��§$�€‹5�<l��«$�„‹5�<m��¯$�ˆ‹5�<„��³$�Œ‹5�<ˆ��·$�‹5�<Œ��»$�”‹5�<��¾$�—‹5�<‰��Â$�›‹5�<��Å$�ž‹5�<‘��È$�¡‹5�<l��Ì$�¥‹5�<m��Ï$�¨‹5�<”��Ó$�¬‹5�<˜��×$�°‹5�<œ��Ü$�µ‹5�<x��ä$�½‹5�<y��é$�‹5�<��í$�Æ‹5�<™��ñ$�Ê‹5�<•��ô$�Í‹5�<…��÷$�Ћ5�<��ú$�Ô‹5�<}��þ$�׋5�<y��%�Ú‹5�<x��%�ß‹5�<|��
-%�ã‹5�<€��
%�æ‹5�<l��%�ê‹5�<m��%�í‹5�<„��%�ñ‹5�<ˆ��%�õ‹5�<Œ��%�ø‹5�<��#%�ü‹5�<‰��&%�ÿ‹5�<��*%�Œ5�<‘��-%�Œ5�<l��0%�	Œ5�<m��4%�
Œ5�<”��7%�Œ5�<˜��;%�Œ5�<œ��@%�Œ5�<x��F%�Œ5�<y��J%�#Œ5�<��N%�'Œ5�<™��Q%�*Œ5�<•��U%�.Œ5�<…��X%�1Œ5�<��[%�4Œ5�<}��^%�7Œ5�<y��a%�;Œ5�<`��e%�?Œ5�<d��j%�CŒ5�<h��n%�GŒ5�<l��r%�KŒ5�<m��v%�OŒ5�<i��y%�RŒ5�<L��}%�VŒ5�<M��%�ZŒ5�<p��†%�_Œ5�<q��Š%�cŒ5�<\��%�hŒ5�<`��“%�mŒ5�<$���—%�pŒ5�<%���›%�tŒ5�<a��¡%�zŒ5�<]��¤%�}Œ5�<d��§%�Œ5�<h��¬%�…Œ5�<l��°%�‰Œ5�<m��³%�ŒŒ5�<p��¸%�‘Œ5�<t��¿%�™Œ5�<u��Ä%�Œ5�<q��È%�¡Œ5�<x��Ï%�©Œ5�<y��Ô%�­Œ5�<i��Ø%�±Œ5�<e��Û%�´Œ5�<d��ß%�¹Œ5�<h��ã%�¼Œ5�<l��ç%�ÀŒ5�<m��ê%�ÄŒ5�<p��ï%�ÈŒ5�<t��ö%�ÏŒ5�<t��þ%�׌5�<u��&�ÝŒ5�<u��&�àŒ5�<q��&�äŒ5�<x��&�êŒ5�<y��&�îŒ5�<i��&�òŒ5�<e��&�õŒ5�<d�� &�ùŒ5�<h��$&�ýŒ5�<l��'&�5�<m��+&�5�<p��/&�5�<t��5&�5�<t��<&�5�<u��@&�5�<u��D&�5�<q��H&�!5�<x��N&�'5�<y��S&�,5�<i��W&�05�<e��Z&�35�<”��^&�75�<˜��c&�<5�<œ��i&�B5�<��p&�I5�<™��t&�M5�<•��w&�Q5�<e��{&�T5�<x��€&�Y5�<|��„&�]5�<€��ˆ&�a5�<l��Œ&�e5�<m��&�h5�<„��”&�m5�<ˆ��˜&�q5�<Œ��›&�t5�<��Ÿ&�x5�<‰��¢&�{5�<��¦&�5�<‘��©&�‚5�<l��­&�†5�<m��°&�‰5�<”��´&�5�<˜��¹&�’5�<Ì��½&�–5�<Ð��Ã&�œ5�<\���Ç&� 5�<]���Ë&�¤5�<Ô��Ð&�©5�<È��Ô&�­5�<\���Ø&�±5�<]���Û&�´5�<p��à&�¹5�<t��ó&�̍5�<t��ú&�ԍ5�<u���'�ٍ5�<u��'�ݍ5�<q��'�á5�<t��'�å5�<t��'�ë5�<u��'�ð5�<u��'�ô5�<É��'�÷5�<Õ��"'�û5�<Ñ��%'�þ5�<Ø��)'�Ž5�<Ù��,'�Ž5�<Í��0'�	Ž5�<œ��4'�Ž5�<x��;'�Ž5�<y��@'�Ž5�<��D'�Ž5�<™��G'� Ž5�<•��K'�$Ž5�<…��O'�(Ž5�<��R'�+Ž5�<}��U'�.Ž5�<y��Y'�2Ž5�<x��]'�6Ž5�<|��a'�:Ž5�<€��d'�=Ž5�<l��h'�AŽ5�<m��k'�DŽ5�<„��o'�HŽ5�<ˆ��s'�LŽ5�<Œ��w'�PŽ5�<��z'�SŽ5�<‰��}'�VŽ5�<��'�[Ž5�<‘��…'�^Ž5�<l��ˆ'�aŽ5�<m��‹'�eŽ5�<”��'�hŽ5�<˜��“'�lŽ5�<œ��—'�qŽ5�<x��ž'�wŽ5�<y��¢'�|Ž5�<��¦'�Ž5�<™��ª'�ƒŽ5�<•��­'�†Ž5�<…��°'�‰Ž5�<��³'�ŒŽ5�<}��¶'�Ž5�<y��º'�“Ž5�< ��¾'�—Ž5�<¤��Å'�žŽ5�<¥��(�ߎ5�<¡��(�äŽ5�<è��(�éŽ5�<ì��(�ïŽ5�<„��(�õŽ5�<…�� (�ùŽ5�<„��$(�ýŽ5�<…��'(�5�<¬��,(�5�<Œ��1(�
-5�<��;(�5�<‘��@(�5�<��G(� 5�<‘��K(�$5�<��Q(�*5�<‘��U(�/5�<��\(�55�<‘��`(�95�<��f(�?5�<‘��j(�C5�<��p(�J5�<‘��u(�N5�<��{(�T5�<‘��(�X5�<��…(�^5�<‘��‰(�c5�<��(�i5�<‘��”(�m5�<��š(�s5�<‘��ž(�w5�<��¤(�}5�<‘��¨(�‚5�<��¯(�ˆ5�<‘��³(�Œ5�<��¹(�’5�<‘��½(�–5�<��Ã(�œ5�<‘��Ç(�¡5�<��Ì(�¥5�<Œ��Ð(�©5�<��Ö(�¯5�<‘��Ú(�³5�<��à(�¹5�<‘��ä(�½5�<��ê(�Ï5�<‘��î(�ȏ5�<��ô(�Ώ5�<‘��ù(�ҏ5�<��ÿ(�؏5�<‘��)�܏5�<��	)�â5�<‘��
)�æ5�<��)�í5�<‘��)�ñ5�<��)�÷5�<‘��")�û5�<��()�5�<‘��,)�5�<��2)�5�<‘��6)�5�<��<)�5�<‘��A)�5�<��G)� 5�<‘��K)�$5�<��Q)�*5�<‘��U)�/5�<��[)�55�<‘��`)�95�<��d)�=5�<��i)�C5�<‘��n)�G5�<��s)�L5�<‘��w)�P5�<��})�V5�<‘��)�Z5�<��‡)�`5�<‘��‹)�d5�<��‘)�j5�<‘��•)�n5�<��š)�s5�<‘��ž)�w5�<��¤)�}5�<‘��¨)�5�<��®)�‡5�<‘��²)�‹5�<��¸)�‘5�<‘��¼)�•5�<��Á)�š5�<‘��Å)�ž5�<��Ë)�¤5�<‘��Ï)�¨5�<��Õ)�®5�<‘��Ù)�²5�<��ß)�¸5�<‘��ã)�¼5�<��è)�Á5�<‘��ì)�Ő5�<��ò)�ː5�<‘��ö)�ϐ5�<��ü)�Ր5�<‘���*�ِ5�<��*�ߐ5�<‘��
-*�ã5�<��*�è5�<‘��*�ì5�<��*�ò5�<‘��*�ö5�<��#*�ü5�<‘��'*��‘5�<��,*�‘5�<‘��1*�
-‘5�<��6*�‘5�<‘��:*�‘5�<��@*�‘5�<‘��D*�‘5�<��I*�"‘5�<‘��M*�&‘5�<��S*�,‘5�<‘��W*�0‘5�<��\*�6‘5�<‘��a*�:‘5�<��f*�?‘5�<‘��j*�C‘5�<��p*�I‘5�<‘��t*�M‘5�<­��x*�Q‘5�<¬��¨*�‘5�<­��¬*�…‘5�<¬��±*�Š‘5�<­��´*�‘5�<¬��¸*�‘‘5�<Œ��½*�—‘5�<��Å*�ž‘5�<‘��É*�£‘5�<��Ð*�©‘5�<‘��Ô*�­‘5�<��Ú*�³‘5�<‘��ß*�¸‘5�<��å*�¾‘5�<‘��é*�‘5�<��ï*�È‘5�<‘��ó*�Ì‘5�<��ù*�Ò‘5�<‘��ý*�Ö‘5�<��+�Ý‘5�<‘��+�á‘5�<��+�ç‘5�<‘��+�ë‘5�<��+�ñ‘5�<‘��+�ö‘5�<��#+�ü‘5�<‘��'+��’5�<��-+�’5�<‘��1+�
-’5�<��7+�’5�<‘��;+�’5�<��A+�’5�<‘��F+�’5�<��L+�%’5�<‘��P+�)’5�<��V+�/’5�<‘��Z+�4’5�<��`+�:’5�<‘��e+�>’5�<��k+�D’5�<‘��o+�H’5�<��u+�N’5�<‘��y+�R’5�<��+�X’5�<‘��„+�]’5�<��Š+�c’5�<‘��Ž+�g’5�<��”+�m’5�<‘��˜+�q’5�<��ž+�x’5�<‘��£+�|’5�<��©+�‚’5�<‘��­+�†’5�<��±+�‹’5�<Œ��µ+�Ž’5�<��»+�”’5�<‘��¿+�˜’5�<��Å+�Ÿ’5�<‘��Ê+�£’5�<��Ð+�©’5�<‘��Ô+�­’5�<��Ú+�³’5�<‘��Þ+�¸’5�<��å+�¾’5�<‘��é+�Â’5�<��ï+�È’5�<‘��ó+�Ì’5�<��ù+�Ò’5�<‘��ý+�Ö’5�<��,�Ý’5�<‘��,�á’5�<��,�ç’5�<‘��,�ë’5�<��,�ñ’5�<‘��,�õ’5�<��",�ü’5�<‘��',��“5�<��-,�“5�<‘��1,�
-“5�<��7,�“5�<‘��;,�“5�<��A,�“5�<‘��E,�“5�<��L,�%“5�<‘��P,�)“5�<��V,�/“5�<‘��Z,�3“5�<��`,�9“5�<‘��d,�>“5�<��j,�D“5�<‘��o,�H“5�<��u,�N“5�<‘��y,�R“5�<��,�X“5�<‘��ƒ,�\“5�<��‰,�c“5�<‘��Ž,�g“5�<��”,�m“5�<‘��˜,�q“5�<��ž,�w“5�<‘��¢,�{“5�<��¦,�€“5�<��¬,�…“5�<‘��°,�‰“5�<��¶,�“5�<‘��º,�““5�<��¿,�™“5�<‘��Ä,�“5�<��É,�¢“5�<‘��Í,�¦“5�<��Ó,�¬“5�<‘��×,�°“5�<��Ü,�¶“5�<‘��à,�º“5�<��æ,�¿“5�<‘��ê,�Ó5�<��ð,�É“5�<‘��ô,�Í“5�<��ú,�Ó“5�<‘��þ,�ד5�<��-�Ü“5�<‘��-�à“5�<��
-�æ“5�<‘��-�ê“5�<��-�ð“5�<‘��-�ô“5�<�� -�ú“5�<‘��%-�þ“5�<��*-�”5�<‘��.-�”5�<��4-�
”5�<‘��8-�”5�<��>-�”5�<‘��B-�”5�<��G-�!”5�<‘��L-�%”5�<��Q-�*”5�<‘��U-�.”5�<��[-�4”5�<‘��_-�8”5�<��d-�>”5�<‘��i-�B”5�<��n-�H”5�<‘��s-�L”5�<��x-�Q”5�<‘��|-�U”5�<��‚-�[”5�<‘��†-�_”5�<��‹-�e”5�<‘��-�i”5�<��•-�n”5�<‘��™-�r”5�<��Ÿ-�x”5�<‘��£-�|”5�<��©-�‚”5�<‘��­-�†”5�<��²-�‹”5�<‘��¶-�”5�<��¼-�•”5�<‘��À-�™”5�<��Æ-�Ÿ”5�<‘��Ê-�£”5�<��Ï-�©”5�<‘��Ô-�­”5�<��Ù-�²”5�<‘��Ý-�¶”5�<��ã-�¼”5�<‘��ç-�À”5�<��ì-�Æ”5�<‘��ñ-�Ê”5�<��ö-�Д5�<‘��û-�Ô”5�<���.�Ù”5�<‘��.�Ý”5�<��
-.�ã”5�<‘��.�ç”5�<��.�ì”5�<‘��.�ñ”5�<��.�ö”5�<‘��!.�ú”5�<��'.��•5�<‘��+.�•5�<��1.�
-•5�<‘��5.�•5�<��:.�•5�<‘��>.�•5�<��D.�•5�<‘��H.�!•5�<��N.�'•5�<‘��R.�+•5�<��W.�1•5�<‘��\.�5•5�<��a.�:•5�<‘��e.�>•5�<­��i.�B•5�<´��n.�G•5�<µ��r.�K•5�<´��v.�O•5�<µ��y.�S•5�<¬��}.�W•5�<Œ��‚.�[•5�<��ˆ.�a•5�<‘��Œ.�e•5�<��“.�l•5�<‘��—.�p•5�<��.�v•5�<‘��¡.�z•5�<��§.�€•5�<‘��¬.�…•5�<��².�‹•5�<‘��¶.�•5�<��¼.�••5�<‘��À.�™•5�<��Æ.�Ÿ•5�<‘��Ê.�¤•5�<��Ñ.�ª•5�<‘��Õ.�®•5�<��Û.�´•5�<‘��ß.�¸•5�<��å.�¾•5�<‘��é.�•5�<��ï.�É•5�<‘��ô.�Í•5�<��ú.�Ó•5�<‘��þ.�ו5�<��/�Ý•5�<‘��/�á•5�<��/�è•5�<‘��/�ì•5�<��/�ò•5�<‘��/�ö•5�<��#/�ü•5�<‘��'/��–5�<��-/�–5�<‘��2/�–5�<��6/�–5�<Œ��9/�–5�<��?/�–5�<‘��D/�–5�<��J/�#–5�<‘��N/�'–5�<��T/�-–5�<‘��Y/�2–5�<��_/�8–5�<‘��c/�<–5�<��i/�B–5�<‘��m/�F–5�<��s/�M–5�<‘��x/�Q–5�<��~/�W–5�<‘��‚/�[–5�<��ˆ/�a–5�<‘��Œ/�e–5�<��’/�k–5�<‘��–/�p–5�<��/�v–5�<‘��¡/�z–5�<��§/�€–5�<‘��«/�„–5�<��±/�Š–5�<‘��µ/�Ž–5�<��»/�”–5�<‘��À/�™–5�<��Æ/�Ÿ–5�<‘��Ê/�£–5�<��Ð/�©–5�<‘��Ô/�­–5�<��Ú/�³–5�<‘��Þ/�¸–5�<��å/�¾–5�<‘��é/�–5�<��í/�Æ–5�<��ò/�Ì–5�<‘��÷/�Ж5�<��ü/�Õ–5�<‘���0�Ù–5�<��0�ß–5�<‘��
-0�ã–5�<��0�é–5�<‘��0�í–5�<��0�ó–5�<‘��0�÷–5�<��#0�ü–5�<‘��'0��—5�<��-0�—5�<‘��10�
-—5�<��60�—5�<‘��:0�—5�<��@0�—5�<‘��D0�—5�<��J0�#—5�<‘��N0�'—5�<��S0�-—5�<‘��X0�1—5�<��]0�6—5�<‘��a0�:—5�<��g0�@—5�<‘��k0�D—5�<��q0�J—5�<‘��u0�N—5�<��z0�T—5�<‘��0�X—5�<��„0�]—5�<‘��ˆ0�a—5�<��Ž0�g—5�<‘��’0�k—5�<��˜0�q—5�<‘��œ0�u—5�<��¡0�{—5�<‘��¦0�—5�<��«0�„—5�<‘��¯0�ˆ—5�<��µ0�Ž—5�<‘��¹0�’—5�<��¿0�˜—5�<‘��Ã0�œ—5�<��É0�¢—5�<‘��Í0�¦—5�<��Ò0�«—5�<‘��Ö0�¯—5�<��Ü0�µ—5�<‘��à0�¹—5�<��æ0�¿—5�<‘��ê0�×5�<��ð0�É—5�<‘��ô0�Í—5�<��ù0�Ó—5�<‘��ý0�×—5�<��1�Ü—5�<‘��1�á—5�<��
1�æ—5�<‘��1�ê—5�<��1�ð—5�<‘��1�ô—5�<�� 1�ú—5�<‘��%1�þ—5�<��*1�˜5�<‘��/1�˜5�<��41�
˜5�<‘��81�˜5�<­��<1�˜5�<¸��@1�˜5�<¹��D1�˜5�<¸��H1�!˜5�<¹��K1�$˜5�<í��N1�'˜5�<ì��S1�,˜5�<„��W1�1˜5�<…��[1�4˜5�<„��_1�8˜5�<…��b1�;˜5�<¬��f1�?˜5�<Œ��j1�D˜5�<��p1�J˜5�<‘��u1�N˜5�<��{1�T˜5�<‘��1�Y˜5�<��†1�_˜5�<‘��Š1�c˜5�<��1�i˜5�<‘��”1�m˜5�<��š1�t˜5�<‘��Ÿ1�x˜5�<��¥1�~˜5�<‘��©1�‚˜5�<��¯1�ˆ˜5�<‘��³1�Œ˜5�<��¹1�’˜5�<‘��½1�—˜5�<��Ã1�˜5�<‘��È1�¡˜5�<��Î1�§˜5�<‘��Ò1�«˜5�<��Ø1�±˜5�<‘��Ü1�µ˜5�<��â1�»˜5�<‘��æ1�À˜5�<��í1�Ƙ5�<‘��ñ1�ʘ5�<��÷1�И5�<‘��û1�Ô˜5�<��2�Û˜5�<‘��2�ߘ5�<��2�å˜5�<‘��2�é˜5�<��2�î˜5�<Œ��2�ñ˜5�<��2�÷˜5�<‘��"2�û˜5�<��(2�™5�<‘��-2�™5�<��32�™5�<‘��72�™5�<��=2�™5�<‘��A2�™5�<��H2�!™5�<‘��L2�%™5�<��R2�+™5�<‘��V2�/™5�<��\2�5™5�<‘��`2�:™5�<��g2�@™5�<‘��k2�D™5�<��q2�J™5�<‘��u2�N™5�<��{2�T™5�<‘��2�Y™5�<��…2�_™5�<‘��Š2�c™5�<��2�i™5�<‘��”2�m™5�<��š2�s™5�<‘��ž2�w™5�<��¤2�}™5�<‘��©2�‚™5�<��¯2�ˆ™5�<‘��³2�Œ™5�<��¹2�’™5�<‘��½2�–™5�<��Â2�›™5�<��Ç2� ™5�<‘��Ë2�¤™5�<��Ñ2�ª™5�<‘��Õ2�®™5�<��Ú2�´™5�<‘��ß2�¸™5�<��ä2�½™5�<‘��è2�Á™5�<��î2�Ç™5�<‘��ò2�Ë™5�<��ø2�Ñ™5�<‘��ü2�Õ™5�<��3�Ú™5�<‘��3�ß™5�<��3�ä™5�<‘��3�è™5�<��3�î™5�<‘��3�ò™5�<��3�ø™5�<‘��#3�ü™5�<��(3�š5�<‘��-3�š5�<��23�š5�<‘��63�š5�<��<3�š5�<‘��@3�š5�<��F3�š5�<‘��J3�#š5�<��O3�)š5�<‘��T3�-š5�<��Y3�2š5�<‘��]3�6š5�<��c3�<š5�<‘��g3�@š5�<��m3�Fš5�<‘��q3�Jš5�<��v3�Pš5�<‘��{3�Tš5�<��€3�Yš5�<‘��„3�]š5�<��Š3�cš5�<‘��Ž3�gš5�<��”3�mš5�<‘��˜3�qš5�<��ž3�wš5�<‘��¢3�{š5�<��§3�€š5�<‘��«3�…š5�<��±3�Šš5�<‘��µ3�Žš5�<��»3�”š5�<‘��¿3�˜š5�<��Å3�žš5�<‘��É3�¢š5�<��Î3�§š5�<‘��Ò3�¬š5�<��Ø3�±š5�<‘��Ü3�µš5�<��â3�»š5�<‘��æ3�¿š5�<��ì3�Åš5�<‘��ð3�Éš5�<��õ3�Κ5�<‘��ù3�Óš5�<­��ý3�ך5�<¬��4�Úš5�<­��4�Þš5�<¬��	4�âš5�<­��4�åš5�<¬��4�éš5�<Œ��4�îš5�<��4�ôš5�<‘��4�øš5�<��%4�þš5�<‘��)4�›5�<��04�	›5�<‘��44�
›5�<��:4�›5�<‘��>4�›5�<��D4�›5�<‘��H4�"›5�<��O4�(›5�<‘��S4�,›5�<��Y4�3›5�<‘��^4�7›5�<��d4�=›5�<‘��h4�A›5�<��n4�G›5�<‘��r4�K›5�<��x4�Q›5�<‘��|4�V›5�<��ƒ4�\›5�<‘��‡4�`›5�<��4�f›5�<‘��‘4�j›5�<��—4�p›5�<‘��›4�u›5�<��¢4�{›5�<‘��¦4�›5�<��¬4�…›5�<‘��°4�‰›5�<��¶4�›5�<‘��º4�”›5�<��Á4�š›5�<‘��Å4�ž›5�<��Ë4�¤›5�<‘��Ï4�¨›5�<��Õ4�®›5�<‘��Ù4�²›5�<��ß4�¹›5�<‘��ä4�½›5�<��ê4�Û5�<‘��î4�Ç›5�<��ô4�Í›5�<‘��ø4�Ñ›5�<��þ4�×›5�<‘��5�Ü›5�<��5�à›5�<Œ��5�ä›5�<��5�ê›5�<‘��5�î›5�<��5�ô›5�<‘��5�ø›5�<��%5�ÿ›5�<‘��*5�œ5�<��05�	œ5�<‘��45�
œ5�<��:5�œ5�<‘��>5�œ5�<��D5�œ5�<‘��I5�"œ5�<��O5�(œ5�<‘��S5�,œ5�<��Y5�2œ5�<‘��]5�6œ5�<��c5�<œ5�<‘��g5�Aœ5�<��m5�Gœ5�<‘��r5�Kœ5�<��x5�Qœ5�<‘��|5�Uœ5�<��‚5�[œ5�<‘��†5�`œ5�<��5�fœ5�<‘��‘5�jœ5�<��—5�pœ5�<‘��›5�tœ5�<��¡5�zœ5�<‘��¥5�œ5�<��¬5�…œ5�<‘��°5�‰œ5�<��¶5�œ5�<‘��º5�“œ5�<��À5�šœ5�<‘��Å5�žœ5�<��Ë5�¤œ5�<‘��Ï5�¨œ5�<��Õ5�®œ5�<‘��Ù5�²œ5�<��ß5�¸œ5�<‘��ã5�½œ5�<��ê5�Ãœ5�<‘��î5�Çœ5�<��ô5�Íœ5�<‘��ø5�Ñœ5�<��ü5�Õœ5�<��6�Ûœ5�<‘��6�ßœ5�<��6�äœ5�<‘��6�èœ5�<��6�îœ5�<‘��6�òœ5�<��6�øœ5�<‘��#6�üœ5�<��)6�5�<‘��-6�5�<��26�5�<‘��66�5�<��<6�5�<‘��@6�5�<��F6�5�<‘��J6�#5�<��O6�(5�<‘��T6�-5�<��Y6�25�<‘��]6�65�<��c6�<5�<‘��g6�@5�<��m6�F5�<‘��q6�J5�<��v6�P5�<‘��{6�T5�<��€6�Y5�<‘��„6�]5�<��Š6�c5�<‘��Ž6�g5�<��“6�m5�<‘��˜6�q5�<��6�w5�<‘��¡6�{5�<��§6�€5�<‘��«6�„5�<��±6�Š5�<‘��µ6�Ž5�<��º6�“5�<‘��¾6�˜5�<��Ä6�5�<‘��È6�¡5�<��Î6�§5�<‘��Ò6�«5�<��Ø6�±5�<‘��Ü6�µ5�<��á6�»5�<‘��å6�¿5�<��ë6�ĝ5�<‘��ï6�ɝ5�<��õ6�Ν5�<‘��ù6�ҝ5�<��ÿ6�؝5�<‘��7�ܝ5�<��7�â5�<‘��
7�æ5�<��7�ë5�<‘��7�ð5�<��7�õ5�<‘�� 7�ù5�<��&7�ÿ5�<‘��*7�ž5�<��07�	ž5�<‘��47�
ž5�<��:7�ž5�<‘��>7�ž5�<��C7�ž5�<‘��G7� ž5�<��M7�&ž5�<‘��Q7�*ž5�<��V7�0ž5�<‘��[7�4ž5�<��`7�9ž5�<‘��d7�>ž5�<��j7�Cž5�<‘��n7�Gž5�<��t7�Mž5�<‘��x7�Qž5�<��}7�Vž5�<‘��©7�‚ž5�<��±7�Šž5�<‘��µ7�Žž5�<��º7�”ž5�<‘��¾7�˜ž5�<��Ä7�ž5�<‘��È7�¡ž5�<��Î7�§ž5�<‘��Ò7�«ž5�<��Ø7�±ž5�<‘��Ü7�µž5�<��á7�ºž5�<‘��å7�¾ž5�<­��é7�Þ5�<´��î7�Çž5�<µ��ñ7�Êž5�<´��õ7�Ξ5�<µ��ø7�Ñž5�<¬��ü7�Õž5�<Œ��8�Úž5�<��8�áž5�<‘��8�åž5�<��8�ëž5�<‘��8�ïž5�<��8�õž5�<‘�� 8�ùž5�<��&8��Ÿ5�<‘��*8�Ÿ5�<��18�
-Ÿ5�<‘��58�Ÿ5�<��;8�Ÿ5�<‘��?8�Ÿ5�<��E8�Ÿ5�<‘��I8�#Ÿ5�<��O8�)Ÿ5�<‘��T8�-Ÿ5�<��Z8�3Ÿ5�<‘��^8�7Ÿ5�<��d8�=Ÿ5�<‘��h8�AŸ5�<��n8�GŸ5�<‘��r8�KŸ5�<��x8�RŸ5�<‘��}8�VŸ5�<��ƒ8�\Ÿ5�<‘��‡8�`Ÿ5�<��8�fŸ5�<‘��‘8�jŸ5�<��—8�pŸ5�<‘��›8�uŸ5�<��¡8�{Ÿ5�<‘��¦8�Ÿ5�<��¬8�…Ÿ5�<‘��°8�‰Ÿ5�<��´8�ŽŸ5�<Œ��¸8�‘Ÿ5�<��¾8�—Ÿ5�<‘��Â8�œŸ5�<��È8�¢Ÿ5�<‘��Í8�¦Ÿ5�<��Ó8�¬Ÿ5�<‘��×8�°Ÿ5�<��Ý8�¶Ÿ5�<‘��á8�»Ÿ5�<��ç8�ÁŸ5�<‘��ì8�ÅŸ5�<��ò8�ËŸ5�<‘��ö8�ÏŸ5�<��ü8�ÕŸ5�<‘���9�ÙŸ5�<��9�àŸ5�<‘��9�äŸ5�<��9�êŸ5�<‘��9�îŸ5�<��9�ôŸ5�<‘��9�øŸ5�<��%9�þŸ5�<‘��)9� 5�<��/9� 5�<‘��49�
 5�<��:9� 5�<‘��>9� 5�<��D9� 5�<‘��H9�! 5�<��N9�( 5�<‘��S9�, 5�<��Y9�2 5�<‘��]9�6 5�<��c9�< 5�<‘��g9�@ 5�<��l9�E 5�<��q9�J 5�<‘��u9�N 5�<��z9�T 5�<‘��9�X 5�<��„9�^ 5�<‘��‰9�b 5�<��Ž9�g 5�<‘��’9�k 5�<��˜9�q 5�<‘��œ9�u 5�<��¡9�{ 5�<‘��¥9� 5�<��«9�„ 5�<‘��¯9�ˆ 5�<��µ9�Ž 5�<‘��¹9�’ 5�<��¿9�˜ 5�<‘��Ã9�œ 5�<��È9�¡ 5�<‘��Ì9�¥ 5�<��Ò9�« 5�<‘��Ö9�¯ 5�<��Ü9�µ 5�<‘��à9�¹ 5�<��æ9�¿ 5�<‘��ê9�à5�<��ï9�È 5�<‘��ó9�Ì 5�<��ù9�Ò 5�<‘��ý9�Ö 5�<��:�Ü 5�<‘��:�à 5�<��:�å 5�<‘��:�ê 5�<��:�ï 5�<‘��:�ó 5�<�� :�ù 5�<‘��$:�ý 5�<��):�¡5�<‘��-:�¡5�<��3:�¡5�<‘��7:�¡5�<��=:�¡5�<‘��A:�¡5�<��F:� ¡5�<‘��K:�$¡5�<��P:�)¡5�<‘��T:�-¡5�<��Z:�3¡5�<‘��^:�7¡5�<��c:�<¡5�<‘��g:�A¡5�<��m:�F¡5�<‘��q:�J¡5�<��w:�P¡5�<‘��{:�T¡5�<��:�Z¡5�<‘��…:�^¡5�<��Š:�c¡5�<‘��Ž:�g¡5�<��”:�m¡5�<‘��˜:�q¡5�<��:�w¡5�<‘��¡:�{¡5�<��§:�€¡5�<‘��«:�…¡5�<��±:�Š¡5�<‘��µ:�Ž¡5�<­��¹:�’¡5�<¸��½:�–¡5�<¹��À:�š¡5�<¸��Ä:�¡5�<¹��Ç:� ¡5�<í��Ë:�¤¡5�<ì��Ï:�©¡5�<„��Ô:�­¡5�<…��Ø:�±¡5�<„��Û:�µ¡5�<…��ß:�¸¡5�<¬��ã:�¼¡5�<Œ��ç:�À¡5�<��í:�Ç¡5�<‘��ò:�Ë¡5�<��ø:�Ñ¡5�<‘��ü:�Õ¡5�<��;�Ü¡5�<‘��;�à¡5�<��
;�æ¡5�<‘��;�ê¡5�<��;�ð¡5�<‘��;�ô¡5�<��!;�ú¡5�<‘��%;�ÿ¡5�<��,;�¢5�<‘��0;�	¢5�<��6;�¢5�<‘��:;�¢5�<��@;�¢5�<‘��D;�¢5�<��J;�$¢5�<‘��O;�(¢5�<��S;�,¢5�<Œ��W;�0¢5�<��];�6¢5�<‘��a;�:¢5�<��g;�@¢5�<‘��k;�D¢5�<��q;�J¢5�<‘��u;�N¢5�<��{;�U¢5�<‘��€;�Y¢5�<��†;�_¢5�<‘��Š;�c¢5�<��;�i¢5�<‘��”;�m¢5�<��š;�s¢5�<‘��ž;�x¢5�<��¤;�~¢5�<‘��©;�‚¢5�<��¯;�ˆ¢5�<‘��³;�Œ¢5�<��¹;�’¢5�<‘��½;�–¢5�<��Â;�›¢5�<��Ç;� ¢5�<‘��Ë;�¤¢5�<��Ñ;�ª¢5�<‘��Õ;�®¢5�<��Û;�´¢5�<‘��ß;�¸¢5�<��ä;�½¢5�<‘��è;�Á¢5�<��î;�Ç¢5�<‘��ò;�Ë¢5�<��÷;�Ñ¢5�<‘��û;�Õ¢5�<��<�Ú¢5�<‘��<�ߢ5�<��<�ä¢5�<‘��<�è¢5�<��<�î¢5�<‘��<�ò¢5�<��<�ø¢5�<‘��#<�ü¢5�<��(<�£5�<‘��,<�£5�<��2<�£5�<‘��6<�£5�<��<<�£5�<‘��@<�£5�<��E<�£5�<‘��I<�#£5�<��O<�(£5�<‘��S<�-£5�<��Y<�2£5�<‘��]<�6£5�<��c<�<£5�<‘��g<�@£5�<��l<�E£5�<‘��p<�J£5�<��v<�O£5�<‘��z<�S£5�<��€<�Y£5�<‘��„<�]£5�<­��ˆ<�a£5�<¬��Œ<�e£5�<­��<�i£5�<¬��“<�l£5�<­��—<�p£5�<¬��›<�t£5�<Œ�� <�y£5�<��¥<�£5�<‘��ª<�ƒ£5�<��°<�‰£5�<‘��´<�£5�<��º<�”£5�<‘��¿<�˜£5�<��Å<�ž£5�<‘��É<�¢£5�<��Ï<�¨£5�<‘��Ó<�¬£5�<��Ù<�²£5�<‘��Ý<�·£5�<��ä<�½£5�<‘��è<�Á£5�<��î<�Ç£5�<‘��ò<�Ë£5�<��ø<�Ñ£5�<‘��ü<�Õ£5�<��=�Ü£5�<‘��=�à£5�<��
=�æ£5�<‘��=�ê£5�<��=�ð£5�<‘��=�ô£5�<��!=�ú£5�<‘��&=�ÿ£5�<��,=�¤5�<‘��0=�	¤5�<��6=�¤5�<‘��:=�¤5�<��@=�¤5�<‘��D=�¤5�<��J=�$¤5�<‘��O=�(¤5�<��U=�.¤5�<‘��Y=�2¤5�<��_=�8¤5�<‘��c=�<¤5�<��i=�B¤5�<‘��m=�G¤5�<��t=�M¤5�<‘��x=�Q¤5�<��~=�W¤5�<‘��‚=�[¤5�<��ˆ=�a¤5�<‘��Œ=�e¤5�<��’=�l¤5�<‘��—=�p¤5�<��=�v¤5�<‘��¡=�z¤5�<��§=�€¤5�<‘��«=�…¤5�<��±=�‹¤5�<‘��¶=�¤5�<��¼=�•¤5�<‘��À=�™¤5�<��Æ=�Ÿ¤5�<‘��Ê=�£¤5�<��Ð=�©¤5�<‘��Ô=�®¤5�<��Û=�´¤5�<‘��ß=�¸¤5�<��å=�¾¤5�<‘��é=�¤5�<��ï=�Ȥ5�<‘��ó=�ͤ5�<��ù=�Ó¤5�<‘��þ=�פ5�<��>�ݤ5�<‘��>�á¤5�<��>�ç¤5�<‘��>�ë¤5�<��>�ñ¤5�<‘��>�ö¤5�<��#>�ü¤5�<‘��'>��¥5�<��->�¥5�<‘��1>�
-¥5�<��6>�¥5�<Œ��9>�¥5�<��?>�¥5�<‘��C>�¥5�<��J>�#¥5�<‘��N>�'¥5�<��T>�-¥5�<‘��X>�1¥5�<��^>�7¥5�<‘��b>�<¥5�<��i>�B¥5�<‘��m>�F¥5�<��s>�L¥5�<‘��w>�P¥5�<��}>�V¥5�<‘��>�Z¥5�<��‡>�`¥5�<‘��‹>�e¥5�<��’>�k¥5�<‘��–>�o¥5�<��œ>�u¥5�<‘�� >�y¥5�<��¦>�¥5�<‘��ª>�„¥5�<��±>�Š¥5�<‘��µ>�Ž¥5�<��»>�”¥5�<‘��¿>�˜¥5�<��Å>�ž¥5�<‘��É>�¢¥5�<��Ï>�¨¥5�<‘��Ó>�­¥5�<��Ú>�³¥5�<‘��Þ>�·¥5�<��ä>�½¥5�<‘��è>�Á¥5�<��î>�Ç¥5�<‘��ò>�Ì¥5�<��ù>�Ò¥5�<‘��ý>�Ö¥5�<��?�Ü¥5�<‘��?�à¥5�<��
?�æ¥5�<‘��?�ë¥5�<��?�ñ¥5�<‘��?�õ¥5�<��"?�û¥5�<‘��&?�ÿ¥5�<��,?�¦5�<‘��0?�
-¦5�<��6?�¦5�<‘��;?�¦5�<��A?�¦5�<‘��E?�¦5�<��K?�$¦5�<‘��O?�(¦5�<��U?�.¦5�<‘��Z?�3¦5�<��`?�9¦5�<‘��d?�=¦5�<��j?�C¦5�<‘��n?�G¦5�<��t?�M¦5�<‘��x?�Q¦5�<��~?�X¦5�<‘��‚?�\¦5�<��‰?�b¦5�<‘��?�f¦5�<��“?�l¦5�<‘��—?�q¦5�<��ž?�w¦5�<‘��¢?�{¦5�<��¨?�¦5�<‘��¬?�…¦5�<��²?�Œ¦5�<‘��·?�¦5�<��½?�–¦5�<‘��Á?�š¦5�<��Ç?� ¦5�<‘��Ë?�¤¦5�<��Ï?�©¦5�<��Õ?�®¦5�<‘��Ù?�²¦5�<��Þ?�¸¦5�<‘��ã?�¼¦5�<��è?�¦5�<‘��ì?�Ʀ5�<��ò?�˦5�<‘��ö?�Ϧ5�<��ü?�Õ¦5�<‘���@�Ù¦5�<��@�ߦ5�<‘��
-@�ã¦5�<��@�é¦5�<‘��@�í¦5�<��@�ò¦5�<‘��@�ö¦5�<��#@�ü¦5�<‘��'@��§5�<��-@�§5�<‘��1@�
-§5�<��6@�§5�<‘��;@�§5�<��@@�§5�<‘��D@�§5�<��J@�#§5�<‘��N@�'§5�<��S@�,§5�<‘��W@�1§5�<��]@�6§5�<‘��a@�;§5�<��g@�@§5�<‘��k@�D§5�<��q@�J§5�<‘��u@�N§5�<��z@�T§5�<‘��~@�X§5�<��„@�]§5�<‘��ˆ@�b§5�<��Ž@�g§5�<‘��’@�k§5�<��˜@�q§5�<‘��œ@�u§5�<��¡@�z§5�<‘��¥@�~§5�<��«@�„§5�<‘��¯@�ˆ§5�<��µ@�Ž§5�<‘��¹@�’§5�<��¾@�˜§5�<‘��Ã@�œ§5�<��È@�¡§5�<‘��Ì@�¥§5�<��Ò@�«§5�<‘��Ö@�¯§5�<��Û@�µ§5�<‘��à@�¹§5�<��å@�¿§5�<‘��ê@�ç5�<��ï@�ȧ5�<‘��ó@�̧5�<��ù@�Ò§5�<‘��ý@�Ö§5�<��A�Û§5�<‘��A�à§5�<��A�å§5�<‘��A�é§5�<��A�ï§5�<‘��A�ó§5�<�� A�ù§5�<‘��$A�ý§5�<��)A�¨5�<‘��-A�¨5�<��3A�¨5�<‘��7A�¨5�<��=A�¨5�<‘��AA�¨5�<��GA� ¨5�<‘��KA�$¨5�<��PA�)¨5�<‘��TA�-¨5�<��ZA�3¨5�<‘��^A�7¨5�<��cA�=¨5�<‘��hA�A¨5�<��mA�G¨5�<‘��qA�K¨5�<��wA�P¨5�<‘��{A�T¨5�<��A�Z¨5�<‘��…A�^¨5�<��ŠA�c¨5�<‘��ŽA�h¨5�<��”A�m¨5�<‘��˜A�q¨5�<��žA�w¨5�<‘��¢A�{¨5�<��¨A�¨5�<‘��¬A�…¨5�<��±A�Š¨5�<‘��µA�Ž¨5�<��»A�”¨5�<‘��¿A�˜¨5�<��ÄA�ž¨5�<‘��ÉA�¢¨5�<��ÎA�¨¨5�<‘��ÓA�¬¨5�<��ØA�±¨5�<‘��ÜA�µ¨5�<��âA�»¨5�<‘��æA�¿¨5�<��ëA�Ũ5�<‘��ðA�ɨ5�<��õA�Ψ5�<‘��ùA�Ó¨5�<��ÿA�ب5�<‘��B�ܨ5�<��	B�â¨5�<‘��
B�æ¨5�<��B�ë¨5�<‘��B�ï¨5�<��B�õ¨5�<‘�� B�ù¨5�<��&B�ÿ¨5�<‘��*B�©5�<��/B�	©5�<‘��4B�
©5�<��9B�©5�<‘��=B�©5�<��CB�©5�<‘��GB� ©5�<��MB�&©5�<‘��QB�*©5�<��VB�0©5�<‘��[B�4©5�<��`B�9©5�<‘��dB�=©5�<��jB�C©5�<‘��nB�G©5�<��sB�L©5�<‘��wB�Q©5�<��}B�V©5�<‘��B�[©5�<��‡B�`©5�<‘��‹B�d©5�<��‘B�j©5�<‘��•B�n©5�<��šB�s©5�<‘��žB�w©5�<��¤B�}©5�<‘��¨B�©5�<��®B�‡©5�<‘��²B�‹©5�<��¸B�‘©5�<‘��¼B�•©5�<��ÁB�š©5�<‘��ÅB�ž©5�<­��ÉB�¢©5�<´��ÍB�¦©5�<µ��ÑB�ª©5�<´��ÔB�®©5�<µ��ØB�±©5�<¬��ÜB�µ©5�<Œ��àB�º©5�<��æB�À©5�<‘��ëB�Ä©5�<��ñB�Ê©5�<‘��õB�Ω5�<��ûB�Ô©5�<‘��ÿB�Ø©5�<��C�Þ©5�<‘��	C�ã©5�<��C�é©5�<‘��C�í©5�<��C�ó©5�<‘��C�÷©5�<��$C�ý©5�<‘��(C�ª5�<��.C�ª5�<‘��3C�ª5�<��9C�ª5�<‘��=C�ª5�<��CC�ª5�<‘��GC� ª5�<��MC�'ª5�<‘��RC�+ª5�<��XC�1ª5�<‘��\C�5ª5�<��bC�;ª5�<‘��fC�?ª5�<��lC�Eª5�<‘��qC�Jª5�<��wC�Pª5�<‘��{C�Tª5�<��C�Zª5�<‘��…C�^ª5�<��‹C�dª5�<‘��C�hª5�<��•C�oª5�<‘��™C�sª5�<�� C�yª5�<‘��¤C�}ª5�<��¨C�ª5�<Œ��¬C�…ª5�<��²C�‹ª5�<‘��¶C�ª5�<��¼C�•ª5�<‘��ÀC�™ª5�<��ÆC� ª5�<‘��ËC�¤ª5�<��ÑC�ªª5�<‘��ÕC�®ª5�<��ÛC�´ª5�<‘��ßC�¸ª5�<��åC�¾ª5�<‘��éC�ê5�<��ðC�ɪ5�<‘��ôC�ͪ5�<��úC�Óª5�<‘��þC�ת5�<��D�ݪ5�<‘��D�âª5�<��D�èª5�<‘��D�ìª5�<��D�òª5�<‘��D�öª5�<��#D�üª5�<‘��'D��«5�<��-D�«5�<‘��2D�«5�<��8D�«5�<‘��<D�«5�<��BD�«5�<‘��FD�«5�<��LD�%«5�<‘��PD�)«5�<��VD�0«5�<‘��[D�4«5�<��aD�:«5�<‘��eD�>«5�<��kD�D«5�<‘��oD�H«5�<��tD�M«5�<��yD�R«5�<‘��}D�V«5�<��ƒD�\«5�<‘�� D�z«5�<��¨D�«5�<‘��¬D�…«5�<��²D�‹«5�<‘��¶D�«5�<��¼D�•«5�<‘��ÀD�™«5�<��ÅD�ž«5�<‘��ÉD�¢«5�<��ÏD�¨«5�<‘��ÓD�¬«5�<��ÙD�²«5�<‘��ÝD�¶«5�<��âD�¼«5�<‘��çD�À«5�<��ìD�Å«5�<‘��ðD�É«5�<��öD�Ï«5�<‘��úD�Ó«5�<��ÿD�Ù«5�<‘��E�Ý«5�<��	E�â«5�<‘��
E�ç«5�<��E�ì«5�<‘��E�ð«5�<��E�ö«5�<‘��!E�ú«5�<��&E�ÿ«5�<‘��*E�¬5�<��0E�	¬5�<‘��4E�
¬5�<��:E�¬5�<‘��>E�¬5�<��DE�¬5�<‘��HE�!¬5�<��ME�&¬5�<‘��QE�*¬5�<��WE�0¬5�<‘��[E�4¬5�<��`E�9¬5�<‘��dE�>¬5�<��jE�C¬5�<‘��nE�G¬5�<��tE�M¬5�<‘��xE�Q¬5�<��}E�W¬5�<‘��‚E�[¬5�<��‡E�`¬5�<‘��‹E�d¬5�<��‘E�j¬5�<‘��•E�n¬5�<��šE�t¬5�<‘��ŸE�x¬5�<��¤E�}¬5�<‘��¨E�‚¬5�<��®E�‡¬5�<‘��²E�‹¬5�<��¸E�‘¬5�<‘��¼E�•¬5�<��ÁE�š¬5�<‘��ÅE�Ÿ¬5�<��ËE�¤¬5�<‘��ÏE�¨¬5�<��ÕE�®¬5�<‘��ÙE�²¬5�<��ßE�¸¬5�<‘��ãE�¼¬5�<��èE�Á¬5�<‘��ìE�Ŭ5�<��òE�ˬ5�<‘��öE�Ϭ5�<��üE�Õ¬5�<‘���F�Ù¬5�<­��F�ݬ5�<¸��F�á¬5�<¹��F�å¬5�<¸��F�è¬5�<¹��F�ì¬5�<í��F�ï¬5�<ì��F�ô¬5�<„��F�ù¬5�<…��#F�ü¬5�<„��'F��­5�<…��*F�­5�<¬��/F�­5�<Œ��3F�­5�<��9F�­5�<‘��>F�­5�<��DF�­5�<‘��HF�!­5�<��NF�'­5�<‘��RF�,­5�<��YF�2­5�<‘��]F�6­5�<��cF�<­5�<‘��gF�@­5�<��mF�F­5�<‘��qF�K­5�<��wF�Q­5�<‘��|F�U­5�<��‚F�[­5�<‘��†F�_­5�<��ŒF�e­5�<‘��F�j­5�<��—F�p­5�<‘��›F�t­5�<��¡F�z­5�<‘��¥F�~­5�<��«F�…­5�<‘��°F�‰­5�<��¶F�­5�<‘��ºF�“­5�<��ÀF�™­5�<‘��ÄF�­5�<��ÊF�£­5�<‘��ÏF�¨­5�<��ÕF�®­5�<‘��ÙF�²­5�<��ßF�¸­5�<‘��ãF�¼­5�<��èF�Á­5�<Œ��ëF�Å­5�<��ñF�Ê­5�<‘��õF�Ï­5�<��üF�Õ­5�<‘���G�Ù­5�<��G�ß­5�<‘��
-G�ã­5�<��G�é­5�<‘��G�î­5�<��G�ô­5�<‘��G�ø­5�<��%G�þ­5�<‘��)G�®5�<��/G�®5�<‘��3G�®5�<��9G�®5�<‘��=G�®5�<��CG�®5�<‘��GG�!®5�<��NG�'®5�<‘��RG�+®5�<��XG�1®5�<‘��\G�5®5�<��bG�;®5�<‘��fG�?®5�<��lG�E®5�<‘��pG�J®5�<��vG�P®5�<‘��{G�T®5�<��G�Z®5�<‘��…G�^®5�<��‹G�d®5�<‘��G�h®5�<��•G�n®5�<‘��šG�s®5�<��žG�w®5�<��£G�|®5�<‘��§G�€®5�<��­G�†®5�<‘��±G�Š®5�<��·G�®5�<‘��»G�”®5�<��ÀG�™®5�<‘��ÄG�ž®5�<��ÊG�£®5�<‘��ÎG�§®5�<��ÔG�­®5�<‘��ØG�±®5�<��ÞG�·®5�<‘��âG�»®5�<��çG�À®5�<‘��ëG�Ä®5�<��ñG�Ê®5�<‘��õG�ή5�<��úG�Ô®5�<‘��ÿG�Ø®5�<��H�Þ®5�<‘��	H�â®5�<��H�ç®5�<‘��H�ë®5�<��H�ñ®5�<‘��H�õ®5�<��!H�û®5�<‘��&H�ÿ®5�<��+H�¯5�<‘��/H�	¯5�<��5H�¯5�<‘��9H�¯5�<��?H�¯5�<‘��CH�¯5�<��HH�!¯5�<‘��LH�%¯5�<��RH�+¯5�<‘��VH�/¯5�<��[H�5¯5�<‘��_H�9¯5�<��eH�>¯5�<‘��iH�C¯5�<��oH�H¯5�<‘��sH�L¯5�<��yH�R¯5�<‘��}H�V¯5�<��‚H�[¯5�<‘��†H�`¯5�<��ŒH�e¯5�<‘��H�i¯5�<��–H�o¯5�<‘��šH�s¯5�<�� H�y¯5�<‘��¤H�}¯5�<��©H�‚¯5�<‘��­H�†¯5�<��³H�Œ¯5�<‘��·H�¯5�<��¼H�•¯5�<‘��ÀH�š¯5�<��ÆH�Ÿ¯5�<‘��ÊH�¤¯5�<��ÐH�©¯5�<‘��ÔH�­¯5�<��ÚH�³¯5�<‘��ÞH�·¯5�<��äH�½¯5�<‘��èH�Á¯5�<­��ìH�ů5�<¬��ïH�ɯ5�<­��óH�̯5�<¬��÷H�Я5�<­��úH�Ó¯5�<¬��þH�ׯ5�<Œ��I�ܯ5�<��	I�â¯5�<‘��
I�æ¯5�<��I�ì¯5�<‘��I�ð¯5�<��I�ö¯5�<‘��!I�ú¯5�<��'I��°5�<‘��+I�°5�<��1I�°5�<‘��6I�°5�<��<I�°5�<‘��@I�°5�<��FI�°5�<‘��JI�#°5�<��PI�)°5�<‘��UI�.°5�<��[I�4°5�<‘��_I�8°5�<��eI�>°5�<‘��iI�B°5�<��oI�H°5�<‘��sI�M°5�<��zI�S°5�<‘��~I�W°5�<��„I�]°5�<‘��ˆI�a°5�<��ŽI�g°5�<‘��’I�k°5�<��˜I�r°5�<‘��I�v°5�<��£I�|°5�<‘��§I�€°5�<��­I�†°5�<‘��±I�Š°5�<��·I�°5�<‘��»I�•°5�<��ÂI�›°5�<‘��ÆI�Ÿ°5�<��ÌI�¥°5�<‘��ÐI�©°5�<��ÖI�¯°5�<‘��ÚI�³°5�<��àI�º°5�<‘��åI�¾°5�<��ëI�Ä°5�<‘��ïI�È°5�<��õI�ΰ5�<‘��ùI�Ó°5�<��ÿI�Ù°5�<‘��J�Ý°5�<��
-J�ã°5�<‘��J�ç°5�<��J�í°5�<‘��J�ñ°5�<��J�ø°5�<‘��#J�ü°5�<��)J�±5�<‘��-J�±5�<��3J�±5�<‘��7J�±5�<��=J�±5�<‘��BJ�±5�<��HJ�!±5�<‘��LJ�%±5�<��RJ�+±5�<‘��VJ�/±5�<��\J�5±5�<‘��`J�9±5�<��fJ�@±5�<‘��jJ�D±5�<��qJ�J±5�<‘��uJ�N±5�<��{J�T±5�<‘��J�X±5�<��…J�^±5�<‘��‰J�b±5�<��J�h±5�<‘��“J�m±5�<��˜J�q±5�<Œ��œJ�u±5�<��¡J�{±5�<‘��¦J�±5�<��¬J�…±5�<‘��°J�‰±5�<��¶J�±5�<‘��ºJ�”±5�<��ÁJ�š±5�<‘��ÅJ�ž±5�<��ËJ�¤±5�<‘��ÏJ�¨±5�<��ÕJ�®±5�<‘��ÙJ�³±5�<��àJ�¹±5�<‘��äJ�½±5�<��êJ�ñ5�<‘��îJ�DZ5�<��ôJ�α5�<‘��ùJ�Ò±5�<��ÿJ�ر5�<‘��K�ܱ5�<��	K�â±5�<‘��
K�æ±5�<��K�ì±5�<‘��K�ñ±5�<��K�÷±5�<‘��"K�û±5�<��(K�²5�<‘��,K�²5�<��2K�²5�<‘��6K�²5�<��=K�²5�<‘��AK�²5�<��GK� ²5�<‘��KK�$²5�<��QK�*²5�<‘��UK�.²5�<��[K�5²5�<‘��`K�9²5�<��fK�?²5�<‘��jK�C²5�<��pK�I²5�<‘��tK�N²5�<��{K�T²5�<‘��K�X²5�<��…K�^²5�<‘��‰K�b²5�<��K�h²5�<‘��“K�l²5�<��™K�r²5�<‘��žK�w²5�<��¤K�}²5�<‘��¨K�²5�<��®K�‡²5�<‘��²K�‹²5�<��¸K�‘²5�<‘��¼K�–²5�<��ÃK�œ²5�<‘��ÇK� ²5�<��ÍK�¦²5�<‘��ÑK�ª²5�<��×K�±²5�<‘��ÜK�µ²5�<��âK�»²5�<‘��æK�¿²5�<��ìK�Ų5�<‘��ðK�ɲ5�<��öK�в5�<‘��ûK�Ô²5�<��L�Ú²5�<‘��L�Þ²5�<��L�ä²5�<‘��L�è²5�<��L�ï²5�<‘��L�ó²5�<�� L�ù²5�<‘��$L�ý²5�<��*L�³5�<‘��.L�³5�<��3L�³5�<��8L�³5�<‘��<L�³5�<��AL�³5�<‘��EL�³5�<��KL�$³5�<‘��OL�(³5�<��UL�.³5�<‘��YL�2³5�<��_L�8³5�<‘��cL�<³5�<��hL�A³5�<‘��lL�E³5�<��rL�K³5�<‘��vL�O³5�<��|L�U³5�<‘��€L�Y³5�<��…L�^³5�<‘��‰L�c³5�<��L�h³5�<‘��“L�l³5�<��™L�r³5�<‘��L�v³5�<��£L�|³5�<‘��§L�€³5�<��¬L�†³5�<‘��±L�Š³5�<��¶L�³5�<‘��ºL�“³5�<��ÀL�™³5�<‘��ÄL�³5�<��ÊL�£³5�<‘��ÎL�§³5�<��ÓL�­³5�<‘��ØL�±³5�<��ÝL�¶³5�<‘��áL�º³5�<��çL�À³5�<‘��ëL�ij5�<��ñL�ʳ5�<‘��õL�γ5�<��úL�Ô³5�<‘��ÿL�س5�<��M�ݳ5�<‘��M�á³5�<��M�ç³5�<‘��M�ë³5�<��M�ñ³5�<‘��M�õ³5�<��!M�û³5�<‘��&M�ÿ³5�<��+M�´5�<‘��/M�´5�<��5M�´5�<‘��9M�´5�<��>M�´5�<‘��BM�´5�<��HM�!´5�<‘��LM�&´5�<��RM�+´5�<‘��VM�/´5�<��\M�5´5�<‘��`M�9´5�<��eM�>´5�<‘��iM�C´5�<��oM�H´5�<‘��sM�L´5�<��yM�R´5�<‘��}M�V´5�<��ƒM�\´5�<‘��‡M�`´5�<��ŒM�e´5�<‘��M�j´5�<��–M�o´5�<‘��šM�s´5�<�� M�y´5�<‘��¤M�}´5�<��ªM�ƒ´5�<‘��®M�‡´5�<��³M�Œ´5�<‘��·M�‘´5�<��½M�–´5�<‘��ÁM�›´5�<��ÇM� ´5�<‘��ËM�¤´5�<��ÑM�ª´5�<‘��ÕM�®´5�<��ÛM�´´5�<‘��ÞM�¸´5�<��äM�½´5�<‘��èM�´5�<��îM�Ç´5�<‘��òM�Ë´5�<��øM�Ñ´5�<‘��üM�Õ´5�<��N�Ú´5�<‘��N�Þ´5�<��N�ä´5�<‘��N�è´5�<��N�î´5�<‘��N�ò´5�<��N�ø´5�<‘��#N�ü´5�<��(N�µ5�<‘��,N�µ5�<��2N�µ5�<‘��6N�µ5�<��<N�µ5�<‘��@N�µ5�<��FN�µ5�<‘��JN�#µ5�<��ON�(µ5�<‘��SN�-µ5�<��YN�2µ5�<‘��]N�6µ5�<��cN�<µ5�<‘��gN�@µ5�<��mN�Fµ5�<‘��qN�Jµ5�<��vN�Oµ5�<‘��zN�Sµ5�<��€N�Yµ5�<‘��„N�]µ5�<��ŠN�cµ5�<‘��ŽN�gµ5�<��“N�mµ5�<‘��˜N�qµ5�<��N�vµ5�<‘��¡N�zµ5�<��§N�€µ5�<‘��«N�„µ5�<��°N�Šµ5�<‘��µN�Žµ5�<��ºN�“µ5�<‘��¾N�˜µ5�<��ÄN�µ5�<‘��ÈN�¡µ5�<��ÎN�§µ5�<‘��ÒN�«µ5�<��×N�±µ5�<‘��ÛN�µµ5�<��áN�ºµ5�<‘��åN�¾µ5�<��ëN�ĵ5�<‘��ïN�ȵ5�<��õN�ε5�<‘��ùN�Òµ5�<��þN�×µ5�<‘��O�Ûµ5�<��O�áµ5�<‘��O�åµ5�<��O�ëµ5�<‘��O�ïµ5�<��O�õµ5�<‘��O�ùµ5�<��%O�þµ5�<‘��)O�¶5�<­��-O�¶5�<´��1O�
-¶5�<µ��4O�
¶5�<´��8O�¶5�<µ��;O�¶5�<¬��?O�¶5�<Œ��DO�¶5�<��JO�$¶5�<‘��OO�(¶5�<��UO�.¶5�<‘��YO�2¶5�<��_O�8¶5�<‘��cO�=¶5�<��jO�C¶5�<‘��nO�G¶5�<��tO�M¶5�<‘��xO�Q¶5�<��~O�W¶5�<‘��‚O�\¶5�<��‰O�b¶5�<‘��O�f¶5�<��“O�l¶5�<‘��—O�p¶5�<��O�w¶5�<‘��¢O�{¶5�<��¨O�¶5�<‘��¬O�…¶5�<��²O�‹¶5�<‘��¶O�¶5�<��¼O�•¶5�<‘��ÀO�š¶5�<��ÇO� ¶5�<‘��ËO�¤¶5�<��ÑO�ª¶5�<‘��ÕO�®¶5�<��ÛO�´¶5�<‘��ßO�¸¶5�<��åO�¾¶5�<‘��êO�ö5�<��ðO�ɶ5�<‘��ôO�Ͷ5�<��úO�Ó¶5�<‘��þO�׶5�<��P�ݶ5�<‘��P�á¶5�<��
P�æ¶5�<Œ��P�ê¶5�<��P�ð¶5�<‘��P�ô¶5�<��!P�ú¶5�<‘��%P�þ¶5�<��+P�·5�<‘��/P�·5�<��5P�·5�<‘��:P�·5�<��@P�·5�<‘��DP�·5�<��JP�#·5�<‘��NP�'·5�<��TP�-·5�<‘��XP�2·5�<��^P�8·5�<‘��cP�<·5�<��iP�B·5�<‘��mP�F·5�<��sP�L·5�<‘��wP�Q·5�<��}P�W·5�<‘��‚P�[·5�<��ˆP�a·5�<‘��ŒP�e·5�<��’P�k·5�<‘��–P�o·5�<��œP�v·5�<‘��¡P�z·5�<��§P�€·5�<‘��«P�„·5�<��±P�Š·5�<‘��µP�Ž·5�<��»P�”·5�<‘��¿P�˜·5�<��ÅP�Ÿ·5�<‘��ÊP�£·5�<��ÐP�©·5�<‘��ÔP�­·5�<��ØP�²·5�<��ÞP�··5�<‘��âP�»·5�<��çP�À·5�<‘��ëP�Ä·5�<��ñP�Ê·5�<‘��õP�η5�<��ûP�Ô·5�<‘��ÿP�Ø·5�<��Q�Þ·5�<‘��	Q�â·5�<��Q�ç·5�<‘��Q�ë·5�<��Q�ñ·5�<‘��Q�õ·5�<��"Q�û·5�<‘��&Q�ÿ·5�<��+Q�¸5�<‘��/Q�	¸5�<��5Q�¸5�<‘��9Q�¸5�<��?Q�¸5�<‘��CQ�¸5�<��HQ�!¸5�<‘��LQ�%¸5�<��RQ�+¸5�<‘��VQ�/¸5�<��\Q�5¸5�<‘��`Q�9¸5�<��eQ�?¸5�<‘��jQ�C¸5�<��oQ�H¸5�<‘��sQ�L¸5�<��yQ�R¸5�<‘��}Q�V¸5�<��‚Q�\¸5�<‘��†Q�`¸5�<��ŸQ�y¸5�<‘��¤Q�}¸5�<��ªQ�ƒ¸5�<‘��®Q�‡¸5�<��´Q�¸5�<‘��¸Q�‘¸5�<��½Q�–¸5�<‘��ÁQ�š¸5�<��ÇQ� ¸5�<‘��ËQ�¥¸5�<��ÑQ�ª¸5�<‘��ÕQ�®¸5�<��ÛQ�´¸5�<‘��ßQ�¸¸5�<��äQ�½¸5�<‘��èQ�Á¸5�<��îQ�Ǹ5�<‘��òQ�˸5�<��÷Q�Ѹ5�<‘��üQ�Õ¸5�<��R�Û¸5�<‘��R�߸5�<��R�ä¸5�<‘��R�è¸5�<��R�î¸5�<‘��R�ò¸5�<��R�ø¸5�<‘��#R�ü¸5�<��)R�¹5�<‘��-R�¹5�<��2R�¹5�<‘��6R�¹5�<��<R�¹5�<‘��@R�¹5�<��FR�¹5�<‘��JR�#¹5�<��PR�)¹5�<‘��TR�-¹5�<��YR�2¹5�<‘��]R�6¹5�<­��aR�:¹5�<¸��eR�>¹5�<¹��iR�B¹5�<¸��lR�E¹5�<¹��oR�I¹5�<í��sR�L¹5�<é��vR�O¹5�<x��}R�V¹5�<|��‚R�[¹5�<€��‡R�`¹5�<l��ŒR�e¹5�<m��R�h¹5�<„��”R�m¹5�<ˆ��˜R�q¹5�<Œ��œR�v¹5�<�� R�y¹5�<‰��£R�|¹5�<��¨R�¹5�<‘��«R�„¹5�<l��¯R�ˆ¹5�<m��²R�‹¹5�<”��¶R�¹5�<˜��»R�”¹5�<œ��ÀR�š¹5�<x��ÉR�¢¹5�<y��ÏR�¨¹5�<��ÒR�¬¹5�<™��ÖR�¯¹5�<•��ÚR�³¹5�<…��ÝR�¶¹5�<��àR�¹¹5�<}��ãR�¼¹5�<y��çR�À¹5�<x��ìR�Ź5�<|��ïR�ȹ5�<€��óR�̹5�<l��÷R�й5�<m��úR�Ó¹5�<„��þR�×¹5�<ˆ��S�Ú¹5�<Œ��S�Þ¹5�<��S�á¹5�<‰��S�ä¹5�<��S�è¹5�<‘��S�ë¹5�<l��S�ï¹5�<m��S�ò¹5�<”��S�ö¹5�<˜�� S�ù¹5�<œ��%S�þ¹5�<x��+S�º5�<y��/S�	º5�<��3S�º5�<™��6S�º5�<•��:S�º5�<…��=S�º5�<��@S�º5�<}��CS�º5�<y��GS� º5�<¨��KS�$º5�<€��SS�,º5�<„��WS�0º5�<$���[S�4º5�<%���_S�8º5�<…��fS�?º5�<��jS�Cº5�<¬��mS�Gº5�<­��qS�Kº5�<d��uS�Nº5�<h��zS�Sº5�<l��~S�Wº5�<m��S�[º5�<x��‰S�cº5�<y��ŽS�gº5�<i��’S�kº5�<e��•S�nº5�<Œ��™S�rº5�<��S�vº5�<‘��¢S�{º5�<��¦S�º5�<„��©S�‚º5�<…��­S�†º5�<d��°S�Šº5�<h��´S�º5�<l��¸S�‘º5�<m��»S�”º5�<x��ÁS�šº5�<y��ÆS�Ÿº5�<i��ÉS�¢º5�<e��ÍS�¦º5�<°��ÐS�©º5�<±��ÔS�­º5�<´��ØS�±º5�<µ��ÛS�´º5�<¸��ßS�¸º5�<¹��âS�»º5�<Œ��æS�¿º5�<��éS�º5�<‘��íS�ƺ5�<��ñS�ʺ5�<d��ôS�ͺ5�<h��øS�Ѻ5�<l��üS�Õº5�<m��ÿS�غ5�<x��T�Þº5�<y��	T�ãº5�<i��
T�æº5�<e��T�éº5�<Œ��T�íº5�<��T�ñº5�<‘��T�õº5�<��T�øº5�<¼��#T�üº5�<À��'T��»5�<Ä��+T�»5�<h��2T�»5�<l��6T�»5�<m��:T�»5�<x��@T�»5�<y��ET�»5�<i��IT�"»5�<Å��LT�%»5�<Á��OT�(»5�<½��RT�+»5�<Œ��VT�/»5�<��YT�3»5�<‘��^T�7»5�<��aT�:»5�<”��eT�>»5�<˜��jT�C»5�<œ��rT�K»5�<��{T�T»5�<™��T�X»5�<•��‚T�[»5�<©��…T�^»5�<x��‰T�b»5�<|��T�f»5�<€��T�i»5�<l��”T�m»5�<m��—T�p»5�<„��›T�u»5�<ˆ�� T�y»5�<Œ��£T�|»5�<��§T�€»5�<‰��ªT�ƒ»5�<��®T�‡»5�<‘��±T�Š»5�<l��´T�»5�<m��¸T�‘»5�<”��»T�”»5�<˜��¿T�˜»5�<œ��ÄT�»5�<x��ËT�¤»5�<y��ÏT�¨»5�<��ÓT�¬»5�<™��ÖT�¯»5�<•��ÚT�³»5�<…��ÝT�¶»5�<��àT�¹»5�<}��ãT�¼»5�<y��æT�¿»5�<x��êT�û5�<|��îT�Ç»5�<€��òT�Ë»5�<l��õT�λ5�<m��ùT�Ò»5�<„��üT�Õ»5�<ˆ���U�Ù»5�<Œ��U�Ü»5�<��U�à»5�<‰��
-U�ã»5�<��U�ç»5�<‘��U�ê»5�<l��U�í»5�<m��U�ñ»5�<”��U�ô»5�<˜��U�ø»5�<œ��$U�ý»5�<x��*U�¼5�<y��.U�¼5�<��2U�¼5�<™��5U�¼5�<•��9U�¼5�<…��<U�¼5�<��?U�¼5�<}��BU�¼5�<y��EU�¼5�<x��JU�#¼5�<|��MU�&¼5�<€��QU�*¼5�<l��TU�-¼5�<m��XU�1¼5�<„��[U�4¼5�<ˆ��_U�8¼5�<Œ��bU�<¼5�<��fU�?¼5�<‰��iU�B¼5�<��mU�F¼5�<‘��pU�I¼5�<l��sU�M¼5�<m��wU�P¼5�<”��zU�S¼5�<˜��~U�W¼5�<œ��‚U�\¼5�<x��‰U�b¼5�<y��U�f¼5�<��‘U�j¼5�<™��”U�m¼5�<•��˜U�q¼5�<…��›U�t¼5�<��žU�w¼5�<}��¡U�z¼5�<y��¤U�}¼5�<x��¨U�¼5�<|��¬U�…¼5�<€��¯U�ˆ¼5�<l��³U�Œ¼5�<m��¶U�¼5�<„��ºU�“¼5�<ˆ��½U�–¼5�<Œ��ÁU�š¼5�<��ÄU�¼5�<‰��ÇU� ¼5�<��ËU�¤¼5�<‘��ÎU�§¼5�<l��ÒU�«¼5�<m��ÕU�®¼5�<”��ØU�²¼5�<˜��ÜU�µ¼5�<œ��áU�º¼5�<x��çU�À¼5�<y��ëU�ļ5�<��ïU�ȼ5�<™��òU�˼5�<•��õU�ϼ5�<…��ùU�Ò¼5�<��üU�Õ¼5�<}��ÿU�ؼ5�<y��V�Û¼5�<¨��V�ß¼5�<€��V�ä¼5�<„��V�è¼5�<$���V�ë¼5�<%���V�ï¼5�<…��V�ó¼5�<��V�ö¼5�<¬��!V�ú¼5�<­��%V�þ¼5�<d��(V�½5�<h��,V�½5�<l��0V�	½5�<m��3V�½5�<x��:V�½5�<y��>V�½5�<i��BV�½5�<e��EV�½5�<Œ��IV�"½5�<��MV�&½5�<‘��QV�*½5�<��TV�-½5�<„��XV�1½5�<…��\V�5½5�<d��_V�8½5�<h��cV�<½5�<l��gV�@½5�<m��jV�C½5�<x��pV�J½5�<y��uV�N½5�<i��xV�R½5�<e��|V�U½5�<°��V�X½5�<±��ƒV�\½5�<´��‡V�`½5�<µ��ŠV�c½5�<¸��ŽV�g½5�<¹��‘V�j½5�<Œ��”V�n½5�<��˜V�q½5�<‘��œV�u½5�<��ŸV�x½5�<d��£V�|½5�<h��¦V�½5�<l��ªV�ƒ½5�<m��­V�†½5�<x��´V�½5�<y��¸V�‘½5�<i��¼V�•½5�<e��¿V�˜½5�<Œ��ÃV�œ½5�<��ÆV�Ÿ½5�<‘��ÊV�¤½5�<��ÎV�§½5�<¼��ÑV�«½5�<À��ÕV�®½5�<Ä��ØV�±½5�<h��ÝV�¶½5�<l��áV�º½5�<m��äV�½½5�<x��ëV�Ľ5�<y��ïV�Ƚ5�<i��óV�̽5�<Å��öV�Ͻ5�<Á��ùV�Ò½5�<½��üV�Õ½5�<Œ���W�Ù½5�<��W�ݽ5�<p��W�â½5�<t��W�é½5�<t��W�ñ½5�<u��W�ö½5�<u��!W�ú½5�<q��%W�þ½5�<‘��)W�¾5�<��,W�¾5�<”��0W�	¾5�<˜��4W�
¾5�<œ��:W�¾5�<��BW�¾5�<™��FW�¾5�<•��IW�"¾5�<©��LW�%¾5�<x��PW�*¾5�<|��TW�-¾5�<€��XW�1¾5�<l��[W�4¾5�<m��_W�8¾5�<„��bW�;¾5�<ˆ��fW�?¾5�<Œ��jW�C¾5�<��mW�F¾5�<‰��pW�I¾5�<��tW�M¾5�<‘��wW�P¾5�<l��zW�T¾5�<m��~W�W¾5�<”��W�[¾5�<˜��…W�_¾5�<Ì��ŠW�c¾5�<Ð��W�i¾5�<\���•W�n¾5�<]���™W�r¾5�<Ô��žW�w¾5�<È��¢W�{¾5�<\���¦W�¾5�<]���©W�‚¾5�<p��­W�†¾5�<t��ÁW�š¾5�<t��ÈW�¡¾5�<u��ÎW�§¾5�<u��ÒW�«¾5�<q��ÖW�¯¾5�<t��ÚW�³¾5�<t��àW�º¾5�<u��åW�¾¾5�<u��éW�¾5�<É��ìW�ž5�<Õ��ðW�ɾ5�<Ñ��óW�̾5�<Ø��øW�Ѿ5�<Ù��ûW�Ô¾5�<Í��ÿW�ؾ5�<œ��X�ܾ5�<x��
-X�ã¾5�<y��X�è¾5�<��X�ë¾5�<™��X�ï¾5�<•��X�ó¾5�<…��X�ö¾5�<�� X�ù¾5�<}��#X�ü¾5�<y��'X��¿5�<x��+X�¿5�<|��/X�¿5�<€��3X�¿5�<l��6X�¿5�<m��:X�¿5�<„��=X�¿5�<ˆ��AX�¿5�<Œ��EX�¿5�<��IX�"¿5�<‰��LX�%¿5�<��PX�)¿5�<‘��SX�,¿5�<l��VX�/¿5�<m��ZX�3¿5�<”��]X�6¿5�<˜��aX�:¿5�<œ��fX�?¿5�<x��lX�E¿5�<y��qX�J¿5�<��tX�M¿5�<™��xX�Q¿5�<•��{X�T¿5�<…��~X�W¿5�<��X�[¿5�<}��…X�^¿5�<y��ˆX�a¿5�<x��ŒX�f¿5�<|��X�i¿5�<€��”X�m¿5�<l��—X�p¿5�<m��›X�t¿5�<„��žX�x¿5�<ˆ��¢X�{¿5�<Œ��¦X�¿5�<��©X�‚¿5�<‰��¬X�…¿5�<��°X�‰¿5�<‘��³X�Œ¿5�<l��·X�¿5�<m��ºX�“¿5�<”��¾X�—¿5�<˜��ÂX�›¿5�<œ��ÆX�Ÿ¿5�<x��ÌX�¥¿5�<y��ÑX�ª¿5�<��ÔX�­¿5�<™��×X�±¿5�<•��ÛX�´¿5�<…��ÞX�·¿5�<��áX�º¿5�<}��äX�¾¿5�<y��èX�Á¿5�<x��ëX�Å¿5�<|��ïX�È¿5�<€��óX�Ì¿5�<l��öX�Ï¿5�<m��úX�Ó¿5�<„��ýX�Ö¿5�<ˆ��Y�Ú¿5�<Œ��Y�Ý¿5�<��Y�á¿5�<‰��Y�ä¿5�<��Y�è¿5�<‘��Y�ë¿5�<l��Y�î¿5�<m��Y�ò¿5�<”��Y�õ¿5�<˜�� Y�ù¿5�<œ��%Y�þ¿5�<x��+Y�À5�<y��/Y�À5�<��3Y�À5�<™��6Y�À5�<•��:Y�À5�<…��=Y�À5�<��@Y�À5�<}��CY�À5�<y��FY� À5�<ð��KY�$À5�<ô��RY�,À5�<Ä��WY�1À5�<Å��\Y�5À5�<õ��_Y�8À5�<ñ��cY�<À5�<x��fY�?À5�<|��jY�CÀ5�<€��mY�FÀ5�<l��rY�KÀ5�<m��uY�NÀ5�<„��yY�RÀ5�<ˆ��|Y�UÀ5�<Œ��€Y�YÀ5�<��ƒY�\À5�<‰��†Y�_À5�<��ŠY�cÀ5�<‘��Y�fÀ5�<l��Y�jÀ5�<m��”Y�mÀ5�<”��—Y�qÀ5�<˜��›Y�tÀ5�<œ�� Y�yÀ5�<x��¦Y�À5�<y��«Y�„À5�<��®Y�‡À5�<™��²Y�‹À5�<•��µY�ŽÀ5�<…��¸Y�‘À5�<��»Y�”À5�<}��¿Y�˜À5�<y��ÂY�›À5�<x��ÆY�ŸÀ5�<|��ÉY�£À5�<€��ÍY�¦À5�<l��ÒY�«À5�<m��ÕY�®À5�<„��ÙY�²À5�<ˆ��ÜY�µÀ5�<Œ��àY�¹À5�<��ãY�¼À5�<‰��æY�¿À5�<��êY�ÃÀ5�<‘��íY�ÆÀ5�<l��ñY�ÊÀ5�<m��ôY�ÍÀ5�<”��øY�ÑÀ5�<˜��üY�ÕÀ5�<œ���Z�ÙÀ5�<x��Z�ßÀ5�<y��Z�äÀ5�<��Z�èÀ5�<™��Z�ëÀ5�<•��Z�îÀ5�<…��Z�ñÀ5�<��Z�õÀ5�<}��Z�øÀ5�<y��"Z�ûÀ5�<Ü��)Z�Á5�<à��-Z�Á5�<á��1Z�
-Á5�<Ý��4Z�
Á5�<ä��9Z�Á5�<å��<Z�Á5�<Ì��AZ�Á5�<Í��EZ�Á5�<a��IZ�"Á5�<a��MZ�'Á5�<]��QZ�*Á5�<ø��WZ�0Á5�<Ì��\Z�5Á5�<Ð��aZ�;Á5�<\���eZ�>Á5�<]���iZ�BÁ5�<Ô��mZ�FÁ5�<È��qZ�JÁ5�<\���tZ�MÁ5�<]���xZ�QÁ5�<p��|Z�UÁ5�<t��ƒZ�\Á5�<t��ŠZ�cÁ5�<u��Z�hÁ5�<u��“Z�lÁ5�<q��—Z�pÁ5�<t��›Z�tÁ5�<t��¡Z�zÁ5�<u��¥Z�~Á5�<u��©Z�‚Á5�<É��¬Z�…Á5�<Õ��°Z�‰Á5�<Ñ��³Z�ŒÁ5�<Ø��·Z�Á5�<Ù��ºZ�“Á5�<Í��¾Z�—Á5�<Ø��ÂZ�›Á5�<Ù��ÅZ�žÁ5�<ù��ÉZ�¢Á5�<ü��ÍZ�¦Á5�<���ÓZ�¬Á5�<˜��ßZ�¸Á5�<œ��æZ�¿Á5�<��öZ�ÏÁ5�<™��úZ�ÓÁ5�<��ýZ�×Á5�<ý��[�ÚÁ5�<É��[�ÝÁ5�<d��
-[�ãÁ5�<h��
[�çÁ5�<l��[�êÁ5�<m��[�îÁ5�<p��[�óÁ5�<t��[�ùÁ5�<u��-[�Â5�<q��2[�Â5�<x��8[�Â5�<y��>[�Â5�<i��A[�Â5�<e��E[�Â5�<”��I[�"Â5�<˜��M[�&Â5�<œ��S[�,Â5�<��^[�8Â5�<™��b[�<Â5�<•��f[�?Â5�<��k[�DÂ5�<��s[�LÂ5�<	��y[�RÂ5�<��‚[�[Â5�<
��Õ[�®Â5�<��Ù[�³Â5�<Å��Ý[�¶Â5�<!��â[�»Â5�<��ç[�ÀÂ5�<%��ë[�ÄÂ5�ç���˜D�äh:�ç���±D�ûh:�ç���ÂD�i:�ç ���ÓD�i:�ç$���ÝD�%i:�ç%���ãD�,i:�ç!���çD�0i:�ç���íD�5i:�ç���ñD�9i:�ç(���ùD�Bi:�ç,����E�Ii:�ç0���E�Oi:�ç1���E�Wi:�ç4���E�^i:�ç5���!E�ji:�ç-���%E�mi:�ç8���/E�wi:�ç9���5E�}i:�ç)���9E�‚i:�ç<���FE�i:�ç$���LE�”i:�ç%���PE�˜i:�ç=���[E�¤i:�çL���fE�¯i:�çP���pE�¸i:�çT���uE�¾i:�çX���|E�Åi:�ç\���„E�Íi:�ç]���ŠE�Ói:�ç`���‘E�Úi:�çd���™E�âi:�çh���£E�ëi:�çl���¬E�õi:�ç$���²E�ûi:�ç%���¶E�ÿi:�çm���¼E�j:�çi���ÂE�
-j:�çe���ÇE�j:�ça���ËE�j:�çY���ÐE�j:�çp���ÙE�!j:�çq���ÞE�'j:�çU���âE�*j:�çt���çE�/j:�çu���íE�6j:�çx���
-F�Sj:�çy���ÊK�p:�çQ���ÚK�#p:�çM���âK�+p:�ç���éK�2p:�<$��ÉÙ�}Q@�<(��Ú�µQ@�<)��Ú�ÈQ@�<,��!Ú�ÒQ@�<���+Ú�ÜQ@�<���8Ú�éQ@�<0��@Ú�ñQ@�<,���FÚ�÷Q@�<Œ��NÚ�ÿQ@�<��^Ú�R@�<‘��eÚ�R@�<��oÚ�!R@�<‘��tÚ�&R@�<��|Ú�-R@�<‘��€Ú�1R@�<��‡Ú�8R@�<‘��‹Ú�<R@�<��‘Ú�BR@�<‘��•Ú�FR@�<��œÚ�MR@�<‘�� Ú�QR@�<��¦Ú�WR@�<‘��ªÚ�[R@�<��°Ú�bR@�<‘��µÚ�fR@�<��»Ú�lR@�<‘��¿Ú�pR@�<��ÅÚ�vR@�<‘��ÉÚ�zR@�<��ÏÚ�€R@�<4���ÔÚ�…R@�<5���ÛÚ�ŒR@�<-���ßÚ�R@�<4��èÚ�™R@�<8��óÚ�¤R@�<$���øÚ�©R@�<%���þÚ�¯R@�<9��Û�´R@�<5��Û�¹R@�<1��Û�¼R@�<-��Û�ÁR@�<<��Û�ÇR@�<@��Û�ÏR@�<D��&Û�×R@�<H��+Û�ÜR@�<$���1Û�âR@�<%���4Û�åR@�<L��;Û�íR@�<$���?Û�ðR@�<%���DÛ�öR@�<P��JÛ�ûR@�<T��OÛ��S@�<X��TÛ�S@�<$���YÛ�
-S@�<%���\Û�
S@�<Y��_Û�S@�<U��bÛ�S@�<\��fÛ�S@�<]��mÛ�S@�<Q��pÛ�!S@�<M��uÛ�&S@�<I��zÛ�+S@�<E��}Û�.S@�<`��ƒÛ�4S@�<a��ˆÛ�9S@�<d��Û�>S@�<e��‘Û�BS@�<`��–Û�GS@�<a��™Û�JS@�<h��Û�NS@�<i��¡Û�RS@�<l��¥Û�VS@�<m��©Û�ZS@�<p��®Û�_S@�<t��²Û�dS@�<x��¸Û�jS@�<y��¾Û�pS@�<u��ÃÛ�tS@�<q��ÇÛ�xS@�<|��ÍÛ�~S@�<}��ÑÛ�‚S@�<€��ØÛ�‰S@�<„��ÝÛ�ŽS@�<ˆ��äÛ�•S@�<Œ��êÛ�›S@�<��ïÛ� S@�<$���óÛ�¥S@�<%���÷Û�¨S@�<‘��ÿÛ�±S@�<��Ü�´S@�<‰��Ü�·S@�<…��	Ü�ºS@�<��Ü�¾S@�<”��Ü�ÃS@�<•��Ü�ÈS@�<˜��Ü�ÌS@�<œ��Ü�ÐS@�< ��$Ü�ÕS@�<¡��+Ü�ÜS@�<��.Ü�ßS@�<™��2Ü�ãS@�<¤��7Ü�èS@�<¥��<Ü�íS@�<¨��@Ü�ñS@�<©��CÜ�ôS@�<d��HÜ�ùS@�<e��KÜ�üS@�<ˆ��PÜ�T@�<,���TÜ�T@�<Œ��XÜ�	T@�<��\Ü�
T@�<4���`Ü�T@�<5���eÜ�T@�<-���hÜ�T@�<¬��nÜ�T@�<Œ��uÜ�&T@�<��xÜ�*T@�<Œ��|Ü�-T@�<��€Ü�1T@�<��ˆÜ�9T@�<‘��ŒÜ�=T@�<��’Ü�CT@�<‘��–Ü�GT@�<��Ü�NT@�<‘��¡Ü�RT@�<��¦Ü�WT@�<‘��ªÜ�[T@�<��°Ü�aT@�<‘��´Ü�eT@�<��¹Ü�jT@�<‘��½Ü�nT@�<��ÃÜ�uT@�<‘��ÇÜ�xT@�<��ÌÜ�~T@�<‘��ÐÜ�‚T@�<��ÖÜ�‡T@�<‘��ÚÜ�‹T@�<��ßÜ�T@�<‘��ãÜ�”T@�<��éÜ�šT@�<‘��íÜ�žT@�<��óÜ�¤T@�<‘��÷Ü�¨T@�<��üÜ�­T@�<‘���Ý�±T@�<��Ý�·T@�<‘��
-Ý�»T@�<��Ý�ÀT@�<‘��Ý�ÄT@�<��Ý�ÊT@�<‘��Ý�ÎT@�<��"Ý�ÓT@�<‘��&Ý�×T@�<��+Ý�ÝT@�<‘��/Ý�áT@�<��5Ý�æT@�<‘��9Ý�êT@�<��>Ý�ïT@�<‘��BÝ�óT@�<­��FÝ�÷T@�<‰��JÝ�ûT@�<d��NÝ�ÿT@�<e��QÝ�U@�<(���VÝ�U@�<,���ZÝ�U@�<Œ��^Ý�U@�<��aÝ�U@�<4���eÝ�U@�<5���iÝ�U@�<-���mÝ�U@�<¬��rÝ�#U@�<Œ��vÝ�'U@�<��zÝ�+U@�<Œ��}Ý�.U@�<��Ý�2U@�<��‡Ý�8U@�<‘��‹Ý�<U@�<��Ý�AU@�<‘��”Ý�EU@�<��šÝ�KU@�<‘��žÝ�OU@�<��£Ý�UU@�<‘��§Ý�YU@�<��­Ý�^U@�<‘��±Ý�bU@�<��¶Ý�hU@�<‘��ºÝ�lU@�<��ÀÝ�qU@�<‘��ÄÝ�uU@�<��ÉÝ�zU@�<‘��ÍÝ�U@�<��ÓÝ�„U@�<‘��×Ý�ˆU@�<��ÜÝ�U@�<‘��àÝ�‘U@�<��æÝ�—U@�<‘��êÝ�›U@�<��ïÝ� U@�<‘��óÝ�¤U@�<��ùÝ�ªU@�<‘��ýÝ�®U@�<��Þ�³U@�<‘��Þ�·U@�<��Þ�½U@�<‘��Þ�ÁU@�<��Þ�ÆU@�<‘��Þ�ÊU@�<��Þ�ÐU@�<‘��#Þ�ÔU@�<��(Þ�ÙU@�<‘��,Þ�ÝU@�<��1Þ�ãU@�<‘��5Þ�çU@�<��;Þ�ìU@�<‘��?Þ�ðU@�<­��CÞ�ôU@�<)���FÞ�÷U@�<8���KÞ�üU@�<9���OÞ��V@�<”��TÞ�V@�<•��XÞ�	V@�<°��\Þ�V@�<´��cÞ�V@�<µ��iÞ�V@�<±��mÞ�V@�<A��qÞ�"V@�<¸��vÞ�'V@�<¼��{Þ�-V@�<À��‚Þ�3V@�<$���ˆÞ�9V@�<%���‹Þ�<V@�<Á��ŽÞ�@V@�<Ä��•Þ�FV@�<È��šÞ�KV@�<É��Þ�NV@�<Ì��¡Þ�RV@�<Ð��¦Þ�WV@�<Ô��­Þ�^V@�<Ø��´Þ�eV@�<Ü��¼Þ�mV@�<à��ÁÞ�rV@�<¸��ÈÞ�yV@�<x��ÓÞ�„V@�<y��ÜÞ�V@�<¼��áÞ�’V@�<½��æÞ�—V@�<À��êÞ�›V@�<Á��ïÞ� V@�<Ä��óÞ�¤V@�<Å��øÞ�ªV@�<¹��ýÞ�®V@�<á��ß�³V@�<ä��ß�¸V@�<å��ß�½V@�<è��ß�ÇV@�<é��qß�#W@�<Ý��xß�)W@�<Ù��{ß�-W@�<Õ��ß�0W@�<ì��†ß�8W@�<ð��ß�>W@�<ô��“ß�DW@�<ø��—ß�HW@�<ü��œß�MW@�<ý�� ß�QW@�<���¤ß�UW@�<˜���´ß�eW@�<™���¹ß�kW@�<��½ß�nW@�<ù��Áß�rW@�<��Åß�wW@�<��Êß�{W@�<õ��Íß�W@�<ñ��Ñß�‚W@�<í��Ôß�…W@�<Ñ��×ß�ˆW@�<Í��Úß�ŒW@�<`��áß�’W@�<a��åß�–W@�<h��éß�šW@�<i��ìß�žW@�<Å��ðß�¢W@�<½��ôß�¦W@�<¹��øß�©W@�<��ýß�®W@�<��à�²W@�<��	à�»W@�<��à�ÁW@�<��à�ÆW@�<ü��à�ÊW@�<ý��à�ÎW@�<�� à�ÑW@�<
��$à�ÕW@�<	��'à�ØW@�<��+à�ÜW@�<��/à�àW@�<=��2à�äW@�<��<à�íW@�< ��Bà�óW@�<$��Gà�øW@�<(��Oà��X@�<,��Zà�X@�<$���_à�X@�<%���bà�X@�<0��hà�X@�<4��qà�"X@�<5��‹à�=X@�<1��’à�CX@�<-��–à�GX@�<8��œà�MX@�<<��¢à�TX@�<@��¨à�YX@�<D��®à�_X@�<$���³à�dX@�<%���¶à�gX@�<H��¾à�pX@�<$���Ãà�tX@�<%���Æà�wX@�<I��Ëà�|X@�<L��Ðà�X@�<M��Öà�ˆX@�<P��Üà�X@�<T��áà�’X@�<U��æà�—X@�<X��êà�œX@�<Y��ðà�¡X@�<Q��óà�¤X@�<E��÷à�¨X@�<A��ûà�¬X@�<=���á�±X@�<\��á�·X@�<`��á�½X@�<a��á�ÅX@�<���á�ÉX@�<���á�ÐX@�<d��%á�ÖX@�<Œ��+á�ÜX@�<��/á�àX@�<h��3á�äX@�<i��7á�èX@�<l��>á�ïX@�<m��Há�ùX@�<°���Ná�ÿX@�<±���Tá�Y@�<p��\á�Y@�<q��eá�Y@�<t��já�Y@�<u��pá�!Y@�<e��vá�'Y@�<]��zá�+Y@�<9��}á�.Y@�<x��…á�6Y@�<y��‰á�:Y@�<|��á�>Y@�<€��’á�DY@�<`��–á�HY@�<a��›á�LY@�<d��Ÿá�PY@�<Œ��¤á�UY@�<��¨á�YY@�<h��¬á�]Y@�<¨���²á�cY@�<©���¸á�iY@�<i��»á�lY@�<e��Áá�rY@�<��Åá�vY@�<}��Èá�yY@�<„��Ìá�~Y@�<…��Ñá�‚Y@�<|��Õá�†Y@�<€��Ùá�ŠY@�<`��Ýá�ŽY@�<a��áá�’Y@�<d��åá�–Y@�<Œ��éá�šY@�<��ìá�žY@�<h��ðá�¡Y@�<¨���ôá�¥Y@�<©���øá�©Y@�<i��ûá�¬Y@�<°���â�²Y@�<±���â�¸Y@�<p��Mâ�ÿY@�<q��Yâ�
-Z@�<e��bâ�Z@�<��fâ�Z@�<}��jâ�Z@�<ˆ��qâ�"Z@�<Œ��|â�.Z@�<��„â�5Z@�<‘��‰â�:Z@�<��â�>Z@�<”��“â�DZ@�<˜��˜â�ÀZ@�<œ��»â�ÎZ@�<��Áâ�ÓZ@�<™��Åâ�×Z@�< ��Êâ�ÝZ@�<¤��Ðâ�âZ@�<¥��Ôâ�çZ@�<¨��Ùâ�ìZ@�<¬��ßâ�òZ@�<­��äâ�÷Z@�<©��çâ�úZ@�<°��îâ�[@�<´��ôâ�[@�<µ��üâ�[@�<´��ÿâ�[@�<µ��ã�[@�<¸��	ã�[@�<¼��ã�*[@�<½��4ã�G[@�<¹��:ã�L[@�<À��@ã�R[@�<Ä��Hã�[[@�<Å��Pã�c[@�<Á��Sã�f[@�<È��Yã�k[@�<Ì��^ã�q[@�<Ð��eã�x[@�<Ñ��}ã�[@�<Í��‚ã�•[@�<Ô��‡ã�š[@�<À��Žã� [@�<Ä��”ã�¦[@�<Å��˜ã�«[@�<Á��ã�¯[@�<Õ�� ã�³[@�<Ì��¥ã�¸[@�<Ð��ªã�½[@�<Ñ��¯ã�Â[@�<Í��³ã�Æ[@�<À��·ã�Ê[@�<Ä��¼ã�Ï[@�<Å��Àã�Ó[@�<Á��Äã�×[@�<Ì��Èã�Û[@�<Ð��Íã�à[@�<Ñ��Òã�å[@�<Í��Öã�è[@�<Ì��Ùã�ì[@�<Ð��Þã�ñ[@�<Ñ��ãã�ö[@�<Í��çã�ú[@�<Ø��ìã�ÿ[@�<Ì��ðã�\@�<Ð��õã�\@�<Ñ��úã�
\@�<Í��þã�\@�<Ù��ä�\@�<À��ä�\@�<Ä��
-ä�\@�<Å��ä�"\@�<Á��ä�%\@�<À��ä�*\@�<Ä��ä�/\@�<Å�� ä�3\@�<Á��$ä�7\@�<À��(ä�;\@�<Ä��-ä�@\@�<Å��2ä�D\@�<Á��5ä�H\@�<À��9ä�L\@�<Ä��>ä�Q\@�<Å��Bä�U\@�<Á��Fä�Y\@�<À��Jä�]\@�<Ä��Oä�b\@�<Å��Sä�f\@�<Á��Wä�i\@�<Ü��[ä�n\@�<à��aä�t\@�<ä��fä�y\@�<è��oä�\@�<é��tä�‡\@�<å��xä�Š\@�<ì��~ä�\@�<ð��„ä�—\@�<ñ��‰ä�œ\@�<ô��ä�£\@�<ø��Ÿä�²\@�<ù��¤ä�·\@�<õ��¨ä�»\@�<À��¬ä�¿\@�<Ä��²ä�Å\@�<Å��·ä�É\@�<Á��ºä�Í\@�<À��¾ä�Ñ\@�<Ä��Ãä�Ö\@�<Å��Çä�Ú\@�<Á��Ëä�Þ\@�<ô��Ïä�á\@�<ø��Ôä�ç\@�<ù��Ùä�ë\@�<õ��Üä�ï\@�<ü��áä�ô\@�<ð��æä�ù\@�<ñ��êä�ü\@�<À��íä��]@�<Ä��óä�]@�<Å��øä�
-]@�<Á��ûä�]@�<����å�]@�<��å�]@�<Ì��å�]@�<Ð��å�#]@�<Ñ��å�2]@�<Í��#å�6]@�<��'å�:]@�<��,å�?]@�<��1å�C]@�<À��6å�I]@�<Ä��<å�O]@�<Å��Aå�T]@�<Á��Då�W]@�<Ì��Hå�[]@�<Ð��Nå�`]@�<Ñ��Wå�j]@�<Í��[å�m]@�<	��^å�q]@�<���bå�u]@�<��få�y]@�<Ì��jå�}]@�<Ð��oå�‚]@�<Ñ��xå�‹]@�<Í��|å�]@�<��€å�“]@�<��„å�—]@�<��ˆå�š]@�<À��Žå� ]@�<Ä��“å�¦]@�<Å��˜å�«]@�<Á��œå�®]@�<��¡å�´]@�<
��¨å�º]@�<À��«å�¾]@�<Ä��±å�Ä]@�<Å��µå�È]@�<Á��¹å�Ì]@�<	��¼å�Ï]@�<���Àå�Ó]@�<��Äå�×]@�<Ì��Çå�Ú]@�<Ð��Íå�à]@�<Ñ��Öå�é]@�<Í��Úå�í]@�<��Þå�ñ]@�<��âå�õ]@�<��æå�ù]@�<À��êå�ý]@�<Ä��ðå�^@�<Å��õå�^@�<Á��øå�^@�<Ì��üå�^@�<Ð��æ�^@�<Ñ��
-æ�^@�<Í��æ�!^@�<	��æ�$^@�<ý��æ�(^@�<ô��æ�,^@�<ø�� æ�3^@�<ù��%æ�7^@�<õ��(æ�;^@�<��-æ�?^@�<��4æ�G^@�<��9æ�L^@�<��=æ�P^@�<À��Aæ�T^@�<Ä��Fæ�Y^@�<Å��Kæ�^^@�<Á��Oæ�a^@�<��Ræ�e^@�<��Wæ�j^@�<��\æ�n^@�<��_æ�r^@�<í��bæ�u^@�<��iæ�|^@�<��pæ�ƒ^@�<��uæ�ˆ^@�<��yæ�‹^@�<á��|æ�^@�<Ý��€æ�“^@�<É��„æ�—^@�<Ì��‰æ�œ^@�<Ð��æ�¡^@�<Ñ��”æ�§^@�<Í��˜æ�ª^@�<À��œæ�¯^@�<Ä��¡æ�´^@�<Å��¥æ�¸^@�<Á��©æ�¼^@�<À��­æ�À^@�<Ä��²æ�Å^@�<Å��¶æ�É^@�<Á��ºæ�Ì^@�< ��Âæ�Õ^@�<$��Èæ�Û^@�<%��Íæ�à^@�<(��Öæ�é^@�<)��#ç�A`@�<!��,ç�J`@�<,��6ç�T`@�<0��>ç�[`@�<4��Cç�a`@�<8��Oç�l`@�<9��Uç�s`@�<5��Yç�w`@�<1��^ç�{`@�<-��aç�`@�<<��gç�…`@�<4��lç�‰`@�<8��rç�`@�<9��vç�”`@�<5��zç�—`@�<@��‡ç�¤`@�<D��Œç�ª`@�<H��‘ç�¯`@�<$���—ç�´`@�<%���šç�¸`@�<I��žç�»`@�<E��¡ç�¾`@�<A��§ç�Å`@�<=��¬ç�Ê`@�<L��°ç�Î`@�<P��µç�Ó`@�<T��½ç�Û`@�<U��Äç�á`@�<X��Éç�ç`@�<Y��Ïç�í`@�<Q��Òç�ð`@�<M��Ùç�÷`@�<L��Ýç�û`@�<P��áç�ÿ`@�<T��çç�a@�<U��îç�a@�<X��òç�a@�<Y��öç�a@�<Q��ùç�a@�<M��þç�a@�<±��è� a@�<¡��è�%a@�<•��è�*a@�<à��è�1a@�<á��è�7a@�<‰��è�:a@�<\��'è�Ea@�<`��.è�Ka@�<$���2è�Pa@�<%���6è�Ta@�<a��=è�[a@�<]��@è�^a@�<d��Hè�ea@�<h��Lè�ja@�<l��Qè�na@�<m��Uè�sa@�<p��[è�xa@�<t��dè�‚a@�<u��jè�ˆa@�<q��oè�Œa@�<x��wè�•a@�<y��è�œa@�<i��ƒè�¡a@�<e��‡è�¥a@�<|��è�ªa@�<€��’è�°a@�<„��—è�´a@�<$���›è�¹a@�<%���Ÿè�¼a@�<…��¥è�Ãa@�<��©è�Æa@�<d��®è�Ëa@�<h��±è�Ïa@�<l��µè�Óa@�<m��¹è�×a@�<x��Áè�ßa@�<y��Æè�ãa@�<i��Êè�ça@�<e��Íè�êa@�<ˆ��Óè�ña@�<d��Ùè�÷a@�<h��Ýè�úa@�<l��áè�ÿa@�<m��åè�b@�<x��ëè�	b@�<y��ïè�
b@�<i��óè�b@�<e��öè�b@�<d��ûè�b@�<h��ÿè�b@�<l��é� b@�<m��é�#b@�<x��é�*b@�<y��é�.b@�<i��é�2b@�<e��é�5b@�<Œ��é�=b@�<��$é�Bb@�<‘��*é�Gb@�<��-é�Jb@�<d��1é�Ob@�<h��5é�Sb@�<l��9é�Wb@�<m��=é�Zb@�<x��Cé�ab@�<y��Gé�eb@�<i��Ké�ib@�<e��Né�lb@�<‰��Sé�pb@�<d��Wé�ub@�<h��[é�yb@�<l��_é�}b@�<m��bé�€b@�<x��hé�†b@�<y��mé�Šb@�<i��pé�Žb@�<e��té�‘b@�<”��xé�•b@�<˜��}é�šb@�<œ��ˆé�¥b@�<��•é�³b@�<™��™é�¶b@�<•��é�ºb@�<}�� é�½b@�<d��¤é�Áb@�<h��§é�Åb@�<l��«é�Èb@�<m��®é�Ìb@�<p��³é�Ðb@�<t��ºé�Øb@�<u��Éé�çb@�<q��Íé�ëb@�<x��Óé�ñb@�<y��×é�õb@�<i��Ûé�ùb@�<e��Þé�üb@�<”��âé��c@�<˜��æé�c@�<œ��ìé�	c@�<��òé�c@�<™��öé�c@�<•��ùé�c@�< ��þé�c@�<¤��ê� c@�<¨��ê�%c@�<$���
ê�+c@�<%���ê�.c@�<¬��ê�3c@�<­��ê�7c@�<°��ê�=c@�<´��(ê�Fc@�<µ��9ê�Wc@�<±��>ê�\c@�<©��Aê�_c@�<¥��Eê�bc@�<¡��Hê�ec@�<*��Nê�kc@�<¸��Uê�sc@�<¼��Zê�xc@�<À��^ê�|c@�<$���bê�€c@�<%���fê�ƒc@�<¬��jê�‡c@�<­��nê�‹c@�<°��sê�c@�<´��yê�–c@�<µ��‚ê�Ÿc@�<±��†ê�¤c@�<Á��Šê�§c@�<½��ê�ªc@�<¹��ê�®c@�<&��”ê�²c@�<Ä��œê�ºc@�<\��¢ê�¿c@�<`��¦ê�Ãc@�<$���ªê�Çc@�<%���­ê�Êc@�<a��²ê�Ïc@�<]��µê�Òc@�<d��¹ê�Öc@�<h��¼ê�Úc@�<l��Áê�Þc@�<m��Äê�ác@�<p��Èê�æc@�<t��Îê�ìc@�<u��Óê�ðc@�<q��Öê�ôc@�<x��Ýê�úc@�<y��áê�ÿc@�<i��åê�d@�<e��èê�d@�<Œ��íê�
-d@�<��ñê�d@�<‘��õê�d@�<��ùê�d@�<È��þê�d@�<Ì��ë�!d@�<Í��ë�%d@�<Ì��ë�*d@�<Í��ë�-d@�<Ð��ë�4d@�<Ô��ë�9d@�<$��� ë�=d@�<%���#ë�Ad@�<Õ��'ë�Ed@�<Ø��,ë�Jd@�<„��0ë�Nd@�<$���4ë�Rd@�<%���7ë�Ud@�<…��<ë�Yd@�<Ù��?ë�\d@�<Ñ��Cë�ad@�<Ü��Ië�gd@�<à��Pë�md@�<ä��Të�qd@�<Ô��Xë�vd@�<$���\ë�zd@�<%���_ë�}d@�<Õ��cë�€d@�<å��fë�ƒd@�<á��ië�‡d@�<è��në�Œd@�<ì��së�d@�<$���wë�”d@�<%���zë�˜d@�<í��~ë�›d@�<é��‚ë� d@�<ð��Œë�ªd@�<ñ��‘ë�®d@�<ô��•ë�²d@�<ø��šë�¸d@�<ù��Ÿë�¼d@�<ü��¤ë�Âd@�<���ªë�Çd@�<��´ë�Ñd@�<��Ìë�êd@�<��Ôë�ñd@�<	��Úë�ød@�<��àë�þd@�<
��æë�e@�<��êë�e@�<(���òë�e@�<,���÷ë�e@�<Œ��ûë�e@�<���ì�e@�<4���ì�!e@�<5���	ì�&e@�<-���ì�)e@�<¬��ì�0e@�<Œ��ì�6e@�<��ì�9e@�<Œ�� ì�=e@�<��#ì�Ae@�<��+ì�Ie@�<‘��1ì�Ne@�<��6ì�Te@�<‘��;ì�Xe@�<��Aì�^e@�<‘��Eì�be@�<��Jì�he@�<‘��Nì�le@�<��Tì�re@�<‘��Xì�ve@�<��^ì�{e@�<‘��bì�e@�<��gì�…e@�<‘��lì�‰e@�<��qì�e@�<‘��uì�“e@�<��{ì�™e@�<‘��ì�e@�<��…ì�¢e@�<‘��‰ì�¦e@�<­��ì�ªe@�<)���‘ì�¯e@�<��—ì�´e@�<��¶ì�f@�<��Äì�f@�<��Èì�!f@�<��Ìì�%f@�<��Úì�2f@�< ��áì�9f@�<$��æì�?f@�<$���êì�Bf@�<%���íì�Ff@�<%��òì�Kf@�<!��õì�Nf@�<��üì�Uf@�<(��í�af@�<,��í�gf@�<$���í�kf@�<%���í�nf@�<-��í�wf@�<0��&í�f@�<4��+í�ƒf@�<8��0í�‰f@�<9��5í�f@�<<��8í�‘f@�<=��=í�–f@�<@��Bí�›f@�<A��Gí� f@�<<��Kí�£f@�<=��Ní�§f@�<D��Rí�«f@�<E��Ví�®f@�<H��^í�·f@�<I��¬í�5g@�<5��²í�:g@�<1��¶í�>g@�<)��ºí�Bg@�<��¾í�Fg@�<ý��Âí�Jg@�<L��Éí�Qg@�<P��Ïí�Wg@�<0��Òí�Zg@�<4��×í�_g@�<8��Úí�bg@�<9��Þí�fg@�<<��áí�ig@�<=��æí�ng@�<@��éí�rg@�<A��íí�ug@�<<��ñí�yg@�<=��ôí�|g@�<D��øí�€g@�<E��ûí�ƒg@�<H��î�‹g@�<I��î�—g@�<5��î�›g@�<1��î�žg@�<Q��î�¡g@�<M��î�¤g@�<T��!î�©g@�<X��'î�¯g@�<0��+î�³g@�<4��.î�¶g@�<8��2î�ºg@�<9��5î�½g@�<<��9î�Ág@�<=��<î�Åg@�<@��@î�Èg@�<A��Cî�Ëg@�<<��Gî�Ïg@�<=��Kî�Óg@�<D��Nî�Ög@�<E��Qî�Ùg@�<H��Wî�ßg@�<I��aî�ég@�<5��dî�íg@�<1��hî�ðg@�<Y��kî�óg@�<U��nî�ög@�<õ��qî�ùg@�<Ý��uî�ýg@�<\��|î�h@�<`��î�	h@�<d��…î�
h@�<h��Šî�h@�<l��Žî�h@�<m��“î�h@�<i��–î�h@�<L��›î�#h@�<M�� î�(h@�<p��¥î�-h@�<q��ªî�2h@�<\��°î�8h@�<`��´î�<h@�<$���¸î�@h@�<%���¼î�Dh@�<a��Áî�Ih@�<]��Åî�Mh@�<d��Éî�Qh@�<h��Ìî�Th@�<l��Ñî�Yh@�<m��Ôî�]h@�<p��Ùî�ah@�<t��âî�jh@�<u��çî�oh@�<q��ëî�sh@�<x��óî�|h@�<y��øî�€h@�<i��üî�„h@�<e��ÿî�‡h@�<d��ï�Œh@�<h��ï�h@�<l��ï�”h@�<m��ï�˜h@�<p��ï�œh@�<t��ï�£h@�<t��$ï�¬h@�<u��,ï�´h@�<u��/ï�·h@�<q��3ï�»h@�<x��9ï�Áh@�<y��>ï�Æh@�<i��Bï�Êh@�<e��Eï�Íh@�<d��Iï�Ñh@�<h��Lï�Ôh@�<l��Pï�Øh@�<m��Sï�Üh@�<x��Zï�âh@�<y��^ï�æh@�<i��bï�êh@�<e��eï�íh@�<”��iï�ñh@�<˜��mï�õh@�<œ��tï�üh@�<��{ï�i@�<™��ï�i@�<•��ƒï�i@�<e��†ï�i@�<x��‹ï�i@�<|��ï�i@�<€��–ï�i@�<l��›ï�#i@�<m��žï�&i@�<„��¢ï�*i@�<ˆ��§ï�/i@�<Œ��¬ï�4i@�<��°ï�8i@�<‰��´ï�<i@�<��¸ï�@i@�<‘��»ï�Ci@�<l��¿ï�Gi@�<m��Ãï�Ki@�<”��Çï�Oi@�<˜��Ìï�Ti@�<œ��Òï�Zi@�<x��Úï�bi@�<y��ßï�gi@�<��âï�ji@�<™��æï�ni@�<•��êï�ri@�<…��íï�ui@�<��ðï�xi@�<}��ôï�|i@�<y��÷ï�i@�<x��üï�„i@�<|���ð�ˆi@�<€��ð�Œi@�<l��ð�i@�<m��ð�“i@�<„��ð�—i@�<ˆ��ð�›i@�<Œ��ð�Ÿi@�<��ð�¢i@�<‰��ð�¥i@�<��!ð�©i@�<‘��$ð�¬i@�<l��(ð�°i@�<m��+ð�³i@�<”��.ð�¶i@�<˜��2ð�ºi@�<œ��7ð�¿i@�<x��=ð�Åi@�<y��Að�Êi@�<��Eð�Íi@�<™��Ið�Ñi@�<•��Lð�Ôi@�<…��Oð�×i@�<��Rð�Úi@�<}��Vð�Þi@�<y��Yð�ái@�< ��]ð�åi@�<¤��eð�íi@�<¥��£ð�+j@�<¡��©ð�1j@�<x��®ð�6j@�<|��²ð�:j@�<€��¶ð�>j@�<l��ºð�Cj@�<m��¾ð�Fj@�<„��Âð�Jj@�<ˆ��Åð�Nj@�<Œ��Éð�Qj@�<��Íð�Uj@�<‰��Ðð�Xj@�<��Ôð�\j@�<‘��×ð�_j@�<l��Ûð�cj@�<m��Þð�fj@�<”��âð�jj@�<˜��æð�nj@�<œ��ëð�sj@�<x��òð�zj@�<y��÷ð�j@�<��úð�ƒj@�<™��þð�†j@�<•��ñ�Šj@�<…��ñ�j@�<��ñ�j@�<}��ñ�“j@�<y��ñ�—j@�<x��ñ�›j@�<|��ñ�žj@�<€��ñ�¢j@�<l��ñ�¦j@�<m��!ñ�©j@�<„��%ñ�­j@�<ˆ��)ñ�±j@�<Œ��,ñ�´j@�<��/ñ�¸j@�<‰��3ñ�»j@�<��6ñ�¾j@�<‘��9ñ�Áj@�<l��=ñ�Åj@�<m��@ñ�Èj@�<”��Dñ�Ìj@�<˜��Hñ�Ðj@�<œ��Lñ�Ôj@�<x��Rñ�Új@�<y��Wñ�ßj@�<��Zñ�âj@�<™��^ñ�æj@�<•��añ�éj@�<…��dñ�ìj@�<��gñ�ïj@�<}��jñ�ój@�<y��nñ�öj@�<¨��rñ�ûj@�<€��{ñ�k@�<„��€ñ�k@�<$���ƒñ�k@�<%���‡ñ�k@�<…��Œñ�k@�<��ñ�k@�<¬��•ñ�k@�<­��™ñ�!k@�<d��ñ�%k@�<h�� ñ�(k@�<l��¤ñ�,k@�<m��§ñ�/k@�<x��®ñ�6k@�<y��³ñ�;k@�<i��·ñ�?k@�<e��ºñ�Bk@�<Œ��¾ñ�Fk@�<��Âñ�Jk@�<‘��Æñ�Ok@�<��Êñ�Rk@�<„��Îñ�Wk@�<…��Óñ�[k@�<d��×ñ�_k@�<h��Úñ�ck@�<l��Þñ�fk@�<m��âñ�jk@�<x��èñ�pk@�<y��ìñ�tk@�<i��ðñ�xk@�<e��óñ�{k@�<°��÷ñ�k@�<±��ûñ�ƒk@�<´��ÿñ�‡k@�<µ��ò�‹k@�<¸��ò�k@�<¹��ò�“k@�<Œ��ò�—k@�<��ò�›k@�<‘��ò�Ÿk@�<��ò�¢k@�<d��ò�¦k@�<h��"ò�ªk@�<l��&ò�®k@�<m��)ò�±k@�<x��/ò�·k@�<y��4ò�¼k@�<i��7ò�Àk@�<e��;ò�Ãk@�<Œ��?ò�Çk@�<��Bò�Êk@�<‘��Gò�Ïk@�<��Jò�Òk@�<¼��Nò�Ök@�<À��Tò�Ük@�<Ä��Xò�àk@�<h��bò�êk@�<l��fò�ïk@�<m��jò�òk@�<x��pò�øk@�<y��uò�ýk@�<i��yò�l@�<Å��|ò�l@�<Á��ò�l@�<½��‚ò�
-l@�<Œ��†ò�l@�<��‰ò�l@�<p��Žò�l@�<t��”ò�l@�<t��›ò�$l@�<u��¡ò�)l@�<u��¤ò�,l@�<q��¨ò�0l@�<‘��¬ò�4l@�<��°ò�8l@�<”��´ò�<l@�<˜��·ò�@l@�<œ��¾ò�Fl@�<��Æò�Ol@�<™��Êò�Rl@�<•��Îò�Vl@�<©��Ñò�Yl@�<x��Õò�]l@�<|��Ùò�al@�<€��Ýò�el@�<l��àò�hl@�<m��äò�ll@�<„��çò�pl@�<ˆ��ëò�sl@�<Œ��ïò�wl@�<��óò�{l@�<‰��öò�~l@�<��úò�‚l@�<‘��ýò�…l@�<l��ó�‰l@�<m��ó�Œl@�<”��ó�l@�<˜��ó�”l@�<œ��ó�™l@�<x��ó�Ÿl@�<y��ó�¤l@�<�� ó�¨l@�<™��$ó�¬l@�<•��'ó�¯l@�<…��*ó�²l@�<��-ó�µl@�<}��0ó�¸l@�<y��4ó�¼l@�<x��8ó�Àl@�<|��;ó�Ãl@�<€��?ó�Çl@�<l��Có�Ël@�<m��Fó�Îl@�<„��Jó�Òl@�<ˆ��Mó�Õl@�<Œ��Qó�Ùl@�<��Uó�Ýl@�<‰��Xó�àl@�<��[ó�ãl@�<‘��^ó�æl@�<l��bó�êl@�<m��fó�îl@�<”��ió�ñl@�<˜��mó�õl@�<œ��qó�úl@�<x��xó��m@�<y��|ó�m@�<��€ó�m@�<™��ƒó�m@�<•��‡ó�m@�<…��Šó�m@�<��ó�m@�<}��ó�m@�<y��“ó�m@�<x��˜ó� m@�<|��›ó�#m@�<€��Ÿó�'m@�<l��¢ó�*m@�<m��¦ó�.m@�<„��©ó�1m@�<ˆ��­ó�5m@�<Œ��±ó�9m@�<��´ó�<m@�<‰��·ó�?m@�<��»ó�Cm@�<‘��¾ó�Fm@�<l��Áó�Jm@�<m��Åó�Mm@�<”��Èó�Qm@�<˜��Ìó�Tm@�<œ��Ñó�Ym@�<x��×ó�_m@�<y��Ûó�cm@�<��ßó�gm@�<™��âó�jm@�<•��æó�nm@�<…��éó�qm@�<��ìó�tm@�<}��ïó�wm@�<y��òó�zm@�<x��öó�~m@�<|��úó�‚m@�<€��þó�†m@�<l��ô�Šm@�<m��ô�m@�<„��ô�‘m@�<ˆ��ô�”m@�<Œ��ô�˜m@�<��ô�›m@�<‰��ô�Ÿm@�<��ô�¢m@�<‘��ô�¦m@�<l��!ô�©m@�<m��$ô�¬m@�<”��(ô�°m@�<˜��,ô�´m@�<œ��1ô�¹m@�<x��7ô�¿m@�<y��;ô�Ãm@�<��?ô�Çm@�<™��Bô�Êm@�<•��Fô�Îm@�<…��Iô�Ñm@�<��Lô�Ôm@�<}��Oô�×m@�<y��Rô�Úm@�<¨��Vô�Þm@�<€��[ô�ãm@�<„��_ô�çm@�<$���bô�ëm@�<%���fô�îm@�<…��jô�òm@�<��mô�õm@�<¬��qô�ùm@�<­��uô�ým@�<d��yô�n@�<h��|ô�n@�<l��€ô�n@�<m��ƒô�n@�<x��Šô�n@�<y��Žô�n@�<i��’ô�n@�<e��•ô�n@�<Œ��™ô�!n@�<��ô�%n@�<‘��¡ô�)n@�<��¤ô�,n@�<„��¨ô�0n@�<…��¬ô�4n@�<d��¯ô�7n@�<h��³ô�;n@�<l��¶ô�>n@�<m��ºô�Bn@�<x��Àô�Hn@�<y��Úô�Io@�<i��áô�Po@�<e��åô�To@�<°��êô�Zo@�<±��îô�]o@�<´��òô�ao@�<µ��öô�eo@�<¸��úô�io@�<¹��ýô�lo@�<Œ��õ�po@�<��õ�to@�<‘��	õ�xo@�<��
õ�|o@�<d��õ�o@�<h��õ�ƒo@�<l��õ�‡o@�<m��õ�Šo@�<x��#õ�’o@�<y��(õ�—o@�<i��,õ�›o@�<e��/õ�žo@�<Œ��3õ�¢o@�<��6õ�¦o@�<‘��;õ�ªo@�<��>õ�­o@�<¼��Bõ�±o@�<À��Fõ�µo@�<Ä��Iõ�¸o@�<h��Oõ�¿o@�<l��Tõ�Ão@�<m��Wõ�Æo@�<x��^õ�Ío@�<y��bõ�Òo@�<i��fõ�Õo@�<Å��jõ�Ùo@�<Á��mõ�Üo@�<½��põ�ßo@�<Œ��tõ�ão@�<��wõ�æo@�<‘��|õ�ëo@�<��õ�îo@�<”��ƒõ�óo@�<˜��ˆõ�÷o@�<œ��õ�þo@�<��—õ�p@�<™��›õ�
-p@�<•��žõ�
p@�<©��¡õ�p@�<x��§õ�p@�<|��¬õ�p@�<€��¯õ�p@�<l��³õ�"p@�<m��¶õ�%p@�<„��ºõ�)p@�<ˆ��¿õ�.p@�<Œ��Âõ�2p@�<��Æõ�5p@�<‰��Éõ�8p@�<��Íõ�<p@�<‘��Ðõ�?p@�<l��Óõ�Cp@�<m��×õ�Fp@�<”��Ûõ�Jp@�<˜��àõ�Op@�<œ��äõ�Sp@�<x��ìõ�[p@�<y��ðõ�`p@�<��ôõ�cp@�<™��÷õ�gp@�<•��ûõ�jp@�<…��þõ�mp@�<��ö�pp@�<}��ö�tp@�<y��ö�wp@�<x��ö�{p@�<|��ö�~p@�<€��ö�‚p@�<l��ö�†p@�<m��ö�‰p@�<„��ö�p@�<ˆ��"ö�‘p@�<Œ��%ö�”p@�<��)ö�˜p@�<‰��,ö�›p@�<��/ö�žp@�<‘��2ö�¢p@�<l��6ö�¥p@�<m��9ö�¨p@�<”��=ö�¬p@�<˜��Aö�°p@�<œ��Eö�µp@�<x��Lö�»p@�<y��Pö�¿p@�<��Tö�Ãp@�<™��Wö�Çp@�<•��[ö�Êp@�<…��^ö�Íp@�<��aö�Ðp@�<}��dö�Óp@�<y��gö�Öp@�<x��lö�Ûp@�<|��oö�Þp@�<€��sö�âp@�<l��vö�æp@�<m��zö�ép@�<„��}ö�íp@�<ˆ��ö�ðp@�<Œ��„ö�ôp@�<��ˆö�÷p@�<‰��‹ö�ûp@�<��ö�þp@�<‘��’ö�q@�<l��–ö�q@�<m��™ö�q@�<”��ö�q@�<˜��¡ö�q@�<œ��¥ö�q@�<x��«ö�q@�<y��°ö�q@�<��³ö�"q@�<™��·ö�&q@�<•��ºö�)q@�<…��½ö�,q@�<��Àö�/q@�<}��Ãö�3q@�<y��Çö�6q@�<x��Ëö�:q@�<|��Îö�=q@�<€��Ñö�Aq@�<l��Õö�Dq@�<m��Øö�Gq@�<„��Üö�Kq@�<ˆ��àö�Oq@�<Œ��ãö�Rq@�<��çö�Vq@�<‰��êö�Yq@�<��íö�]q@�<‘��ðö�`q@�<l��ôö�cq@�<m��÷ö�fq@�<”��ûö�jq@�<˜��ÿö�nq@�<œ��÷�rq@�<x��	÷�yq@�<y��÷�}q@�<��÷�q@�<™��÷�„q@�<•��÷�‡q@�<…��÷�Šq@�<��÷�q@�<}��!÷�‘q@�<y��%÷�”q@�<¨��(÷�˜q@�<€��.÷�q@�<„��2÷�¡q@�<$���5÷�¤q@�<%���9÷�¨q@�<…��=÷�¬q@�<��A÷�°q@�<¬��D÷�´q@�<­��H÷�·q@�<d��L÷�»q@�<h��O÷�¿q@�<l��S÷�Âq@�<m��V÷�Åq@�<x��]÷�Ìq@�<y��a÷�Ðq@�<i��e÷�Ôq@�<e��h÷�×q@�<Œ��l÷�Ûq@�<��o÷�ßq@�<‘��t÷�ãq@�<��w÷�æq@�<„��{÷�êq@�<…��~÷�îq@�<d��‚÷�ñq@�<h��†÷�õq@�<l��Š÷�ùq@�<m��÷�üq@�<x��”÷�r@�<y��˜÷�r@�<i��œ÷�r@�<e��Ÿ÷�r@�<°��¢÷�r@�<±��¦÷�r@�<´��ª÷�r@�<µ��­÷�r@�<¸��±÷� r@�<¹��´÷�#r@�<Œ��·÷�'r@�<��»÷�*r@�<‘��À÷�/r@�<��Ã÷�2r@�<d��Æ÷�6r@�<h��Ê÷�9r@�<l��Í÷�<r@�<m��Ñ÷�@r@�<x��×÷�Fr@�<y��Û÷�Jr@�<i��ß÷�Nr@�<e��â÷�Qr@�<Œ��æ÷�Ur@�<��é÷�Xr@�<‘��í÷�]r@�<��ñ÷�`r@�<¼��ô÷�cr@�<À��ø÷�gr@�<Ä��û÷�jr@�<¸��ø�qr@�<x��	ø�yr@�<y��ø�‚r@�<¼��ø�‡r@�<½��ø�Œr@�<À��!ø�‘r@�<Á��&ø�–r@�<Ä��+ø�šr@�<Å��/ø�žr@�<¹��4ø�£r@�<È��=ø�­r@�<\���Cø�²r@�<]���Gø�·r@�<t��Lø�»r@�<u��Rø�Ár@�<É��Uø�År@�<Å��Xø�Èr@�<Á��\ø�Ër@�<½��_ø�Îr@�<Œ��cø�Òr@�<��gø�Ör@�<‘��kø�Úr@�<��nø�Ýr@�<”��rø�ár@�<˜��vø�år@�<œ��}ø�ìr@�<��„ø�ôr@�<™��ˆø�÷r@�<•��Œø�ûr@�<©��ø�þr@�<x��“ø�s@�<|��—ø�s@�<€��›ø�
-s@�<l��žø�s@�<m��¢ø�s@�<„��¦ø�s@�<ˆ��©ø�s@�<Œ��­ø�s@�<��±ø� s@�<‰��´ø�#s@�<��·ø�'s@�<‘��ºø�*s@�<l��¾ø�-s@�<m��Áø�0s@�<”��Åø�4s@�<˜��Éø�8s@�<Ì��Íø�<s@�<Ð��Õø�Ds@�<\���Úø�Is@�<]���Ýø�Ls@�<Ô��âø�Rs@�<È��èø�Ws@�<\���ëø�[s@�<]���ïø�^s@�<p��óø�cs@�<t��ûø�js@�<u��ÿø�os@�<q��ù�rs@�<t��ù�vs@�<t��ù�~s@�<u��ù�ƒs@�<u��ù�‡s@�<É��ù�Šs@�<Õ��ù�Žs@�<Ñ��"ù�‘s@�<Ø��'ù�–s@�<Ù��*ù�™s@�<Í��.ù�s@�<œ��2ù�¡s@�<x��8ù�¨s@�<y��=ù�¬s@�<��Aù�°s@�<™��Dù�³s@�<•��Gù�·s@�<…��Kù�ºs@�<��Nù�½s@�<}��Qù�Às@�<y��Uù�Äs@�<x��Yù�ÿs@�<|��”ù�t@�<€��˜ù�t@�<l��œù�t@�<m��Ÿù�t@�<„��£ù�t@�<ˆ��¨ù�t@�<Œ��«ù�t@�<��¯ù�t@�<‰��²ù�!t@�<��¶ù�%t@�<‘��¹ù�(t@�<l��¼ù�,t@�<m��Àù�/t@�<”��Ãù�3t@�<˜��Çù�7t@�<œ��Ìù�;t@�<x��Ôù�Ct@�<y��Øù�Gt@�<��Üù�Kt@�<™��ßù�Ot@�<•��ãù�Rt@�<…��æù�Ut@�<��éù�Xt@�<}��ìù�\t@�<y��ðù�_t@�<x��ôù�ct@�<|��÷ù�gt@�<€��ûù�jt@�<l��ÿù�nt@�<m��ú�qt@�<„��ú�ut@�<ˆ��	ú�xt@�<Œ��
ú�|t@�<��ú�t@�<‰��ú�‚t@�<��ú�†t@�<‘��ú�‰t@�<l��ú�t@�<m��!ú�t@�<”��$ú�”t@�<˜��)ú�˜t@�<œ��-ú�œt@�<x��3ú�¢t@�<y��8ú�Ót@�<��Jú�Ùt@�<™��Nú�Ýt@�<•��Rú�àt@�<…��Uú�ät@�<��Xú�çt@�<}��[ú�êt@�<y��_ú�ît@�<x��cú�òt@�<|��gú�öt@�<€��kú�út@�<l��nú�ýt@�<m��rú�u@�<„��uú�u@�<ˆ��yú�u@�<Œ��}ú�u@�<��€ú�u@�<‰��„ú�u@�<��‡ú�u@�<‘��Šú�u@�<l��Žú�u@�<m��‘ú� u@�<”��•ú�$u@�<˜��™ú�(u@�<œ��ú�,u@�<x��¥ú�3u@�<y��©ú�8u@�<��­ú�<u@�<™��°ú�?u@�<•��´ú�Bu@�<…��·ú�Fu@�<��ºú�Iu@�<}��½ú�Lu@�<y��Àú�Ou@�<¨��Äú�Su@�<€��Êú�Yu@�<„��Îú�]u@�<$���Ñú�`u@�<%���Õú�du@�<…��Úú�iu@�<��Ýú�lu@�<¬��áú�pu@�<­��äú�su@�<d��èú�wu@�<h��ìú�{u@�<l��ñú�€u@�<m��ôú�ƒu@�<x��ûú�Šu@�<y��ÿú�Žu@�<i��û�’u@�<e��û�•u@�<Œ��
-û�™u@�<��û�u@�<‘��û�¡u@�<��û�¥u@�<„��û�¨u@�<…��û�¬u@�<d�� û�¯u@�<h��$û�³u@�<l��(û�·u@�<m��+û�ºu@�<x��1û�Àu@�<y��6û�Åu@�<i��:û�Èu@�<e��=û�Ìu@�<°��@û�Ïu@�<±��Dû�Óu@�<´��Hû�×u@�<µ��Kû�Úu@�<¸��Oû�Þu@�<¹��Sû�áu@�<Œ��Vû�åu@�<��Zû�éu@�<‘��^û�íu@�<��aû�ðu@�<d��eû�ôu@�<h��iû�÷u@�<l��lû�ûu@�<m��oû�þu@�<x��vû�v@�<y��zû�	v@�<i��~û�v@�<e��û�v@�<Œ��…û�v@�<��ˆû�v@�<‘��Œû�v@�<��û�v@�<¼��“û�"v@�<À��—û�&v@�<Ä��šû�)v@�<¸��¡û�0v@�<x��¨û�6v@�<y��®û�<v@�<¼��²û�Av@�<½��µû�Dv@�<À��ºû�Iv@�<Á��¾û�Mv@�<Ä��Âû�Qv@�<Å��Æû�Tv@�<¹��Êû�Yv@�<È��Ñû�`v@�<\���Õû�dv@�<]���Ùû�gv@�<t��Ýû�lv@�<u��ãû�rv@�<É��æû�uv@�<Å��éû�xv@�<Á��íû�|v@�<½��ðû�v@�<Œ��ôû�ƒv@�<��÷û�†v@�<‘��üû�‹v@�<��ÿû�Žv@�<”��ü�’v@�<˜��ü�–v@�<œ��
ü�œv@�<��ü�¢v@�<™��ü�¦v@�<•��ü�ªv@�<©��Sü�Iy@�<x��^ü�Ry@�<|��cü�Vy@�<€��gü�Zy@�<l��lü�_y@�<m��pü�cy@�<„��tü�hy@�<ˆ��xü�ly@�<Œ��}ü�py@�<��€ü�ty@�<‰��„ü�wy@�<��ˆü�{y@�<‘��Œü�y@�<l��ü�ƒy@�<m��“ü�†y@�<”��—ü�Šy@�<˜��œü�y@�<œ��¢ü�–y@�<x��¯ü�¢y@�<y��µü�¨y@�<��¹ü�¬y@�<™��¼ü�°y@�<•��Àü�´y@�<…��Äü�·y@�<��Çü�ºy@�<}��Ëü�¾y@�<y��Îü�Ây@�<x��Òü�Æy@�<|��Öü�Éy@�<€��Úü�Íy@�<l��Ýü�Ñy@�<m��áü�Ôy@�<„��äü�Øy@�<ˆ��èü�Ûy@�<Œ��ìü�ßy@�<��ïü�ãy@�<‰��òü�æy@�<��öü�éy@�<‘��ùü�íy@�<l��ýü�ðy@�<m���ý�óy@�<”��ý�÷y@�<˜��ý�ûy@�<œ��ý�ÿy@�<x��ý�z@�<y��ý�
-z@�<��ý�z@�<™��ý�z@�<•��!ý�z@�<…��%ý�z@�<��(ý�z@�<}��+ý�z@�<y��.ý�"z@�<Ü��7ý�*z@�<à��<ý�0z@�<á��@ý�4z@�<Ý��Dý�8z@�<ä��Iý�=z@�<å��Mý�@z@�<Ì��Qý�Ez@�<Í��Uý�Iz@�<x��Yý�Mz@�<|��]ý�Pz@�<€��`ý�Tz@�<l��dý�Wz@�<m��gý�[z@�<„��ký�^z@�<ˆ��ný�bz@�<Œ��rý�ez@�<��uý�iz@�<‰��yý�lz@�<��|ý�pz@�<‘��ý�sz@�<l��ƒý�vz@�<m��†ý�zz@�<”��Šý�}z@�<˜��Žý�z@�<œ�� ý�¶z@�<x��©ý�¿z@�<y��®ý�Ãz@�<��²ý�Çz@�<™��·ý�Ìz@�<•��ºý�Ïz@�<…��½ý�Òz@�<��Áý�Öz@�<}��Äý�Ùz@�<y��Çý�Ýz@�<x��Íý�âz@�<|��Ðý�åz@�<€��Ôý�éz@�<l��Øý�îz@�<m��Üý�ñz@�<„��àý�õz@�<ˆ��ãý�øz@�<Œ��çý�üz@�<��êý�ÿz@�<‰��íý�{@�<��ñý�{@�<‘��ôý�	{@�<l��øý�
{@�<m��ûý�{@�<”��ÿý�{@�<˜��þ�{@�<œ��þ�{@�<x��
þ�"{@�<y��þ�'{@�<��þ�*{@�<™��þ�.{@�<•��þ�1{@�<…��þ�4{@�<��"þ�7{@�<}��%þ�;{@�<y��)þ�>{@�<`��,þ�B{@�<d��2þ�G{@�<h��6þ�L{@�<l��;þ�P{@�<m��@þ�U{@�<i��Cþ�X{@�<L��Gþ�\{@�<M��Mþ�b{@�<p��Sþ�h{@�<q��Wþ�l{@�<\��]þ�r{@�<`��cþ�x{@�<$���gþ�|{@�<%���kþ�€{@�<a��qþ�†{@�<]��tþ�‰{@�<d��xþ�{@�<h��|þ�‘{@�<l��€þ�•{@�<m��ƒþ�™{@�<p��ˆþ�ž{@�<t��þ�¤{@�<u��”þ�©{@�<q��—þ�¬{@�<x��Ÿþ�´{@�<y��¤þ�¹{@�<i��¨þ�½{@�<e��«þ�À{@�<d��¯þ�Ä{@�<h��²þ�È{@�<l��¶þ�Ë{@�<m��¹þ�Ï{@�<p��¾þ�Ó{@�<t��Äþ�Ú{@�<t��Ìþ�á{@�<u��Ñþ�ç{@�<u��Õþ�ê{@�<q��Ùþ�î{@�<x��ßþ�ô{@�<y��ãþ�ø{@�<i��çþ�ü{@�<e��êþ�ÿ{@�<d��îþ�|@�<h��òþ�|@�<l��öþ�|@�<m��ùþ�|@�<p��þþ�|@�<t��ÿ�|@�<t��ÿ� |@�<u��ÿ�%|@�<u��ÿ�(|@�<q��ÿ�,|@�<x��ÿ�2|@�<y��!ÿ�6|@�<i��%ÿ�:|@�<e��(ÿ�=|@�<”��-ÿ�B|@�<˜��1ÿ�F|@�<œ��8ÿ�M|@�<��Aÿ�V|@�<™��Dÿ�Z|@�<•��Hÿ�]|@�<e��Kÿ�`|@�<x��Oÿ�d|@�<|��Sÿ�h|@�<€��Vÿ�l|@�<l��[ÿ�p|@�<m��^ÿ�s|@�<„��bÿ�w|@�<ˆ��fÿ�{|@�<Œ��iÿ�|@�<��mÿ�‚|@�<‰��pÿ�…|@�<��tÿ�Û}@�<‘�� ÿ�í}@�<l��ªÿ�ö}@�<m��°ÿ�ý}@�<”��·ÿ�~@�<˜��¾ÿ�~@�<Ì��Äÿ�~@�<Ð��Ìÿ�~@�<\���Óÿ�~@�<]���Øÿ�%~@�<Ô��Þÿ�+~@�<È��äÿ�1~@�<\���êÿ�6~@�<]���îÿ�;~@�<p��ôÿ�A~@�<t���
�N~@�<t���
�^~@�<u���
�e~@�<u���
�j~@�<q��#�
�p~@�<t��)�
�u~@�<t��1�
�~~@�<u��7�
�„~@�<u��;�
�ˆ~@�<É��@�
�Œ~@�<Õ��D�
�‘~@�<Ñ��I�
�–~@�<Ø��O�
�œ~@�<Ù��T�
� ~@�<Í��X�
�¥~@�<œ��^�
�«~@�<x��h�
�µ~@�<y��o�
�¼~@�<��t�
�Á~@�<™��y�
�Å~@�<•��}�
�Ê~@�<…��‚�
�Ï~@�<��‡�
�Ô~@�<}��Œ�
�Ø~@�<y��•�
�á~@�<x��›�
�è~@�<|�� �
�í~@�<€��¥�
�ò~@�<l��ª�
�÷~@�<m��®�
�û~@�<„��³�
��@�<ˆ��¸�
�@�<Œ��½�
�	@�<��Á�
�@�<‰��Å�
�@�<��Ê�
�@�<‘��Í�
�@�<l���
�@�<m���
�#@�<”��Ú�
�'@�<˜��à�
�,@�<œ��å�
�2@�<x��ï�
�<@�<y��õ�
�B@�<��ú�
�G@�<™��þ�
�K@�<•��
�O@�<…��
�S@�<��
-
�W@�<}��
�[@�<y��
�_@�< ��
�d@�<¤��#
�p@�<¥��{
�É@�<¡��ƒ
�Ð@�<è��‰
�Õ@�<ì��‘
�Ý@�<„��™
�å@�<…��Ÿ
�ë@�<„��£
�ð@�<…��¨
�õ@�<¬��­
�ú@�<Œ��´
�€@�<��Å
�€@�<‘��Ì
�€@�<��Õ
�"€@�<‘��Ú
�'€@�<��â
�.€@�<‘��ç
�4€@�<��î
�;€@�<‘��ó
�@€@�<��û
�H€@�<‘���
�M€@�<��
�T€@�<‘��
�Y€@�<��
�a€@�<‘��
�f€@�<�� 
�m€@�<‘��%
�r€@�<��-
�y€@�<‘��2
�€@�<��9
�†€@�<‘��>
�‹€@�<��F
�’€@�<‘��K
�˜€@�<��R
�Ÿ€@�<‘��W
�¤€@�<��_
�«€@�<‘��d
�±€@�<��k
�¸€@�<‘��p
�½€@�<��v
�€@�<Œ��z
�Ç€@�<��³
��@�<‘��º
�@�<��Ä
�@�<‘��Ê
�@�<��Ñ
�@�<‘��Ö
�#@�<��Þ
�+@�<‘��ã
�0@�<��ë
�8@�<‘��ð
�=@�<��÷
�D@�<‘��ü
�I@�<��
�Q@�<‘��	
�V@�<��
�^@�<‘��
�c@�<��
�j@�<‘��"
�o@�<��*
�w@�<‘��/
�|@�<��7
�ƒ@�<‘��<
�ˆ@�<��C
�@�<‘��H
�•@�<��P
�œ@�<‘��U
�¡@�<��\
�©@�<‘��a
�®@�<��g
�´@�<��o
�¼@�<‘��t
�Á@�<��{
�ȁ@�<‘��€
�́@�<��‡
�ԁ@�<‘��
�ف@�<��“
�à@�<‘��˜
�å@�<��Ÿ
�ì@�<‘��¤
�ñ@�<��«
�ø@�<‘��°
�ý@�<��·
�‚@�<‘��¼
�	‚@�<��Ã
�‚@�<‘��È
�‚@�<��Ï
�‚@�<‘��Ô
� ‚@�<��Û
�(‚@�<‘��à
�-‚@�<��ç
�4‚@�<‘��ì
�9‚@�<��ò
�?‚@�<‘��÷
�D‚@�<��þ
�K‚@�<‘��
�P‚@�<��
-
�W‚@�<‘��
�\‚@�<��
�c‚@�<‘��
�h‚@�<��"
�n‚@�<‘��'
�t‚@�<��/
�{‚@�<‘��4
�‚@�<��;
�‡‚@�<‘��@
�‚@�<��G
�”‚@�<‘��L
�™‚@�<��S
� ‚@�<‘��X
�¥‚@�<��_
�¬‚@�<‘��d
�±‚@�<��j
�·‚@�<‘��o
�¼‚@�<��v
�Â@�<‘��{
�È‚@�<��‚
�Ï‚@�<‘��‡
�Ô‚@�<��
�Û‚@�<‘��“
�à‚@�<��š
�ç‚@�<‘��Ÿ
�ì‚@�<��¦
�ó‚@�<‘��«
�ø‚@�<��²
�ÿ‚@�<‘��·
�ƒ@�<­��½
�
-ƒ@�<¬��Ç
�ƒ@�<­��Í
�ƒ@�<¬��Ô
� ƒ@�<­��Ø
�%ƒ@�<¬��Ý
�)ƒ@�<Œ��ä
�1ƒ@�<��í
�:ƒ@�<‘��ò
�?ƒ@�<��ú
�Gƒ@�<‘��ÿ
�Lƒ@�<��
�Sƒ@�<‘��
�Xƒ@�<��
�`ƒ@�<‘��
�eƒ@�<��
�lƒ@�<‘��$
�qƒ@�<��,
�yƒ@�<‘��1
�~ƒ@�<��9
�†ƒ@�<‘��>
�Šƒ@�<��E
�’ƒ@�<‘��J
�—ƒ@�<��R
�žƒ@�<‘��W
�¤ƒ@�<��^
�«ƒ@�<‘��c
�°ƒ@�<��k
�¸ƒ@�<‘��p
�½ƒ@�<��w
�ă@�<‘��|
�Ƀ@�<��„
�у@�<‘��‰
�Öƒ@�<��
�݃@�<‘��•
�âƒ@�<��
�éƒ@�<‘��¢
�ïƒ@�<��©
�öƒ@�<‘��®
�ûƒ@�<��¶
�„@�<‘��»
�„@�<��Â
�„@�<‘��Ç
�„@�<��Ï
�„@�<‘��Ô
�!„@�<��Û
�(„@�<‘��à
�-„@�<��è
�5„@�<‘��í
�:„@�<��ô
�A„@�<‘��ú
�F„@�<��
�N„@�<‘��
�S„@�<��
�X„@�<Œ��
�]„@�<��
�d„@�<‘��
�j„@�<��$
�q„@�<‘��)
�v„@�<��1
�}„@�<‘��6
�‚„@�<��=
�Š„@�<‘��B
�„@�<��I
�–„@�<‘��O
�›„@�<��V
�£„@�<‘��[
�¨„@�<��c
�¯„@�<‘��h
�´„@�<��o
�¼„@�<‘��t
�Á„@�<��|
�É„@�<‘��
�΄@�<��ˆ
�Õ„@�<‘��
�Ú„@�<��•
�â„@�<‘��š
�ç„@�<��¡
�î„@�<‘��¦
�ó„@�<��®
�û„@�<‘��³
��…@�<��º
�…@�<‘��À
�…@�<��È
�…@�<‘��Î
�…@�<��Õ
�"…@�<‘��Ú
�'…@�<��á
�.…@�<‘��ç
�3…@�<��î
�;…@�<‘��ó
�@…@�<��ú
�G…@�<‘��ÿ
�L…@�<��
�S…@�<‘��
�X…@�<��
�`…@�<‘��
�e…@�<�� 
�m…@�<‘��%
�r…@�<��,
�y…@�<‘��2
�~…@�<��7
�„…@�<��>
�Š…@�<‘��C
�…@�<��I
�–…@�<‘��N
�›…@�<��U
�¢…@�<‘��Z
�§…@�<��a
�­…@�<‘��f
�²…@�<��l
�¹…@�<‘��q
�¾…@�<��x
�Å…@�<‘��}
�Ê…@�<��„
�Ñ…@�<‘��‰
�Ö…@�<��
�Ü…@�<‘��•
�á…@�<��›
�è…@�<‘�� 
�í…@�<��§
�ô…@�<‘��¬
�ù…@�<��³
��†@�<‘��¸
�†@�<��¾
�†@�<‘��Ã
�†@�<��Ê
�†@�<‘��Ï
�†@�<��Ö
�#†@�<‘��Û
�(†@�<��â
�/†@�<‘��ç
�4†@�<��î
�:†@�<‘��ò
�?†@�<��ú
�F†@�<‘��ÿ
�K†@�<��
�R†@�<‘��
-
�W†@�<��
�^†@�<‘��
�c†@�<��
�i†@�<‘��"
�n†@�<��)
�u†@�<‘��.
�z†@�<��4
�†@�<‘��9
�††@�<��@
�†@�<‘��E
�’†@�<��L
�˜†@�<‘��Q
�†@�<��X
�¤†@�<‘��]
�©†@�<��c
�°†@�<‘��h
�µ†@�<��o
�¼†@�<‘��t
�Á†@�<��{
�dž@�<‘��
�̆@�<��‡
�Ó†@�<‘��‹
�؆@�<��’
�߆@�<‘��—
�ä†@�<��ž
�ë†@�<‘��£
�ï†@�<��©
�ö†@�<‘��®
�û†@�<��µ
�‡@�<‘��º
�‡@�<��Á
�
‡@�<‘��Æ
�‡@�<��Ì
�‡@�<‘��Ñ
�‡@�<��Ø
�%‡@�<‘��Ý
�*‡@�<��ä
�1‡@�<‘��é
�6‡@�<��ð
�<‡@�<‘��õ
�A‡@�<��û
�H‡@�<‘���	
�M‡@�<��	
�T‡@�<‘��	
�Y‡@�<��	
�`‡@�<‘��	
�e‡@�<��	
�k‡@�<‘��$	
�p‡@�<��+	
�w‡@�<‘��/	
�|‡@�<��6	
�ƒ‡@�<‘��;	
�ˆ‡@�<��C	
�‡@�<‘��H	
�•‡@�<��O	
�›‡@�<‘��S	
� ‡@�<­��X	
�¥‡@�<´��^	
�«‡@�<µ��c	
�°‡@�<´��h	
�´‡@�<µ��l	
�¸‡@�<¬��q	
�½‡@�<Œ��w	
�ć@�<��	
�̇@�<‘��„	
�ч@�<��Œ	
�؇@�<‘��‘	
�݇@�<��˜	
�å‡@�<‘��	
�ê‡@�<��¥	
�ò‡@�<‘��ª	
�÷‡@�<��±	
�þ‡@�<‘��¶	
�ˆ@�<��¾	
�
-ˆ@�<‘��Ã	
�ˆ@�<��Ê	
�ˆ@�<‘��Ï	
�ˆ@�<��×	
�#ˆ@�<‘��Ü	
�(ˆ@�<��ã	
�0ˆ@�<‘��è	
�5ˆ@�<��ï	
�<ˆ@�<‘��ô	
�Aˆ@�<��ü	
�Iˆ@�<‘��
-
�Nˆ@�<��
-
�Uˆ@�<‘��
-
�Zˆ@�<��
-
�aˆ@�<‘��
-
�fˆ@�<��!
-
�nˆ@�<‘��&
-
�sˆ@�<��-
-
�zˆ@�<‘��3
-
�ˆ@�<��:
-
�‡ˆ@�<‘��?
-
�Œˆ@�<��F
-
�“ˆ@�<‘��K
-
�˜ˆ@�<��Q
-
�ˆ@�<Œ��U
-
�¢ˆ@�<��\
-
�©ˆ@�<‘��b
-
�®ˆ@�<��i
-
�¶ˆ@�<‘��n
-
�»ˆ@�<��v
-
�ˆ@�<‘��{
-
�Lj@�<��‚
-
�ψ@�<‘��‡
-
�Ôˆ@�<��Ž
-
�Ûˆ@�<‘��“
-
�àˆ@�<��›
-
�çˆ@�<‘�� 
-
�ìˆ@�<��§
-
�ôˆ@�<‘��¬
-
�ùˆ@�<��´
-
��‰@�<‘��¹
-
�‰@�<��À
-
�
‰@�<‘��Å
-
�‰@�<��Í
-
�‰@�<‘��Ò
-
�‰@�<��Ù
-
�&‰@�<‘��Þ
-
�+‰@�<��æ
-
�2‰@�<‘��ë
-
�8‰@�<��ò
-
�?‰@�<‘��÷
-
�D‰@�<��þ
-
�K‰@�<‘��
�P‰@�<��
�X‰@�<‘��
�]‰@�<��
�d‰@�<‘��
�i‰@�<��$
�q‰@�<‘��)
�v‰@�<��.
�{‰@�<��5
�‚‰@�<‘��:
�‡‰@�<��@
�‰@�<‘��E
�’‰@�<��L
�™‰@�<‘��Q
�ž‰@�<��X
�¥‰@�<‘��]
�ª‰@�<��d
�±‰@�<‘��i
�¶‰@�<��o
�¼‰@�<‘��t
�Á‰@�<��{
�ȉ@�<‘��€
�͉@�<��‡
�Ô‰@�<‘��Œ
�Ù‰@�<��“
�à‰@�<‘��˜
�ä‰@�<��ž
�ë‰@�<‘��£
�ð‰@�<��ª
�÷‰@�<‘��¯
�ü‰@�<��¶
�Š@�<‘��»
�Š@�<��Â
�Š@�<‘��Æ
�Š@�<��Í
�Š@�<‘��Ò
�Š@�<��Ù
�&Š@�<‘��Þ
�+Š@�<��å
�1Š@�<‘��ê
�6Š@�<��ñ
�=Š@�<‘��ö
�BŠ@�<��ü
�IŠ@�<‘��
�NŠ@�<��
�UŠ@�<‘��

�ZŠ@�<��
�`Š@�<‘��
�eŠ@�<�� 
�lŠ@�<‘��%
�qŠ@�<��+
�xŠ@�<‘��0
�}Š@�<��7
�„Š@�<‘��<
�‰Š@�<��C
�Š@�<‘��H
�”Š@�<��O
�›Š@�<‘��T
� Š@�<��Z
�§Š@�<‘��_
�¬Š@�<��f
�³Š@�<‘��k
�¸Š@�<��r
�¾Š@�<‘��w
�Ê@�<��~
�ÊŠ@�<‘��ƒ
�ÏŠ@�<��‰
�ÖŠ@�<‘��Ž
�ÛŠ@�<��•
�âŠ@�<‘��š
�çŠ@�<��¡
�íŠ@�<‘��¥
�òŠ@�<��¬
�ùŠ@�<‘��±
�þŠ@�<��¸
�‹@�<‘��½
�
-‹@�<­��Â
�‹@�<¸��Ç
�‹@�<¹��Ì
�‹@�<¸��Ð
�‹@�<¹��Ô
�!‹@�<í��Ø
�%‹@�<ì��á
�-‹@�<„��æ
�3‹@�<…��ë
�8‹@�<„��ï
�<‹@�<…��ô
�@‹@�<¬��ø
�E‹@�<Œ��þ
�J‹@�<��

�R‹@�<‘��

�X‹@�<��

�_‹@�<‘��

�d‹@�<��

�l‹@�<‘��$

�q‹@�<��+

�x‹@�<‘��0

�}‹@�<��8

�„‹@�<‘��=

�‰‹@�<��D

�‘‹@�<‘��I

�–‹@�<��P

�‹@�<‘��V

�¢‹@�<��]

�ª‹@�<‘��b

�¯‹@�<��i

�¶‹@�<‘��n

�»‹@�<��v

�‹@�<‘��{

�Ç‹@�<��‚

�Ï‹@�<‘��‡

�Ô‹@�<��Ž

�Û‹@�<‘��“

�à‹@�<��›

�ç‹@�<‘�� 

�ì‹@�<��§

�ô‹@�<‘��¬

�ù‹@�<��³

��Œ@�<‘��¸

�Œ@�<��À

�Œ@�<‘��Å

�Œ@�<��Ê

�Œ@�<Œ��Î

�Œ@�<��Ö

�"Œ@�<‘��Û

�(Œ@�<��â

�/Œ@�<‘��ç

�4Œ@�<��ï

�;Œ@�<‘��ô

�@Œ@�<��û

�HŒ@�<‘���
�MŒ@�<��
�TŒ@�<‘��
�YŒ@�<��
�aŒ@�<‘��
�fŒ@�<�� 
�mŒ@�<‘��%
�rŒ@�<��-
�zŒ@�<‘��2
�Œ@�<��9
�†Œ@�<‘��>
�‹Œ@�<��F
�“Œ@�<‘��K
�˜Œ@�<��R
�ŸŒ@�<‘��W
�¤Œ@�<��_
�«Œ@�<‘��d
�°Œ@�<��k
�¸Œ@�<‘��p
�½Œ@�<��x
�ÄŒ@�<‘��}
�ÉŒ@�<��„
�ÑŒ@�<‘��‰
�ÖŒ@�<��‘
�ÝŒ@�<‘��–
�âŒ@�<��›
�èŒ@�<��¡
�îŒ@�<‘��¦
�óŒ@�<��­
�úŒ@�<‘��²
�ÿŒ@�<��¹
�@�<‘��¾
�
-@�<��Ä
�@�<‘��É
�@�<��Ð
�@�<‘��Õ
�"@�<��Ü
�(@�<‘��á
�-@�<��è
�4@�<‘��í
�9@�<��ó
�@@�<‘��ø
�E@�<��ÿ
�L@�<‘��
�Q@�<��
�X@�<‘��
�]@�<��
�d@�<‘��
�i@�<��"
�o@�<‘��'
�t@�<��.
�{@�<‘��3
�€@�<��:
�†@�<‘��?
�‹@�<��E
�’@�<‘��J
�—@�<��Q
�ž@�<‘��V
�£@�<��]
�ª@�<‘��b
�¯@�<��i
�µ@�<‘��n
�º@�<��u
�Á@�<‘��z
�ƍ@�<��€
�͍@�<‘��…
�ð@�<��¯
�ü@�<‘��µ
�Ž@�<��¼
�Ž@�<‘��Á
�
Ž@�<��È
�Ž@�<‘��Í
�Ž@�<��Ó
� Ž@�<‘��Ø
�%Ž@�<��ß
�,Ž@�<‘��ä
�1Ž@�<��ë
�8Ž@�<‘��ð
�=Ž@�<��÷
�DŽ@�<‘��ü
�IŽ@�<��
�OŽ@�<‘��
�TŽ@�<��
�[Ž@�<‘��
�`Ž@�<��
�gŽ@�<‘��
�lŽ@�<��&
�sŽ@�<‘��+
�xŽ@�<��1
�~Ž@�<‘��6
�ƒŽ@�<­��;
�ˆŽ@�<¬��@
�Ž@�<­��E
�’Ž@�<¬��J
�–Ž@�<­��N
�›Ž@�<¬��S
� Ž@�<Œ��\
�©Ž@�<��c
�°Ž@�<‘��i
�µŽ@�<��p
�½Ž@�<‘��u
�ÂŽ@�<��}
�ÉŽ@�<‘��‚
�ÎŽ@�<��‰
�ÖŽ@�<‘��Ž
�ÛŽ@�<��•
�âŽ@�<‘��š
�çŽ@�<��¢
�îŽ@�<‘��§
�óŽ@�<��®
�ûŽ@�<‘��³
��@�<��º
�@�<‘��¿
�@�<��Ç
�@�<‘��Ì
�@�<��Ó
� @�<‘��Ø
�%@�<��à
�,@�<‘��å
�1@�<��ì
�9@�<‘��ñ
�>@�<��ø
�E@�<‘��þ
�J@�<��
�R@�<‘��
-
�W@�<��
�^@�<‘��
�c@�<��
�k@�<‘��#
�p@�<��*
�w@�<‘��/
�|@�<��6
�ƒ@�<‘��;
�ˆ@�<��C
�@�<‘��H
�•@�<��O
�œ@�<‘��T
�¡@�<��[
�¨@�<‘��`
�­@�<��h
�´@�<‘��m
�º@�<��t
�Á@�<‘��y
�Ə@�<��~
�ˏ@�<Œ��ƒ
�Џ@�<��Š
�׏@�<‘��
�܏@�<��—
�ã@�<‘��œ
�è@�<��£
�ð@�<‘��¨
�õ@�<��¯
�ü@�<‘��´
�@�<��¼
�	@�<‘��Á
�
@�<��È
�@�<‘��Í
�@�<��Ô
�!@�<‘��Ù
�&@�<��á
�.@�<‘��æ
�2@�<��í
�:@�<‘��ò
�?@�<��ù
�F@�<‘��þ
�K@�<��
�S@�<‘��
�X@�<��
�_@�<‘��
�d@�<��
�k@�<‘��$
�p@�<��+
�x@�<‘��0
�|@�<��7
�„@�<‘��<
�‰@�<��C
�@�<‘��H
�•@�<��P
�@�<‘��U
�¢@�<��\
�©@�<‘��a
�®@�<��h
�µ@�<‘��n
�º@�<��u
�@�<‘��z
�ǐ@�<��
�ΐ@�<‘��†
�Ӑ@�<��Ž
�ڐ@�<‘��“
�ߐ@�<��š
�ç@�<‘��Ÿ
�ì@�<��¤
�ñ@�<��«
�ø@�<‘��°
�ý@�<��·
�‘@�<‘��»
�‘@�<��Ã
�‘@�<‘��È
�‘@�<��Î
�‘@�<‘��Ó
� ‘@�<��Ú
�'‘@�<‘��ß
�,‘@�<��æ
�2‘@�<‘��ë
�7‘@�<��ñ
�>‘@�<‘��ö
�C‘@�<��ý
�J‘@�<‘��
�O‘@�<��	
�V‘@�<‘��
�Z‘@�<��
�a‘@�<‘��
�f‘@�<�� 
�m‘@�<‘��%
�r‘@�<��,
�x‘@�<‘��1
�}‘@�<��8
�„‘@�<‘��=
�‰‘@�<��C
�‘@�<‘��H
�•‘@�<��O
�œ‘@�<‘��T
�¡‘@�<��Z
�§‘@�<‘��_
�¬‘@�<��f
�³‘@�<‘��k
�¸‘@�<��r
�¾‘@�<‘��w
�Ñ@�<��}
�Ê‘@�<‘��‚
�Ï‘@�<��‰
�Ö‘@�<‘��Ž
�Ú‘@�<��•
�á‘@�<‘��š
�æ‘@�<�� 
�í‘@�<‘��¥
�ò‘@�<��¬
�ù‘@�<‘��±
�þ‘@�<��¸
�’@�<‘��½
�
-’@�<��Ä
�’@�<‘��É
�’@�<��Ï
�’@�<‘��Ô
�!’@�<��Û
�(’@�<‘��à
�-’@�<��ç
�3’@�<‘��ì
�8’@�<��ó
�?’@�<‘��ø
�D’@�<��þ
�K’@�<‘��
�P’@�<��
-
�W’@�<‘��
�\’@�<��
�b’@�<‘��
�g’@�<��!
�n’@�<‘��&
�s’@�<��-
�z’@�<‘��2
�’@�<��9
�†’@�<‘��>
�‹’@�<��D
�‘’@�<‘��I
�–’@�<��P
�’@�<‘��U
�¢’@�<��\
�©’@�<‘��a
�­’@�<��h
�´’@�<‘��m
�¹’@�<��s
�À’@�<‘��x
�Å’@�<��
�Ì’@�<‘��„
�Ñ’@�<��Š
�×’@�<‘��
�Ü’@�<��–
�ã’@�<‘��›
�è’@�<��¢
�ï’@�<‘��§
�ô’@�<��®
�û’@�<‘��³
�ÿ’@�<��¹
�“@�<‘��¾
�“@�<­��Ã
�“@�<´��È
�“@�<µ��Ì
�“@�<´��Ð
�“@�<µ��Ô
�!“@�<¬��Ù
�%“@�<Œ��Þ
�+“@�<��å
�2“@�<‘��ê
�7“@�<��ò
�?“@�<‘��÷
�D“@�<��þ
�K“@�<‘��
�P“@�<��
�W“@�<‘��
�\“@�<��
�d“@�<‘��
�i“@�<��#
�p“@�<‘��(
�u“@�<��0
�}“@�<‘��5
�‚“@�<��<
�‰“@�<‘��A
�Ž“@�<��I
�–“@�<‘��N
�›“@�<��U
�¢“@�<‘��Z
�§“@�<��b
�¯“@�<‘��g
�´“@�<��n
�»“@�<‘��s
�À“@�<��{
�Ç“@�<‘��€
�Ì“@�<��‡
�Ô“@�<‘��Œ
�Ù“@�<��”
�à“@�<‘��˜
�å“@�<�� 
�í“@�<‘��¥
�ñ“@�<��¬
�ù“@�<‘��±
�þ“@�<��¶
�”@�<Œ��»
�”@�<��Â
�”@�<‘��Ç
�”@�<��Ï
�”@�<‘��Ô
� ”@�<��Û
�(”@�<‘��à
�-”@�<��ç
�4”@�<‘��ì
�9”@�<��ô
�@”@�<‘��ù
�E”@�<���
�M”@�<‘��
�R”@�<��
�Y”@�<‘��
�^”@�<��
�e”@�<‘��
�j”@�<��%
�r”@�<‘��*
�w”@�<��1
�~”@�<‘��6
�ƒ”@�<��>
�‹”@�<‘��C
�”@�<��J
�—”@�<‘��O
�œ”@�<��W
�£”@�<‘��\
�¨”@�<��c
�°”@�<‘��h
�µ”@�<��o
�¼”@�<‘��t
�Á”@�<��|
�È”@�<‘��
�Í”@�<��ˆ
�Õ”@�<‘��
�Ú”@�<��’
�ß”@�<��™
�å”@�<‘��ž
�ê”@�<��¤
�ñ”@�<‘��©
�ö”@�<��°
�ý”@�<‘��µ
�•@�<��¼
�•@�<‘��À
�
•@�<��Ç
�•@�<‘��Ì
�•@�<��Ó
� •@�<‘��Ø
�%•@�<��ß
�,•@�<‘��ä
�1•@�<��ê
�7•@�<‘��ï
�<•@�<��ö
�C•@�<‘��û
�H•@�<��
�N•@�<‘��
�S•@�<��
�Z•@�<‘��
�_•@�<��
�f•@�<‘��
�k•@�<��%
�r•@�<‘��*
�w•@�<��0
�}•@�<‘��5
�‚•@�<��<
�‰•@�<‘��A
�Ž•@�<��H
�”•@�<‘��M
�™•@�<��T
� •@�<‘��Y
�¥•@�<��_
�¬•@�<‘��d
�±•@�<��k
�¸•@�<‘��p
�½•@�<��w
�Õ@�<‘��{
�È•@�<��‚
�Ï•@�<‘��‡
�Ô•@�<��Ž
�Û•@�<‘��“
�à•@�<��š
�ç•@�<‘��Ÿ
�ì•@�<��¥
�ò•@�<‘��ª
�÷•@�<��±
�þ•@�<‘��¶
�–@�<��½
�
-–@�<‘��Â
�–@�<��É
�–@�<‘��Î
�–@�<��Ô
�!–@�<‘��Ù
�&–@�<��à
�-–@�<‘��å
�2–@�<��ë
�8–@�<‘��ð
�=–@�<��÷
�D–@�<‘��ü
�I–@�<��
�P–@�<‘��
�T–@�<��
�[–@�<‘��
�`–@�<��
�g–@�<‘��
�l–@�<­��$
�q–@�<¸��)
�u–@�<¹��-
�y–@�<¸��1
�~–@�<¹��5
�‚–@�<í��9
�†–@�<ì��?
�Œ–@�<„��D
�‘–@�<…��I
�•–@�<„��M
�š–@�<…��Q
�ž–@�<¬��V
�£–@�<Œ��[
�¨–@�<��c
�°–@�<‘��h
�µ–@�<��p
�¼–@�<‘��u
�Á–@�<��|
�É–@�<‘��
�Ζ@�<��ˆ
�Õ–@�<‘��
�Ú–@�<��•
�â–@�<‘��š
�ç–@�<��¡
�î–@�<‘��¦
�ó–@�<��®
�û–@�<‘��³
��—@�<��º
�—@�<‘��¿
�—@�<��Ç
�—@�<‘��Ì
�—@�<��Ó
� —@�<‘��Ø
�%—@�<��Ý
�*—@�<Œ��â
�/—@�<��é
�6—@�<‘��î
�;—@�<��ö
�B—@�<‘��û
�G—@�<��
�O—@�<‘��
�T—@�<��
�[—@�<‘��
�`—@�<��
�h—@�<‘�� 
�m—@�<��'
�t—@�<‘��,
�y—@�<��4
�€—@�<‘��9
�…—@�<��@
�—@�<‘��E
�’—@�<��L
�™—@�<‘��Q
�ž—@�<��Y
�¦—@�<‘��^
�«—@�<��c
�°—@�<��j
�¶—@�<‘��o
�»—@�<��u
�—@�<‘��z
�Ç—@�<��
�Η@�<‘��†
�Ó—@�<��
�Ù—@�<‘��’
�Þ—@�<��™
�å—@�<‘��ž
�ê—@�<��¤
�ñ—@�<‘��©
�ö—@�<��°
�ý—@�<‘��µ
�˜@�<��¼
�˜@�<‘��Á
�
˜@�<��Ç
�˜@�<‘��Ì
�˜@�<��Ó
� ˜@�<‘��Ø
�%˜@�<��ß
�,˜@�<‘��ä
�1˜@�<��ë
�8˜@�<‘��ð
�=˜@�<��÷
�D˜@�<‘��ü
�H˜@�<��
�O˜@�<‘��
�T˜@�<��
�[˜@�<‘��
�`˜@�<��
�f˜@�<‘��
�k˜@�<��&
�s˜@�<‘��+
�x˜@�<��1
�~˜@�<‘��6
�ƒ˜@�<��=
�Š˜@�<‘��B
�˜@�<��I
�–˜@�<‘��N
�›˜@�<­��S
� ˜@�<¬��W
�¤˜@�<­��\
�©˜@�<¬��`
�­˜@�<­��d
�±˜@�<¬��i
�¶˜@�<Œ��o
�»˜@�<��v
�Ø@�<‘��{
�Ș@�<��ƒ
�Ϙ@�<‘��ˆ
�Õ˜@�<��
�ܘ@�<‘��”
�á˜@�<��œ
�è˜@�<‘��¡
�í˜@�<��¨
�õ˜@�<‘��­
�ú˜@�<��µ
�™@�<‘��º
�™@�<��Á
�™@�<‘��Æ
�™@�<��Î
�™@�<‘��Ó
�™@�<��Ú
�'™@�<‘��ß
�,™@�<��ç
�3™@�<‘��ì
�8™@�<��ó
�@™@�<‘��ø
�E™@�<��ÿ
�L™@�<‘��
�Q™@�<��
�X™@�<‘��
�^™@�<��
�e™@�<‘��
�j™@�<��%
�q™@�<‘��*
�v™@�<��1
�~™@�<‘��6
�ƒ™@�<��>
�Š™@�<‘��C
�™@�<��J
�—™@�<‘��O
�œ™@�<��W
�¤™@�<‘��\
�©™@�<��c
�°™@�<‘��h
�µ™@�<��p
�¼™@�<‘��u
�™@�<��|
�É™@�<‘��
�Ι@�<��‰
�Õ™@�<‘��Š
�š@�<��¥
�!š@�<‘��«
�'š@�<��µ
�Yš@�<‘��¼
�_š@�<��Ç
�kš@�<‘��Í
�qš@�<��Ô
�xš@�<‘��Ù
�}š@�<��á
�…š@�<‘��æ
�Šš@�<��î
�’š@�<‘��ó
�—š@�<��ú
�žš@�<‘��ÿ
�£š@�<��
�«š@�<‘��
�°š@�<��
�·š@�<‘��
�¼š@�<�� 
�Äš@�<‘��%
�Éš@�<��,
�К@�<‘��1
�Õš@�<��a
�›@�<‘��h
�›@�<��p
�$›@�<‘��u
�)›@�<��}
�0›@�<‘��‚
�6›@�<��‰
�=›@�<‘��Ž
�B›@�<��–
�I›@�<‘��›
�N›@�<��¡
�T›@�<Œ��¦
�Z›@�<��®
�b›@�<‘��³
�g›@�<��º
�n›@�<‘��¿
�s›@�<��Ç
�z›@�<‘��Ì
�€›@�<��Ó
�‡›@�<‘��Ø
�Œ›@�<��à
�“›@�<‘��å
�˜›@�<��ì
� ›@�<‘��ñ
�¤›@�<��ø
�¬›@�<‘��ý
�±›@�<��
�¸›@�<‘��
-
�½›@�<��
�Å›@�<‘��
�Ê›@�<��
�Ñ›@�<‘��"
�Ö›@�<��*
�Ý›@�<‘��/
�ã›@�<��6
�ê›@�<‘��;
�ï›@�<��C
�ö›@�<‘��H
�û›@�<��O
�œ@�<‘��T
�œ@�<��[
�œ@�<‘��`
�œ@�<��h
�œ@�<‘��m
� œ@�<��t
�(œ@�<‘��y
�-œ@�<��
�4œ@�<‘��†
�9œ@�<��
�Aœ@�<‘��’
�Fœ@�<��™
�Mœ@�<‘��ž
�Rœ@�<��¦
�Yœ@�<‘��«
�^œ@�<��²
�fœ@�<‘��·
�kœ@�<��¾
�rœ@�<‘��Ã
�wœ@�<��Ë
�~œ@�<‘��Ð
�ƒœ@�<��×
�‹œ@�<‘��Ü
�œ@�<��ä
�—œ@�<‘��é
�œ@�<��ð
�¤œ@�<‘��õ
�©œ@�<��ý
�°œ@�<‘��
�µœ@�<��	
�½œ@�<‘��
�Âœ@�<��
�Éœ@�<‘��
�Îœ@�<��#
�Öœ@�<‘��(
�Üœ@�<��/
�ãœ@�<‘��4
�èœ@�<��<
�ïœ@�<‘��A
�ôœ@�<��H
�üœ@�<‘��M
�@�<��T
�@�<‘��Z
�
@�<��a
�@�<‘��f
�@�<��m
�!@�<‘��s
�&@�<��z
�.@�<‘��
�3@�<��†
�:@�<‘��‹
�?@�<��‘
�D@�<��˜
�K@�<‘��
�P@�<��£
�W@�<‘��¨
�[@�<��¯
�b@�<‘��´
�g@�<��º
�n@�<‘��¿
�s@�<��Æ
�y@�<‘��Ë
�@�<��Ñ
�…@�<‘��Ö
�Š@�<��Ý
�‘@�<‘��â
�–@�<��é
�œ@�<‘��î
�¡@�<��õ
�¨@�<‘��ú
�­@�<���
�´@�<‘��
�¹@�<��
�À@�<‘��
�ŝ@�<��
�˝@�<‘��
�Н@�<��$
�ם@�<‘��(
�ܝ@�<��/
�ã@�<‘��4
�ç@�<��;
�î@�<‘��@
�ó@�<��F
�ú@�<‘��K
�ÿ@�<��R
�ž@�<‘��W
�ž@�<��^
�ž@�<‘��c
�ž@�<��i
�ž@�<‘��n
�"ž@�<��u
�(ž@�<‘��z
�-ž@�<��
�4ž@�<‘��†
�9ž@�<��Œ
�@ž@�<‘��‘
�Ež@�<��˜
�Lž@�<‘��
�Qž@�<��£
�Wž@�<‘��¨
�\ž@�<��¯
�cž@�<‘��´
�hž@�<��»
�nž@�<‘��À
�sž@�<��Ç
�zž@�<‘��Ì
�ž@�<��Ò
�†ž@�<‘��×
�‹ž@�<��Þ
�’ž@�<‘��ã
�—ž@�<��ê
�žž@�<‘��ï
�¢ž@�<��ö
�©ž@�<‘��û
�®ž@�<�� 
�µž@�<‘�� 
�ºž@�<��
 
�Áž@�<‘�� 
�Æž@�<�� 
�Íž@�<‘�� 
�Ñž@�<��% 
�Øž@�<‘��* 
�Ýž@�<��0 
�äž@�<‘��5 
�éž@�<��= 
�ðž@�<‘��B 
�õž@�<��H 
�üž@�<‘��M 
�Ÿ@�<��T 
�Ÿ@�<‘��Y 
�
Ÿ@�<��_ 
�Ÿ@�<‘��d 
�Ÿ@�<��k 
�Ÿ@�<‘��p 
�$Ÿ@�<��w 
�*Ÿ@�<‘��| 
�/Ÿ@�<��ƒ 
�6Ÿ@�<‘��ˆ 
�;Ÿ@�<��Ž 
�BŸ@�<‘��“ 
�GŸ@�<��š 
�NŸ@�<‘��Ÿ 
�SŸ@�<��¦ 
�YŸ@�<‘��« 
�^Ÿ@�<��± 
�eŸ@�<‘��¶ 
�jŸ@�<��½ 
�pŸ@�<‘�� 
�uŸ@�<��É 
�|Ÿ@�<‘��Î 
�Ÿ@�<��Ô 
�ˆŸ@�<‘��Ù 
�Ÿ@�<��à 
�”Ÿ@�<‘��å 
�™Ÿ@�<��ì 
�ŸŸ@�<‘��ð 
�¤Ÿ@�<��÷ 
�«Ÿ@�<‘��ü 
�°Ÿ@�<��!
�·Ÿ@�<‘��!
�¼Ÿ@�<��!
�ß@�<‘��!
�ÈŸ@�<��!
�Ο@�<‘��!
�ÓŸ@�<��&!
�ÚŸ@�<‘��+!
�ߟ@�<��2!
�åŸ@�<‘��7!
�êŸ@�<��>!
�ñŸ@�<‘��C!
�öŸ@�<��I!
�ýŸ@�<‘��N!
� @�<��U!
�	 @�<‘��Z!
� @�<��a!
� @�<‘��e!
� @�<��l!
�  @�<‘��q!
�% @�<��x!
�+ @�<‘��}!
�0 @�<��„!
�7 @�<‘��‰!
�< @�<��!
�C @�<‘��”!
�H @�<��›!
�O @�<‘�� !
�T @�<��§!
�Z @�<‘��«!
�_ @�<��³!
�f @�<‘��·!
�k @�<��¾!
�r @�<‘��Ã!
�w @�<��Ê!
�~ @�<‘��Ï!
�‚ @�<��Ö!
�‰ @�<‘��Ú!
�Ž @�<��á!
�• @�<‘��æ!
�š @�<��í!
�¡ @�<‘��ò!
�¥ @�<��ù!
�¬ @�<‘��þ!
�± @�<��"
�¸ @�<‘��	"
�½ @�<��"
�Ä @�<‘��"
�É @�<��"
�Ï @�<‘��!"
�Ô @�<­��&"
�Ù @�<´��,"
�ß @�<µ��0"
�ã @�<´��5"
�è @�<µ��9"
�í @�<¬��>"
�ñ @�<Œ��D"
�ø @�<��K"
�ÿ @�<‘��P"
�¡@�<��X"
�¡@�<‘��]"
�¡@�<��e"
�¡@�<‘��j"
�¡@�<��q"
�%¡@�<‘��v"
�*¡@�<��}"
�1¡@�<‘��‚"
�6¡@�<��Š"
�>¡@�<‘��"
�B¡@�<��–"
�J¡@�<‘��›"
�O¡@�<��£"
�V¡@�<‘��¨"
�[¡@�<��¯"
�c¡@�<‘��´"
�h¡@�<��»"
�o¡@�<‘��À"
�t¡@�<��È"
�{¡@�<‘��Í"
�€¡@�<��Ô"
�ˆ¡@�<‘��Ù"
�¡@�<��à"
�”¡@�<‘��å"
�™¡@�<��í"
� ¡@�<‘��ò"
�¥¡@�<��ù"
�­¡@�<‘��þ"
�²¡@�<��#
�¹¡@�<‘��#
�¾¡@�<��#
�Æ¡@�<‘��#
�Ë¡@�<��#
�Ò¡@�<‘��##
�ס@�<��+#
�Þ¡@�<‘��0#
�ã¡@�<��5#
�é¡@�<Œ��:#
�í¡@�<��A#
�õ¡@�<‘��F#
�ú¡@�<��M#
�¢@�<‘��R#
�¢@�<��Z#
�
¢@�<‘��_#
�¢@�<��f#
�¢@�<‘��k#
�¢@�<��s#
�'¢@�<‘��x#
�,¢@�<��#
�3¢@�<‘��„#
�8¢@�<��Œ#
�?¢@�<‘��‘#
�D¢@�<��˜#
�L¢@�<‘��#
�Q¢@�<��¤#
�X¢@�<‘��ª#
�]¢@�<��±#
�d¢@�<‘��¶#
�i¢@�<��½#
�q¢@�<‘��Ã#
�v¢@�<��Ê#
�~¢@�<‘��Ï#
�ƒ¢@�<��Ö#
�Š¢@�<‘��Ü#
�¢@�<��ã#
�—¢@�<‘��è#
�œ¢@�<��ï#
�£¢@�<‘��ô#
�¨¢@�<��ü#
�¯¢@�<‘��$
�µ¢@�<��$
�¼¢@�<‘��
$
�Á¢@�<��$
�È¢@�<‘��$
�Í¢@�<��!$
�Õ¢@�<‘��&$
�Ú¢@�<��,$
�ߢ@�<��2$
�æ¢@�<‘��7$
�ë¢@�<��>$
�ñ¢@�<‘��C$
�ö¢@�<��J$
�ý¢@�<‘��O$
�£@�<��U$
�	£@�<‘��Z$
�£@�<��a$
�£@�<‘��f$
�£@�<��l$
� £@�<‘��q$
�%£@�<��x$
�,£@�<‘��}$
�1£@�<��„$
�7£@�<‘��‰$
�<£@�<��$
�C£@�<‘��”$
�H£@�<��›$
�O£@�<‘�� $
�T£@�<��§$
�[£@�<‘��¬$
�_£@�<��²$
�f£@�<‘��·$
�k£@�<��¾$
�r£@�<‘��Ã$
�w£@�<��Ê$
�}£@�<‘��Ï$
�‚£@�<��Ö$
�‰£@�<‘��Û$
�Ž£@�<��á$
�•£@�<‘��æ$
�š£@�<��í$
�¡£@�<‘��ò$
�¦£@�<��ù$
�­£@�<‘��þ$
�²£@�<��%
�¹£@�<‘��
-%
�¾£@�<��%
�Ä£@�<‘��%
�É£@�<��%
�У@�<‘��!%
�Õ£@�<��(%
�Û£@�<‘��-%
�à£@�<��4%
�è£@�<‘��9%
�í£@�<��@%
�ó£@�<‘��E%
�ø£@�<��L%
�ÿ£@�<‘��Q%
�¤@�<��W%
�¤@�<‘��\%
�¤@�<��c%
�¤@�<‘��h%
�¤@�<��o%
�"¤@�<‘��t%
�'¤@�<��z%
�.¤@�<‘��%
�3¤@�<��†%
�:¤@�<‘��‹%
�?¤@�<��’%
�F¤@�<‘��—%
�K¤@�<��ž%
�Q¤@�<‘��¢%
�V¤@�<��©%
�]¤@�<‘��¯%
�b¤@�<��µ%
�i¤@�<‘��º%
�n¤@�<��Á%
�u¤@�<‘��Æ%
�z¤@�<��Ì%
�€¤@�<‘��Ñ%
�…¤@�<��Ø%
�Œ¤@�<‘��Ý%
�‘¤@�<��ä%
�—¤@�<‘��é%
�œ¤@�<­��î%
�¡¤@�<¸��ò%
�¦¤@�<¹��÷%
�«¤@�<¸��ü%
�¯¤@�<¹���&
�³¤@�<í��&
�·¤@�<ì��	&
�½¤@�<„��&
�¤@�<…��&
�Ǥ@�<„��&
�ˤ@�<…��&
�Ϥ@�<¬��!&
�Ô¤@�<Œ��&&
�Ú¤@�<��-&
�á¤@�<‘��3&
�æ¤@�<��:&
�î¤@�<‘��?&
�ó¤@�<��G&
�ú¤@�<‘��L&
�ÿ¤@�<��S&
�¥@�<‘��X&
�¥@�<��`&
�¥@�<‘��e&
�¥@�<��l&
� ¥@�<‘��q&
�%¥@�<��y&
�,¥@�<‘��~&
�1¥@�<��…&
�9¥@�<‘��Š&
�>¥@�<��‘&
�E¥@�<‘��–&
�J¥@�<��ž&
�Q¥@�<‘��£&
�V¥@�<��ª&
�^¥@�<‘��¯&
�b¥@�<��¶&
�j¥@�<‘��»&
�o¥@�<��Ã&
�v¥@�<‘��È&
�{¥@�<��Ï&
�ƒ¥@�<‘��Ô&
�ˆ¥@�<��Û&
�¥@�<‘��à&
�”¥@�<��è&
�›¥@�<‘��í&
� ¥@�<��ô&
�¨¥@�<‘��ù&
�­¥@�<��þ&
�²¥@�<Œ��'
�·¥@�<��
-'
�¾¥@�<‘��'
�Ã¥@�<��'
�Ë¥@�<‘��'
�Ð¥@�<��#'
�×¥@�<‘��)'
�Ü¥@�<��0'
�ä¥@�<‘��5'
�é¥@�<��<'
�ð¥@�<‘��B'
�õ¥@�<��I'
�ý¥@�<‘��N'
�¦@�<��U'
�	¦@�<‘��Z'
�¦@�<��b'
�¦@�<‘��g'
�¦@�<��n'
�"¦@�<‘��s'
�'¦@�<��{'
�.¦@�<‘��€'
�3¦@�<��‡'
�;¦@�<‘��Œ'
�@¦@�<��“'
�G¦@�<‘��˜'
�L¦@�<�� '
�S¦@�<‘��¥'
�X¦@�<��¬'
�`¦@�<‘��±'
�e¦@�<��¹'
�l¦@�<‘��¾'
�q¦@�<��Å'
�y¦@�<‘��Ê'
�~¦@�<��Ò'
�…¦@�<‘��×'
�Š¦@�<��Ü'
�¦@�<��ã'
�–¦@�<‘��è'
�›¦@�<��î'
�¢¦@�<‘��ó'
�¦¦@�<��ú'
�®¦@�<‘��ÿ'
�³¦@�<��(
�¹¦@�<‘��
-(
�¾¦@�<��(
�Ŧ@�<‘��(
�ʦ@�<��(
�Ѧ@�<‘��"(
�Õ¦@�<��)(
�ܦ@�<‘��.(
�á¦@�<��4(
�è¦@�<‘��9(
�í¦@�<��@(
�ô¦@�<‘��E(
�ù¦@�<��L(
��§@�<‘��Q(
�§@�<��X(
�§@�<‘��](
�§@�<��c(
�§@�<‘��h(
�§@�<��o(
�#§@�<‘��t(
�(§@�<��{(
�.§@�<‘��€(
�3§@�<��‡(
�:§@�<‘��Œ(
�?§@�<��’(
�F§@�<‘��—(
�K§@�<��ž(
�R§@�<‘��£(
�W§@�<��ª(
�]§@�<‘��¯(
�b§@�<��¶(
�i§@�<‘��»(
�n§@�<��Á(
�u§@�<‘��Æ(
�y§@�<��Í(
�§@�<‘��Ò(
�…§@�<��Ù(
�Œ§@�<‘��Þ(
�‘§@�<��å(
�˜§@�<‘��ê(
�§@�<��ð(
�¤§@�<‘��õ(
�©§@�<��ü(
�°§@�<‘��)
�´§@�<��)
�»§@�<‘��)
�À§@�<��)
�ǧ@�<‘��)
�̧@�<��)
�Ò§@�<‘��$)
�ק@�<��+)
�ü§@�<‘��N)
�¨@�<��V)
�
-¨@�<‘��[)
�¨@�<��c)
�¨@�<‘��h)
�¨@�<��n)
�"¨@�<‘��s)
�'¨@�<��z)
�.¨@�<‘��)
�3¨@�<��†)
�:¨@�<‘��‹)
�>¨@�<­��)
�C¨@�<¬��•)
�H¨@�<­��™)
�M¨@�<¬��ž)
�Q¨@�<­��¢)
�U¨@�<¬��§)
�Z¨@�<Œ��¬)
�`¨@�<��´)
�g¨@�<‘��¹)
�l¨@�<��À)
�t¨@�<‘��Å)
�y¨@�<��Í)
�€¨@�<‘��Ò)
�…¨@�<��Ù)
�¨@�<‘��Þ)
�’¨@�<��æ)
�™¨@�<‘��ë)
�ž¨@�<��ò)
�¦¨@�<‘��÷)
�«¨@�<��ÿ)
�²¨@�<‘��*
�·¨@�<��*
�¾¨@�<‘��*
�è@�<��*
�˨@�<‘��*
�Ш@�<��$*
�ר@�<‘��)*
�ܨ@�<��0*
�ä¨@�<‘��5*
�é¨@�<��<*
�ð¨@�<‘��B*
�õ¨@�<��I*
�ü¨@�<‘��N*
�©@�<��U*
�	©@�<‘��Z*
�©@�<��b*
�©@�<‘��g*
�©@�<��n*
�"©@�<‘��s*
�'©@�<��z*
�.©@�<‘��€*
�3©@�<��‡*
�:©@�<‘��Œ*
�@©@�<��“*
�G©@�<‘��˜*
�L©@�<�� *
�T©@�<‘��¥*
�Y©@�<��¬*
�`©@�<‘��²*
�e©@�<��¹*
�l©@�<‘��¾*
�q©@�<��Å*
�y©@�<‘��Ê*
�~©@�<��Ò*
�…©@�<‘��×*
�Š©@�<��Þ*
�‘©@�<‘��ã*
�–©@�<��ê*
�ž©@�<‘��ï*
�£©@�<��÷*
�ª©@�<‘��ü*
�¯©@�<��+
�·©@�<‘��+
�¼©@�<��+
�é@�<‘��+
�È©@�<��+
�Ï©@�<‘��!+
�Ô©@�<��(+
�Ü©@�<‘��-+
�á©@�<��5+
�è©@�<‘��:+
�í©@�<��A+
�õ©@�<‘��F+
�ú©@�<��M+
�ª@�<‘��R+
�ª@�<��Z+
�ª@�<‘��_+
�ª@�<��f+
�ª@�<‘��k+
�ª@�<��s+
�&ª@�<‘��x+
�+ª@�<��+
�3ª@�<‘��„+
�8ª@�<��Œ+
�?ª@�<‘��‘+
�Dª@�<��–+
�Jª@�<Œ��›+
�Nª@�<��¢+
�Uª@�<‘��§+
�Zª@�<��®+
�bª@�<‘��³+
�gª@�<��º+
�nª@�<‘��¿+
�sª@�<��Ç+
�zª@�<‘��Ì+
�ª@�<��Ó+
�‡ª@�<‘��Ø+
�Œª@�<��à+
�“ª@�<‘��å+
�˜ª@�<��ì+
� ª@�<‘��ñ+
�¤ª@�<��ø+
�¬ª@�<‘��ý+
�±ª@�<��,
�¹ª@�<‘��
-,
�¾ª@�<��,
�Ū@�<‘��,
�ʪ@�<��,
�Òª@�<‘��#,
�ת@�<��+,
�Þª@�<‘��0,
�ãª@�<��7,
�ëª@�<‘��<,
�ðª@�<��C,
�÷ª@�<‘��H,
�üª@�<��P,
�«@�<‘��U,
�«@�<��\,
�«@�<‘��a,
�«@�<��i,
�«@�<‘��n,
�!«@�<��u,
�)«@�<‘��z,
�.«@�<��,
�5«@�<‘��†,
�:«@�<��Ž,
�A«@�<‘��“,
�F«@�<��š,
�N«@�<‘��Ÿ,
�S«@�<��§,
�Z«@�<‘��¬,
�_«@�<��³,
�g«@�<‘��¸,
�k«@�<��¿,
�s«@�<‘��Ä,
�x«@�<��Ì,
�«@�<‘��Ñ,
�„«@�<��Ø,
�Œ«@�<‘��Ý,
�«@�<��ä,
�˜«@�<‘��é,
�«@�<��ñ,
�¤«@�<‘��ö,
�©«@�<��ý,
�±«@�<‘��-
�¶«@�<��	-
�½«@�<‘��-
�«@�<��-
�Ê«@�<‘��-
�Ï«@�<��"-
�Ö«@�<‘��'-
�Û«@�<��/-
�â«@�<‘��4-
�è«@�<��;-
�ï«@�<‘��@-
�ô«@�<��H-
�û«@�<‘��M-
��¬@�<��T-
�¬@�<‘��Y-
�
¬@�<��a-
�¬@�<‘��f-
�¬@�<��m-
�!¬@�<‘��r-
�&¬@�<��y-
�-¬@�<‘��-
�2¬@�<��„-
�7¬@�<��Š-
�>¬@�<‘��-
�C¬@�<��–-
�J¬@�<‘��›-
�N¬@�<��¢-
�V¬@�<‘��§-
�Z¬@�<��®-
�a¬@�<‘��²-
�f¬@�<��¹-
�m¬@�<‘��¾-
�r¬@�<��Å-
�y¬@�<‘��Ê-
�}¬@�<��Ñ-
�„¬@�<‘��Ö-
�‰¬@�<��Ü-
�¬@�<‘��á-
�•¬@�<��è-
�œ¬@�<‘��í-
�¡¬@�<��ô-
�§¬@�<‘��ù-
�¬¬@�<���.
�³¬@�<‘��.
�¸¬@�<��.
�À¬@�<‘��.
�Ĭ@�<��.
�ˬ@�<‘��.
�Ь@�<��#.
�׬@�<‘��(.
�ܬ@�<��/.
�ã¬@�<‘��4.
�è¬@�<��;.
�î¬@�<‘��@.
�ó¬@�<��G.
�ú¬@�<‘��L.
�ÿ¬@�<��R.
�­@�<‘��W.
�­@�<��^.
�­@�<‘��c.
�­@�<��i.
�­@�<‘��n.
�"­@�<��u.
�)­@�<‘��z.
�.­@�<��.
�4­@�<‘��†.
�9­@�<��.
�@­@�<‘��’.
�E­@�<��˜.
�L­@�<‘��.
�Q­@�<��¤.
�X­@�<‘��©.
�]­@�<��°.
�c­@�<‘��µ.
�h­@�<��¼.
�o­@�<‘��Á.
�t­@�<��Ç.
�{­@�<‘��Ì.
�€­@�<��Ó.
�‡­@�<‘��Ø.
�Œ­@�<��ß.
�’­@�<‘��ä.
�—­@�<��ë.
�ž­@�<‘��ð.
�£­@�<��ö.
�ª­@�<‘��û.
�®­@�<��/
�µ­@�<‘��/
�º­@�<��
/
�Á­@�<‘��/
�Æ­@�<��/
�Í­@�<‘��/
�Ò­@�<��%/
�Ø­@�<‘��*/
�Ý­@�<��1/
�ä­@�<‘��6/
�é­@�<��</
�ð­@�<‘��A/
�õ­@�<��H/
�ü­@�<‘��M/
�®@�<��T/
�®@�<‘��Y/
�®@�<��`/
�®@�<‘��e/
�®@�<��k/
�®@�<‘��p/
�$®@�<��w/
�+®@�<‘��|/
�0®@�<��‚/
�6®@�<‘��‡/
�;®@�<��Ž/
�B®@�<‘��“/
�G®@�<��š/
�M®@�<‘��Ÿ/
�R®@�<��¦/
�Y®@�<‘��ª/
�^®@�<��±/
�d®@�<‘��¶/
�i®@�<��½/
�p®@�<‘��Â/
�u®@�<��È/
�|®@�<‘��Í/
�€®@�<��Ô/
�‡®@�<‘��Ù/
�Œ®@�<��ß/
�“®@�<‘��ä/
�˜®@�<��ë/
�Ÿ®@�<‘��ð/
�¤®@�<��÷/
�ª®@�<‘��ü/
�¯®@�<��0
�¶®@�<‘��0
�»®@�<��0
�®@�<‘��0
�Ç®@�<��0
�ή@�<‘��0
�Ó®@�<��&0
�Ù®@�<‘��+0
�Þ®@�<��20
�å®@�<‘��60
�ê®@�<��=0
�ñ®@�<‘��B0
�õ®@�<��I0
�ü®@�<‘��N0
�¯@�<��T0
�¯@�<‘��Y0
�
¯@�<��`0
�¯@�<‘��e0
�¯@�<��l0
�¯@�<‘��q0
�$¯@�<��w0
�+¯@�<‘��}0
�0¯@�<��ƒ0
�7¯@�<‘��ˆ0
�<¯@�<��0
�C¯@�<‘��”0
�H¯@�<��›0
�N¯@�<‘�� 0
�S¯@�<��§0
�Z¯@�<‘��¬0
�_¯@�<��²0
�f¯@�<‘��·0
�k¯@�<��¾0
�r¯@�<‘��Ã0
�w¯@�<��Ê0
�}¯@�<‘��Ï0
�‚¯@�<��Ö0
�‰¯@�<‘��Û0
�Ž¯@�<��á0
�•¯@�<‘��æ0
�š¯@�<��í0
�¡¯@�<‘��ò0
�¦¯@�<��ù0
�¬¯@�<‘��þ0
�±¯@�<��1
�¸¯@�<‘��	1
�½¯@�<��1
�ï@�<‘��1
�ȯ@�<­��1
�ͯ@�<´��1
�Ò¯@�<µ��#1
�Ö¯@�<´��'1
�Û¯@�<µ��+1
�߯@�<¬��01
�ã¯@�<Œ��51
�é¯@�<��<1
�ð¯@�<‘��B1
�õ¯@�<��I1
�ý¯@�<‘��N1
�°@�<��V1
�	°@�<‘��[1
�°@�<��b1
�°@�<‘��g1
�°@�<��o1
�"°@�<‘��s1
�'°@�<��{1
�.°@�<‘��€1
�3°@�<��‡1
�;°@�<‘��Œ1
�@°@�<��”1
�G°@�<‘��™1
�L°@�<�� 1
�T°@�<‘��¥1
�Y°@�<��¬1
�`°@�<‘��±1
�e°@�<��¹1
�l°@�<‘��¾1
�q°@�<��Å1
�y°@�<‘��Ê1
�~°@�<��Ñ1
�…°@�<‘��Ö1
�Š°@�<��Þ1
�‘°@�<‘��ã1
�–°@�<��ê1
�ž°@�<‘��ï1
�£°@�<��ö1
�ª°@�<‘��û1
�¯°@�<��2
�¶°@�<‘��2
�»°@�<��2
�ð@�<‘��2
�È°@�<��2
�Ï°@�<‘��!2
�Ô°@�<��&2
�Ú°@�<Œ��+2
�Þ°@�<��22
�å°@�<‘��72
�ë°@�<��>2
�ò°@�<‘��D2
�÷°@�<��K2
�þ°@�<‘��P2
�±@�<��W2
�±@�<‘��\2
�±@�<��d2
�±@�<‘��i2
�±@�<��p2
�$±@�<‘��u2
�)±@�<��}2
�0±@�<‘��‚2
�6±@�<��‰2
�=±@�<‘��Ž2
�B±@�<��–2
�I±@�<‘��›2
�N±@�<��¢2
�V±@�<‘��§2
�[±@�<��¯2
�b±@�<‘��´2
�g±@�<��»2
�o±@�<‘��À2
�t±@�<��È2
�{±@�<‘��Í2
�€±@�<��Ô2
�ˆ±@�<‘��Ù2
�±@�<��à2
�”±@�<‘��æ2
�™±@�<��í2
� ±@�<‘��ò2
�¥±@�<��ù2
�­±@�<‘��þ2
�²±@�<��3
�¹±@�<‘��3
�¾±@�<��3
�Ʊ@�<‘��3
�˱@�<��3
�б@�<��#3
�×±@�<‘��(3
�ܱ@�<��/3
�â±@�<‘��33
�ç±@�<��:3
�î±@�<‘��?3
�ó±@�<��F3
�ú±@�<‘��K3
�þ±@�<��R3
�²@�<‘��W3
�
-²@�<��]3
�²@�<‘��b3
�²@�<��i3
�²@�<‘��n3
�"²@�<��u3
�(²@�<‘��z3
�-²@�<��3
�4²@�<‘��†3
�9²@�<��Œ3
�@²@�<‘��‘3
�E²@�<��˜3
�L²@�<‘��3
�Q²@�<��¤3
�W²@�<‘��¨3
�\²@�<��¯3
�c²@�<‘��´3
�h²@�<��»3
�n²@�<‘��À3
�t²@�<��Ç3
�z²@�<‘��Ì3
�²@�<��Ò3
�†²@�<‘��×3
�‹²@�<��Þ3
�’²@�<‘��ã3
�—²@�<��ê3
�²@�<‘��ï3
�¢²@�<��ö3
�©²@�<‘��û3
�®²@�<��4
�µ²@�<‘��4
�¹²@�<��
4
�À²@�<‘��4
�Ʋ@�<��4
�̲@�<‘��4
�Ѳ@�<��$4
�ز@�<‘��)4
�ݲ@�<��04
�ã²@�<‘��54
�è²@�<��<4
�ï²@�<‘��A4
�ô²@�<��G4
�û²@�<‘��L4
��³@�<��S4
�³@�<‘��X4
�³@�<��_4
�³@�<‘��d4
�³@�<��k4
�³@�<‘��p4
�#³@�<��v4
�*³@�<‘��{4
�/³@�<��‚4
�6³@�<‘��‡4
�:³@�<��4
�A³@�<‘��’4
�F³@�<��™4
�M³@�<‘��ž4
�R³@�<��¤4
�X³@�<‘��©4
�]³@�<��°4
�d³@�<‘��µ4
�i³@�<��¼4
�o³@�<‘��Á4
�t³@�<��È4
�{³@�<‘��Í4
�€³@�<��Ó4
�‡³@�<‘��Ø4
�Œ³@�<­��Ý4
�‘³@�<¸��â4
�•³@�<¹��æ4
�™³@�<¸��ê4
�³@�<¹��î4
�¡³@�<í��ò4
�¥³@�<é��ö4
�©³@�<x��ÿ4
�³³@�<|��5
�¹³@�<€��5
�¿³@�<l��5
�dz@�<m��5
�˳@�<„��5
�Ò³@�<ˆ��$5
�س@�<Œ��*5
�Þ³@�<��/5
�ã³@�<‰��35
�æ³@�<��85
�ì³@�<‘��<5
�ï³@�<l��@5
�ô³@�<m��D5
�ø³@�<”��I5
�ý³@�<˜��P5
�´@�<œ��X5
�´@�<x��c5
�´@�<y��i5
�´@�<��n5
�!´@�<™��r5
�%´@�<•��v5
�*´@�<…��z5
�-´@�<��~5
�1´@�<}��‚5
�5´@�<y��†5
�9´@�<x��Œ5
�?´@�<|��5
�D´@�<€��”5
�H´@�<l��™5
�L´@�<m��ž5
�Q´@�<„��¢5
�V´@�<ˆ��§5
�Z´@�<Œ��«5
�^´@�<��¯5
�b´@�<‰��³5
�f´@�<��·5
�j´@�<‘��»5
�n´@�<l��¿5
�s´@�<m��Ã5
�v´@�<”��Ç5
�{´@�<˜��Ì5
�€´@�<œ��Ñ5
�…´@�<x��Ù5
�´@�<y��ß5
�’´@�<��ã5
�—´@�<™��ç5
�›´@�<•��ë5
�Ÿ´@�<…��ï5
�¢´@�<��ó5
�¦´@�<}��÷5
�ª´@�<y��û5
�®´@�<¨���6
�´´@�<€��6
�¿´@�<„��6
�ƴ@�<$���6
�̴@�<%���6
�д@�<…��'6
�Ú´@�<��+6
�Þ´@�<¬��/6
�	µ@�<­��[6
�µ@�<d��a6
�µ@�<h��g6
�µ@�<l��m6
� µ@�<m��q6
�$µ@�<x��{6
�/µ@�<y��6
�5µ@�<i��†6
�9µ@�<e��Š6
�=µ@�<Œ��6
�Cµ@�<��•6
�Hµ@�<‘��›6
�Oµ@�<��Ÿ6
�Sµ@�<„��¤6
�Wµ@�<…��¨6
�\µ@�<d��­6
�`µ@�<h��±6
�dµ@�<l��µ6
�iµ@�<m��¹6
�mµ@�<x��Â6
�uµ@�<y��Ç6
�{µ@�<i��Ì6
�µ@�<e��Ð6
�ƒµ@�<°��Õ6
�ˆµ@�<±��Ù6
�µ@�<´��Þ6
�‘µ@�<µ��â6
�•µ@�<¸��æ6
�šµ@�<¹��ê6
�µ@�<Œ��î6
�¢µ@�<��ó6
�¦µ@�<‘��ø6
�«µ@�<��ü6
�¯µ@�<d���7
�´µ@�<h��7
�¸µ@�<l��	7
�½µ@�<m��
7
�Áµ@�<x��7
�ɵ@�<y��7
�ε@�<i��7
�ҵ@�<e��#7
�Öµ@�<Œ��'7
�Ûµ@�<��,7
�ßµ@�<‘��17
�åµ@�<��57
�éµ@�<¼��:7
�íµ@�<À��@7
�óµ@�<Ä��E7
�ùµ@�<h��N7
�¶@�<l��S7
�¶@�<m��X7
�¶@�<x��`7
�¶@�<y��f7
�¶@�<i��j7
�¶@�<Å��n7
�"¶@�<Á��r7
�%¶@�<½��v7
�)¶@�<Œ��z7
�.¶@�<��7
�2¶@�<‘��„7
�7¶@�<��ˆ7
�<¶@�<”��7
�A¶@�<˜��”7
�G¶@�<œ��ž7
�Q¶@�<��«7
�_¶@�<™��¯7
�c¶@�<•��´7
�h¶@�<©��¸7
�l¶@�<x��¾7
�r¶@�<|��Ä7
�w¶@�<€��È7
�|¶@�<l��Í7
�€¶@�<m��Ñ7
�„¶@�<„��Õ7
�‰¶@�<ˆ��Ú7
�Ž¶@�<Œ��ß7
�“¶@�<��ã7
�—¶@�<‰��ç7
�›¶@�<��ì7
�Ÿ¶@�<‘��ð7
�£¶@�<l��ô7
�¨¶@�<m��ù7
�­¶@�<”��þ7
�±¶@�<˜��8
�·¶@�<œ��	8
�¼¶@�<x��8
�Ŷ@�<y��8
�ʶ@�<��8
�϶@�<™��8
�Ó¶@�<•��#8
�׶@�<…��'8
�Û¶@�<��+8
�޶@�<}��/8
�â¶@�<y��38
�æ¶@�<x��88
�ì¶@�<|��<8
�ð¶@�<€��A8
�ô¶@�<l��E8
�ù¶@�<m��I8
�ü¶@�<„��M8
�·@�<ˆ��R8
�·@�<Œ��V8
�	·@�<��Z8
�
·@�<‰��^8
�·@�<��b8
�·@�<‘��f8
�·@�<l��k8
�·@�<m��n8
�"·@�<”��s8
�&·@�<˜��x8
�+·@�<œ��}8
�0·@�<x��…8
�8·@�<y��Š8
�=·@�<��Ž8
�B·@�<™��’8
�F·@�<•��–8
�J·@�<…��š8
�N·@�<��ž8
�Q·@�<}��¢8
�U·@�<y��¦8
�Y·@�<x��«8
�^·@�<|��¯8
�c·@�<€��³8
�g·@�<l��¸8
�k·@�<m��¼8
�o·@�<„��À8
�t·@�<ˆ��Ä8
�x·@�<Œ��É8
�|·@�<��Í8
�€·@�<‰��Ð8
�„·@�<��Õ8
�ˆ·@�<‘��Ù8
�Œ·@�<l��Ý8
�·@�<m��á8
�”·@�<”��å8
�™·@�<˜��ê8
�ž·@�<œ��ï8
�£·@�<x��÷8
�ª·@�<y��ü8
�°·@�<���9
�´·@�<™��9
�¸·@�<•��9
�¼·@�<…��9
�À·@�<��9
�÷@�<}��9
�Ƿ@�<y��9
�˷@�<x��9
�з@�<|��!9
�Ô·@�<€��%9
�ط@�<l��)9
�ݷ@�<m��-9
�à·@�<„��19
�å·@�<ˆ��69
�é·@�<Œ��:9
�í·@�<��>9
�ñ·@�<‰��B9
�ö·@�<��F9
�ú·@�<‘��J9
�þ·@�<l��O9
�¸@�<m��R9
�¸@�<”��W9
�
-¸@�<˜��[9
�¸@�<œ��`9
�¸@�<x��h9
�¸@�<y��m9
�!¸@�<��q9
�%¸@�<™��u9
�)¸@�<•��z9
�-¸@�<…��}9
�1¸@�<��9
�5¸@�<}��…9
�8¸@�<y��‰9
�<¸@�<¨��Ž9
�A¸@�<€��–9
�J¸@�<„��›9
�N¸@�<$���Ÿ9
�S¸@�<%���£9
�W¸@�<…��ª9
�]¸@�<��®9
�a¸@�<¬��²9
�f¸@�<­��·9
�j¸@�<d��»9
�o¸@�<h��À9
�s¸@�<l��Å9
�x¸@�<m��É9
�|¸@�<x��Ñ9
�…¸@�<y��×9
�Š¸@�<i��Û9
�¸@�<e��ß9
�“¸@�<Œ��ä9
�—¸@�<��è9
�œ¸@�<‘��î9
�¢¸@�<��ò9
�¦¸@�<„��÷9
�ª¸@�<…��û9
�¯¸@�<d��ÿ9
�³¸@�<h��:
�·¸@�<l��:
�»¸@�<m��:
�¿¸@�<x��:
�Ǹ@�<y��:
�͸@�<i��:
�Ѹ@�<e��!:
�Õ¸@�<°��&:
�Ù¸@�<±��*:
�Þ¸@�<´��/:
�â¸@�<µ��3:
�æ¸@�<¸��7:
�ë¸@�<¹��;:
�î¸@�<Œ��?:
�ó¸@�<��C:
�÷¸@�<‘��I:
�ü¸@�<��M:
��¹@�<d��Q:
�¹@�<h��U:
�	¹@�<l��Y:
�
¹@�<m��]:
�¹@�<x��e:
�¹@�<y��j:
�¹@�<i��o:
�"¹@�<e��s:
�&¹@�<Œ��w:
�+¹@�<��|:
�/¹@�<‘��:
�4¹@�<��…:
�8¹@�<¼��‰:
�=¹@�<À��Ž:
�A¹@�<Ä��“:
�F¹@�<h��™:
�L¹@�<l��ž:
�Q¹@�<m��¡:
�U¹@�<x��©:
�]¹@�<y��¯:
�b¹@�<i��³:
�g¹@�<Å��·:
�k¹@�<Á��»:
�n¹@�<½��¿:
�r¹@�<Œ��Ã:
�w¹@�<��Ç:
�{¹@�<p��Í:
�€¹@�<t��×:
�‹¹@�<t��á:
�•¹@�<u��è:
�›¹@�<u��ì:
� ¹@�<q��ñ:
�¥¹@�<‘��ö:
�©¹@�<��ú:
�­¹@�<”��ÿ:
�²¹@�<˜��;
�·¹@�<œ��
-;
�¾¹@�<��;
�ɹ@�<™��;
�͹@�<•��;
�ѹ@�<©��";
�չ@�<x��';
�ڹ@�<|��+;
�ß¹@�<€��/;
�ã¹@�<l��4;
�è¹@�<m��8;
�ì¹@�<„��=;
�ñ¹@�<ˆ��B;
�ö¹@�<Œ��G;
�û¹@�<��L;
�ÿ¹@�<‰��P;
�º@�<��T;
�º@�<‘��X;
�º@�<l��\;
�º@�<m��`;
�º@�<”��d;
�º@�<˜��i;
�º@�<Ì��n;
�"º@�<Ð��v;
�*º@�<\���};
�1º@�<]���‚;
�6º@�<Ô��Š;
�=º@�<È��;
�Bº@�<\���”;
�Gº@�<]���˜;
�Lº@�<p��;
�Qº@�<t��§;
�Zº@�<t��¯;
�cº@�<u��¶;
�jº@�<u��»;
�nº@�<q��¿;
�sº@�<t��Ä;
�xº@�<t��Ë;
�º@�<u��Ò;
�…º@�<u��Ö;
�‰º@�<É��Ú;
�º@�<Õ��Þ;
�’º@�<Ñ��â;
�–º@�<Ø��ç;
�›º@�<Ù��í;
�¡º@�<Í��ò;
�¥º@�<œ��÷;
�ªº@�<x��ÿ;
�³º@�<y��<
�¸º@�<��	<
�½º@�<™��
<
�Áº@�<•��<
�ź@�<…��<
�ɺ@�<��<
�ͺ@�<}��<
�Ѻ@�<y��!<
�պ@�<x��&<
�ں@�<|��+<
�Þº@�<€��/<
�âº@�<l��3<
�çº@�<m��7<
�ëº@�<„��<<
�ïº@�<ˆ��@<
�ôº@�<Œ��D<
�øº@�<��I<
�üº@�<‰��L<
��»@�<��Q<
�»@�<‘��U<
�»@�<l��Y<
�»@�<m��]<
�»@�<”��a<
�»@�<˜��f<
�»@�<œ��k<
�»@�<x��s<
�'»@�<y��x<
�,»@�<��}<
�0»@�<™��<
�4»@�<•��…<
�8»@�<…��‰<
�<»@�<��Œ<
�@»@�<}��<
�D»@�<y��”<
�H»@�<x��™<
�M»@�<|��<
�Q»@�<€��¢<
�U»@�<l��¦<
�Z»@�<m��ª<
�^»@�<„��®<
�b»@�<ˆ��³<
�f»@�<Œ��·<
�k»@�<��»<
�o»@�<‰��¿<
�s»@�<��Ã<
�w»@�<‘��Ç<
�{»@�<l��Ë<
�»@�<m��Ï<
�ƒ»@�<”��Ô<
�‡»@�<˜��Ø<
�Œ»@�<œ��Þ<
�‘»@�<x��å<
�™»@�<y��ë<
�ž»@�<��ï<
�¢»@�<™��ó<
�§»@�<•��÷<
�ª»@�<…��û<
�®»@�<��þ<
�²»@�<}��=
�¶»@�<y��=
�º»@�<x��=
�¾»@�<|��=
�û@�<€��=
�ǻ@�<l��=
�˻@�<m��=
�Ï»@�<„�� =
�Ô»@�<ˆ��$=
�Ø»@�<Œ��)=
�Ü»@�<��-=
�à»@�<‰��1=
�ä»@�<��5=
�è»@�<‘��9=
�ì»@�<l��==
�ð»@�<m��A=
�ô»@�<”��E=
�ù»@�<˜��J=
�ý»@�<œ��O=
�¼@�<x��V=
�
-¼@�<y��\=
�¼@�<��`=
�¼@�<™��d=
�¼@�<•��h=
�¼@�<…��l=
�¼@�<��p=
�#¼@�<}��t=
�'¼@�<y��w=
�+¼@�<ð��~=
�1¼@�<ô��ƒ=
�7¼@�<Ä��ˆ=
�<¼@�<Å��Ž=
�B¼@�<õ��’=
�E¼@�<ñ��–=
�I¼@�<x��›=
�N¼@�<|��Ÿ=
�R¼@�<€��£=
�W¼@�<l��¨=
�\¼@�<m��¬=
�`¼@�<„��±=
�d¼@�<ˆ��µ=
�i¼@�<Œ��¹=
�m¼@�<��¾=
�q¼@�<‰��Â=
�u¼@�<��Æ=
�y¼@�<‘��Ê=
�}¼@�<l��Î=
�‚¼@�<m��Ò=
�…¼@�<”��Ö=
�Š¼@�<˜��Û=
�Ž¼@�<œ��à=
�”¼@�<x��è=
�›¼@�<y��í=
� ¼@�<��ñ=
�¥¼@�<™��õ=
�©¼@�<•��ú=
�­¼@�<…��ý=
�±¼@�<��>
�µ¼@�<}��>
�¹¼@�<y��	>
�½¼@�<x��>
�¼@�<|��>
�Ƽ@�<€��>
�ʼ@�<l��>
�ϼ@�<m�� >
�Ó¼@�<„��$>
�ؼ@�<ˆ��)>
�ܼ@�<Œ��->
�à¼@�<��1>
�å¼@�<‰��5>
�è¼@�<��9>
�í¼@�<‘��=>
�ñ¼@�<l��A>
�õ¼@�<m��E>
�ù¼@�<”��J>
�ý¼@�<˜��N>
�½@�<œ��S>
�½@�<x��[>
�½@�<y��a>
�½@�<��e>
�½@�<™��i>
�½@�<•��m>
� ½@�<…��q>
�$½@�<��t>
�(½@�<}��x>
�,½@�<y��|>
�0½@�<Ü��…>
�8½@�<à��‹>
�?½@�<á��‘>
�D½@�<Ý��•>
�I½@�<ä��œ>
�O½@�<å�� >
�T½@�<Ì��§>
�Z½@�<Í��¬>
�_½@�<a��°>
�d½@�<a��¶>
�i½@�<]��¼>
�o½@�<ø��Ã>
�v½@�<Ì��È>
�|½@�<Ð��Ï>
�‚½@�<\���Ô>
�ˆ½@�<]���Ø>
�Œ½@�<Ô��Þ>
�‘½@�<È��â>
�–½@�<\���æ>
�š½@�<]���ê>
�ž½@�<p��ð>
�£½@�<t��5?
�é½@�<t��>?
�ò½@�<u��E?
�ø½@�<u��I?
�ý½@�<q��N?
�¾@�<t��S?
�¾@�<t��[?
�¾@�<u��a?
�¾@�<u��e?
�¾@�<É��i?
�¾@�<Õ��n?
�!¾@�<Ñ��r?
�%¾@�<Ø��y?
�,¾@�<Ù��|?
�0¾@�<Í��?
�4¾@�<Ø��†?
�:¾@�<Ù��Š?
�=¾@�<ù��Ž?
�B¾@�<ü��”?
�H¾@�<���š?
�N¾@�<˜��¡?
�T¾@�<œ��ª?
�]¾@�<��¶?
�j¾@�<™��¼?
�o¾@�<��À?
�t¾@�<ý��Ä?
�x¾@�<É��È?
�|¾@�<d��Ñ?
�…¾@�<h��Ö?
�Š¾@�<l��Û?
�¾@�<m��ß?
�“¾@�<p��æ?
�™¾@�<t��ý?
�°¾@�<u��@
�¾@�<q��@
�ƾ@�<x��@
�Ͼ@�<y��"@
�־@�<i��'@
�۾@�<e��+@
�ß¾@�<”��0@
�ã¾@�<˜��4@
�è¾@�<œ��<@
�ï¾@�<��D@
�÷¾@�<™��H@
�ü¾@�<•��M@
��¿@�<��S@
�¿@�<��Z@
�
¿@�<	��`@
�¿@�<��j@
�¿@�<
��ç@
�›¿@�<��ð@
�£¿@�<Å��õ@
�©¿@�<!��ÿ@
�²¿@�<��A
�¹¿@�<%��A
�À¿@�ç���¬L�B�ç���ïL�*B�ç���"M�[B�ç ���6M�mB�ç$���GM�}B�ç%���TM�ŠB�ç!���nM�¥B�ç���uM�¬B�ç���}M�³B�ç(���‰M�ÀB�ç,���–M�ÌB�ç0���M�ÔB�ç1���¥M�ÛB�ç4���¬M�âB�ç5���µM�ëB�ç-���ºM�ñB�ç8���ÇM�þB�ç9���ÒM�	B�ç)���ÙM�B�ç<���èM�B�ç$���ðM�&B�ç%���öM�,B�ç=���ýM�4B�çL���N�<B�çP���N�OB�çT��� N�VB�çX���,N�cB�ç\���6N�lB�ç]���AN�wB�ç`���JN�€B�çd���QN�‡B�çh���\N�“B�çl���fN�œB�ç$���mN�¤B�ç%���wN�­B�çm���…N�¾B�çi���N�ÆB�çe���šN�ÒB�ça���¡N�×B�çY���§N�ÝB�çp���¯N�æB�çq���¶N�ìB�çU���»N�òB�çt���ÄN�úB�çu���ÍN�B�çx���ìN�"B�çy���üW�©B�çQ���LX�ÁB�çM���VX�ÌB�ç���fX�ÛB�ç���RY�°¦I�ç���lY�ȦI�ç���ƒY�ߦI�ç ���ŽY�é¦I�ç$���–Y�ò¦I�ç%���ŸY�û¦I�ç!���¥Y�§I�ç���­Y�	§I�ç���´Y�§I�ç(���¾Y�§I�ç,���ÇY�#§I�ç0���ÐY�,§I�ç1���ØY�4§I�ç4���àY�;§I�ç5���êY�F§I�ç-���ïY�K§I�ç8���üY�X§I�ç9���Z�`§I�ç)���Z�f§I�ç<���Z�s§I�ç$��� Z�{§I�ç%���%Z�§I�ç=���-Z�‰§I�çL���6Z�’§I�çP���AZ�œ§I�çT���HZ�¤§I�çX���RZ�®§I�ç\���[Z�·§I�ç]���cZ�¿§I�ç`���lZ�ȧI�çd���sZ�ϧI�çh���{Z�קI�çl���„Z�ߧI�ç$���ŒZ�ç§I�ç%���‘Z�í§I�çm���šZ�ö§I�çi���¡Z�ý§I�çe���©Z�¨I�ça���®Z�
-¨I�çY���´Z�¨I�çp���¼Z�¨I�çq���ÃZ�¨I�çU���ÈZ�$¨I�çt���ÐZ�+¨I�çu���ØZ�4¨I�çx���íZ�H¨I�çy���1c�°I�çQ���@c�œ°I�çM���Gc�£°I�ç���Nc�ª°I�ç���d�\FQ�ç���#d�xFQ�ç���4d�‰FQ�ç ���@d�•FQ�ç$���Jd� FQ�ç%���Td�ªFQ�ç!���\d�±FQ�ç���ed�ºFQ�ç���md�ÂFQ�ç(���xd�ÍFQ�ç,���‚d�×FQ�ç0���‹d�àFQ�ç1���”d�éFQ�ç4���›d�ðFQ�ç5���¦d�ûFQ�ç-���¬d�GQ�ç8���ºd�GQ�ç9���Ãd�GQ�ç)���Êd�GQ�ç<���Ùd�/GQ�ç$���âd�7GQ�ç%���éd�>GQ�ç=���ñd�FGQ�çL���úd�OGQ�çP���e�[GQ�çT���e�dGQ�çX���e�nGQ�ç\���#e�xGQ�ç]���,e�GQ�ç`���6e�‹GQ�çd���>e�“GQ�çh���Fe�œGQ�çl���Oe�¤GQ�ç$���We�¬GQ�ç%���\e�±GQ�çm���ee�ºGQ�çi���me�ÂGQ�çe���te�ÉGQ�ça���ye�ÎGQ�çY���e�ÔGQ�çp���†e�ÜGQ�çq���e�âGQ�çU���’e�çGQ�çt���še�ïGQ�çu���£e�øGQ�çx���·e�
HQ�çy���n�rPQ�çQ���+n�€PQ�çM���2n�‡PQ�ç���9n�ŽPQ�ç���ûn�èX�ç���o�)èX�ç���,o�:èX�ç ���6o�DèX�ç$���@o�NèX�ç%���Io�WèX�ç!���Po�^èX�ç���Xo�fèX�ç���_o�mèX�ç(���ko�yèX�ç,���uo�ƒèX�ç0���~o�ŒèX�ç1���‡o�•èX�ç4���Žo�œèX�ç5���™o�§èX�ç-���Ÿo�­èX�ç8���­o�»èX�ç9���µo�ÃèX�ç)���¼o�ÊèX�ç<���Êo�ØèX�ç$���Ño�àèX�ç%���×o�åèX�ç=���ßo�íèX�çL���ço�öèX�çP���òo��éX�çT���úo�éX�çX���p�éX�ç\���p�éX�ç]���p�#éX�ç`���p�,éX�çd���&p�4éX�çh���.p�<éX�çl���6p�DéX�ç$���?p�MéX�ç%���Dp�RéX�çm���Mp�[éX�çi���Tp�béX�çe���\p�jéX�ça���bp�péX�çY���hp�véX�çp���op�}éX�çq���vp�„éX�çU���{p�‰éX�çt���‚p�‘éX�çu���‹p�™éX�çx���žp�¬éX�çy���Ay�PòX�çQ���[y�iòX�çM���by�qòX�ç���oy�}òX�ç���Vz�ˆŠ`�ç���rz�£Š`�ç���„z�´Š`�ç ���z�¿Š`�ç$���˜z�ÈŠ`�ç%���¡z�ÑŠ`�ç!���¨z�ØŠ`�ç���°z�áŠ`�ç���¸z�èŠ`�ç(���Âz�óŠ`�ç,���Ìz�üŠ`�ç0���Õz�‹`�ç1���Ýz�
‹`�ç4���åz�‹`�ç5���ðz� ‹`�ç-���öz�&‹`�ç8���{�3‹`�ç9���{�<‹`�ç)���{�C‹`�ç<���!{�Q‹`�ç$���){�Y‹`�ç%���/{�_‹`�ç=���7{�g‹`�çL���?{�p‹`�çP���J{�{‹`�çT���R{�‚‹`�çX���[{�Œ‹`�ç\���e{�–‹`�ç]���n{�ž‹`�ç`���w{�§‹`�çd���{�¯‹`�çh���‡{�·‹`�çl���{�¿‹`�ç$���—{�Ç‹`�ç%���{�Í‹`�çm���¦{�׋`�çi���­{�Þ‹`�çe���µ{�å‹`�ça���º{�ê‹`�çY���
|�>Œ`�çp���|�IŒ`�çq��� |�PŒ`�çU���%|�VŒ`�çt���-|�]Œ`�çu���7|�gŒ`�çx���K|�|Œ`�çy���Z„�‹”`�çQ���h„�˜”`�çM���o„�Ÿ”`�ç���v„�¦”`�ç���+…�¶*h�ç���F…�Ï*h�ç���W…�ß*h�ç ���a…�ê*h�ç$���i…�ò*h�ç%���r…�ú*h�ç!���x…��+h�ç���€…�+h�ç���†…�+h�ç(���‘…�+h�ç,���™…�"+h�ç0���¢…�*+h�ç1���ª…�2+h�ç4���±…�:+h�ç5���¼…�D+h�ç-���Á…�J+h�ç8���Î…�W+h�ç9���×…�`+h�ç)���Þ…�g+h�ç<���ì…�u+h�ç$���õ…�~+h�ç%���û…�ƒ+h�ç=���†�‹+h�çL���†�”+h�çP���†�Ÿ+h�çT���†�¨+h�çX���)†�±+h�ç\���2†�»+h�ç]���;†�Ä+h�ç`���c†�ì+h�çd���l†�õ+h�çh���u†�ý+h�çl���}†�,h�ç$���…†�,h�ç%���‹†�,h�çm���”†�,h�çi���ž†�&,h�çe���§†�/,h�ça���¬†�4,h�çY���²†�:,h�çp���¹†�B,h�çq���À†�I,h�çU���Ɔ�N,h�çt���͆�V,h�çu���׆�`,h�çx���ë†�s,h�çy���3�¼4h�çQ���B�Ë4h�çM���J�Ò4h�ç���R�Û4h�ç���í�€Êo�ç����•Êo�ç����¢Êo�ç ����¬Êo�ç$���#�³Êo�ç%���*�ºÊo�ç!���0�ÀÊo�ç���6�ÇÊo�ç���<�ÌÊo�ç(���D�ÕÊo�ç,���M�ÝÊo�ç0���T�äÊo�ç1���[�ìÊo�ç4���b�òÊo�ç5���k�ûÊo�ç-���p��Ëo�ç8���{�Ëo�ç9���ƒ�Ëo�ç)���‰�Ëo�ç<���”�%Ëo�ç$���œ�,Ëo�ç%���¡�2Ëo�ç=���¨�9Ëo�çL���¯�@Ëo�çP���¹�JËo�çT���À�QËo�çX���ɐ�YËo�ç\���ѐ�aËo�ç]���ؐ�iËo�ç`���á�qËo�çd���é�yËo�çh���ð�€Ëo�çl���÷�ˆËo�ç$���ý�ŽËo�ç%���‘�’Ëo�çm���	‘�šËo�çi���‘� Ëo�çe���‘�¦Ëo�ça���‘�ªËo�çY���‘�¯Ëo�çp���%‘�¶Ëo�çq���+‘�»Ëo�çU���/‘�ÀËo�çt���5‘�ÆËo�çu���=‘�ÍËo�çx���N‘�ßËo�çy���ý—�ŽÒo�çQ���˜�›Òo�çM���˜�¢Òo�ç���˜�¨Òo�ç���™�olw�ç���8™�ˆlw�ç���H™�˜lw�ç ���Q™�¡lw�ç$���Y™�©lw�ç%���`™�°lw�ç!���f™�µlw�ç���l™�»lw�ç���q™�Álw�ç(���z™�Êlw�ç,���‚™�Ñlw�ç0���‰™�Ùlw�ç1���™�àlw�ç4���–™�ælw�ç5��� ™�ïlw�ç-���¤™�ôlw�ç8���°™��mw�ç9���·™�mw�ç)���¾™�mw�ç<���Ê™�mw�ç$���Ñ™�!mw�ç%���Ö™�&mw�ç=���Þ™�-mw�çL���å™�5mw�çP���ð™�?mw�çT���ö™�Fmw�çX���þ™�Nmw�ç\���š�Vmw�ç]���š�^mw�ç`���š�emw�çd���š�kmw�çh���"š�rmw�çl���(š�xmw�ç$���/š�mw�ç%���4š�ƒmw�çm���;š�Šmw�çi���Aš�‘mw�çe���Hš�˜mw�ça���Lš�œmw�çY���Rš�¢mw�çp���[š�¬mw�çq���cš�³mw�çU���hš�·mw�çt���nš�¾mw�çu���xš�Èmw�çx���‹š�Ûmw�çy���S¡�£tw�çQ���a¡�±tw�çM���g¡�·tw�ç���n¡�¾tw�ç���/¢�›�ç���M¢�·�ç���^¢�È�ç ���j¢�Ô�ç$���u¢�Þ�ç%���~¢�è�ç!���†¢�ð�ç���¢�ù�ç���—¢���ç(���¢¢��ç,���¬¢��ç0���µ¢��ç1���¾¢�'�ç4���Æ¢�0�ç5���Т�:�ç-���×¢�@�ç8���ä¢�N�ç9���î¢�W�ç)���õ¢�^�ç<���£�m�ç$���£�v�ç%���£�|�ç=���£�…�çL���$£�Ž�çP���0£�š�çT���9£�£�çX���C£�­�ç\���M£�¶�ç]���U£�¿�ç`���_£�É�çd���h£�Ò�çh���q£�Û�çl���z£�ä�ç$���ƒ£�ì�ç%���‰£�ó�çm���’£�ü�çi���›£��çe���££��ça���¨£��çY���¯£��çp���¶£� �çq���½£�'�çU���£�,�çt���Ê£�4�çu���Ô£�>�çx���ç£�P�çy���4¬�Ÿ�çQ���B¬�¬�çM���I¬�³�ç���P¬�º�ç���ê¬�¸®†�ç���­�Í®†�ç���­�Û®†�ç ���­�宆�ç$���#­��ç%���+­�ö®†�ç!���1­�ü®†�ç���8­�¯†�ç���>­�	¯†�ç(���G­�¯†�ç,���N­�¯†�ç0���V­�!¯†�ç1���]­�(¯†�ç4���c­�.¯†�ç5���m­�8¯†�ç-���q­�<¯†�ç8���|­�H¯†�ç9���„­�O¯†�ç)���‰­�T¯†�ç<���–­�a¯†�ç$���œ­�g¯†�ç%���¡­�l¯†�ç=���§­�s¯†�çL���¯­�z¯†�çP���¸­�ƒ¯†�çT���¿­�Š¯†�çX���Æ­�‘¯†�ç\���έ�™¯†�ç]���Õ­� ¯†�ç`���Ý­�¨¯†�çd���ã­�®¯†�çh���ê­�µ¯†�çl���ñ­�¼¯†�ç$���÷­�¯†�ç%���ü­�ǯ†�çm���®�ί†�çi���	®�Ô¯†�çe���®�Ú¯†�ça���®�߯†�çY���®�㯆�çp���®�鯆�çq���$®�﯆�çU���)®�ô¯†�çt���/®�ú¯†�çu���6®�°†�çx���G®�°†�çy���ý´�ɶ†�çQ���	µ�Ô¶†�çM���µ�Û¶†�ç���µ�ᶆ�ç���¶�ÂûŠ�ç���=¶�îûŠ�ç���Z¶�üŠ�ç ���k¶�üŠ�ç$���u¶�%üŠ�ç%���€¶�1üŠ�ç!���‡¶�7üŠ�ç���¶�?üŠ�ç���–¶�FüŠ�ç(���¦¶�WüŠ�ç,���²¶�büŠ�ç0���»¶�lüŠ�ç1���ƶ�vüŠ�ç4���Ͷ�}üŠ�ç5���Ú¶�‹üŠ�ç-���à¶�‘üŠ�ç8���ñ¶�¡üŠ�ç9���ú¶�ªüŠ�ç)���·�±üŠ�ç<���·�ÀüŠ�ç$���·�ÈüŠ�ç%���·�ÏüŠ�ç=���)·�ÙüŠ�ç���2·�âüŠ�ç��?·�ðüŠ�ç��N·�ÿüŠ�ç��n·�ýŠ�
\ No newline at end of file
diff --git a/android/captures/at.gv.ucom_2017.03.24_18.30.trace b/android/captures/at.gv.ucom_2017.03.24_18.30.trace
deleted file mode 100644
index 3fd3932cc82726690b96f2baf370ae0c0800095a..0000000000000000000000000000000000000000
Binary files a/android/captures/at.gv.ucom_2017.03.24_18.30.trace and /dev/null differ
diff --git a/android/captures/at.gv.ucom_2017.03.24_18.33.trace b/android/captures/at.gv.ucom_2017.03.24_18.33.trace
deleted file mode 100644
index 9dc08c62e2aa5d1b88413c9dc16274bc952fc065..0000000000000000000000000000000000000000
--- a/android/captures/at.gv.ucom_2017.03.24_18.33.trace
+++ /dev/null
@@ -1,374 +0,0 @@
-*version
-3
-data-file-overflow=false
-clock=dual
-elapsed-time-usec=6709480
-num-method-calls=5073
-clock-call-overhead-nsec=2839
-vm=art
-pid=6656
-*threads
-6656	main
-6661	Signal Catcher
-6662	JDWP
-6666	FinalizerWatchdogDaemon
-6667	HeapTaskDaemon
-6664	ReferenceQueueDaemon
-6665	FinalizerDaemon
-6668	Binder_1
-6669	Binder_2
-6670	Binder_3
-6707	Queue
-6709	Queue
-6710	Queue
-6711	Queue
-6712	Queue
-6719	Answers Events Handler1
-6722	Crashlytics Exception Handler1
-6724	RenderThread
-6733	QtThread
-6739	QtThread
-6751	OkHttp ConnectionPool
-6755	pool-3-thread-1
-6738	QtThread
-6794	QtThread
-6902	AsyncTask #1
-*methods
-0x7c	java.lang.ref.Reference	get	()Ljava/lang/Object;	Reference.java
-0x3b8	java.lang.ThreadLocal	get	()Ljava/lang/Object;	ThreadLocal.java
-0x3bc	java.lang.ThreadLocal	values	(Ljava/lang/Thread;)Ljava/lang/ThreadLocal$Values;	ThreadLocal.java
-0x280	java.lang.Boolean	booleanValue	()Z	Boolean.java
-0x20	java.lang.Number	<init>	()V	Number.java
-0x1c	java.lang.Integer	<init>	(I)V	Integer.java
-0x18	java.lang.Integer	valueOf	(I)Ljava/lang/Integer;	Integer.java
-0x38	java.lang.Integer	equals	(Ljava/lang/Object;)Z	Integer.java
-0x30	java.lang.Integer	hashCode	()I	Integer.java
-0x184	java.lang.StackTraceElement	getMethodName	()Ljava/lang/String;	StackTraceElement.java
-0x3c4	java.lang.ThreadLocal$Values	-get0	(Ljava/lang/ThreadLocal$Values;)I	ThreadLocal.java
-0x3c0	java.lang.ThreadLocal$Values	-get1	(Ljava/lang/ThreadLocal$Values;)[Ljava/lang/Object;	ThreadLocal.java
-0x6c	java.nio.Buffer	<init>	(IIJ)V	Buffer.java
-0x68	java.nio.ByteBuffer	<init>	(IJ)V	ByteBuffer.java
-0x58	java.nio.ByteBuffer	wrap	([BII)Ljava/nio/ByteBuffer;	ByteBuffer.java
-0x70	java.nio.ByteBuffer	order	(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;	ByteBuffer.java
-0x64	java.nio.ByteArrayBuffer	<init>	(I[BIZ)V	ByteArrayBuffer.java
-0x60	java.nio.ByteArrayBuffer	<init>	([B)V	ByteArrayBuffer.java
-0x74	java.nio.ByteArrayBuffer	get	()B	ByteArrayBuffer.java
-0x40c	java.util.Random	next	(I)I	Random.java
-0x408	java.util.Random	nextInt	(I)I	Random.java
-0x3e0	java.util.ArrayList	size	()I	ArrayList.java
-0x5c	java.util.Arrays	checkOffsetAndCount	(III)V	Arrays.java
-0x34	java.util.Collections	secondaryHash	(I)I	Collections.java
-0x2c	java.util.Collections	secondaryHash	(Ljava/lang/Object;)I	Collections.java
-0x188	java.util.HashMap	containsKey	(Ljava/lang/Object;)Z	HashMap.java
-0x28	java.util.HashMap	get	(Ljava/lang/Object;)Ljava/lang/Object;	HashMap.java
-0x94	java.util.concurrent.atomic.AtomicInteger	compareAndSet	(II)Z	AtomicInteger.java
-0x90	java.util.concurrent.atomic.AtomicInteger	get	()I	AtomicInteger.java
-0x8c	java.util.concurrent.atomic.AtomicInteger	getAndIncrement	()I	AtomicInteger.java
-0x3c	org.apache.harmony.dalvik.ddmc.Chunk	<init>	(I[BII)V	Chunk.java
-0x54	org.apache.harmony.dalvik.ddmc.ChunkHandler	wrapChunk	(Lorg/apache/harmony/dalvik/ddmc/Chunk;)Ljava/nio/ByteBuffer;	ChunkHandler.java
-0x168	android.app.Activity	dispatchTouchEvent	(Landroid/view/MotionEvent;)Z	Activity.java
-0x198	android.app.Activity	getWindow	()Landroid/view/Window;	Activity.java
-0x194	android.app.Activity	onUserInteraction	()V	Activity.java
-0x3ac	android.os.Handler	<init>	()V	Handler.java
-0x3b0	android.os.Handler	<init>	(Landroid/os/Handler$Callback;Z)V	Handler.java
-0x2b0	android.os.Handler	<init>	(Landroid/os/Looper;)V	Handler.java
-0x2b4	android.os.Handler	<init>	(Landroid/os/Looper;Landroid/os/Handler$Callback;Z)V	Handler.java
-0x2d0	android.os.Handler	enqueueMessage	(Landroid/os/MessageQueue;Landroid/os/Message;J)Z	Handler.java
-0x2bc	android.os.Handler	getPostMessage	(Ljava/lang/Runnable;)Landroid/os/Message;	Handler.java
-0x388	android.os.Handler	handleCallback	(Landroid/os/Message;)V	Handler.java
-0x384	android.os.Handler	dispatchMessage	(Landroid/os/Message;)V	Handler.java
-0x304	android.os.Handler	hasMessages	(I)Z	Handler.java
-0x2b8	android.os.Handler	post	(Ljava/lang/Runnable;)Z	Handler.java
-0x320	android.os.Handler	removeMessages	(I)V	Handler.java
-0x330	android.os.Handler	sendEmptyMessageAtTime	(IJ)Z	Handler.java
-0x30c	android.os.Handler	sendEmptyMessageDelayed	(IJ)Z	Handler.java
-0x2cc	android.os.Handler	sendMessageAtTime	(Landroid/os/Message;J)Z	Handler.java
-0x2c4	android.os.Handler	sendMessageDelayed	(Landroid/os/Message;J)Z	Handler.java
-0x2ac	android.os.Looper	getMainLooper	()Landroid/os/Looper;	Looper.java
-0x3b4	android.os.Looper	myLooper	()Landroid/os/Looper;	Looper.java
-0x2c0	android.os.Message	obtain	()Landroid/os/Message;	Message.java
-0x2d8	android.os.Message	isInUse	()Z	Message.java
-0x2dc	android.os.Message	markInUse	()V	Message.java
-0x39c	android.os.Message	recycleUnchecked	()V	Message.java
-0x2d4	android.os.MessageQueue	enqueueMessage	(Landroid/os/Message;J)Z	MessageQueue.java
-0x308	android.os.MessageQueue	hasMessages	(Landroid/os/Handler;ILjava/lang/Object;)Z	MessageQueue.java
-0x380	android.os.MessageQueue	next	()Landroid/os/Message;	MessageQueue.java
-0x324	android.os.MessageQueue	removeMessages	(Landroid/os/Handler;ILjava/lang/Object;)V	MessageQueue.java
-0x400	android.util.Pools$SimplePool	isInPool	(Ljava/lang/Object;)Z	Pools.java
-0x2f8	android.util.Pools$SimplePool	acquire	()Ljava/lang/Object;	Pools.java
-0x3fc	android.util.Pools$SimplePool	release	(Ljava/lang/Object;)Z	Pools.java
-0x2f4	android.util.Pools$SynchronizedPool	acquire	()Ljava/lang/Object;	Pools.java
-0x3f8	android.util.Pools$SynchronizedPool	release	(Ljava/lang/Object;)Z	Pools.java
-0x364	android.util.SparseIntArray	indexOfKey	(I)I	SparseIntArray.java
-0xa4	android.util.SparseIntArray	put	(II)V	SparseIntArray.java
-0x36c	android.util.SparseIntArray	removeAt	(I)V	SparseIntArray.java
-0x368	android.util.SparseIntArray	valueAt	(I)I	SparseIntArray.java
-0xe0	android.view.FrameInfo	updateInputEventTime	(JJ)V	FrameInfo.java
-0x334	android.view.GestureDetector$SimpleOnGestureListener	onDown	(Landroid/view/MotionEvent;)Z	GestureDetector.java
-0x428	android.view.GestureDetector$SimpleOnGestureListener	onShowPress	(Landroid/view/MotionEvent;)V	GestureDetector.java
-0x420	android.view.GestureDetector$SimpleOnGestureListener	onSingleTapConfirmed	(Landroid/view/MotionEvent;)Z	GestureDetector.java
-0x3e8	android.view.GestureDetector$SimpleOnGestureListener	onSingleTapUp	(Landroid/view/MotionEvent;)Z	GestureDetector.java
-0x41c	android.view.GestureDetector	-get0	(Landroid/view/GestureDetector;)Landroid/view/MotionEvent;	GestureDetector.java
-0x414	android.view.GestureDetector	-get1	(Landroid/view/GestureDetector;)Landroid/view/GestureDetector$OnDoubleTapListener;	GestureDetector.java
-0x424	android.view.GestureDetector	-get2	(Landroid/view/GestureDetector;)Landroid/view/GestureDetector$OnGestureListener;	GestureDetector.java
-0x418	android.view.GestureDetector	-get3	(Landroid/view/GestureDetector;)Z	GestureDetector.java
-0x2ec	android.view.GestureDetector	onTouchEvent	(Landroid/view/MotionEvent;)Z	GestureDetector.java
-0xa0	android.view.InputEvent	getSequenceNumber	()I	InputEvent.java
-0xf4	android.view.InputEvent	isFromSource	(I)Z	InputEvent.java
-0x88	android.view.InputEvent	prepareForReuse	()V	InputEvent.java
-0x314	android.view.InputEvent	recycle	()V	InputEvent.java
-0x374	android.view.InputEvent	recycleIfNeededAfterDispatch	()V	InputEvent.java
-0x360	android.view.InputEventReceiver	finishInputEvent	(Landroid/view/InputEvent;Z)V	InputEventReceiver.java
-0x110	android.view.MotionEvent	getAction	()I	MotionEvent.java
-0x1d4	android.view.MotionEvent	getActionIndex	()I	MotionEvent.java
-0x264	android.view.MotionEvent	getActionMasked	()I	MotionEvent.java
-0x328	android.view.MotionEvent	getDownTime	()J	MotionEvent.java
-0xd0	android.view.MotionEvent	getEventTimeNano	()J	MotionEvent.java
-0x1ac	android.view.MotionEvent	getFlags	()I	MotionEvent.java
-0xd8	android.view.MotionEvent	getHistorySize	()I	MotionEvent.java
-0x288	android.view.MotionEvent	getPointerCount	()I	MotionEvent.java
-0x1d8	android.view.MotionEvent	getPointerId	(I)I	MotionEvent.java
-0x248	android.view.MotionEvent	getPointerIdBits	()I	MotionEvent.java
-0x294	android.view.MotionEvent	getPressure	(I)F	MotionEvent.java
-0x124	android.view.MotionEvent	getRawX	()F	MotionEvent.java
-0x12c	android.view.MotionEvent	getRawY	()F	MotionEvent.java
-0x290	android.view.MotionEvent	getSize	(I)F	MotionEvent.java
-0xf8	android.view.MotionEvent	getSource	()I	MotionEvent.java
-0x278	android.view.MotionEvent	getToolType	(I)I	MotionEvent.java
-0x338	android.view.MotionEvent	getX	()F	MotionEvent.java
-0x1e4	android.view.MotionEvent	getX	(I)F	MotionEvent.java
-0x33c	android.view.MotionEvent	getY	()F	MotionEvent.java
-0x1ec	android.view.MotionEvent	getY	(I)F	MotionEvent.java
-0x1a8	android.view.MotionEvent	isTargetAccessibilityFocus	()Z	MotionEvent.java
-0x11c	android.view.MotionEvent	isTouchEvent	()Z	MotionEvent.java
-0x250	android.view.MotionEvent	offsetLocation	(FF)V	MotionEvent.java
-0x310	android.view.MotionEvent	recycle	()V	MotionEvent.java
-0x1cc	android.view.MotionEvent	setAction	(I)V	MotionEvent.java
-0x238	android.view.MotionEvent	setTargetAccessibilityFocus	(Z)V	MotionEvent.java
-0x200	android.view.RenderNode	getElevation	()F	RenderNode.java
-0x20c	android.view.RenderNode	getTranslationZ	()F	RenderNode.java
-0x22c	android.view.RenderNode	hasIdentityMatrix	()Z	RenderNode.java
-0x154	android.view.View	dispatchPointerEvent	(Landroid/view/MotionEvent;)Z	View.java
-0x260	android.view.View	dispatchTouchEvent	(Landroid/view/MotionEvent;)Z	View.java
-0x258	android.view.View	getAnimation	()Landroid/view/animation/Animation;	View.java
-0x1fc	android.view.View	getElevation	()F	View.java
-0x270	android.view.View	getId	()I	View.java
-0x208	android.view.View	getTranslationZ	()F	View.java
-0x3a8	android.view.View	getWindowToken	()Landroid/os/IBinder;	View.java
-0x1f8	android.view.View	getZ	()F	View.java
-0x228	android.view.View	hasIdentityMatrix	()Z	View.java
-0x1b4	android.view.View	onFilterTouchEventForSecurity	(Landroid/view/MotionEvent;)Z	View.java
-0x234	android.view.View	pointInView	(FF)Z	View.java
-0x268	android.view.View	stopNestedScroll	()V	View.java
-0x2fc	android.view.VelocityTracker	addMovement	(Landroid/view/MotionEvent;)V	VelocityTracker.java
-0x3f0	android.view.VelocityTracker	clear	()V	VelocityTracker.java
-0x3ec	android.view.VelocityTracker	recycle	()V	VelocityTracker.java
-0x344	android.view.ViewGroup$TouchTarget	obtain	(Landroid/view/View;I)Landroid/view/ViewGroup$TouchTarget;	ViewGroup.java
-0x404	android.view.ViewGroup$TouchTarget	recycle	()V	ViewGroup.java
-0x340	android.view.ViewGroup	addTouchTarget	(Landroid/view/View;I)Landroid/view/ViewGroup$TouchTarget;	ViewGroup.java
-0x218	android.view.ViewGroup	canViewReceivePointerEvents	(Landroid/view/View;)Z	ViewGroup.java
-0x1b8	android.view.ViewGroup	cancelAndClearTouchTargets	(Landroid/view/MotionEvent;)V	ViewGroup.java
-0x1c0	android.view.ViewGroup	clearTouchTargets	()V	ViewGroup.java
-0x244	android.view.ViewGroup	dispatchTransformedTouchEvent	(Landroid/view/MotionEvent;ZLandroid/view/View;I)Z	ViewGroup.java
-0x220	android.view.ViewGroup	getTempPoint	()[F	ViewGroup.java
-0x240	android.view.ViewGroup	getTouchTarget	(Landroid/view/View;)Landroid/view/ViewGroup$TouchTarget;	ViewGroup.java
-0x1f4	android.view.ViewGroup	hasChildWithZ	()Z	ViewGroup.java
-0x1e0	android.view.ViewGroup	removePointersFromTouchTargets	(I)V	ViewGroup.java
-0x1c4	android.view.ViewGroup	resetCancelNextUpFlag	(Landroid/view/View;)Z	ViewGroup.java
-0x1bc	android.view.ViewGroup	resetTouchState	()V	ViewGroup.java
-0x1f0	android.view.ViewGroup	buildOrderedChildList	()Ljava/util/ArrayList;	ViewGroup.java
-0x1a4	android.view.ViewGroup	dispatchTouchEvent	(Landroid/view/MotionEvent;)Z	ViewGroup.java
-0x214	android.view.ViewGroup	isChildrenDrawingOrderEnabled	()Z	ViewGroup.java
-0x21c	android.view.ViewGroup	isTransformedTouchPointInView	(FFLandroid/view/View;Landroid/graphics/PointF;)Z	ViewGroup.java
-0x254	android.view.ViewGroup	onInterceptTouchEvent	(Landroid/view/MotionEvent;)Z	ViewGroup.java
-0x224	android.view.ViewGroup	transformPointToViewLocal	([FLandroid/view/View;)V	ViewGroup.java
-0x130	android.view.ViewRootImpl$InputStage	apply	(Landroid/view/ViewRootImpl$QueuedInputEvent;I)V	ViewRootImpl.java
-0x100	android.view.ViewRootImpl$InputStage	deliver	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0x348	android.view.ViewRootImpl$InputStage	finish	(Landroid/view/ViewRootImpl$QueuedInputEvent;Z)V	ViewRootImpl.java
-0x134	android.view.ViewRootImpl$InputStage	forward	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0x138	android.view.ViewRootImpl$InputStage	onDeliverToNext	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0x104	android.view.ViewRootImpl$InputStage	shouldDropInputEvent	(Landroid/view/ViewRootImpl$QueuedInputEvent;)Z	ViewRootImpl.java
-0x140	android.view.ViewRootImpl$AsyncInputStage	apply	(Landroid/view/ViewRootImpl$QueuedInputEvent;I)V	ViewRootImpl.java
-0x144	android.view.ViewRootImpl$AsyncInputStage	forward	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0x10c	android.view.ViewRootImpl$EarlyPostImeInputStage	processPointerEvent	(Landroid/view/ViewRootImpl$QueuedInputEvent;)I	ViewRootImpl.java
-0x108	android.view.ViewRootImpl$EarlyPostImeInputStage	onProcess	(Landroid/view/ViewRootImpl$QueuedInputEvent;)I	ViewRootImpl.java
-0x13c	android.view.ViewRootImpl$NativePostImeInputStage	onProcess	(Landroid/view/ViewRootImpl$QueuedInputEvent;)I	ViewRootImpl.java
-0xec	android.view.ViewRootImpl$QueuedInputEvent	shouldSendToSynthesizer	()Z	ViewRootImpl.java
-0xf0	android.view.ViewRootImpl$QueuedInputEvent	shouldSkipIme	()Z	ViewRootImpl.java
-0x350	android.view.ViewRootImpl$SyntheticInputStage	onDeliverToNext	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0x150	android.view.ViewRootImpl$ViewPostImeInputStage	processPointerEvent	(Landroid/view/ViewRootImpl$QueuedInputEvent;)I	ViewRootImpl.java
-0x34c	android.view.ViewRootImpl$ViewPostImeInputStage	onDeliverToNext	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0x148	android.view.ViewRootImpl$ViewPostImeInputStage	onProcess	(Landroid/view/ViewRootImpl$QueuedInputEvent;)I	ViewRootImpl.java
-0xb4	android.view.ViewRootImpl$WindowInputEventReceiver	onInputEvent	(Landroid/view/InputEvent;)V	ViewRootImpl.java
-0x354	android.view.ViewRootImpl	-wrap4	(Landroid/view/ViewRootImpl;Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0xbc	android.view.ViewRootImpl	adjustInputEventForCompatibility	(Landroid/view/InputEvent;)V	ViewRootImpl.java
-0xe4	android.view.ViewRootImpl	deliverInputEvent	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0x358	android.view.ViewRootImpl	finishInputEvent	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0xc0	android.view.ViewRootImpl	obtainQueuedInputEvent	(Landroid/view/InputEvent;Landroid/view/InputEventReceiver;I)Landroid/view/ViewRootImpl$QueuedInputEvent;	ViewRootImpl.java
-0x378	android.view.ViewRootImpl	recycleQueuedInputEvent	(Landroid/view/ViewRootImpl$QueuedInputEvent;)V	ViewRootImpl.java
-0xcc	android.view.ViewRootImpl	doProcessInputEvents	()V	ViewRootImpl.java
-0xb8	android.view.ViewRootImpl	enqueueInputEvent	(Landroid/view/InputEvent;Landroid/view/InputEventReceiver;IZ)V	ViewRootImpl.java
-0x118	android.view.ViewRootImpl	ensureTouchMode	(Z)Z	ViewRootImpl.java
-0x14c	android.view.ViewRootImpl	handleDispatchWindowAnimationStopped	()V	ViewRootImpl.java
-0x15c	android.view.Window	getCallback	()Landroid/view/Window$Callback;	Window.java
-0x160	android.view.Window	isDestroyed	()Z	Window.java
-0x3d8	android.view.inputmethod.InputMethodManager	checkFocusNoStartInput	(ZZ)Z	InputMethodManager.java
-0x3d4	android.view.inputmethod.InputMethodManager	checkFocus	()V	InputMethodManager.java
-0x3d0	android.view.inputmethod.InputMethodManager	hideSoftInputFromWindow	(Landroid/os/IBinder;ILandroid/os/ResultReceiver;)Z	InputMethodManager.java
-0x158	com.android.internal.policy.PhoneWindow$DecorView	dispatchTouchEvent	(Landroid/view/MotionEvent;)Z	PhoneWindow.java
-0x1c8	com.android.internal.policy.PhoneWindow$DecorView	onInterceptTouchEvent	(Landroid/view/MotionEvent;)Z	PhoneWindow.java
-0x1a0	com.android.internal.policy.PhoneWindow$DecorView	superDispatchTouchEvent	(Landroid/view/MotionEvent;)Z	PhoneWindow.java
-0xac	com.android.internal.util.GrowingArrayUtils	insert	([IIII)[I	GrowingArrayUtils.java
-0x50	android.ddm.DdmHandleHeap	handleHPIF	(Lorg/apache/harmony/dalvik/ddmc/Chunk;)Lorg/apache/harmony/dalvik/ddmc/Chunk;	DdmHandleHeap.java
-0x4c	android.ddm.DdmHandleHeap	handleChunk	(Lorg/apache/harmony/dalvik/ddmc/Chunk;)Lorg/apache/harmony/dalvik/ddmc/Chunk;	DdmHandleHeap.java
-0x40	android.ddm.DdmHandleProfiling	handleMPRQ	(Lorg/apache/harmony/dalvik/ddmc/Chunk;)Lorg/apache/harmony/dalvik/ddmc/Chunk;	DdmHandleProfiling.java
-0x42c	android.ddm.DdmHandleProfiling	handleMPSEOrSPSE	(Lorg/apache/harmony/dalvik/ddmc/Chunk;Ljava/lang/String;)Lorg/apache/harmony/dalvik/ddmc/Chunk;	DdmHandleProfiling.java
-0xc	android.ddm.DdmHandleProfiling	handleMPSS	(Lorg/apache/harmony/dalvik/ddmc/Chunk;)Lorg/apache/harmony/dalvik/ddmc/Chunk;	DdmHandleProfiling.java
-0x10	android.ddm.DdmHandleProfiling	handleChunk	(Lorg/apache/harmony/dalvik/ddmc/Chunk;)Lorg/apache/harmony/dalvik/ddmc/Chunk;	DdmHandleProfiling.java
-0xa8	android.util.ContainerHelpers	binarySearch	([III)I	ContainerHelpers.java
-0x410	android.view.GestureDetector$GestureHandler	handleMessage	(Landroid/os/Message;)V	GestureDetector.java
-0x24	java.lang.Object	<init>	()V	Object.java
-0x190	java.lang.String	charAt	(I)C	String.java
-0x18c	java.lang.String	hashCode	()I	String.java
-0x80	java.lang.ref.Reference	getReferent	()Ljava/lang/Object;	Reference.java
-0x48	dalvik.system.VMDebug	getMethodTracingMode	()I	VMDebug.java
-0x4	dalvik.system.VMDebug	startMethodTracingDdms	(IIZI)V	VMDebug.java
-0x0	dalvik.system.VMDebug	startMethodTracingDdmsImpl	(IIZI)V	VMDebug.java
-0x434	dalvik.system.VMDebug	stopMethodTracing	()V	VMDebug.java
-0x180	dalvik.system.VMStack	getThreadStackTrace	(Ljava/lang/Thread;)[Ljava/lang/StackTraceElement;	VMStack.java
-0x3dc	java.lang.Math	min	(JJ)J	Math.java
-0xb0	java.lang.System	arraycopy	([II[III)V	System.java
-0x178	java.lang.Thread	currentThread	()Ljava/lang/Thread;	Thread.java
-0x17c	java.lang.Thread	getStackTrace	()[Ljava/lang/StackTraceElement;	Thread.java
-0x14	org.apache.harmony.dalvik.ddmc.DdmServer	dispatch	(I[BII)Lorg/apache/harmony/dalvik/ddmc/Chunk;	DdmServer.java
-0x78	org.apache.harmony.dalvik.ddmc.DdmVmInternal	heapInfoNotify	(I)Z	DdmVmInternal.java
-0x98	sun.misc.Unsafe	compareAndSwapInt	(Ljava/lang/Object;JII)Z	Unsafe.java
-0x398	android.os.Binder	clearCallingIdentity	()J	Binder.java
-0x3e4	android.os.Binder	flushPendingCommands	()V	Binder.java
-0x44	android.os.Debug	getMethodTracingMode	()I	Debug.java
-0x8	android.os.Debug	startMethodTracingDdms	(IIZI)V	Debug.java
-0x430	android.os.Debug	stopMethodTracing	()V	Debug.java
-0x37c	android.os.MessageQueue	nativePollOnce	(JI)V	MessageQueue.java
-0x2e0	android.os.MessageQueue	nativeWake	(J)V	MessageQueue.java
-0x2c8	android.os.SystemClock	uptimeMillis	()J	SystemClock.java
-0xe8	android.os.Trace	asyncTraceBegin	(JLjava/lang/String;I)V	Trace.java
-0x35c	android.os.Trace	asyncTraceEnd	(JLjava/lang/String;I)V	Trace.java
-0xc8	android.os.Trace	isTagEnabled	(J)Z	Trace.java
-0xc4	android.os.Trace	traceCounter	(JLjava/lang/String;I)V	Trace.java
-0x9c	android.view.InputEventReceiver	dispatchInputEvent	(ILandroid/view/InputEvent;)V	InputEventReceiver.java
-0x370	android.view.InputEventReceiver	nativeFinishInputEvent	(JIZ)V	InputEventReceiver.java
-0x31c	android.view.MotionEvent	nativeCopy	(JJZ)J	MotionEvent.java
-0x114	android.view.MotionEvent	nativeGetAction	(J)I	MotionEvent.java
-0x1e8	android.view.MotionEvent	nativeGetAxisValue	(JIII)F	MotionEvent.java
-0x32c	android.view.MotionEvent	nativeGetDownTimeNanos	(J)J	MotionEvent.java
-0xd4	android.view.MotionEvent	nativeGetEventTimeNanos	(JI)J	MotionEvent.java
-0x1b0	android.view.MotionEvent	nativeGetFlags	(J)I	MotionEvent.java
-0xdc	android.view.MotionEvent	nativeGetHistorySize	(J)I	MotionEvent.java
-0x24c	android.view.MotionEvent	nativeGetPointerCount	(J)I	MotionEvent.java
-0x1dc	android.view.MotionEvent	nativeGetPointerId	(JI)I	MotionEvent.java
-0x128	android.view.MotionEvent	nativeGetRawAxisValue	(JIII)F	MotionEvent.java
-0xfc	android.view.MotionEvent	nativeGetSource	(J)I	MotionEvent.java
-0x27c	android.view.MotionEvent	nativeGetToolType	(JI)I	MotionEvent.java
-0x120	android.view.MotionEvent	nativeIsTouchEvent	(J)Z	MotionEvent.java
-0x25c	android.view.MotionEvent	nativeOffsetLocation	(JFF)V	MotionEvent.java
-0x1d0	android.view.MotionEvent	nativeSetAction	(JI)V	MotionEvent.java
-0x23c	android.view.MotionEvent	nativeSetFlags	(JI)V	MotionEvent.java
-0x84	android.view.MotionEvent	obtain	()Landroid/view/MotionEvent;	MotionEvent.java
-0x318	android.view.MotionEvent	obtain	(Landroid/view/MotionEvent;)Landroid/view/MotionEvent;	MotionEvent.java
-0x204	android.view.RenderNode	nGetElevation	(J)F	RenderNode.java
-0x210	android.view.RenderNode	nGetTranslationZ	(J)F	RenderNode.java
-0x230	android.view.RenderNode	nHasIdentityMatrix	(J)Z	RenderNode.java
-0x300	android.view.VelocityTracker	nativeAddMovement	(JLandroid/view/MotionEvent;)V	VelocityTracker.java
-0x3f4	android.view.VelocityTracker	nativeClear	(J)V	VelocityTracker.java
-0x2f0	android.view.VelocityTracker	obtain	()Landroid/view/VelocityTracker;	VelocityTracker.java
-0x19c	com.android.internal.policy.PhoneWindow	superDispatchTouchEvent	(Landroid/view/MotionEvent;)Z	PhoneWindow.java
-0x2e8	org.qtproject.qt5.android.QtNative$8	<init>	()V	QtNative.java
-0x3a0	org.qtproject.qt5.android.QtNative$8	run	()V	QtNative.java
-0x2a4	org.qtproject.qt5.android.QtNative$5	<init>	(IIIII)V	QtNative.java
-0x38c	org.qtproject.qt5.android.QtNative$5	run	()V	QtNative.java
-0x3c8	org.qtproject.qt5.android.QtActivityDelegate$3	<init>	(Lorg/qtproject/qt5/android/QtActivityDelegate;Landroid/os/Handler;)V	QtActivityDelegate.java
-0x3cc	android.os.ResultReceiver	<init>	(Landroid/os/Handler;)V	ResultReceiver.java
-0x26c	org.qtproject.qt5.android.QtSurface	onTouchEvent	(Landroid/view/MotionEvent;)Z	QtSurface.java
-0x174	org.qtproject.qt5.android.bindings.QtApplication$InvokeResult	<init>	()V	QtApplication.java
-0x3a4	org.qtproject.qt5.android.QtActivityDelegate	hideSoftwareKeyboard	()V	QtActivityDelegate.java
-0x394	org.qtproject.qt5.android.QtActivityDelegate	updateHandles	(IIIII)V	QtActivityDelegate.java
-0x390	org.qtproject.qt5.android.QtNative	access$200	()Lorg/qtproject/qt5/android/QtActivityDelegate;	QtNative.java
-0x28c	org.qtproject.qt5.android.QtNative	getAction	(ILandroid/view/MotionEvent;)I	QtNative.java
-0x2e4	org.qtproject.qt5.android.QtNative	hideSoftwareKeyboard	()V	QtNative.java
-0x2a8	org.qtproject.qt5.android.QtNative	runAction	(Ljava/lang/Runnable;)V	QtNative.java
-0x274	org.qtproject.qt5.android.QtNative	sendTouchEvent	(Landroid/view/MotionEvent;I)V	QtNative.java
-0x298	org.qtproject.qt5.android.QtNative	touchAdd	(IIIZIIFF)V	QtNative.java
-0x284	org.qtproject.qt5.android.QtNative	touchBegin	(I)V	QtNative.java
-0x29c	org.qtproject.qt5.android.QtNative	touchEnd	(II)V	QtNative.java
-0x2a0	org.qtproject.qt5.android.QtNative	updateHandles	(IIIII)V	QtNative.java
-0x170	org.qtproject.qt5.android.bindings.QtApplication	invokeDelegate	([Ljava/lang/Object;)Lorg/qtproject/qt5/android/bindings/QtApplication$InvokeResult;	QtApplication.java
-0x164	org.qtproject.qt5.android.bindings.QtActivity	dispatchTouchEvent	(Landroid/view/MotionEvent;)Z	QtActivity.java
-0x16c	org.qtproject.qt5.android.bindings.QtActivity	onUserInteraction	()V	QtActivity.java
-*end
-SLOW� �¸&Â�������������������������M²����À��µ�	���Ì��µ�
���×��!µ����Ý��'µ����ã��.µ����€��L¶����˜��c¶����Ã��Ž¶� ���Ð��š¶�$���ã��­¶�%���é��´¶�!���í��¸¶����÷��¶����ü��ƶ�(�����Ͷ�,���
-��Õ¶�0�����߶�1�����æ¶�4���@��·�5���M��·�-���S��·�8���e��0·�9���l��7·�)���q��<·�<�����I·�$���„��O·�%���ˆ��S·�=�����Z·����•��`·�@�����h·�D���¦��q·�H���²��}·�I���¼��‡·�E���Á��Œ·�<���Ô��Ÿ·�$���Ù��¤·�%���Ý��¨·�=���ã��­·�A���æ��±·����ê��µ·����ï��º·����Å��ºÑ����á��ÓÑ����î��àÑ� ���ö��èÑ�$���ý��îÑ�%�����öÑ�!���
-��üÑ������Ò������Ò�(�����Ò�,���&��Ò�0���-��Ò�1���3��%Ò�4���9��+Ò�5���B��3Ò�-���G��8Ò�8���S��DÒ�9���Z��LÒ�)���`��QÒ�<���l��]Ò�$���r��dÒ�%���w��iÒ�=�����pÒ�L�����Ò�P���œ��Ò�T���£��”Ò�X���°��¡Ò�\���¸��ªÒ�]���Ë��½Ò�`���Ö��ÈÒ�d���Þ��ÏÒ�h���å��×Ò�l���ö��èÒ�$���ý��ïÒ�%�����ôÒ�m���
��þÒ�i�����Ó�e�����
�a���#���Y���*���p���1��#�q���8��+�U���@��2�t���I��;�u���T��F�x���j��\�y���u
��iÙ�Q���‰
��|Ù�M���•
��‡Ù����Ÿ
��‘Ù����¥��Ýu����Á��÷u����Ñ��v� ���Ü��v�$���ç��v�%���ð��%v�!���÷��,v�������5v������<v�(�����Fv�,�����Ov�0���"��Wv�1���)��_v�4���0��fv�5���;��qv�-���A��wv�8���O��…v�9���X��Žv�)���`��–v�<���n��£v�$���u��ªv�%���{��°v�=���ƒ��¹v�L���Œ��Âv�P���—��Ív�T���Ÿ��Ôv�X���©��ßv�\���²��çv�]���º��ïv�`���Ã��ùv�d���Ë���w�h���Ò��w�l���Ú��w�$���á��w�%���ç��w�m���ð��%w�i���ø��-w�e������5w�a���U��‹w�Y���`��•w�p���i��Ÿw�q���s��¨w�U���x��­w�t�����µw�u���‰��¾w�x���ž��Ów�y���£��Ù~�Q���°��å~�M���·��ì~����¾��ô~������ø����§������µ��� ���½��$�$���Å��,�%���Ì��3�!���Ñ��8����Ø��?����Ý��D�(���æ��M�,���í��T�0���ô��[�1���ú��a�4������g�5���	��o�-���
��t�8�����€�9��� ��‡�)���&���<���2��™�$���7��ž�%���<��¢�=���C��ª�L���J��±�P���S��º�T���Y��¿�X���a��Ç�\���g��Î�]���m��Ô�`���u��Û�d���z��á�h���€��ç�l���…��ì�$���Š��ñ�%�����ö�m���–��ý�i���œ���e���£��	�a���§���Y���«���p���²���q���·���U���¼��"�t���Â��)�u���É��0�x���Û��B�y���Ú��B�Q���æ��M�M���ë��R����ò��Y����£ ��·����¿ ��"·����Ð ��3·� ���Û ��>·�$���æ ��I·�%���ð ��R·�!���ø ��Z·����!��d·����	!��k·�(���!��w·�,���!��·�0���(!��Š·�1���0!��“·�4���9!��›·�5���D!��¦·�-���K!��®·�8���Z!��½·�9���d!��Æ·�)���l!��η�<���{!��Þ·�$���„!��æ·�%���Š!��í·�=���”!��ö·�L���ž!���¸�P���ª!��¸�T���²!��¸�X���¼!��¸�\���Æ!��(¸�]���Î!��1¸�`���Ù!��;¸�d���á!��C¸�h���é!��L¸�l���ò!��T¸�$���ù!��\¸�%����"��b¸�m���
-"��m¸�i���"��u¸�e���"��~¸�a���#"��†¸�Y���*"��¸�p���3"��–¸�q���:"��¸�U���@"��¢¸�t���H"��ª¸�u���P"��²¸�x���d"��Ǹ�y���Ù)��<À�Q���ç)��IÀ�M���ï)��QÀ����÷)��YÀ��|�������г��€���Ÿ���n´�����ü���É´��}���
-��Ö´��„���M��yº��ˆ���…��¨º��Œ���š��¼º�����£��ź��‘���¯��Ѻ��”���·��Ùº��˜���ç��
-»��™�����&»��•�����4»�������<»��‰���"��D»��…���)��K»��œ���U��x»�� ���g��Š»��¡���n��‘»��¤���y��œ»��¨���Š��¬»��©���’��´»��¬�����À»��°���®��л��±���¸��Ú»��­���½��à»��¬���Å��ç»��°���Ë��í»��±���Ñ��ó»��­���Ö��ø»��¥���Ü��þ»��´���è��
-¼��¸���ô��¼��¼���ú��¼��½�����7¼��À�����>¼��Á���'��I¼��Ä���5��W¼��È���;��^¼��É���E��g¼��Å���J��l¼��Ì���P��r¼��Ä���Y��{¼��È���^��€¼��É���d��†¼��Å���i��‹¼��Ð���s��•¼��Ô���Ž��°¼��Õ���œ��¾¼��Ñ���¢��ļ��Ø���«��ͼ��Ü���º��ܼ��Ý���Æ��é¼��Ù���Ì��î¼��à���Ø��ú¼��á���ã��½��ä���ê��½�� ���ò��½��¡���ø��½��è���ÿ��!½��È�����(½��É���
��/½��é�����4½��ì�����@½��í���%��G½��ð���+��M½��ô���3��U½��ø���:��\½��ü���J��m½��ý���W��y½��ù���]��½��õ���d��†½��ñ���i��‹½�����q��“½����{��ž½����Š��¬½����‘��³½��ø���›��½½��ü���¨��ʽ��ý���³��Õ½��ù���¸��Ú½����¿��á½����ô��¾������&¾������3¾������8¾������?¾����#��E¾����+��M¾�� ��:��\¾��!��G��i¾����M��o¾��$��T��v¾��(��c��…¾��)��q��“¾��%��v��™¾��,��~�� ¾��(��Œ��®¾��)��—��¹¾��-��œ��¿¾��
��¢��ľ��	��¦��ɾ��0��¬��ξ��4��´��Ö¾��8��º��ܾ�����Â��ä¾����È��ë¾����Ð��ò¾��<��Ö��ù¾��=��Ý��ÿ¾��@��ã��¿��0��ê��
¿��D��ñ��¿��4��ù��¿��8��ÿ��!¿�������(¿������-¿������4¿��H����:¿��L��1��T¿��M��8��Z¿��ø���>��a¿��ü���M��o¿��ý���X��z¿��ù���]��€¿��P��d��†¿��T��n��‘¿����u��—¿�� ��‚��¤¿��!��Ž��°¿����“��µ¿��X��™��¼¿��\��©��Ë¿��]��°��Ò¿��`��·��Ù¿��a��¾��à¿��d��Ê��ì¿��h��Ý���À����å��À����ô��À����ÿ��"À������'À��l����/À��p����<À��t��%��GÀ��$���1��SÀ��%���6��XÀ��u��>��aÀ��x��P��rÀ��y��c��…À��|��w��šÀ��€��‡��ªÀ����4	��æÄ��}��@	��ðÄ��„��U	��Å��…��x	��(Å��ˆ��	��=Å��,���–	��FÅ��Œ��	��NÅ����µ	��eÅ��‘��Ã	��sÅ����Ò	��ƒÅ��‘��Ý	��Å����ê	��šÅ��‘��ô	��¥Å����
-��³Å��‘��
-��½Å����
-��ÊÅ��‘��$
-��ÕÅ����1
-��âÅ��‘��<
-��ìÅ����H
-��ùÅ��‘��S
-��Æ����`
-��Æ��‘��j
-��Æ����w
-��(Æ��‘��
-��2Æ����Ž
-��?Æ��‘��™
-��IÆ����¦
-��VÆ��‘��°
-��`Æ����½
-��mÆ��‘��Ç
-��xÆ����Ô
-��…Æ��‘��ß
-��Æ����ì
-��œÆ��‘��ö
-��¦Æ������³Æ��‘��
��¾Æ������ËÆ��‘��%��ÕÆ����2��âÆ��‘��<��íÆ����B��óÆ��4���H��ùÆ��5���R��Ç��-���W��Ç��‰��^��Ç��q��c��Ç��”��l��Ç��•��r��#Ç��m��w��'Ç��˜��~��/Ç��™��Œ��<Ç��œ��”��EÇ�� ��Ÿ��OÇ��¤��§��XÇ��¨��²��cÇ��¬��¹��jÇ��°��Ê��{Ç��±��×��ˆÇ��­��Ü��Ç��©��â��“Ç��´��í��žÇ��µ��õ��¦Ç����û��«Ç������¸Ç������ÄÇ������ÊÇ��¸��"��ÓÇ��¹��)��ÙÇ��¼��2��âÇ��À��8��éÇ��Á��>��îÇ��Ä��C��ôÇ��Å��I��úÇ��½��O���È��È��X��È����^��È����k��È����v��&È����{��,È��É����1È��Ì��‡��7È��Ð��•��FÈ��Ñ��¡��RÈ��Í��§��WÈ��Ä��­��^È��Å��²��cÈ��¨��º��jÈ��¬��¿��oÈ��°��Ë��|È��±��Ö��‡È��­��Û��ŒÈ��©��à��‘È��Ô��ç��—È����ô��¥È����ÿ��°È��Õ��
��¶È��Ø��
��½È��Ü��
��ËÈ��Ý��(
��ØÈ��Ù��-
��ÞÈ��à��4
��äÈ��á��:
��êÈ��ä��A
��ñÈ��è��P
������_
�����e
�����k
�����{
��+É��é��†
��7É��í��‹
��<���
��B���
��IÉ��ø��¥
��UÉ��ü��¸
��iÉ�����Ä
��tÉ����×
��ˆÉ����å
��•É����ê
��›É��ý��ï
��ŸÉ����õ
��¦É����ÿ
��°É������¾É������ËÉ��
�� ��ÑÉ��	��%��ÖÉ��ù��+��ÛÉ��ø��3��ãÉ��ü��9��éÉ�����?��ïÉ����K��üÉ����W��Ê����\��Ê��ý��`��Ê����f��Ê����l��Ê����x��(Ê����ƒ��4Ê��
��ˆ��9Ê��	����=Ê��ù��’��BÊ��ø��™��IÊ��ü��ž��NÊ�����¤��TÊ����°��aÊ����»��kÊ����À��qÊ��ý��Å��uÊ����Ê��{Ê����Ð��€Ê����Ü��ŒÊ����æ��—Ê��
��ë��œÊ��	��ð��¡Ê��ù��õ��¥Ê��õ��û��«Ê��ñ�����°Ê����
-��ºÊ������ÂÊ������ÉÊ������ÏÊ����%��ÕÊ�� ��+��ÜÊ��!��2��âÊ��$��p��!Ë��(��}��-Ë��,��ƒ��4Ë��0��”��EË��1��¤��UË��-��ª��ZË��)��¯��_Ë��%��´��dË��4��¾��oË��5��Ç��xË����Ì��}Ë��8��Ó��„Ë��¬��Ù��ŠË��°��è��˜Ë��±��ó��¤Ë��­��ø��©Ë��<����¸Ë��=����ÄË��9����ÉË���� ��ÐË����&��ÖË����,��ÜË�� ��1��âË��!��6��çË��$��<��ìË��(��C��ôË��,��I��ùË��0��U��Ì��1��`��Ì��-��f��Ì��)��j��Ì��%��o��Ì��4��u��%Ì��5��{��,Ì����€��1Ì��8��†��6Ì��¬��‹��;Ì��°��—��HÌ��±��¢��SÌ��­��§��XÌ��<��´��eÌ��=��¿��oÌ��9��Ä��uÌ����Ê��{Ì����Ð��€Ì����Õ��†Ì�� ��Ú��‹Ì��!��ß��Ì��$��å��•Ì��(��ì��Ì��,��ò��¢Ì��0��þ��®Ì��1��	��ºÌ��-����¿Ì��)����ÄÌ��%����ÉÌ��4����ÏÌ��5��%��ÖÌ����*��ÚÌ��@��/��àÌ��A��6��æÌ��Ä��;��ëÌ��Å��@��ðÌ��D��F��öÌ����L��üÌ����X��	Í����d��Í����i��Í��H��o��Í��L��|��-Í��M��‰��:Í��Ü��—��GÍ��Ý��¢��RÍ��I��¨��XÍ��(��®��^Í��,��³��dÍ��0��À��pÍ��1��Ë��|Í��-��Ñ��Í��)��Õ��†Í��P��Ü��Í��Q��ã��“Í��¤��é��™Í��¨��ï��ŸÍ��¬��ô��¤Í��°�����±Í��±����¼Í��­����ÁÍ��©����ÆÍ��´����ÌÍ��µ��!��ÑÍ����&��ÖÍ����2��ãÍ����=��îÍ����C��óÍ��¸��H��ùÍ��¹��M��þÍ��¼��R��Î��À��W��Î��Á��\��
Î��Ä��a��Î��Å��f��Î��½��l��Î��T��v��&Î��U��{��,Î��Ì����1Î��Ð����?Î��Ñ��š��JÎ��Í��Ÿ��OÎ��Ä��¥��VÎ��Å��ª��[Î��¨��±��aÎ��¬��¶��gÎ��°��Ã��sÎ��±��Í��~Î��­��Ó��ƒÎ��©��Ø��ˆÎ��Ô��Ý��ŽÎ����ê��šÎ����õ��¥Î��Õ��û��«Î��à����±Î��á����¶Î��ä����¼Î��è����ÉÎ��é��%��ÕÎ��å��*��ÚÎ��ì��0��áÎ��è��=��îÎ��é��I��ùÎ��í��N��ÿÎ��ð��T��Ï��ô��Y��
-Ï��ø��`��Ï��ü��f��Ï�����k��Ï������2Ï������>Ï����“��CÏ��ý��—��HÏ������MÏ����¢��SÏ����®��_Ï����¹��jÏ��
��¿��pÏ��	��Ä��tÏ��ù��É��yÏ��ø��Ð��Ï��ü��Ö��†Ï�����Û��‹Ï����ç��˜Ï����ò��£Ï����÷��¨Ï��ý��ü��¬Ï������²Ï������·Ï������ÃÏ������ÎÏ��
��"��ÓÏ��	��'��ØÏ��ù��,��ÜÏ��ø��3��ãÏ��ü��8��éÏ�����>��ïÏ����J��ûÏ����V��Ð����[��Ð��ý��_��Ð����e��Ð����j��Ð����v��'Ð����€��1Ð��
��…��6Ð��	��Š��;Ð��ù����?Ð��õ��•��EÐ��ñ��š��JÐ����Ÿ��PÐ����¥��UÐ����«��[Ð��X��¶��fÐ��Y��¼��mÐ����Â��rÐ��8��Ç��xÐ��¬��Ì��}Ð��°��Ú��‹Ð��±��ç��—Ð��­��ì��œÐ��<��ù��ªÐ��=����µÐ��9��	��ºÐ������ÀÐ��X����ÆÐ��Y����ËÐ������ÐÐ��8��%��ÕÐ��¬��*��ÚÐ��°��6��æÐ��±��A��ñÐ��­��F��öÐ��<��S��Ñ��=��]��Ñ��9��c��Ñ����i��Ñ����n��Ñ����t��$Ñ�� ��y��*Ñ��!��~��/Ñ��$��„��5Ñ��(��Œ��<Ñ��,��‘��BÑ��0��ž��NÑ��1��ª��ZÑ��-��¯��_Ñ��)��´��dÑ��%��¸��iÑ��4��¾��oÑ��5��Å��uÑ����Ê��zÑ��@��Ï��Ñ��A��Ô��„Ñ��Ä��Ù��‰Ñ��Å��Þ��ŽÑ��D��ä��”Ñ����é��™Ñ����õ��¦Ñ�������±Ñ������¶Ñ��H����¼Ñ��L����ÈÑ��M��"��ÓÑ��Ü��/��ßÑ��Ý��:��êÑ��I��@��ðÑ��(��F��öÑ��,��K��ûÑ��0��W��Ò��1��b��Ò��-��g��Ò��)��l��Ò��P��s��#Ò��\��€��1Ò��]����?Ò��Q��”��DÒ��¤��š��JÒ��¨��Ÿ��PÒ��¬��¥��UÒ��°��±��bÒ��±��¼��mÒ��­��Á��rÒ��©��Ç��wÒ��´��Ì��}Ò��µ��Ò��‚Ò����×��‡Ò����ã��”Ò����î��ŸÒ����ó��¤Ò��¸��ù��ªÒ��¹��þ��¯Ò��¼����´Ò��À����¹Ò��Á��
��¾Ò��Ä����ÃÒ��Å����ÈÒ��½����ÍÒ��T��#��ÔÒ��U��(��ØÒ��Ì��-��ÝÒ��Ð��9��êÒ��Ñ��D��õÒ��Í��J��úÒ��Ä��O���Ó��Å��U��Ó��¨��\��Ó��¬��a��Ó��°��m��Ó��±��x��)Ó��­��~��.Ó��©��ƒ��3Ó��Ô��‰��9Ó����•��EÓ���� ��PÓ��Õ��¥��VÓ��Ø��«��[Ó��Ü��·��hÓ��Ý��Â��sÓ��Ù��È��xÓ��à��Í��~Ó��á��Ò��ƒÓ��ä��Ø��‰Ó��è��æ��—Ó��é��ò��¢Ó��å��÷��¨Ó��ì��ý��­Ó��è��	��ºÓ��é����ÅÓ��í����ÊÓ��ð����ÐÓ��ñ��$��ÕÓ����*��ÚÓ����/��àÓ����6��çÓ����<��ìÓ����B��òÓ�� ��G��÷Ó��!��L��üÓ��$��Q��Ô��(��Z��
-Ô��,��`��Ô��0��m��Ô��1��x��)Ô��-��}��.Ô��)��‚��3Ô��%��‡��7Ô��4����=Ô��5��”��EÔ����™��IÔ��@��Ÿ��PÔ��A��¤��UÔ��Ä��©��ZÔ��Å��¯��_Ô��D��´��dÔ����¹��jÔ����Ç��wÔ����Ò��‚Ô����×��ˆÔ��H��Ý��Ô��L��é��šÔ��M��ô��¥Ô��Ü����±Ô��Ý����½Ô��I����ÂÔ��(����ÈÔ��,����ÎÔ��0��)��ÚÔ��1��4��åÔ��-��:��êÔ��)��>��ïÔ��P��E��öÔ��Q��J��ûÔ��¤��P���Õ��¨��V��Õ��¬��\��Õ��°��h��Õ��±��s��$Õ��­��x��)Õ��©��~��.Õ��´��„��4Õ��µ��‰��:Õ����Ž��?Õ����›��KÕ����¦��VÕ����«��\Õ��¸��±��aÕ��¹��¶��fÕ��¼��»��kÕ��À��À��qÕ��Á��Å��uÕ��Ä��Ê��zÕ��Å��Ï��€Õ��½��Õ��…Õ��T��Ü��ŒÕ��U��à��‘Õ��Ì��å��–Õ��Ð��ò��£Õ��Ñ��ý��­Õ��Í����³Õ��Ä����¹Õ��Å����¾Õ��¨����ÅÕ��¬����ÊÕ��°��&��×Õ��±��2��âÕ��­��7��çÕ��©��<��ìÕ��Ô��B��òÕ����N��þÕ����Y��
-Ö��Õ��_��Ö��Ø��e��Ö��Ü��q��"Ö��Ý��|��-Ö��Ù��‚��2Ö��à��‡��8Ö��á��Œ��<Ö��ä��’��CÖ��è��Ÿ��PÖ��é��«��[Ö��å��°��aÖ��ì��¶��fÖ��è��Â��sÖ��é��Î��Ö��í��Ó��„Ö��ð��Ù��ŠÖ��ñ��ß��Ö����ä��•Ö����ê��šÖ����ð��¡Ö����ö��§Ö����ü��¬Ö�� ����²Ö��!����·Ö��$����½Ö��(����ÅÖ��,����ËÖ��0��.��ßÖ��1��;��ìÖ��-��A��òÖ��)��F��öÖ��%��K��ûÖ��4��Q��×��5��X��	×����]��×��@��c��×��A��h��×��Ä��m��×��Å��r��#×��D��x��(×����}��-×����Š��:×����•��F×����š��K×��H�� ��Q×��L��­��]×��M��¸��h×��Ü��Ä��u×��Ý��Ï��€×��I��Õ��†×��(��Ü��Œ×��,��á��’×��0��î��ž×��1��ø��©×��-��þ��®×��)����³×��P��	��º×��Q����¿×��`����Å×��¨����Ë×��¬��!��Ñ×��°��-��Þ×��±��9��é×��­��>��
-Ø��©��`��Ø��d��g��Ø����w��(Ø����ƒ��3Ø��e��ˆ��9Ø��h��Ž��?Ø��i��•��FØ��´��›��KØ��µ�� ��PØ��l��¨��XØ��p��ê��›Ø��q��ñ��¡Ø��t��ø��¨Ø��x��ÿ��°Ø��|����¿Ø��}����ÌØ��y��!��ÒØ��€��*��ÚØ����1��áØ��„��A��òØ��…��V��Ù��ˆ��]��Ù��L��l��Ù��M��w��(Ù��‰��}��-Ù��Ø��‚��3Ù��Ü����@Ù��Ý��š��KÙ��Ù��Ÿ��PÙ��Œ��¦��VÙ��d��­��]Ù����¹��jÙ����Ä��uÙ��e��Ê��zÙ����Ð��€Ù��ä��Õ��†Ù��è��â��“Ù��é��ï�� Ù��å��õ��¥Ù��ì��û��«Ù��è����¸Ù��é����ÄÙ��í����ÉÙ������ÏÙ��è��,��ÜÙ��é��8��èÙ��‘��=��íÙ��”��C��ôÙ��è��Q��Ú��é��]��
Ú��•��b��Ú��˜��q��"Ú��™��Å��ÇÚ��ˆ��Ï��ÑÚ��L��Þ��àÚ��M��ë��íÚ��‰��ñ��òÚ����÷��ùÚ������Û������Û������Û��œ��$��&Û�M ������;Ý�M¤�����KÝ�M$������YÝ�M%���$���^Ý�M¥��'���bÝ�M¨��,���gÝ�M¬��7���qÝ�M­��G���Ý�M°��O���ŠÝ�M´��W���‘Ý�M$���]���—Ý�M%���a���›Ý�Mµ��h���£Ý�M±��l���§Ý�M¸��t���®Ý�M¼��z���´Ý�MÀ��€���ºÝ�MÁ��Œ���ÇÝ�M½�����ËÝ�MÄ��–���ÑÝ�MÈ��Â���ýÝ�MÉ��Ñ���Þ�MÌ��Ø���Þ�MÐ��ß���Þ�MÔ��è���#Þ�MØ��ï���)Þ�MÙ��ö���1Þ�MÜ��þ���8Þ�MÝ����>Þ�Mà����KÞ�Má�� ��ZÞ�MÕ��&��`Þ�MÑ��*��eÞ�MÍ��.��iÞ�MÅ��2��mÞ�M¹��7��qÞ�M©��<��vÞ�M¡��@��zÞ�Mä����Gà�Mè����Wà�M$���#��^à�M%���)��cà�Mé��-��gà�M¨��2��mà�M¬��:��uà�M­��@��{à�M°��H��ƒà�M´��O��‰à�M$���T��Žà�M%���X��“à�Mµ��^��™à�M±��c��à�M¸��j��¥à�M¼��o��©à�MÀ��s��®à�MÁ��}��·à�M½����»à�MÄ��†��Áà�MÈ��’��Ìà�MÉ����Øà�MÌ��£��Þà�MÐ��ª��äà�MÔ��°��ëà�MØ��¶��ðà�MÙ��»��õà�MÜ��Â��üà�MÝ��Æ��á�MÕ��Ð��á�MÑ��Õ��á�MÍ��Ù��á�MÅ��Ý��á�M¹��á��á�M©��æ�� á�Må��ê��%á�M ����Lá�M¤����Tá�M$��� ��Zá�M%���$��^á�M¥��(��bá�M¨��,��gá�M¬��1��lá�M­��7��qá�M°��=��wá�M´��B��|á�M$���G��á�M%���K��…á�Mµ��Q��‹á�M±��U��á�M¸��Z��•á�M¼��_��™á�MÀ��c��žá�MÁ��k��¦á�M½��p��ªá�MÄ��t��¯á�MÈ��~��¸á�MÉ��…��Àá�MÌ��‹��Æá�MÐ��‘��Ëá�MÔ��–��Ñá�MØ��œ��Öá�MÙ��¡��Ûá�MÜ��§��áá�MÝ��«��åá�MÕ��´��îá�MÑ��¸��òá�MÍ��¼��öá�MÅ��À��ûá�M¹��Ä��ÿá�M©��É��â�M¡��Í��â������ïâ��u��§��øâ��ì��¿��ã����Ì��ã����à��2ã����î��@ã����ô��Eã��ð�� ��Xã��ô�� ��fã��ø��  ��qã��ù��, ��}ã��õ��2 ��ƒã��ñ��9 ��Šã��ü��A ��’ã�����T ��¥ã����s ��Åã��ý��y ��Ëã��ˆ��‚ ��Óã��L�� ��âã��M��œ ��îã��‰��£ ��ôã��ä��ª ��ûã��è��¸ ��	ä��é��Æ ��ä��å��Ë ��ä��ì��Ò ��#ä��è��ß ��0ä��é��ë ��<ä��í��ð ��Bä����!��Rä����	!��Zä��	��!��fä����!��kä����#!��tä��À��+!��|ä��Á��4!��…ä��Ä��;!��Œä��È��J!��›ä��É��Z!��«ä��Ì��a!��²ä��Ð��g!��¸ä��Ô��x!��Éä��Ø��~!��Ïä��Ù��…!��Öä��Ü��‹!��Üä��Ý��!��áä��Õ��›!��ìä��Ñ��Ÿ!��ðä��Í��Ò!��$å��Å��Ø!��)å��
��Ý!��.å����ç!��8å����ð!��@å����4"��†å����>"��å����E"��–å��„���L"��å��ˆ���T"��¥å��Œ���\"��­å�����c"��´å��‘���h"��¹å��”���o"��Àå��˜���†"��×å��™���”"��åå��•���™"��êå�����ž"��ïå��‰���¤"��õå��…���¨"��ùå����¸"��	æ����Î"��æ����Ô"��%æ�� ��à"��1æ��$��î"��?æ��%��ü"��Læ��!���#��Qæ��(��#��Yæ��,��#��jæ��-��%#��wæ��)��-#��~æ��0��6#��‡æ��À��<#��æ��Á��D#��•æ��Ì��K#��œæ��Ð��Q#��¢æ��Ô��X#��©æ��Ø��]#��®æ��Ù��d#��µæ��Ü��j#��»æ��Ý��o#��Àæ��Õ��z#��Ëæ��Ñ��~#��Ïæ��Í��ƒ#��Ôæ��1��ˆ#��Ùæ��(��Ž#��ßæ��,��›#��ìæ��-��§#��øæ��)��­#��þæ��0��´#��ç��À��¹#��
-ç��Á��Á#��ç��Ì��Æ#��ç��Ð��Í#��ç��Ô��Ó#��#ç��Ø��Ø#��)ç��Ù��Ý#��.ç��Ü��ã#��4ç��Ý��è#��9ç��Õ��ò#��Cç��Ñ��÷#��Hç��Í��û#��Lç��1���$��Qç��4��
$��^ç��5��$��dç��í��$��jç��m��$��pç��a��%$��vç��P��,$��}ç��Q��1$��‚ç��E��6$��‡ç��(��<$��ç��,��J$��›ç��-��U$��¦ç��)��\$��­ç��8��d$��µç��è��t$��Åç��é��$��Òç��9��‡$��Øç��<��$��Þç��è��›$��ìç��é��§$��øç��=��¬$��ýç��@��³$��è��D��º$��è��E��Ã$��è��A��É$��è��¥��Ò$��#è��P��Ø$��)è��Q��Ý$��.è��E��â$��3è��(��è$��9è��,��õ$��Fè��-���%��Qè��)��%��Xè��8��%��_è��è��%��lè��é��&%��wè��9��,%��}è��<��1%��‚è��è��>%��è��é��I%��šè��=��N%��Ÿè��@��T%��¥è��D��Y%��ªè��E��a%��²è��A��f%��·è��¥��n%��¿è��P��t%��Åè��\��ƒ%��Ôè��]��%��áè��Q��–%��çè��E��š%��ëè��(�� %��ñè��,��¬%��ýè��-��·%��é��)��½%��é��8��Ä%��é��è��Ñ%��"é��é��Ü%��-é��9��á%��2é��<��ç%��8é��è��ô%��Eé��é��ÿ%��Pé��=��&��Ué��@��
-&��[é��D��&��`é��E��&��hé��A��&��né��¥��%&��vé��P��+&��{é��Q��/&��€é��E��4&��…é��(��:&��‹é��,��F&��—é��-��Q&��£é��)��X&��©é��8��^&��¯é��è��k&��¼é��é��v&��Çé��9��|&��Íé��<��&��Òé��è��Ž&��ßé��é��™&��êé��=��ž&��ïé��@��¤&��õé��D��©&��úé��E��±&��ê��A��¶&��ê��¥��¾&��ê��¡��Ä&��ê����Ê&��ê��i��Ð&��!ê��e��×&��(ê��Y��Ü&��-ê��U��â&��3ê��Q��ë&��<ê��I��ñ&��Bê��0��ø&��Iê��H��þ&��Oê��4��'��Wê��L��'��\ê��8��'��dê�����'��jê��4��'��pê��P��%'��vê��ø���-'��~ê��ü���<'��ê��ý���H'��™ê��ù���N'��Ÿê��8��T'��¥ê��T��['��¬ê��X��e'��¶ê�� ���n'��Àê��¡���t'��Åê��\��{'��Ìê��È���'��Òê��É���‰'��Ùê��]��'��Þê��`��•'��æê�� ���ž'��ïê��¡���£'��ôê��d��ª'��ûê��¨���²'��ë��©���¸'��	ë��e��½'��ë��h��Ã'��ë��i��È'��ë��l��Î'��ë��°���Ö'��'ë��±���Ü'��-ë��°���ã'��4ë��±���é'��:ë��m��î'��?ë��p��(��Uë��q��M(���ì��t��W(��
-ì����^(��ì����c(��ì����i(��ì����r(��$ì��u��w(��)ì��a��{(��.ì��x��†(��9ì��y��‘(��Cì��Y��•(��Hì��U��š(��Mì��9��Ÿ(��Rì��Q��¤(��Wì��5��©(��\ì����®(��`ì��9��³(��eì��M��¸(��jì��5��½(��oì��I��Á(��tì��1��Ç(��yì����Ì(��~ì��9��Ñ(��ƒì��5��Ö(��ˆì��E��Ü(��Žì��1��â(��”ì��A��ç(��šì����í(�� ì��9��ò(��¥ì��5��÷(��ªì��1��ý(��°ì����)��¶ì��å���	)��»ì��Í���)��Âì��¹���)��Èì��µ���)��Îì�����!)��Ôì��}��D)��÷ì��È��Ç1��˜õ��É��×1��§õ��Ü��ç1��·õ��Ý��î1��¾õ����ô1��Ãõ��„���2��Ðõ��ˆ��	2��Øõ��Œ��2��âõ����2��êõ��‘��!2��ðõ��”��-2��ýõ��•��<2��ö����A2��ö��‰��E2��ö��…��J2��ö��˜��W2��'ö��™��e2��4ö��œ��l2��;ö����x2��Hö��€��~2��Nö��|��Š2��Zö��}��ñ2��‰��È��3��®��É��)3��À��Ü��B3��Ø��Ý��K3��á����R3��è��„��]3��ó��ˆ��d3��ú�� ��n3��
����w3��

��‘��}3��
����„3��
��‘��ˆ3��
��¤��’3��(
��¨��ÿ3��–
��©��4��
��¬��4��ª
��°��4��°
��$���!4��·
��%���&4��»
��´��*4��À
��¸��/4��î
��x��X4����y��h4����¼��n4��%��½��v4��,��À��‰4��?��Á��4��G��Ä��•4��L��Å��š4��P��¹��¡4��W��µ��ª4��`��±��²4��h��­��¶4��l��È��¾4��t��Ì��Ç4��}��$���Í4��ƒ��%���Ñ4��‡��Í��5��Ê��É��5��Ï��Ð��(5��ß��Ô��05��æ��Ø��85��î��Ù��G5��ý��Õ��K5����¨��R5����©��X5����Ñ��\5����¥��a5����¡��e5����‰��j5�� ��…��n5��$��˜��€5��7��™��Œ5��B��œ��•5��K����¤5��Z��€��©5��`��|��µ5��l��}��Ê5��€��È��Ô5��‹��É��à5��—��Ü��ë5��¡��Ý��ò5��¨����ö5��­��„��ý5��´��ˆ��6��¸��Œ��6��¿����
6��Ä��‘��6��È��”��6��Ð��•��!6��×����%6��Û��‰��(6��ß��…��,6��â��˜��66��ì��™��>6��õ��œ��D6��ú����N6����€��S6��
-��|��]6����}��l6��#��È��u6��+��É��}6��4��Ü��ˆ6��>��Ý��Ž6��D��à��—6��N��á��¡6��X��ä��­6��d��å��¶6��m��|��¿6��u��|���c7��!��€���‘7��N�����ª7��h��}���¸7��u��„���Ð7����ˆ���ç7��£��Œ���ò7��®�����ú7��¶��‘���8��½��”���8��Ä��˜���8��Ù��™���*8��æ��•���08��ì�����68��ò��‰���=8��ù��…���B8��þ��œ���f8��#�� ���p8��,��¡���w8��3��¤���8��;��¨���‰8��E��©���8��L��¬���˜8��T��°���£8��_��±���¬8��h��­���±8��m��¬���¸8��t��°���¾8��z��±���Å8��€��­���É8��…��¥���Ð8����´���Ø8��”��¸���ã8��Ÿ��¼���ê8��§��½���ö8��²��À���ÿ8��¼��Á���
-9��Æ��Ä���9��Ñ��È���9��Ù��É���'9��ã��Å���,9��è��Ì���29��ï��Ä���=9��ù��È���C9��ÿ��É���J9����Å���P9��
��Ð���Z9����Ô���k9��'��Õ���y9��5��Ñ���9��>��Ø���Œ9��H��Ü���˜9��T��Ý���¢9��^��Ù���¨9��d��à���±9��m��á���º9��v��ä���À9��|�� ���È9��„��¡���Í9��‰��è���Ò9��Ž��È���×9��“��É���Þ9��š��é���ã9��Ÿ��ì���ë9��§��í���ñ9��­��ð���÷9��³��ô���þ9��º��ø���:��À��ü���:��Î��ý���:��Ú��ù���$:��à��õ���*:��æ��ñ���/:��ë�����7:��ó����=:��ù����G:������M:��
-��ø���W:����ü���c:����ý���m:��*��ù���t:��/����z:��5����:��=����Œ:��H����–:��R����œ:��Y����¥:��a�� ��°:��l��!���;��¼����;��Í��$��;��Ö��(��,;��ù��)��<;��	��%��C;����,��K;����(��X;��$��)��b;��.��-��i;��6��
��o;��;��	��s;��@��0��z;��F��4��€;��L��8��…;��R�����Ž;��h����–;��p����Ÿ;��y��<��¥;����=��«;��…��@��°;��‹��0��·;��‘��D��½;��—��4��Å;��Ÿ��8��Ê;��¥�����Ð;��«����Ö;��°����Ý;��¸��H��ä;��¿��L��î;��È��M��ó;��Í��ø���ø;��Ó��ü���<��á��ý���<��ë��ù���<��ñ��P��<��÷��T��'<������-<���� ��9<����!��C<������I<��$��X��P<��*��\��W<��2��]��\<��7��`��c<��>��a��i<��C��d��u<��O��h��€<��Z����…<��`����’<��m����œ<��v����¡<��{��˜��¨<��‚��™��®<��‰��œ��µ<���� ��¼<��—��¤��Ä<��ž��¨��Ë<��¥��¬��Ñ<��«��°��Ý<��·��±��ç<��Á��­��ì<��Æ��©��ò<��Ì��´��ù<��Ó��µ��ÿ<��Ù����=��Þ����=��é����=��ò����=��÷��È��'=�� ����.=��	 ����:=�� ����C=�� ����I=��# ��É��N=��) ��Ì��U=��/ ��Ð��`=��: ��Ñ��j=��D ��Í��o=��I ��8��v=��P ��¬��{=��W ��°��ˆ=��b ��±��‘=��l ��­��–=��q ��<��¢=��} ��=��¬=��† ��9��±=��‹ ��Ä��·=��’ ��Å��½=��˜ ��¨��Å=��Ÿ ��¬��Ê=��¤ ��°��Ô=��¯ ��±��Þ=��¸ ��­��ã=��½ ��©��è=�� ��Ä��ñ=��Ë ��Å��÷=��Ñ ��D��þ=��Ø ����>��Þ ����>��é ����>��ò ����>��ø ��H��#>��þ ��L��.>��!��M��8>��!��Ü��D>��!��Ý��N>��(!��I��U>��/!��(��\>��6!��,��c>��=!��0��p>��J!��1��|>��W!��-��‚>��\!��)��‡>��a!��P��>��j!��Q��–>��q!��¤��œ>��v!��¨��¢>��}!��¬��¨>��‚!��°��³>��Ž!��±��¼>��—!��­��Â>��œ!��©��Ç>��¡!��´��Í>��§!��µ��Ò>��­!����Ø>��²!����â>��½!����ë>��Æ!����ñ>��Ë!��T��ø>��Ó!��U��ý>��×!��Ì��?��Ý!��Ð��
?��ç!��Ñ��?��ñ!��Í��?��ö!��8��"?��ü!��¬��'?��"��°��1?��"��±��:?��"��­��??��"��<��K?��%"��=��T?��."��9��Y?��3"��Ä��^?��8"��Å��c?��>"��¨��j?��E"��¬��p?��K"��°��|?��W"��±��…?��`"��­��‹?��e"��©��?��j"��Ä��™?��s"��Å��ž?��y"��D��¥?��"����ª?��„"����µ?��"����¾?��˜"����Ã?��"��H��É?��£"��L��Ó?��®"��M��Ü?��·"��Ü��è?��Â"��Ý��ñ?��Ì"��I��ø?��Ò"��(��þ?��Ù"��,��@��ß"��0��@��ê"��1��@��ô"��-��@��ú"��)��$@��þ"��P��,@��#��\��8@��#��]��B@��#��Q��H@��"#��¤��N@��(#��¨��T@��.#��¬��Y@��3#��°��d@��>#��±��m@��G#��­��r@��L#��©��w@��Q#��´��}@��W#��µ��‚@��\#����‡@��a#����‘@��l#����š@��u#���� @��z#��T��§@��‚#��U��¬@��†#��Ì��±@��Œ#��Ð��¼@��—#��Ñ��Ç@��¢#��Í��Í@��§#��8��Ó@��®#��¬��Ù@��³#��°��ã@��¾#��±��ì@��Ç#��­��ò@��Ì#��<��ý@��×#��=��A��á#��9��A��æ#��Ä��A��ë#��Å��A��ð#��¨��A��÷#��¬��"A��ü#��°��-A��$��±��6A��$��­��;A��$��©��@A��$��Ä��HA��#$��Å��NA��($��D��TA��/$����ZA��4$����dA��?$����nA��H$����sA��M$��H��yA��S$��L��ƒA��]$��M��ŒA��g$��Ü��˜A��r$��Ý��¡A��{$��I��§A��‚$��(��®A��‰$��,��´A��$��0��ÀA��›$��1��ËA��¥$��-��ÐA��ª$��)��ÕA��¯$��P��ÜA��¶$��Q��áA��¼$��¤��çA��Á$��¨��ìA��Ç$��¬��òA��Ì$��°��ýA��×$��±��B��á$��­��B��æ$��©��B��ë$��´��B��ñ$��µ��B��ö$����!B��û$����+B��%����4B��%����:B��%��T��BB��%��U��FB��!%��Ì��LB��&%��Ð��VB��1%��Ñ��`B��:%��Í��eB��?%��8��lB��G%��¬��rB��L%��°��}B��W%��±��†B��`%��­��‹B��f%��<��–B��q%��=�� B��z%��9��¥B��%��Ä��ªB��…%��Å��°B��Š%��¨��¶B��‘%��¬��¼B��–%��°��ÆB��¡%��±��ÐB��ª%��­��ÕB��¯%��©��ÚB��´%��Ä��âB��¼%��Å��èB��Â%��D��îB��È%����óB��Î%����þB��Ù%����C��â%����
C��ç%��H��C��ì%��L��C��÷%��M��&C��&��Ü��2C��&��Ý��;C��&��I��AC��&��(��GC��"&��,��MC��'&��0��XC��2&��1��bC��<&��-��gC��B&��)��lC��F&��P��sC��M&��Q��xC��R&��`��~C��X&��¨��ƒC��^&��¬��ˆC��c&��°��“C��n&��±��C��w&��­��¢C��|&��©��§C��&��d��®C��ˆ&����¸C��’&����ÁC��œ&��e��ÇC��¡&��´��ÌC��§&��µ��ÒC��¬&��l��ÙC��³&��p��ßC��º&��q��åC��¿&��t��ëC��Å&��x��óC��Í&��|��þC��Ø&��}��D��â&��y��
D��ç&��€��D��ï&����D��õ&��„��*D��'��…��?D��'��ˆ��ED�� '��L��RD��,'��M��[D��6'��‰��`D��;'��Ø��fD��@'��Ü��qD��K'��Ý��zD��T'��Ù��D��Y'��Œ��…D��_'��d��‹D��e'����–D��p'����ŸD��z'��e��¥D��'����ªD��…'��ä��°D��‹'��è��¾D��™'��é��ËD��¥'��å��ÐD��«'��ì��×D��±'��è��âD��½'��é��ìD��Æ'��í��ñD��Ì'����÷D��Ñ'��è��E��Ü'��é��E��æ'��‘��E��ë'��”��E��ñ'��è��"E��ü'��é��+E��(��•��0E��(��˜��=E��(��™��QE��,(��ˆ��XE��2(��L��cE��=(��M��mE��G(��‰��rE��L(����xE��R(����‚E��](����‹E��f(����‘E��k(��œ��œE��v(����îE��É(��u��öE��Ð(��ì��ÿE��Ù(����F��â(����F��î(����F��ø(����#F��ý(��ü��,F��)�����9F��)����UF��0)��ý��[F��5)��ˆ��cF��=)��L��oF��I)��M��yF��S)��‰��~F��Y)��ä��…F��`)��è��’F��m)��é��F��w)��å��¢F��|)��ì��©F��ƒ)��è��´F��)��é��¾F��™)��í��ÄF��ž)����ÏF��©)��„���ÕF��¯)��ˆ���áF��¼)��Œ���éF��Ä)�����ïF��É)��‘���öF��Ð)��”���ûF��Ö)��˜���G��ç)��™���G��ñ)��•���G��÷)�����!G��ü)��‰���'G��*��…���,G��*����8G��*����JG��%*����PG��+*��è��]G��7*��é��eG��@*����nG��H*����tG��N*����zG��T*����‚G��]*��ì��‹G��e*��ð��’G��l*��ô��ÝG��ç*��õ��óG��ý*��ñ��÷G��•+��ø��H��¦+��ü��H��²+�����&H��º+����4H��É+��ý��@H��Õ+��ù��FH��Ú+��í��KH��ß+�� ��ZH��î+��$��bH��ö+��œ��nH��,����zH��,��%��ƒH��,��!��ˆH��,�� ��ŽH��",��$��“H��(,��œ��›H��/,����¤H��8,��%��«H��?,��!��°H��D,��í��¶H��J,��m��¼H��P,��h��ÅH��Y,��i��ËH��_,��a��ÐH��d,��P��×H��l,��Q��ÝH��q,��E��ãH��w,��¼��ëH��,��À��ðH��„,����øH��Œ,����I��•,��Á��I��š,��Ä��I�� ,��Å��I��¥,��½��I��¬,��¥��I��±,��P��"I��·,��Q��'I��¼,��E��,I��À,��¼��2I��Ç,��À��7I��Ì,����=I��Ò,����EI��Ù,��Á��JI��Þ,��Ä��OI��ã,��Å��UI��é,��½��ZI��î,��¥��_I��ó,��P��dI��ø,��\��}I��-��]��ŠI��-��Q��I��$-��E��•I��)-��¼��œI��0-��À��¡I��5-����¨I��<-����°I��D-��Á��µI��I-��Ä��ºI��N-��Å��¿I��S-��½��ÅI��Y-��¥��ÊI��^-��P��ÐI��d-��Q��ÕI��j-��E��ÚI��n-��¼��àI��u-��À��æI��z-����ìI��€-����óI��‡-��Á��øI��Œ-��Ä��ýI��‘-��Å��J��–-��½��J��œ-��¥��J��¡-��¡��J��¦-����J��¬-��i�� J��µ-��e��'J��»-��Y��-J��Á-��U��2J��Æ-��Q��<J��Ð-��I��BJ��×-��0��IJ��Þ-��H��PJ��ä-��4��XJ��í-��L��^J��ò-��8��dJ��ù-�����lJ���.��4��rJ��.��P��wJ��.��ø���€J��.��ü���’J��&.��ý���J��1.��ù���¢J��6.��8��©J��=.��T��°J��E.��X��¶J��J.�� ���¿J��S.��¡���ÅJ��Y.��\��ÌJ��`.��È���ÒJ��f.��É���ÚJ��n.��]��ßJ��s.��`��çJ��{.�� ���îJ��‚.��¡���óJ��‡.��d��ùJ��.��¨����K��”.��©���K��œ.��e��K�� .��h��K��§.��i��K��¬.��l��K��².��°���%K��¹.��±���,K��À.��°���2K��Æ.��±���7K��Ì.��m��<K��Ñ.��p��OK��ã.��q��’K��'/��t��›K��0/����¢K��6/����¨K��</����®K��B/����·K��L/��u��¼K��P/��a��ÁK��U/��x��ÇK��[/��y��ÐK��d/��Y��ÕK��i/��U��ÚK��n/��9��ßK��s/��Q��äK��x/��5��éK��}/����îK��ƒ/��9��ôK��ˆ/��M��ùK��/��5��þK��’/��I��L��—/��1��L��œ/����
L��¡/��9��L��¦/��5��L��«/��E��L��±/��1��$L��¸/��A��*L��¾/����/L��Ã/��9��4L��È/��5��9L��Í/��1��>L��Ó/����DL��Ø/��å���JL��Þ/��Í���RL��æ/��¹���XL��ì/��µ���]L��ò/�����dL��ø/��}��•L��*0��È��«L��?0��É��»L��O0��Ü��ÉL��]0��Ý��ÏL��c0��ä��áL��u0��å��ðL��…0��|��ýL��‘0�M ��?)��÷X�M¤��X)��
Y�M$���d)��Y�M%���k)�� Y�M¥��p)��%Y�M¨��u)��*Y�M¬��)��6Y�M­��‰)��>Y�M°��’)��GY�M´��™)��NY�M$���ž)��SY�M%���£)��WY�Mµ��«)��`Y�M±��¯)��dY�M¸��¸)��mY�M¼��¾)��sY�MÀ��Ã)��xY�MÁ��Ð)��…Y�M½��Õ)��ŠY�MÄ��Û)��Y�MÈ��î)��£Y�MÉ��þ)��´Y�MÌ��	*��¾Y�MÐ��*��ÅY�MÔ��*��ÍY�MØ��*��ÒY�MÙ��%*��ÚY�MÜ��-*��âY�MÝ��2*��çY�Mà��A*��öY�Má��o*��$Z�MÕ��w*��,Z�MÑ��{*��0Z�MÍ��€*��4Z�MÅ��„*��9Z�M¹��‰*��=Z�M©��Ž*��CZ�M¡��“*��HZ��}��œM��eZ��È��µM��~Z��É��ÄM��Z��Ü��ÖM��ŸZ��Ý��ÝM��¦Z����äM��¬Z��„��ïM��·Z��ˆ��öM��¾Z��Œ���N��ÈZ����N��ÐZ��‘��
N��ÖZ��”��N��áZ��•��!N��êZ����&N��ïZ��‰��+N��óZ��…��/N��øZ��˜��>N��[��™��JN��[��œ��RN��[����bN��*[��€��hN��1[��|��uN��>[��}��ŒN��U[��È��˜N��`[��É��¡N��j[��Ü��¬N��u[��Ý��²N��z[��à��¼N��…[��á��ÂN��‹[��ä��ÎN��—[��å��ÛN��¤[��|��åN��®[�Mä��f,��\�Mè��t,��)\�M$���z,��/\�M%���,��4\�Mé��ƒ,��8\�M¨��ˆ,��=\�M¬��,��E\�M­��—,��L\�M°��Ÿ,��T\�M´��¥,��Z\�M$���ª,��_\�M%���®,��c\�Mµ��µ,��×\�M±��Ù,��à\�M¸��â,��é\�M¼��ï,��÷\�MÀ��ô,��ü\�MÁ��ÿ,��]�M½��-��]�MÄ��
--��]�MÈ��-��]�MÉ�� -��(]�MÌ��&-��.]�MÐ��--��5]�MÔ��4-��<]�MØ��9-��A]�MÙ��?-��G]�MÜ��F-��N]�MÝ��K-��S]�Mà��W-��_]�Má��u-��}]�MÕ��{-��ƒ]�MÑ��€-��‡]�MÍ��„-��Œ]�MÅ��‰-��]�M¹��-��•]��}��O��š]�M©��”-��œ]�Må��™-��¡]��È��,O��¨]��É��7O��³]��Ü��EO��Á]��Ý��KO��Ç]����RO��Î]��„��[O��×]��ˆ��bO��Þ]�M ��Þ-��æ]�� ��kO��ç]�M¤��ê-��ò]����O��ý]��‘��‰O��^�M$���ÿ-��^����O��^�M%���.��^��‘��•O��^�M¥��.��^��¤��ÈO��D^��¨��ÒO��N^�M¨��(.��S^��©��ÙO��U^�M¬��0.��\^��¬��æO��b^�M­��7.��b^��°��ìO��h^��$���óO��o^��%���úO��v^�M°��L.��x^��´��ÿO��{^�M´��R.��~^��¸��P��ƒ^�M$���X.��ƒ^��x��TP��Ñ^�M%���a.��Œ^�Mµ��º.��å^��y��kP��ç^�M±��¿.��ê^��¼��tP��ð^�M¸��Ç.��ó^��½��zP��ö^�M¼��Í.��ù^��À��‚P��ý^�MÀ��Ò.��þ^��Á��P��_�MÁ��ã.��_��Ä��–P��_�M½��è.��_��Å��›P��_�MÄ��í.��_��¹��¢P��_��µ��¨P��$_�MÈ��ù.��%_��±��°P��,_�MÉ��/��-_��­��µP��1_�MÌ��/��4_��È��»P��7_�MÐ��/��:_��Ì��ÃP��>_�MÔ��/��B_��$���ÉP��E_�MØ��/��G_��%���ÎP��J_�MÙ��!/��L_��Í��ÔP��P_�MÜ��'/��S_��É��ÙP��U_�MÝ��,/��W_��Ð��àP��\_�MÕ��3/��__��Ô��çP��c_�MÑ��9/��e_��Ø��íP��i_�MÍ��>/��i_��Ù��ôP��o_�MÅ��H/��s_��Õ��ùP��t_�M¹��M/��x_��¨��Q��}_�M©��R/��}_�M¡��V/��‚_��©��Q��„_��Ñ��
Q��‰_��¥��Q��Ž_��¡��Q��“_��‰��Q��˜_��…��"Q��_��˜��2Q��®_��™��>Q��º_��œ��EQ��À_����RQ��Í_��€��XQ��Ô_��|��dQ��à_��}��wQ��ó_��È��ƒQ��ÿ_��É��Q��	`��Ü��–Q��`��Ý��œQ��`����¡Q��`��„��ªQ��&`��ˆ��°Q��,`��Œ��ºQ��6`����ÁQ��<`��‘��ÆQ��A`��”��ÏQ��K`��•��ÖQ��R`����ÛQ��W`��‰��àQ��\`��…��äQ��``��˜��ïQ��k`��™��ùQ��u`��œ���R��|`����R��‡`��€��R��`��|��R��›`��}��,R��¨`��È��7R��³`��É��@R��¼`��Ü��LR��Ç`��Ý��QR��Í`��à��ZR��Ö`��á��_R��Û`��ä��lR��è`��å��wR��ó`��|��R��ý`�M��ä¾��H�M��ø¾��Z�M
��¿��h�M	��
¿��o�M��)¿��‹�M��0¿��’�M
��8¿��™�M	��<¿��ž��}��ÉR��{ ��È��åR��%{ ��É��ñR��2{ ��Ü��S��F{ ��Ý��
S��N{ ����S��S{ ��„��S��^{ ����%S��e{ ����9S��z{ ����AS��{ ����FS��‡{ ����MS��Ž{ ����SS��“{ ����XS��˜{ ����^S��ž{ ����dS��¥{ �� ��lS��¬{ ��!��rS��²{ ����xS��¸{ ��…��}S��¾{ ��˜��‹S��Ë{ ��™��—S��×{ ��œ��ŸS��ß{ ����­S��î{ ��€��´S��ô{ ��|��ÀS���| ��}��ÐS��| ��È��ÛS��| ��É��äS��%| ��Ü��ñS��1| ��Ý��÷S��7| ��à���T��@| ��á��T��G| ��ä��T��Q| ��å��T��[| ��|��%T��e| ����”*��VV"����¬*��lV"����¹*��zV"� ���Â*��‚V"�$���Ê*��‹V"�%���Ò*��’V"�!���Ø*��™V"����ß*�� V"����å*��¥V"�(���î*��®V"�,���ö*��¶V"�0���ý*��½V"�1���+��ÄV"�4���
-+��ÊV"�5���+��ÔV"�-���+��ÚV"�8���&+��æV"�9���-+��íV"�)���3+��óV"�<���@+���W"�$���F+��W"�%���L+��W"�=���S+��W"�L���\+��W"�P���f+��&W"�T���l+��,W"�X���t+��5W"�\���|+��<W"�]���ƒ+��CW"�`���‹+��KW"�d���‘+��QW"�h���˜+��XW"�l���ž+��_W"�$���¤+��eW"�%���©+��iW"�m���°+��qW"�i���·+��wW"�e���¾+��~W"�a���Â+��ƒW"�Y���È+��ˆW"�p���Ï+��W"�q���Ô+��”W"�U���Ù+��™W"�t���ß+�� W"�u���ç+��¨W"�x���ù+��¹W"�y���ˆ1��J]"�Q���–1��W]"�M���›1��\]"���� 1��a]"����U2��€÷)����r2��›÷)����2��©÷)� ���‹2��´÷)�$���•2��¾÷)�%���ž2��Ç÷)�!���¥2��Î÷)����­2��Ö÷)����´2��Ý÷)�(���¾2��ç÷)�,���Ç2��ð÷)�0���Ï2��÷÷)�1���Ö2��ÿ÷)�4���Þ2��ø)�5���é2��ø)�-���ï2��ø)�8���ý2��'ø)�9���3��/ø)�)���
3��6ø)�<���3��Cø)�$���"3��Kø)�%���'3��Pø)�=���/3��Xø)�L���83��aø)�P���B3��kø)�T���I3��rø)�X���R3��{ø)�\���[3��„ø)�]���d3��ø)�`���n3��–ø)�d���v3��žø)�h���}3��¦ø)�l���…3��®ø)�$���Œ3��´ø)�%���‘3��ºø)�m���™3��Âø)�i���¡3��Éø)�e���¨3��Ñø)�a���®3��Öø)�Y���´3��Ýø)�p���¼3��åø)�q���Â3��ëø)�U���È3��ðø)�t���Ï3��÷ø)�u���Ø3��ù)�x���í3��ù)�y���};��§�*�Q���;��µ�*�M���“;��¼�*����š;��Ã�*����p<��åš1����Œ<��ÿš1����›<��›1� ���¦<��›1�$���±<��#›1�%���º<��-›1�!���Á<��4›1����Ê<��<›1����Ñ<��C›1�(���Û<��N›1�,���å<��X›1�0���î<��a›1�1���ö<��i›1�4���þ<��q›1�5���
-=��}›1�-���=��„›1�8��� =��“›1�9���)=��œ›1�)���1=��£›1�<���?=��²›1�$���G=��º›1�%���N=��Á›1�=���W=��Ê›1�L���a=��Ô›1�P���m=��à›1�T���u=��ç›1�X���=��ñ›1�\���ˆ=��ú›1�]���’=��œ1�`���›=��œ1�d���£=��œ1�h���«=��œ1�l���³=��%œ1�$���º=��,œ1�%���À=��2œ1�m���É=��<œ1�i���Ñ=��Dœ1�e���Ù=��Lœ1�a���ß=��Qœ1�Y���å=��Xœ1�p���ì=��_œ1�q���ó=��fœ1�U���ù=��kœ1�t����>��sœ1�u���	>��|œ1�x���>��œ1�y���yE��z¤1�Q���‰E��ˆ¤1�M���E��¤1����˜E��˜¤1��|���¯T��¯‡7��€���ßT��݇7�����öT��ó‡7��}���U���ˆ7��„���U��ˆ7��ˆ���3U��1ˆ7��Œ���@U��=ˆ7�����HU��Fˆ7��‘���RU��Oˆ7��”���YU��Wˆ7��˜���sU��qˆ7��™���€U��~ˆ7��•���ˆU��…ˆ7�����U��ˆ7��‰���—U��”ˆ7��…���žU��›ˆ7��œ���ÃU��Áˆ7�� ���ÏU��̈7��¡���×U��Ôˆ7��¤���ßU��܈7��¨���èU��åˆ7��©���ðU��íˆ7��¬���ùU��öˆ7��°���V��‰7��±���V��‰7��­���V��‰7��¬���V��‰7��°���$V��!‰7��±���+V��(‰7��­���0V��.‰7��¥���8V��5‰7��´���@V��=‰7��¸���KV��H‰7��¼���RV��O‰7��½���XV��V‰7��À���_V��\‰7��Á���iV��f‰7��Ä���sV��p‰7��È���zV��w‰7��É���„V��‰7��Å���ŠV��‡‰7��Ì���‘V��Ž‰7��Ä���™V��—‰7��È���ŸV��‰7��É���¦V��¤‰7��Å���¬V��©‰7��Ð���³V��°‰7��Ô���ÉV��Ɖ7��Õ���ÕV��Ó‰7��Ñ���ÜV��Ú‰7��Ø���çV��ä‰7��Ü���ôV��ñ‰7��Ý���ÿV��ý‰7��Ù���W��Š7��à���W��Š7��á���W��Š7��ä���!W��Š7�� ���)W��&Š7��¡���/W��,Š7��è���6W��3Š7��È���;W��9Š7��É���BW��@Š7��é���GW��DŠ7��ì���PW��NŠ7��í���VW��TŠ7��ð���\W��ZŠ7��ô���dW��aŠ7��ø���tW��qŠ7��ü���‚W��€Š7��ý���W��‹Š7��ù���“W��Š7��õ���˜W��–Š7��ñ���W��›Š7�����¦W��£Š7����¬W��©Š7����ÂW��¿Š7����ÈW��ÅŠ7��ø���ÏW��ÌŠ7��ü���ÚW��ØŠ7��ý���äW��âŠ7��ù���êW��çŠ7����ðW��íŠ7����øW��öŠ7����X��‹7����
X��
-‹7����X��‹7����X��‹7����X��‹7����%X��#‹7�� ��1X��/‹7��!��;X��9‹7����AX��>‹7��$��GX��D‹7��(��SX��P‹7��)��]X��[‹7��%��cX��a‹7��,��kX��h‹7��(��vX��s‹7��)��€X��}‹7��-��…X��ƒ‹7��
��‹X��ˆ‹7��	��X��‹7��0��•X��’‹7��4��œX��™‹7��8��¡X��Ÿ‹7�����¨X��¥‹7����®X��¬‹7����¶X��³‹7��<��¼X��¹‹7��=��ÂX��¿‹7��@��ÇX��Å‹7��0��ÎX��Ë‹7��D��ÕX��Ò‹7��4��éX��ç‹7��8��ïX��ì‹7�����õX��ò‹7����ûX��ø‹7����Y��ÿ‹7��H��Y��Œ7��L��Y��
Œ7��M��Y��Œ7��ø���Y��Œ7��ü���'Y��$Œ7��ý���0Y��-Œ7��ù���5Y��3Œ7��P��;Y��9Œ7��T��GY��EŒ7����MY��KŒ7�� ��YY��VŒ7��!��bY��_Œ7����gY��eŒ7��X��nY��kŒ7��\��vY��sŒ7��]��{Y��yŒ7��`��‚Y��Œ7��a��‡Y��…Œ7��d��’Y��Œ7��h��œY��™Œ7����¢Y��ŸŒ7����®Y��«Œ7����·Y��µŒ7����½Y��»Œ7��l��ÅY��ÂŒ7��p��ÑY��ÏŒ7��t��ÛY��ØŒ7��$���âY��ߌ7��%���çY��åŒ7��u��íY��êŒ7��x��úY��øŒ7��y��	Z��7��|��Z��7��€��Z��7����‰[��‡Ž7��}��“[��Ž7��„��ž[��œŽ7��…��§[��¤Ž7��ˆ��¯[��¬Ž7��,���¶[��³Ž7��Œ��¾[��»Ž7����Ï[��ÍŽ7��‘��Ú[��׎7����è[��æŽ7��‘��ò[��ïŽ7����ý[��ûŽ7��‘��\��7����\��7��‘��\��7����&\��#7��‘��.\��,7����:\��77��‘��C\��@7����N\��K7��‘��W\��T7����b\��_7��‘��k\��h7����v\��s7��‘��\��|7����Š\��‡7��‘��“\��7����ž\��œ7��‘��§\��¤7����²\��°7��‘��»\��¸7����Æ\��ď7��‘��Ï\��̏7����Ú\��؏7��‘��ã\��á7����î\��ì7��‘��÷\��õ7����]���7��‘��]��	7����]��7��‘��]��7����&]��#7��4���+]��)7��5���4]��17��-���8]��67��‰��@]��>7��q��F]��C7��”��€]��~7��•��‡]��„7��m��Œ]��‰7��˜��›]��™7��™��¢]��Ÿ7��œ��©]��§7�� ��±]��¯7��¤��¸]��µ7��¨��Á]��¾7��¬��Ç]��Đ7��°��Ù]��֐7��±��å]��ã7��­��ë]��è7��©��ð]��î7��´��÷]��õ7��µ��þ]��û7����^��‘7����^��‘7����^��‘7����^��‘7��¸��$^��"‘7��¹��*^��'‘7��¼��/^��-‘7��À��5^��2‘7��Á��:^��8‘7��Ä��?^��=‘7��Å��E^��B‘7��½��K^��I‘7��È��S^��Q‘7����Y^��V‘7����d^��b‘7����n^��k‘7����s^��p‘7��É��x^��v‘7��Ì��^��|‘7��Ð��‹^��ˆ‘7��Ñ��•^��’‘7��Í��š^��—‘7��Ä�� ^��‘7��Å��¦^��£‘7��¨��­^��ª‘7��¬��³^��°‘7��°��½^��»‘7��±��Ç^��Ä‘7��­��Ì^��É‘7��©��Ñ^��Α7��Ô��×^��Ô‘7����â^��à‘7����ë^��é‘7��Õ��ñ^��ï‘7��Ø��ø^��õ‘7��Ü��_��’7��Ý��
_��’7��Ù��_��’7��à��_��’7��á��_��’7��ä��&_��#’7��è��2_��0’7��é��>_��<’7��å��C_��A’7��ì��I_��G’7��è��V_��S’7��é��__��]’7��í��d_��b’7��ð��j_��h’7��ô��q_��n’7��ø��z_��w’7��ü��€_��~’7�����ˆ_��†’7����–_��“’7���� _��’7����¥_��¢’7��ý��ª_��§’7����°_��®’7����·_��´’7����Â_��¿’7����Ë_��È’7��
��Ñ_��Î’7��	��Ö_��Ô’7��ù��Ü_��Ù’7��ø��ä_��á’7��ü��ê_��ç’7�����ð_��í’7����ú_��ø’7����`��“7����
-`��“7��ý��`��“7����`��“7����`��“7����%`��"“7����.`��,“7��
��3`��1“7��	��8`��5“7��ù��=`��:“7��ø��D`��A“7��ü��I`��G“7�����O`��M“7����Z`��W“7����c`��`“7����h`��e“7��ý��m`��j“7����r`��o“7����w`��u“7����‚`��“7����‹`��ˆ“7��
��`��“7��	��”`��’“7��ù��™`��—“7��õ��Ÿ`��“7��ñ��¥`��¢“7����«`��¨“7����°`��­“7����·`��´“7����½`��º“7����Ã`��À“7�� ��É`��Æ“7��!��Î`��Ì“7��$��Ö`��Ó“7��(��ß`��Ý“7��,��å`��â“7��0��ð`��î“7��1��ü`��ù“7��-��a��þ“7��)��a��”7��%��
-a��”7��4��a��”7��5��a��”7����a��”7��8��&a��#”7��¬��+a��)”7��°��7a��4”7��±��@a��>”7��­��Ea��C”7��<��Ra��O”7��=��\a��Y”7��9��aa��_”7����ga��e”7����ma��k”7����sa��q”7�� ��xa��v”7��!��}a��{”7��$��ƒa��€”7��(��‹a��ˆ”7��,��a��”7��0��›a��˜”7��1��¤a��¡”7��-��©a��¦”7��)��®a��«”7��%��³a��°”7��4��¸a��¶”7��5��¾a��¼”7����Ãa��Á”7��8��Éa��Æ”7��¬��Îa��Ë”7��°��Øa��Ö”7��±��âa��à”7��­��èa��å”7��<��óa��ð”7��=��üa��ú”7��9��b��ÿ”7����b��•7����
b��
-•7����b��•7�� ��b��•7��!��b��•7��$��"b�� •7��(��*b��'•7��,��/b��,•7��0��:b��7•7��1��Cb��A•7��-��Ib��F•7��)��Nb��K•7��%��Rb��P•7��4��Yb��V•7��5��`b��]•7����eb��b•7��@��jb��g•7��A��ob��m•7��Ä��tb��r•7��Å��zb��w•7��D��b��}•7����…b��‚•7����b��•7����™b��–•7����žb��œ•7��H��¤b��¡•7��L��¯b��¬•7��M��¸b��µ•7��Ü��Äb��Á•7��Ý��Íb��Ë•7��I��Ôb��Ñ•7��(��Úb��ו7��,��ßb��Ý•7��0��êb��ç•7��1��ób��ñ•7��-��øb��ö•7��)��ýb��ú•7��P��c��–7��Q��c��–7��¤��c��–7��¨��c��–7��¬��c��–7��°��&c��#–7��±��/c��,–7��­��4c��2–7��©��9c��7–7��´��?c��=–7��µ��Dc��B–7����Jc��G–7����Tc��Q–7����]c��Z–7����bc��_–7��¸��gc��e–7��¹��mc��j–7��¼��rc��o–7��À��wc��t–7��Á��|c��y–7��Ä��c��~–7��Å��†c��ƒ–7��½��Œc��‰–7��T��’c��–7��U��—c��”–7��Ì��œc��š–7��Ð��§c��¥–7��Ñ��±c��®–7��Í��¶c��³–7��Ä��¼c��¹–7��Å��Ác��¿–7��¨��Èc��Å–7��¬��Íc��Ê–7��°��Øc��Õ–7��±��ác��Þ–7��­��æc��ã–7��©��ëc��é–7��Ô��ñc��î–7����ûc��ø–7����d��—7��Õ��
-d��—7��à��d��
—7��á��d��—7��ä��d��—7��è��&d��#—7��é��/d��-—7��å��4d��2—7��ì��:d��7—7��è��Ed��C—7��é��Od��L—7��í��Td��Q—7��ð��Yd��W—7��ô��_d��\—7��ø��fd��c—7��ü��kd��h—7�����qd��n—7����|d��y—7����†d��ƒ—7����‹d��‰—7��ý��d��—7����•d��“—7����›d��˜—7����¥d��£—7����®d��¬—7��
��³d��±—7��	��¸d��µ—7��ù��¾d��»—7��ø��Åd��×7��ü��Êd��È—7�����Ðd��Í—7����Ûd��Ø—7����åd��â—7����êd��ç—7��ý��ïd��ì—7����ôd��ò—7����úd��÷—7����e��˜7����
e��˜7��
��e��˜7��	��e��˜7��ù��e��˜7��ø��#e��!˜7��ü��(e��&˜7�����.e��+˜7����9e��6˜7����Be��@˜7����Ge��E˜7��ý��Le��J˜7����Re��O˜7����We��U˜7����ae��_˜7����je��h˜7��
��oe��m˜7��	��te��r˜7��ù��ye��v˜7��õ��e��|˜7��ñ��„e��˜7����‰e��‡˜7����e��Œ˜7����•e��’˜7��X��œe��™˜7��Y��¡e��ž˜7����¦e��£˜7��8��¬e��©˜7��¬��±e��®˜7��°��»e��¹˜7��±��Äe��˜7��­��Êe��ǘ7��<��Õe��Ò˜7��=��Þe��Û˜7��9��ãe��á˜7����ée��ç˜7��X��ðe��í˜7��Y��ôe��ò˜7����ùe��ö˜7��8��ÿe��ü˜7��¬��f��™7��°��f��™7��±��f��™7��­��f��™7��<��'f��%™7��=��0f��.™7��9��5f��3™7����;f��9™7����Af��>™7����Gf��D™7�� ��Lf��I™7��!��Qf��N™7��$��Wf��T™7��(��^f��[™7��,��cf��`™7��0��nf��l™7��1��xf��u™7��-��}f��z™7��)��‚f��™7��%��†f��„™7��4��Œf��Š™7��5��“f��‘™7����˜f��•™7��@��žf��›™7��A��¢f�� ™7��Ä��§f��¥™7��Å��­f��ª™7��D��²f��°™7����·f��µ™7����Âf��À™7����Ëf��É™7����Ðf��Ι7��H��Öf��Ó™7��L��àf��Þ™7��M��êf��ç™7��Ü��õf��ò™7��Ý��þf��û™7��I��g��š7��(��
-g��š7��,��g��š7��0��g��š7��1��"g�� š7��-��(g��%š7��)��,g��*š7��P��3g��0š7��\��?g��<š7��]��Jg��Hš7��Q��Pg��Mš7��¤��Ug��Rš7��¨��[g��Xš7��¬��`g��^š7��°��kg��hš7��±��tg��qš7��­��yg��vš7��©��~g��|š7��´��„g��š7��µ��‰g��†š7����Žg��‹š7����™g��—š7����¢g�� š7����¨g��¥š7��¸��­g��«š7��¹��²g��°š7��¼��¸g��µš7��À��½g��ºš7��Á��Âg��¿š7��Ä��Çg��Äš7��Å��Ìg��Êš7��½��Òg��Ïš7��T��Øg��Õš7��U��Üg��Úš7��Ì��âg��ßš7��Ð��íg��êš7��Ñ��ög��ôš7��Í��üg��ùš7��Ä��h��ÿš7��Å��h��›7��¨��
h��›7��¬��h��›7��°��h��›7��±��'h��%›7��­��,h��*›7��©��2h��/›7��Ô��7h��5›7����Bh��?›7����Kh��I›7��Õ��Qh��N›7��Ø��Wh��T›7��Ü��ah��_›7��Ý��jh��h›7��Ù��ph��m›7��à��uh��s›7��á��zh��x›7��ä��€h��~›7��è��‹h��‰›7��é��•h��“›7��å��›h��˜›7��ì�� h��›7��è��¬h��©›7��é��¶h��³›7��í��»h��¸›7��ð��Àh��¾›7��ñ��Æh��Û7����Ëh��É›7����Ñh��Λ7����Øh��Õ›7����Þh��Û›7����ãh��á›7�� ��éh��æ›7��!��îh��ë›7��$��óh��ñ›7��(��ûh��ù›7��,��i��ÿ›7��0��
i��œ7��1��i��œ7��-��i��œ7��)��!i��œ7��%��&i��$œ7��4��,i��*œ7��5��4i��1œ7����9i��6œ7��@��>i��<œ7��A��Ci��Aœ7��Ä��Hi��Fœ7��Å��Ni��Kœ7��D��Si��Pœ7����Xi��Vœ7����ci��aœ7����mi��jœ7����ri��oœ7��H��wi��uœ7��L��‚i��€œ7��M��‹i��‰œ7��Ü��—i��”œ7��Ý�� i��œ7��I��¦i��£œ7��(��¬i��©œ7��,��±i��®œ7��0��»i��¹œ7��1��Äi��Âœ7��-��Êi��Çœ7��)��Îi��Ìœ7��P��Õi��Óœ7��Q��Úi��Øœ7��¤��ài��Ýœ7��¨��åi��ãœ7��¬��ëi��èœ7��°��öi��óœ7��±��ÿi��üœ7��­��j��7��©��	j��7��´��j��7��µ��j��7����j��7����$j��!7����-j��+7����2j��07��¸��8j��57��¹��>j��;7��¼��Cj��@7��À��Hj��E7��Á��Mj��J7��Ä��vj��t7��Å��}j��z7��½��„j��7��T��Šj��ˆ7��U��j��Œ7��Ì��”j��’7��Ð��¡j��ž7��Ñ��ªj��¨7��Í��°j��­7��Ä��¶j��³7��Å��»j��¹7��¨��Âj��¿7��¬��Çj��ŝ7��°��Òj��Н7��±��Üj��ٝ7��­��áj��ޝ7��©��æj��ä7��Ô��ìj��é7����öj��ô7�����k��ý7��Õ��k��ž7��Ø��k��ž7��Ü��k��ž7��Ý��k��ž7��Ù��$k��!ž7��à��*k��'ž7��á��/k��,ž7��ä��5k��2ž7��è��@k��=ž7��é��Jk��Hž7��å��Ok��Mž7��ì��Uk��Rž7��è��`k��]ž7��é��jk��gž7��í��ok��lž7��ð��uk��rž7��ñ��zk��wž7����k��}ž7����…k��‚ž7����‹k��‰ž7����‘k��Žž7����—k��”ž7�� ��œk��™ž7��!��¡k��žž7��$��§k��¤ž7��(��¯k��­ž7��,��µk��³ž7��0��Ák��¿ž7��1��Ík��Êž7��-��Òk��Ïž7��)��Ök��Ôž7��%��Ûk��Ùž7��4��âk��ßž7��5��ék��æž7����îk��ëž7��@��ók��ðž7��A��øk��õž7��Ä��ýk��ûž7��Å��l���Ÿ7��D��l��Ÿ7����
l��Ÿ7����l��Ÿ7����"l�� Ÿ7����'l��%Ÿ7��H��-l��*Ÿ7��L��8l��5Ÿ7��M��Al��?Ÿ7��Ü��Ll��JŸ7��Ý��Ul��SŸ7��I��[l��YŸ7��(��al��_Ÿ7��,��gl��dŸ7��0��ql��oŸ7��1��zl��xŸ7��-��€l��}Ÿ7��)��…l��‚Ÿ7��P��‹l��‰Ÿ7��Q��l��ŽŸ7��`��–l��”Ÿ7��¨��œl��šŸ7��¬��¢l��ŸŸ7��°��­l��ªŸ7��±��¶l��´Ÿ7��­��»l��¹Ÿ7��©��Ál��¾Ÿ7��d��Çl��ÄŸ7����Òl��П7����Ûl��ÙŸ7��e��ál��ÞŸ7��h��çl��äŸ7��i��íl��ëŸ7��´��ól��ðŸ7��µ��øl��õŸ7��l���m��ýŸ7��p��m�� 7��q��m�� 7��t��m�� 7��x��m�� 7��|��%m��# 7��}��/m��, 7��y��4m��2 7��€��<m��9 7����Bm��? 7��„��Qm��N 7��…��gm��d 7��ˆ��nm��k 7��L��ym��w 7��M��ƒm�� 7��‰��‰m��† 7��Ø��m��Œ 7��Ü��™m��– 7��Ý��£m��  7��Ù��¨m��¥ 7��Œ��®m��« 7��d��´m��± 7����¿m��¼ 7����Èm��Æ 7��e��Ím��Ë 7����Óm��Р7��ä��Øm��Ö 7��è��ãm��á 7��é��îm��ì 7��å��ôm��ñ 7��ì��úm��÷ 7��è��n��¡7��é��n��
¡7��í��n��¡7����n��¡7��è��%n��#¡7��é��/n��-¡7��‘��4n��2¡7��”��:n��8¡7��è��En��B¡7��é��On��M¡7��•��Un��R¡7��˜��an��^¡7�M ��YÖ�+¢7�M¤��hÖ�9¢7�M$���pÖ�A¢7�M%���uÖ�F¢7�M¥��zÖ�J¢7�M¨��~Ö�O¢7�M¬��‡Ö�X¢7�M­��Ö�_¢7�M°��–Ö�g¢7�M´��œÖ�m¢7�M$���¢Ö�r¢7�M%���¦Ö�w¢7�Mµ��­Ö�~¢7�M±��±Ö�‚¢7�M¸��¹Ö�Š¢7�M¼��¿Ö�¢7�MÀ��ÅÖ�•¢7�MÁ��ÏÖ� ¢7�M½��ÔÖ�¤¢7�MÄ��ÙÖ�ª¢7�MÈ��åÖ�¶¢7�MÉ��ñÖ�Á¢7�MÌ��÷Ö�È¢7�MÐ��ýÖ�΢7�MÔ��×�Ö¢7�MØ��×�Û¢7�MÙ��×�à¢7�MÜ��×�è¢7�MÝ��×�í¢7�Mà��(×�ù¢7�Má��8×�£7�MÕ��>×�£7�MÑ��B×�£7�MÍ��F×�£7�MÅ��J×�£7�M¹��N×�£7�M©��T×�%£7�M¡��Y×�*£7��™��¿n��r£7��ˆ��Én��{£7��L��Øn��Š£7��M��ân��”£7��‰��èn��š£7����în�� £7����ùn��«£7����o��´£7����o��º£7��œ��o��È£7�M ��6Ú�«¦7�M¤��CÚ�·¦7�M$���LÚ�À¦7�M%���QÚ�Ʀ7�M¥��UÚ�ʦ7�M¨��[Ú�Ϧ7�M¬��cÚ�צ7�M­��jÚ�Þ¦7�M°��rÚ�æ¦7�M´��xÚ�í¦7�M$���~Ú�ò¦7�M%���‚Ú�÷¦7�Mµ��‰Ú�ý¦7�M±��Ú�§7�M¸��”Ú�§7�M¼��™Ú�§7�MÀ��ŸÚ�§7�MÁ��©Ú�§7�M½��®Ú�"§7�MÄ��³Ú�(§7�MÈ��¾Ú�3§7�MÉ��ÈÚ�<§7�MÌ��ÏÚ�C§7�MÐ��ÔÚ�H§7�MÔ��ÜÚ�P§7�MØ��áÚ�V§7�MÙ��çÚ�\§7�MÜ��îÚ�b§7�MÝ��òÚ�g§7�MÕ��üÚ�p§7�MÑ���Û�u§7�MÍ��Û�y§7�MÅ��	Û�}§7�M¹��
Û�§7�M©��Û�†§7�M¡��Û�Š§7�Mä��äÜ�Z©7�Mè��ôÜ�h©7�M$���úÜ�n©7�M%���ÿÜ�s©7�Mé��Ý�w©7�M¨��Ý�|©7�M¬��Ý�„©7�M­��Ý�Š©7�M°��Ý�’©7�M´��#Ý�—©7�M$���(Ý�œ©7�M%���,Ý�¡©7�Mµ��3Ý�§©7�M±��7Ý�«©7�M¸��>Ý�²©7�M¼��DÝ�¸©7�MÀ��HÝ�½©7�MÁ��RÝ�Æ©7�M½��VÝ�Ê©7�MÄ��[Ý�Ï©7�MÈ��gÝ�Û©7�MÉ��pÝ�å©7�MÌ��wÝ�ë©7�MÐ��}Ý�ñ©7�MÔ��„Ý�ø©7�MØ��‰Ý�þ©7�MÙ��Ý�ª7�MÜ��–Ý�
-ª7�MÝ��šÝ�ª7�MÕ��¤Ý�ª7�MÑ��©Ý�ª7�MÍ��­Ý�!ª7�MÅ��±Ý�%ª7�M¹��µÝ�*ª7�M©��»Ý�/ª7�Må��ÀÝ�4ª7�M ��$Þ�™ª7�M¤��.Þ�£ª7�M$���5Þ�©ª7�M%���9Þ�®ª7�M¥��=Þ�²ª7�M¨��BÞ�¶ª7�M¬��HÞ�½ª7�M­��NÞ�ê7�M°��UÞ�ɪ7�M´��ZÞ�Ϊ7�M$���`Þ�Ôª7�M%���dÞ�ت7�Mµ��iÞ�Þª7�M±��mÞ�âª7�M¸��tÞ�èª7�M¼��yÞ�îª7�MÀ��~Þ�òª7�MÁ��†Þ�ûª7�M½��‹Þ�ÿª7�MÄ��Þ�«7�MÈ��šÞ�«7�MÉ��¢Þ�«7�MÌ��¨Þ�«7�MÐ��®Þ�#«7�MÔ��µÞ�)«7�MØ��ºÞ�/«7�MÙ��ÀÞ�5«7�MÜ��ÇÞ�;«7�MÝ��ÌÞ�@«7�MÕ��ÕÞ�J«7�MÑ��ÙÞ�N«7�MÍ��ÞÞ�R«7�MÅ��âÞ�V«7�M¹��æÞ�Z«7�M©��ëÞ�`«7�M¡��ðÞ�e«7����mo��—¬7��u��wo��¡¬7��ì��ƒo��¬¬7����Žo��·¬7����žo��Ȭ7����©o��Ò¬7����¯o��ج7��ð��·o��à¬7��ô��Ào��é¬7��ø��Èo��ò¬7��ù��Òo��û¬7��õ��Øo��­7��ñ��Þo��­7��ü��æo��­7�����öo��­7����p��<­7��ý��p��B­7��ˆ��#p��L­7��L��.p��X­7��M��9p��b­7��‰��>p��g­7��ä��Fp��o­7��è��Sp��|­7��é��^p��ˆ­7��å��dp��­7��ì��jp��“­7��è��vp�� ­7��é��€p��©­7��í��†p��¯­7����’p��»­7����™p��í7��	��¦p��Ï­7����«p��Ô­7����µp��Þ­7��À��»p��ä­7��Á��Åp��î­7��Ä��Ëp��ô­7��È��Ùp��®7��É��æp��®7��Ì��íp��®7��Ð��ôp��®7��Ô��üp��%®7��Ø��q��*®7��Ù��q��D®7��Ü��"q��L®7��Ý��(q��Q®7��Õ��3q��\®7��Ñ��7q��a®7��Í��<q��e®7��Å��Aq��j®7��
��Fq��o®7����Nq��x®7����Vq��®7����\q��…®7����dq��®7����jq��“®7��„���pq��™®7��ˆ���yq��¢®7��Œ���q��ª®7�����ˆq��±®7��‘���Žq��·®7��”���”q��½®7��˜���§q��Ю7��™���´q��Ý®7��•���ºq��ã®7�����¿q��è®7��‰���Äq��í®7��…���Èq��ò®7����Öq��ÿ®7����êq��¯7����ðq��¯7�� ��üq��%¯7��$��r��-¯7��%��r��8¯7��!��r��=¯7��(��r��C¯7��,��'r��P¯7��-��2r��[¯7��)��:r��c¯7��0��Br��k¯7��À��Gr��p¯7��Á��Or��x¯7��Ì��Ur��~¯7��Ð��[r��„¯7��Ô��br��‹¯7��Ø��gr��¯7��Ù��mr��–¯7��Ü��sr��œ¯7��Ý��xr��¡¯7��Õ��ƒr��¬¯7��Ñ��ˆr��±¯7��Í��r��¶¯7��1��‘r��º¯7��(��—r��À¯7��,��¤r��ͯ7��-��®r��ׯ7��)��´r��ݯ7��0��»r��ä¯7��À��Àr��é¯7��Á��Èr��ñ¯7��Ì��Ír��ö¯7��Ð��Ór��ü¯7��Ô��Ùr��°7��Ø��ßr��°7��Ù��är��
°7��Ü��êr��°7��Ý��ïr��°7��Õ��úr��#°7��Ñ��þr��'°7��Í��s��,°7��1��s��1°7��4��s��9°7��5��s��>°7��í��s��E°7��m��"s��K°7��a��)s��R°7��P��0s��Y°7��Q��6s��_°7��E��;s��d°7��(��As��j°7��,��Ms��v°7��-��Ws��€°7��)��]s��†°7��8��es��Ž°7��è��rs��›°7��é��|s��¥°7��9��s��ª°7��<��‡s��°°7��è��’s��»°7��é��›s��Ä°7��=�� s��É°7��@��§s��а7��D��¬s��Õ°7��E��µs��Þ°7��A��»s��ä°7��¥��Ãs��ì°7��P��És��ò°7��Q��Îs��÷°7��E��Ós��ü°7��(��Øs��±7��,��äs��
±7��-��ís��±7��)��ôs��±7��8��ús��#±7��è��t��/±7��é��t��9±7��9��t��>±7��<��t��D±7��è��&t��O±7��é��/t��Y±7��=��5t��^±7��@��:t��c±7��D��?t��i±7��E��Gt��q±7��A��Mt��v±7��¥��Ut��~±7��P��Zt��ƒ±7��\��ht��‘±7��]��tt��±7��Q��yt��¢±7��E��~t��§±7��(��„t��­±7��,��Žt��·±7��-��—t��Á±7��)��žt��DZ7��8��¤t��α7��è��°t��Ù±7��é��¹t��ã±7��9��¿t��è±7��<��Åt��î±7��è��Ït��ø±7��é��Ùt��²7��=��Þt��²7��@��ät��
²7��D��ét��²7��E��ñt��²7��A��÷t�� ²7��¥��þt��(²7��P��u��.²7��Q��
-u��3²7��E��u��7²7��(��u��=²7��,��u��H²7��-��(u��Q²7��)��.u��W²7��8��5u��_²7��è��@u��i²7��é��Ju��s²7��9��Ou��x²7��<��Uu��~²7��è��`u��‰²7��é��iu��’²7��=��nu��—²7��@��tu��²7��D��yu��¢²7��E��u��ª²7��A��†u��¯²7��¥��Žu��·²7��¡��“u��¼²7����™u��²7��i��Ÿu��ɲ7��e��¥u��ϲ7��Y��«u��Ô²7��U��±u��Ú²7��Q��ºu��ã²7��I��Áu��ê²7��0��Èu��ñ²7��H��Îu��ø²7��4��Öu��ÿ²7��L��Üu��³7��8��âu��³7�����éu��³7��4��ïu��³7��P��ôu��³7��ø���üu��%³7��ü���v��2³7��ý���v��;³7��ù���v��A³7��8��v��G³7��T��%v��N³7��X��+v��T³7�� ���3v��\³7��¡���9v��b³7��\��@v��i³7��È���Ev��n³7��É���Mv��v³7��]��Qv��z³7��`��Yv��‚³7�� ���`v��‰³7��¡���ev��Ž³7��d��kv��”³7��¨���sv��œ³7��©���yv��¢³7��e��~v��§³7��h��„v��­³7��i��‰v��²³7��l��v��¸³7��°���—v��À³7��±���v��Ƴ7��°���£v��̳7��±���¨v��Ò³7��m��®v��׳7��p��½v��æ³7��q��w��´7��t��w��š´7����w��¡´7����w��§´7����"w��­´7����+w��¶´7��u��0w��»´7��a��4w��¿´7��x��<w��Æ´7��y��Ew��д7��Y��Jw��Õ´7��U��Ow��Ù´7��9��Sw��Þ´7��Q��Yw��ã´7��5��^w��é´7����cw��î´7��9��hw��ò´7��M��lw��÷´7��5��qw��ü´7��I��vw��µ7��1��|w��µ7����€w��µ7��9��†w��µ7��5��‹w��µ7��E��w��µ7��1��–w��!µ7��A��œw��'µ7����¡w��,µ7��9��§w��1µ7��5��¬w��7µ7��1��±w��<µ7����¶w��Aµ7��å���¼w��Fµ7��Í���Ãw��Nµ7��¹���Èw��Sµ7��µ���Îw��Yµ7�����Ôw��_µ7��}��õw��€µ7��È��x��µ7��É��x��›µ7��Ü��x��¥µ7��Ý��x��ªµ7����&x��°µ7��„��.x��¹µ7��ˆ��4x��¿µ7��Œ��=x��ȵ7����Dx��ϵ7��‘��Jx��Ôµ7��”��Rx��ݵ7��•��Zx��äµ7����^x��éµ7��‰��cx��îµ7��…��gx��òµ7��˜��tx��ÿµ7��™��€x��¶7��œ��ˆx��¶7����”x��¶7��€��šx��%¶7��|��¥x��0¶7��}��½x��H¶7��È��Èx��S¶7��É��Ñx��\¶7��Ü��Ûx��e¶7��Ý��àx��k¶7����åx��p¶7��„��ëx��v¶7��ˆ��ñx��{¶7��Œ��÷x��‚¶7����üx��‡¶7��‘��y��Œ¶7��”��y��“¶7��•��y��™¶7����y��ž¶7��‰��y��¢¶7��…��y��§¶7��˜��%y��°¶7��™��.y��¹¶7��œ��5y��¿¶7����>y��ɶ7��€��Dy��϶7��|��Ny��Ù¶7��}��[y��ç¶7��È��fy��ñ¶7��É��oy��ú¶7��Ü��yy��·7��Ý��~y��	·7����ƒy��·7��„��‰y��·7��ˆ��y��·7�� ��•y�� ·7����›y��&·7��‘�� y��+·7����¥y��0·7��‘��ªy��4·7��¤��°y��:·7��¨��¸y��C·7��©��¾y��I·7��¬��Êy��T·7��°��íy��x·7��$���ôy��·7��%���ùy��ƒ·7��´��þy��‰·7��¸��z��·7��x��z��ž·7��y��!z��¬·7��¼��(z��³·7��½��.z��¹·7��À��4z��¿·7��Á��:z��Å·7��Ä��@z��Ë·7��Å��Ez��з7��¹��Kz��Ö·7��µ��Qz��Ü·7��±��Yz��ã·7��­��]z��è·7��È��dz��ï·7��Ì��kz��ö·7��$���pz��û·7��%���uz��ÿ·7��Í��{z��¸7��É��z��
-¸7��Ð��‡z��¸7��Ô��Žz��¸7��Ø��”z��¸7��Ù��šz��%¸7��Õ�� z��*¸7��¨��¨z��2¸7��©��®z��9¸7��Ñ��³z��>¸7��¥��¸z��C¸7��¡��½z��G¸7��‰��Áz��L¸7��…��Æz��Q¸7��˜��Ñz��\¸7��™��Ûz��f¸7��œ��áz��l¸7����ìz��w¸7��€��ñz��|¸7��|��ýz��‡¸7��}��{��•¸7��È��{��¡¸7��É��{��ª¸7��Ü��({��³¸7��Ý��-{��¸¸7����2{��½¸7��„��9{��ĸ7��ˆ��?{��ʸ7��Œ��D{��ϸ7����J{��Õ¸7��‘��O{��Ú¸7��”��V{��á¸7��•��]{��ç¸7����a{��ì¸7��‰��f{��ð¸7��…��j{��õ¸7��˜��s{��þ¸7��™��|{��¹7��œ��ƒ{��¹7����Œ{��¹7��€��’{��¹7��|��œ{��'¹7��}��¨{��3¹7��È��²{��<¹7��É��»{��E¹7��Ü��Ä{��O¹7��Ý��É{��T¹7��à��Ò{��]¹7��á��Ø{��c¹7��ä��ä{��o¹7��å��ð{��{¹7��|��ú{��…¹7��}��H|��9��È��n|��=9��É��~|��L9��Ü��—|��e9��Ý��¡|��o9����©|��w9��„��¶|��„9����À|��Ž9��$��Í|��›9��%��Ú|��¨9����â|��°9����é|��·9��(��ó|��Á9��)��û|��É9����}��Ð9��…��}��Ö9��˜��}��ç9��™��'}��õ9��œ��0}��þ9����C}��9��€��K}��9��|��Y}��'9��}��k}��99��È��x}��F9��É��„}��R9��Ü��‘}��_9��Ý��˜}��e9��à��£}��q9��á��ª}��x9��ä��¸}��†9��å��Å}��“9��|��Ï}��9����4F��d:9����HF��v:9����UF��ƒ:9� ���^F��Œ:9�$���gF��•:9�%���nF��œ:9�!���tF��¢:9����{F��©:9����€F��®:9�(���‰F��·:9�,���F��¾:9�0���—F��Å:9�1���F��Ë:9�4���£F��Ñ:9�5���¬F��Ú:9�-���±F��ß:9�8���¼F��ê:9�9���ÃF��ñ:9�)���ÈF��ö:9�<���ÓF��;9�$���ÙF��;9�%���ÞF��;9�=���äF��;9�L���ëF��;9�P���ôF��";9�T���úF��(;9�X���G��/;9�\���	G��7;9�]���G��>;9�`���G��F;9�d���G��L;9�h���%G��S;9�l���+G��Y;9�$���1G��_;9�%���5G��c;9�m���=G��k;9�i���CG��q;9�e���JG��x;9�a���NG��|;9�Y���SG��;9�p���YG��‡;9�q���^G��Œ;9�U���bG��;9�t���iG��—;9�u���pG��ž;9�x���G��­;9�y���‘M��ÀA9�Q���œM��ÊA9�M���¡M��ÏA9����§M��ÕA9��|���w~��¿9��€���´~��ù9�����Ó~��Ž9��}���ã~��&Ž9��„�����¢9��ˆ���3��¼9��Œ���>��ȏ9�����F��Ϗ9��‘���N��׏9��”���U��ޏ9��˜���s��ü9��™���€��
-9��•���‡��9�����Œ��9��‰���“��9��…���˜��!9��œ���¾��G9�� ���Ç��P9��¡���Í��V9��¤���Ô��]9��¨���Ü��e9��©���â��k9��¬���€��ݐ9��°���€��é9��±���€��ñ9��­���€��÷9��¬���&€��þ9��°���-€��‘9��±���3€��
-‘9��­���7€��‘9��¥���>€��‘9��´���E€��‘9��¸���b€��¨‘9��¼���l€��±‘9��½���t€��¸‘9��À���z€��¿‘9��Á���„€��È‘9��Ä���Ž€��Ó‘9��È���•€��Ù‘9��É���€��â‘9��Å���£€��ç‘9��Ì���¨€��í‘9��Ä���±€��õ‘9��È���É€��B’9��É���Ñ€��J’9��Å���Ö€��O’9��Ð���Þ€��V’9��Ô���ò€��k’9��Õ���þ€��w’9��Ñ�����}’9��Ø�����…’9��Ü�����‘’9��Ý���#��œ’9��Ù���(��¡’9��à���1��©’9��á���9��²’9��ä���?��¸’9�� ���G��À’9��¡���M��Æ’9��è���S��Ì’9��È���Y��Ñ’9��É���_��Ø’9��é���d��Ü’9��ì���m��å’9��í���r��ë’9��ð���x��ñ’9��ô���€��ù’9��ø���†��ÿ’9��ü���”��“9��ý�����“9��ù���£��“9��õ���©��!“9��ñ���­��&“9�����µ��.“9����»��4“9����Ł��>“9����́��D“9��ø���Ӂ��K“9��ü���݁��V“9��ý���æ��_“9��ù���ì��d“9����ò��j“9����ú��r“9����‚��}“9����‚��‡“9����‚��Œ“9����‚��““9�� ��&‚��Ÿ“9��!��1‚��ª“9����7‚��¯“9��$��=‚��¶“9��(��I‚��“9��)��T‚��Í“9��%��Z‚��Ò“9��,��a‚��Ú“9��(��l‚��å“9��)��v‚��î“9��-��{‚��ô“9��
��€‚��ù“9��	��…‚��ý“9��0��Š‚��”9��4��‘‚��
-”9��8��—‚��”9�����‚��”9����¤‚��”9����«‚��$”9��<��±‚��*”9��=��·‚��0”9��@��½‚��6”9��0��Â��<”9��D��É‚��B”9��4��Ђ��I”9��8��Ö‚��N”9�����Ü‚��U”9����â‚��[”9����ê‚��b”9��H��ð‚��i”9��L��÷‚��p”9��M��ý‚��u”9��ø���ƒ��{”9��ü���ƒ��†”9��ý���ƒ��”9��ù���ƒ��•”9��P��"ƒ��š”9��T��,ƒ��¥”9����2ƒ��ª”9�� ��=ƒ��µ”9��!��Fƒ��¿”9����Lƒ��Å”9��X��Rƒ��Ë”9��\��Zƒ��Ó”9��]��_ƒ��Ø”9��`��eƒ��Þ”9��a��kƒ��ã”9��d��uƒ��î”9��h��~ƒ��÷”9����„ƒ��ý”9����ƒ��•9����™ƒ��•9����žƒ��•9��˜��¥ƒ��•9��™��«ƒ��#•9��œ��²ƒ��*•9�� ��¸ƒ��1•9��¤��Àƒ��8•9��¨��ƃ��?•9��¬��̃��E•9��°��؃��Q•9��±��âƒ��[•9��­��èƒ��a•9��©��íƒ��f•9��´��ôƒ��m•9��µ��úƒ��s•9�����„��x•9����
-„��ƒ•9����„��Œ•9����„��‘•9��È��!„��š•9����(„��¡•9����3„��¬•9����<„��µ•9����A„��º•9��É��F„��¿•9��Ì��L„��Å•9��Ð��X„��Е9��Ñ��a„��Ú•9��Í��f„��ß•9��8��m„��å•9��¬��r„��ë•9��°��}„��ö•9��±��†„��ÿ•9��­��‹„��–9��<��—„��–9��=��¡„��–9��9��§„��–9��Ä��­„��&–9��Å��³„��,–9��¨��»„��3–9��¬��À„��9–9��°��Ë„��D–9��±��Ô„��M–9��­��Ú„��R–9��©��ß„��W–9��Ä��è„��a–9��Å��î„��g–9��D��õ„��n–9����û„��t–9����…��–9����…��ˆ–9����…��–9��H��…��”–9��L��'…��Ÿ–9��M��0…��©–9��Ü��=…��¶–9��Ý��H…��Á–9��I��O…��È–9��(��V…��Ï–9��,��^…��×–9��0��…��f˜9��1��»…��‘˜9��-��Æ…��á˜9��)��Ì…��ç˜9��P��Ù…��ó˜9��Q��à…��û˜9��¤��æ…��™9��¨��î…��™9��¬��ô…��™9��°��†��š9��±��C†��,š9��­��J†��2š9��©��P†��9š9��´��X†��Aš9��µ��_†��Gš9����e†��Nš9����s†��\š9����}†��fš9����‚†��kš9��T��Œ†��uš9��U��‘†��yš9��Ì��—†��€š9��Ð��¤†��š9��Ñ��®†��—š9��Í��³†��œš9��8��º†��£š9��¬��À†��¨š9��°��ˆ��³š9��±��Ô†��¼š9��­��Ù†��š9��<��å†��Κ9��=��î†��ך9��9��ó†��Üš9��Ä��ù†��âš9��Å��ÿ†��çš9��¨��‡��îš9��¬��‡��ôš9��°��‡��þš9��±��‡��›9��­��$‡��
›9��©��)‡��›9��Ä��2‡��›9��Å��7‡�� ›9��D��>‡��&›9����D‡��-›9����O‡��7›9����X‡��@›9����]‡��E›9��H��c‡��L›9��L��n‡��V›9��M��x‡��a›9��Ü��„‡��l›9��Ý��‡��v›9��I��”‡��|›9��(��›‡��„›9��,��¡‡��Š›9��0��­‡��–›9��1��¹‡��¡›9��-��¾‡��¦›9��)��Ç��«›9��P��ʇ��³›9��\��Ö‡��¿›9��]��â‡��Ê›9��Q��ç‡��Л9��¤��í‡��Ö›9��¨��ô‡��Ü›9��¬��ù‡��á›9��°��ˆ��ì›9��±��
ˆ��õ›9��­��ˆ��û›9��©��ˆ���œ9��´��ˆ��œ9��µ��"ˆ��
-œ9����'ˆ��œ9����2ˆ��œ9����;ˆ��$œ9����@ˆ��)œ9��T��Hˆ��1œ9��U��Mˆ��6œ9��Ì��Rˆ��;œ9��Ð��^ˆ��Gœ9��Ñ��gˆ��Pœ9��Í��mˆ��Uœ9��8��sˆ��[œ9��¬��xˆ��`œ9��°��ƒˆ��kœ9��±��Œˆ��uœ9��­��‘ˆ��zœ9��<��œˆ��…œ9��=��¦ˆ��œ9��9��«ˆ��”œ9��Ä��°ˆ��™œ9��Å��¶ˆ��žœ9��¨��½ˆ��¦œ9��¬��È��«œ9��°��͈��¶œ9��±��Öˆ��¿œ9��­��܈��Äœ9��©��áˆ��Éœ9��Ä��éˆ��Ñœ9��Å��ïˆ��Øœ9��D��öˆ��Þœ9����ûˆ��ãœ9����‰��îœ9����‰��øœ9����‰��ýœ9��H��‰��9��L��$‰��
9��M��.‰��9��Ü��9‰��"9��Ý��C‰��+9��I��H‰��19��(��O‰��89��,��U‰��>9��0��`‰��I9��1��j‰��S9��-��o‰��X9��)��t‰��]9��P��{‰��d9��Q��€‰��i9��¤��†‰��n9��¨��‹‰��t9��¬��‘‰��y9��°��œ‰��„9��±��¥‰��Ž9��­��ª‰��“9��©��¯‰��˜9��´��µ‰��9��µ��º‰��£9����¿‰��¨9����ʉ��²9����Ó‰��¼9����؉��Á9��T��à‰��ɝ9��U��å‰��Ν9��Ì��ê‰��ӝ9��Ð��õ‰��ޝ9��Ñ��þ‰��ç9��Í��Š��ì9��8��
-Š��ò9��¬��Š��ø9��°��Š��ž9��±��#Š��ž9��­��(Š��ž9��<��4Š��ž9��=��=Š��&ž9��9��BŠ��+ž9��Ä��HŠ��0ž9��Å��MŠ��6ž9��¨��TŠ��<ž9��¬��YŠ��Bž9��°��dŠ��Mž9��±��mŠ��Vž9��­��rŠ��[ž9��©��wŠ��`ž9��Ä��Š��hž9��Å��…Š��mž9��D��‹Š��tž9����Š��yž9����›Š��„ž9����¤Š��ž9����ªŠ��’ž9��H��¯Š��˜ž9��L��ºŠ��£ž9��M��Ê��¬ž9��Ü��ÏŠ��·ž9��Ý��ØŠ��Áž9��I��ÞŠ��Çž9��(��åŠ��Íž9��,��êŠ��Óž9��0��õŠ��Þž9��1��ÿŠ��èž9��-��‹��íž9��)��
-‹��òž9��P��‹��ùž9��Q��‹��þž9��`��‹��Ÿ9��¨��"‹��
-Ÿ9��¬��'‹��Ÿ9��°��3‹��Ÿ9��±��<‹��%Ÿ9��­��A‹��*Ÿ9��©��F‹��/Ÿ9��d��M‹��6Ÿ9����X‹��AŸ9����b‹��JŸ9��e��g‹��PŸ9��´��m‹��UŸ9��µ��r‹��ZŸ9��l��z‹��bŸ9��p��€‹��hŸ9��q��…‹��mŸ9��t��Œ‹��tŸ9��x��“‹��|Ÿ9��|��Ÿ‹��ˆŸ9��}��©‹��’Ÿ9��y��¯‹��—Ÿ9��€��¶‹��ŸŸ9����½‹��¥Ÿ9��„��Ì‹��´Ÿ9��…��á‹��ÉŸ9��ˆ��è‹��П9��L��ô‹��ÝŸ9��M��þ‹��æŸ9��‰��Œ��ëŸ9��Ø��	Œ��ñŸ9��Ü��Œ��üŸ9��Ý��Œ�� 9��Ù��"Œ��
- 9��Œ��(Œ�� 9��d��.Œ�� 9����8Œ��! 9����BŒ��* 9��e��GŒ��0 9����MŒ��6 9��ä��SŒ��; 9��è��_Œ��H 9��é��lŒ��U 9��å��qŒ��Z 9��ì��xŒ��a 9��è��„Œ��m 9��é��ŽŒ��v 9��í��“Œ��| 9����™Œ��‚ 9��è��¤Œ�� 9��é��®Œ��— 9��‘��³Œ��œ 9��”��¹Œ��¢ 9��è��ÄŒ��­ 9��é��ÎŒ��· 9��•��ÓŒ��¼ 9��˜��ߌ��È 9��™��ðŒ��Ù 9��ˆ��öŒ��ß 9��L����ë 9��M����õ 9��‰����ú 9�������¡9����!��
-¡9����+��¡9����0��¡9��œ��<��$¡9����¶��Ù¨9��u��ō��ç¨9��ì��Ӎ��ô¨9����à��©9����ô��©9����ÿ��!©9����Ž��i¬9��ü��8Ž��‹¬9�����WŽ��ª¬9����uŽ��Ȭ9��ý��}Ž��Ь9��ˆ��ŠŽ��ݬ9��L��´Ž��q®9��M��ÊŽ��†®9��‰��ÒŽ��Ž®9��ä��ÞŽ��š®9��è��ïŽ��¬®9��é��ýŽ��¹®9��å����¿®9��ì��	��Å®9��è����Ò®9��é��!��Ý®9��í��&��â®9����3��ï®9��„���9��õ®9��ˆ���G��¯9��Œ���O��¯9�����U��¯9��‘���\��¯9��”���a��¯9��˜���s��/¯9��™�����;¯9��•���„��@¯9�����‰��E¯9��‰���Ž��J¯9��…���“��O¯9����¡��]¯9����º��v¯9����Á��}¯9��è��͏��‰¯9��é��ӏ��¯9����ۏ��—¯9����â��ž¯9����ç��£¯9����ð��¬¯9��ì��÷��³¯9��ð��ý��¹¯9��ô����ǯ9��õ����Ó¯9��ñ����Ù¯9��ø��$��à¯9��ü��,��è¯9�����1��í¯9����7��ó¯9��ý��@��ü¯9��ù��E��°9��í��J��°9�� ��T��°9��$��\��°9��%��g��#°9��!��l��(°9�� ��r��.°9��$��w��3°9��œ����;°9����‹��G°9��%��’��N°9��!��—��S°9��í��œ��X°9��m��£��_°9��h��¬��h°9��i��²��n°9��a��·��s°9��P��¾��z°9��Q��Ő��€°9��E��ʐ��†°9��¼��Ґ��Ž°9��À��ؐ��”°9����à��œ°9����è��¤°9��Á��í��©°9��Ä��ò��®°9��Å��ø��´°9��½��þ��º°9��¥��‘��¿°9��P��	‘��Å°9��Q��‘��Ê°9��E��‘��Ï°9��¼��‘��Ö°9��À��‘��Û°9����%‘��á°9����,‘��è°9��Á��1‘��í°9��Ä��6‘��ò°9��Å��;‘��÷°9��½��A‘��ý°9��¥��F‘��±9��P��K‘��±9��\��\‘��±9��]��h‘��%±9��Q��n‘��*±9��E��s‘��/±9��¼��z‘��6±9��À��‘��;±9����…‘��A±9����‘��I±9��Á��’‘��N±9��Ä��—‘��S±9��Å��œ‘��X±9��½��¢‘��^±9��¥��§‘��b±9��P��¬‘��h±9��Q��²‘��n±9��E��·‘��s±9��¼��½‘��x±9��À��‘��~±9����È‘��„±9����Ï‘��‹±9��Á��Ô‘��±9��Ä��Ù‘��•±9��Å��Þ‘��š±9��½��ä‘�� ±9��¥��é‘��¥±9��¡��ï‘��«±9����õ‘��±±9��i��ü‘��¸±9��e��’��¾±9��Y��’��ı9��U��
’��ɱ9��Q��’��Ò±9��I��’��Ù±9��0��$’��à±9��H��*’��æ±9��4��2’��î±9��L��8’��ô±9��8��>’��ú±9�����E’��²9��4��L’��²9��P��Q’��
²9��ø���Z’��²9��ü���k’��'²9��ý���v’��2²9��ù���{’��7²9��8��ƒ’��?²9��T��Š’��E²9��X��’��K²9�� ���˜’��T²9��¡���ž’��Y²9��\��¤’��`²9��È���ª’��f²9��É���²’��n²9��]��·’��s²9��`��¿’��{²9�� ���Æ’��‚²9��¡���Ê’��†²9��d��Ñ’��Œ²9��¨���×’��“²9��©���ß’��›²9��e��ã’��Ÿ²9��h��ê’��¦²9��i��ï’��«²9��l��õ’��±²9��°���ü’��¸²9��±���“��¾²9��°���	“��IJ9��±���“��ʲ9��m��“��ϲ9��p��$“��à²9��q��a“��³9��t��k“��T³9���� “��\³9����¦“��b³9����­“��i³9����·“��s³9��u��¼“��x³9��a��Á“��}³9��x��È“��ƒ³9��y��Ñ“��Œ³9��Y��Ö“��‘³9��U��Ú“��–³9��9��ß“��›³9��Q��å“��¡³9��5��ê“��¦³9����ï“��«³9��9��ô“��¯³9��M��ø“��´³9��5��ý“��¹³9��I��”��¾³9��1��”��ij9����
”��ɳ9��9��”��γ9��5��”��Ó³9��E��”��Ù³9��1��#”��ß³9��A��(”��ä³9����-”��é³9��9��2”��î³9��5��7”��ó³9��1��=”��ù³9����B”��þ³9��å���G”��´9��Í���N”��
-´9��¹���U”��´9��µ���Z”��´9�����`”��´9��}��„”��@´9��È��•”��Q´9��É�� ”��\´9��Ü��¬”��h´9��Ý��±”��m´9��ä��Á”��}´9��å��Ì”��ˆ´9��|��Ö”��’´9��}��K•��ëA<��È��m•��B<��É��|•��B<��Ü��’•��0B<��Ý��š•��8B<����¡•��?B<��„��¬•��JB<����´•��RB<����¾•��[B<����Ä•��bB<����Ê•��hB<����Е��nB<����Ö•��sB<����Ú•��xB<����à•��}B<����å•��ƒB<�� ��í•��ŠB<��!��ñ•��B<����ö•��”B<��…��û•��˜B<��˜��–��¦B<��™��–��³B<��œ��–��ºB<����,–��ÉB<��€��1–��ÏB<��|��=–��ÛB<��}��Q–��ïB<��È��\–��úB<��É��e–��C<��Ü��p–��
C<��Ý��u–��C<��à��}–��C<��á��ƒ–��!C<��ä��Ž–��,C<��å��™–��7C<��|��¡–��?C<����AN��ÄÛ@����WN��ØÛ@����cN��åÛ@� ���kN��ìÛ@�$���sN��ôÛ@�%���zN��ûÛ@�!���€N��Ü@����‡N��Ü@����N��Ü@�(���•N��Ü@�,���œN��Ü@�0���£N��$Ü@�1���©N��*Ü@�4���¯N��0Ü@�5���¸N��9Ü@�-���¾N��?Ü@�8���ÉN��KÜ@�9���ÑN��RÜ@�)���ÖN��WÜ@�<���âN��cÜ@�$���èN��iÜ@�%���íN��nÜ@�=���ôN��uÜ@�L���ûN��|Ü@�P���O��…Ü@�T���	O��ŠÜ@�X���O��‘Ü@�\���O��—Ü@�]���O��Ü@�`���#O��¤Ü@�d���(O��©Ü@�h���.O��®Ü@�l���2O��³Ü@�$���7O��¸Ü@�%���:O��»Ü@�m���@O��ÁÜ@�i���FO��ÆÜ@�e���KO��ÌÜ@�a���NO��ÏÜ@�Y���RO��ÓÜ@�p���WO��ØÜ@�q���[O��ÜÜ@�U���_O��àÜ@�t���dO��åÜ@�u���jO��ëÜ@�x���yO��úÜ@�y���‡T��
-â@�Q���–T��â@�M���œT��â@����¡T��"â@����7U��x{H����NU��Ž{H����ZU��š{H� ���bU��¡{H�$���iU��¨{H�%���pU��¯{H�!���uU��´{H����zU��¹{H����U��¾{H�(���‡U��Æ{H�,���ŽU��Í{H�0���”U��Ó{H�1���™U��Ø{H�4���žU��Ý{H�5���¦U��å{H�-���ªU��é{H�8���´U��ó{H�9���ºU��ù{H�)���¿U��þ{H�<���ÉU��|H�$���ÍU��
|H�%���ÑU��|H�=���×U��|H�L���ÝU��|H�P���äU��#|H�T���êU��)|H�X���ðU��/|H�\���÷U��6|H�]���V��O|H�`���V��V|H�d���V��\|H�h���"V��a|H�l���(V��g|H�$���,V��l|H�%���1V��p|H�m���7V��v|H�i���=V��||H�e���BV��|H�a���EV��„|H�Y���JV��‰|H�p���OV��Ž|H�q���SV��’|H�U���WV��–|H�t���\V��›|H�u���cV��¢|H�x���rV��±|H�y���x[��¸H�Q���‚[��H�M���‡[��ƁH����Œ[��ˁH����D\��' P����b\��C P����q\��R P� ���|\��] P�$���‡\��h P�%���\��q P�!���—\��x P���� \��€ P����§\��‡ P�(���±\��’ P�,���º\��› P�0���Â\��£ P�1���Ê\��« P�4���Ñ\��² P�5���Ý\��¾ P�-���â\��Ä P�8���ñ\��Ñ P�9���ù\��Ú P�)���ÿ\��à P�<���]��í P�$���]��ô P�%���]��ú P�=���!]��!P�L���*]��
-!P�P���4]��!P�T���:]��!P�X���C]��$!P�\���K]��,!P�]���T]��5!P�`���]]��>!P�d���e]��E!P�h���m]��²!P�l���é]��Ê!P�$���ð]��Ñ!P�%���÷]��×!P�m����^��á!P�i���^��é!P�e���^��ò!P�a���^��ø!P�Y���^��ÿ!P�p���'^��"P�q���/^��"P�U���4^��"P�t���<^��"P�u���H^��)"P�x���n^��O"P�y���¹e��›)P�Q���Èe��©)P�M���Îe��¯)P����Õe��¶)P����f��»ÀW����­f��ÖÀW����½f��æÀW� ���Çf��ðÀW�$���Ñf��úÀW�%���Ûf��ÁW�!���âf��ÁW����éf��ÁW����ïf��ÁW�(���ùf��"ÁW�,���g��*ÁW�0���	g��2ÁW�1���g��9ÁW�4���g��@ÁW�5���"g��KÁW�-���'g��PÁW�8���4g��]ÁW�9���<g��eÁW�)���Cg��lÁW�<���Og��xÁW�$���Wg��€ÁW�%���\g��…ÁW�=���dg��ÁW�L���lg��•ÁW�P���vg��ŸÁW�T���}g��¦ÁW�X���†g��¯ÁW�\���Žg��·ÁW�]���—g��ÀÁW�`��� g��ÉÁW�d���§g��ÑÁW�h���¯g��ØÁW�l���¶g��àÁW�$���¾g��çÁW�%���Ãg��ìÁW�m���Ëg��ôÁW�i���Óg��üÁW�e���Úg��ÂW�a���ßg��ÂW�Y���åg��ÂW�p���íg��ÂW�q���óg��ÂW�U���øg��!ÂW�t����h��)ÂW�u���	h��2ÂW�x���h��FÂW�y���–o��ÀÉW�Q���¥o��ÎÉW�M���¬o��ÕÉW����³o��ÜÉW����Qp���`_����ip��`_����wp��$`_� ���€p��-`_�$���‰p��6`_�%���‘p��>`_�!���—p��D`_����žp��K`_����¤p��Q`_�(���­p��Z`_�,���µp��b`_�0���½p��j`_�1���Äp��q`_�4���Ëp��x`_�5���Öp��ƒ`_�-���Üp��‰`_�8���èp��•`_�9���ðp��`_�)���öp��£`_�<���q��°`_�$���	q��¶`_�%���q��¼`_�=���q��Ä`_�L���q��Ì`_�P���)q��Ö`_�T���/q��Ü`_�X���7q��ä`_�\���>q��ë`_�]���Gq��ô`_�`���Oq��ü`_�d���Vq��a_�h���]q��
-a_�l���dq��a_�$���kq��a_�%���pq��a_�m���xq��%a_�i���~q��+a_�e���…q��2a_�a���Šq��6a_�Y���q��<a_�p���–q��Ca_�q���œq��Ia_�U��� q��Ma_�t���§q��Ta_�u���¯q��\a_�x���Àq��ma_�y���Tw��g_�Q���`w��
g_�M���ew��g_����kw��g_����x��
Uf����6x��&Uf����Fx��5Uf� ���Px��?Uf�$���[x��JUf�%���ex��TUf�!���mx��\Uf����ux��dUf����|x��kUf�(���†x��uUf�,���x��~Uf�0���˜x��†Uf�1���Ÿx��ŽUf�4���§x��–Uf�5���²x��¡Uf�-���¸x��§Uf�8���Æx��µUf�9���Îx��½Uf�)���Öx��ÄUf�<���ãx��ÒUf�$���ëx��ÙUf�%���ðx��ßUf�=���øx��çUf����y��ðUf�,��y��ýUf�0��y��
-Vf�4��1y�� Vf�
\ No newline at end of file
diff --git a/android/google-services.json b/android/google-services.json
deleted file mode 100755
index 48c4cab344a6efdb8a0a2232e8a071fc95a38763..0000000000000000000000000000000000000000
--- a/android/google-services.json
+++ /dev/null
@@ -1,55 +0,0 @@
-{
-  "project_info": {
-    "project_number": "586069884887",
-    "firebase_url": "https://ucom-1349.firebaseio.com",
-    "project_id": "ucom-1349",
-    "storage_bucket": "ucom-1349.appspot.com"
-  },
-  "client": [
-    {
-      "client_info": {
-        "mobilesdk_app_id": "1:586069884887:android:10894ab106465b76",
-        "android_client_info": {
-          "package_name": "at.gv.ucom"
-        }
-      },
-      "oauth_client": [
-        {
-          "client_id": "586069884887-jpv3ka21vjn4jtp2ps3l0gvrekoj15j6.apps.googleusercontent.com",
-          "client_type": 1,
-          "android_info": {
-            "package_name": "at.gv.ucom",
-            "certificate_hash": "7C41E02041533EBAB60E9BD661D64ED4A2D4385E"
-          }
-        },
-        {
-          "client_id": "586069884887-l6b3b2irohs39s2atqa3b9be8c0a120f.apps.googleusercontent.com",
-          "client_type": 3
-        }
-      ],
-      "api_key": [
-        {
-          "current_key": "AIzaSyASPowC1sMH_7wXsYTIlrDyrCoDtzm4TzY"
-        }
-      ],
-      "services": {
-        "analytics_service": {
-          "status": 1
-        },
-        "appinvite_service": {
-          "status": 2,
-          "other_platform_oauth_client": [
-            {
-              "client_id": "586069884887-l6b3b2irohs39s2atqa3b9be8c0a120f.apps.googleusercontent.com",
-              "client_type": 3
-            }
-          ]
-        },
-        "ads_service": {
-          "status": 2
-        }
-      }
-    }
-  ],
-  "configuration_version": "1"
-}
\ No newline at end of file
diff --git a/android/gradle.properties b/android/gradle.properties
deleted file mode 100644
index 1b61ec3d5c5067925e739187159e9b48fefa659a..0000000000000000000000000000000000000000
--- a/android/gradle.properties
+++ /dev/null
@@ -1,9 +0,0 @@
-## This file is automatically generated by QtCreator.
-#
-# This file must *NOT* be checked into Version Control Systems,
-# as it contains information specific to your local configuration.
-
-androidBuildToolsVersion=25.0.1
-androidCompileSdkVersion=25
-buildDir=.build
-qt5AndroidDir=/home/beij/Qt5.8.0/5.8/android_x86/src/android/java
diff --git a/android/gradle.properties~ b/android/gradle.properties~
deleted file mode 100644
index 1b61ec3d5c5067925e739187159e9b48fefa659a..0000000000000000000000000000000000000000
--- a/android/gradle.properties~
+++ /dev/null
@@ -1,9 +0,0 @@
-## This file is automatically generated by QtCreator.
-#
-# This file must *NOT* be checked into Version Control Systems,
-# as it contains information specific to your local configuration.
-
-androidBuildToolsVersion=25.0.1
-androidCompileSdkVersion=25
-buildDir=.build
-qt5AndroidDir=/home/beij/Qt5.8.0/5.8/android_x86/src/android/java
diff --git a/android/gradle/wrapper/gradle-wrapper.jar b/android/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index 13372aef5e24af05341d49695ee84e5f9b594659..0000000000000000000000000000000000000000
Binary files a/android/gradle/wrapper/gradle-wrapper.jar and /dev/null differ
diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties
deleted file mode 100644
index 5acb7df6a37b23e384b0f685c1d788dcfda3faa4..0000000000000000000000000000000000000000
--- a/android/gradle/wrapper/gradle-wrapper.properties
+++ /dev/null
@@ -1,6 +0,0 @@
-#Sun Mar 05 02:33:07 CET 2017
-distributionBase=GRADLE_USER_HOME
-distributionPath=wrapper/dists
-zipStoreBase=GRADLE_USER_HOME
-zipStorePath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
diff --git a/android/gradle/wrapper/gradle-wrapper.properties~ b/android/gradle/wrapper/gradle-wrapper.properties~
deleted file mode 100644
index eba6b8377039790c0bb3b82585cba2f4012e2813..0000000000000000000000000000000000000000
--- a/android/gradle/wrapper/gradle-wrapper.properties~
+++ /dev/null
@@ -1,6 +0,0 @@
-#Sun Mar 05 02:33:07 CET 2017
-distributionBase=GRADLE_USER_HOME
-distributionPath=wrapper/dists
-zipStoreBase=GRADLE_USER_HOME
-zipStorePath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
diff --git a/android/gradlew b/android/gradlew
deleted file mode 100644
index 9d82f78915133e1c35a6ea51252590fb38efac2f..0000000000000000000000000000000000000000
--- a/android/gradlew
+++ /dev/null
@@ -1,160 +0,0 @@
-#!/usr/bin/env bash
-
-##############################################################################
-##
-##  Gradle start up script for UN*X
-##
-##############################################################################
-
-# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-DEFAULT_JVM_OPTS=""
-
-APP_NAME="Gradle"
-APP_BASE_NAME=`basename "$0"`
-
-# Use the maximum available, or set MAX_FD != -1 to use that value.
-MAX_FD="maximum"
-
-warn ( ) {
-    echo "$*"
-}
-
-die ( ) {
-    echo
-    echo "$*"
-    echo
-    exit 1
-}
-
-# OS specific support (must be 'true' or 'false').
-cygwin=false
-msys=false
-darwin=false
-case "`uname`" in
-  CYGWIN* )
-    cygwin=true
-    ;;
-  Darwin* )
-    darwin=true
-    ;;
-  MINGW* )
-    msys=true
-    ;;
-esac
-
-# Attempt to set APP_HOME
-# Resolve links: $0 may be a link
-PRG="$0"
-# Need this for relative symlinks.
-while [ -h "$PRG" ] ; do
-    ls=`ls -ld "$PRG"`
-    link=`expr "$ls" : '.*-> \(.*\)$'`
-    if expr "$link" : '/.*' > /dev/null; then
-        PRG="$link"
-    else
-        PRG=`dirname "$PRG"`"/$link"
-    fi
-done
-SAVED="`pwd`"
-cd "`dirname \"$PRG\"`/" >/dev/null
-APP_HOME="`pwd -P`"
-cd "$SAVED" >/dev/null
-
-CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
-
-# Determine the Java command to use to start the JVM.
-if [ -n "$JAVA_HOME" ] ; then
-    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
-        # IBM's JDK on AIX uses strange locations for the executables
-        JAVACMD="$JAVA_HOME/jre/sh/java"
-    else
-        JAVACMD="$JAVA_HOME/bin/java"
-    fi
-    if [ ! -x "$JAVACMD" ] ; then
-        die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
-    fi
-else
-    JAVACMD="java"
-    which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
-fi
-
-# Increase the maximum file descriptors if we can.
-if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
-    MAX_FD_LIMIT=`ulimit -H -n`
-    if [ $? -eq 0 ] ; then
-        if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
-            MAX_FD="$MAX_FD_LIMIT"
-        fi
-        ulimit -n $MAX_FD
-        if [ $? -ne 0 ] ; then
-            warn "Could not set maximum file descriptor limit: $MAX_FD"
-        fi
-    else
-        warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
-    fi
-fi
-
-# For Darwin, add options to specify how the application appears in the dock
-if $darwin; then
-    GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
-fi
-
-# For Cygwin, switch paths to Windows format before running java
-if $cygwin ; then
-    APP_HOME=`cygpath --path --mixed "$APP_HOME"`
-    CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
-    JAVACMD=`cygpath --unix "$JAVACMD"`
-
-    # We build the pattern for arguments to be converted via cygpath
-    ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
-    SEP=""
-    for dir in $ROOTDIRSRAW ; do
-        ROOTDIRS="$ROOTDIRS$SEP$dir"
-        SEP="|"
-    done
-    OURCYGPATTERN="(^($ROOTDIRS))"
-    # Add a user-defined pattern to the cygpath arguments
-    if [ "$GRADLE_CYGPATTERN" != "" ] ; then
-        OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
-    fi
-    # Now convert the arguments - kludge to limit ourselves to /bin/sh
-    i=0
-    for arg in "$@" ; do
-        CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
-        CHECK2=`echo "$arg"|egrep -c "^-"`                                 ### Determine if an option
-
-        if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then                    ### Added a condition
-            eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
-        else
-            eval `echo args$i`="\"$arg\""
-        fi
-        i=$((i+1))
-    done
-    case $i in
-        (0) set -- ;;
-        (1) set -- "$args0" ;;
-        (2) set -- "$args0" "$args1" ;;
-        (3) set -- "$args0" "$args1" "$args2" ;;
-        (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
-        (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
-        (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
-        (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
-        (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
-        (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
-    esac
-fi
-
-# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
-function splitJvmOpts() {
-    JVM_OPTS=("$@")
-}
-eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
-JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
-
-exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
diff --git a/android/gradlew.bat b/android/gradlew.bat
deleted file mode 100644
index aec99730b4e8fcd90b57a0e8e01544fea7c31a89..0000000000000000000000000000000000000000
--- a/android/gradlew.bat
+++ /dev/null
@@ -1,90 +0,0 @@
-@if "%DEBUG%" == "" @echo off
-@rem ##########################################################################
-@rem
-@rem  Gradle startup script for Windows
-@rem
-@rem ##########################################################################
-
-@rem Set local scope for the variables with windows NT shell
-if "%OS%"=="Windows_NT" setlocal
-
-@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-set DEFAULT_JVM_OPTS=
-
-set DIRNAME=%~dp0
-if "%DIRNAME%" == "" set DIRNAME=.
-set APP_BASE_NAME=%~n0
-set APP_HOME=%DIRNAME%
-
-@rem Find java.exe
-if defined JAVA_HOME goto findJavaFromJavaHome
-
-set JAVA_EXE=java.exe
-%JAVA_EXE% -version >NUL 2>&1
-if "%ERRORLEVEL%" == "0" goto init
-
-echo.
-echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:findJavaFromJavaHome
-set JAVA_HOME=%JAVA_HOME:"=%
-set JAVA_EXE=%JAVA_HOME%/bin/java.exe
-
-if exist "%JAVA_EXE%" goto init
-
-echo.
-echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:init
-@rem Get command-line arguments, handling Windowz variants
-
-if not "%OS%" == "Windows_NT" goto win9xME_args
-if "%@eval[2+2]" == "4" goto 4NT_args
-
-:win9xME_args
-@rem Slurp the command line arguments.
-set CMD_LINE_ARGS=
-set _SKIP=2
-
-:win9xME_args_slurp
-if "x%~1" == "x" goto execute
-
-set CMD_LINE_ARGS=%*
-goto execute
-
-:4NT_args
-@rem Get arguments from the 4NT Shell from JP Software
-set CMD_LINE_ARGS=%$
-
-:execute
-@rem Setup the command line
-
-set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
-
-@rem Execute Gradle
-"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
-
-:end
-@rem End local scope for the variables with windows NT shell
-if "%ERRORLEVEL%"=="0" goto mainEnd
-
-:fail
-rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
-rem the _cmd.exe /c_ return code!
-if  not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
-exit /b 1
-
-:mainEnd
-if "%OS%"=="Windows_NT" endlocal
-
-:omega
diff --git a/android/local.properties b/android/local.properties
deleted file mode 100644
index 828ae7c816889680308f16cfcf5362162a67aae1..0000000000000000000000000000000000000000
--- a/android/local.properties
+++ /dev/null
@@ -1,12 +0,0 @@
-## This file is automatically generated by Android Studio.
-# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
-#
-# This file must *NOT* be checked into Version Control Systems,
-# as it contains information specific to your local configuration.
-#
-# Location of the SDK. This is only used by Gradle.
-# For customization when using a Version Control System, please read the
-# header note.
-#Fri Mar 31 21:59:03 CEST 2017
-ndk.dir=/home/beij/Android/Sdk/ndk-bundle
-sdk.dir=/home/beij/Android/Sdk
diff --git a/android/local.properties~ b/android/local.properties~
deleted file mode 100644
index 828ae7c816889680308f16cfcf5362162a67aae1..0000000000000000000000000000000000000000
--- a/android/local.properties~
+++ /dev/null
@@ -1,12 +0,0 @@
-## This file is automatically generated by Android Studio.
-# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
-#
-# This file must *NOT* be checked into Version Control Systems,
-# as it contains information specific to your local configuration.
-#
-# Location of the SDK. This is only used by Gradle.
-# For customization when using a Version Control System, please read the
-# header note.
-#Fri Mar 31 21:59:03 CEST 2017
-ndk.dir=/home/beij/Android/Sdk/ndk-bundle
-sdk.dir=/home/beij/Android/Sdk
diff --git a/android/res/.DS_Store b/android/res/.DS_Store
deleted file mode 100644
index 98f751bb6d422f2f42f5617374a1bfc5e9417f00..0000000000000000000000000000000000000000
Binary files a/android/res/.DS_Store and /dev/null differ
diff --git a/android/res/drawable-hdpi/ic_stat_name.png b/android/res/drawable-hdpi/ic_stat_name.png
deleted file mode 100644
index 389551e217f7e51e2b60091ae68e0885c3ac91f6..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-hdpi/ic_stat_name.png and /dev/null differ
diff --git a/android/res/drawable-hdpi/icon.png b/android/res/drawable-hdpi/icon.png
deleted file mode 100755
index 94a548d3044e977ded1b900195b8cb9cdfeeebbb..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-hdpi/icon.png and /dev/null differ
diff --git a/android/res/drawable-hdpi/notification_icon.png b/android/res/drawable-hdpi/notification_icon.png
deleted file mode 100644
index d0b57c92534fd2aeb8a5e8d43be435ee8fafa086..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-hdpi/notification_icon.png and /dev/null differ
diff --git a/android/res/drawable-hdpi/splash.png b/android/res/drawable-hdpi/splash.png
deleted file mode 100755
index 090a2eec5969901cc7015ed8fdc369d9afd30134..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-hdpi/splash.png and /dev/null differ
diff --git a/android/res/drawable-ldpi/icon.png b/android/res/drawable-ldpi/icon.png
deleted file mode 100755
index 5fd4a02e96c3d16ed2bb7fbf26f5e66b235c9dd1..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-ldpi/icon.png and /dev/null differ
diff --git a/android/res/drawable-ldpi/splash.png b/android/res/drawable-ldpi/splash.png
deleted file mode 100755
index 7634022267547466eeb9669db5cb37eaeec4a132..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-ldpi/splash.png and /dev/null differ
diff --git a/android/res/drawable-mdpi/ic_stat_name.png b/android/res/drawable-mdpi/ic_stat_name.png
deleted file mode 100644
index c7b5ed7fcd33064d5f781f743544ab161e796e50..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-mdpi/ic_stat_name.png and /dev/null differ
diff --git a/android/res/drawable-mdpi/icon.png b/android/res/drawable-mdpi/icon.png
deleted file mode 100755
index 95eac45c51e6459ebfe14f52ea1037597d95835d..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-mdpi/icon.png and /dev/null differ
diff --git a/android/res/drawable-mdpi/notification_icon.png b/android/res/drawable-mdpi/notification_icon.png
deleted file mode 100644
index e16683b50df04a75ffd294c03053b3eeef7c69d9..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-mdpi/notification_icon.png and /dev/null differ
diff --git a/android/res/drawable-mdpi/splash.png b/android/res/drawable-mdpi/splash.png
deleted file mode 100755
index 15761849c4da0a86a5e5671de20e0ef86b1768b2..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-mdpi/splash.png and /dev/null differ
diff --git a/android/res/drawable-xhdpi/ic_stat_name.png b/android/res/drawable-xhdpi/ic_stat_name.png
deleted file mode 100644
index c3e1a01b9efb875cfdc91c272bc3282b1fee8844..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-xhdpi/ic_stat_name.png and /dev/null differ
diff --git a/android/res/drawable-xhdpi/icon.png b/android/res/drawable-xhdpi/icon.png
deleted file mode 100755
index 9df29d4675803d099260be27c0fd884f38025d78..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-xhdpi/icon.png and /dev/null differ
diff --git a/android/res/drawable-xhdpi/notification_icon.png b/android/res/drawable-xhdpi/notification_icon.png
deleted file mode 100644
index 422134b9765cbe41084f5534bc3408eba0fa719b..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-xhdpi/notification_icon.png and /dev/null differ
diff --git a/android/res/drawable-xhdpi/splash.png b/android/res/drawable-xhdpi/splash.png
deleted file mode 100755
index caf37cf2954e9e74fb0616cede90018bab4db79f..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-xhdpi/splash.png and /dev/null differ
diff --git a/android/res/drawable-xxhdpi/ic_stat_name.png b/android/res/drawable-xxhdpi/ic_stat_name.png
deleted file mode 100644
index 91fb5148d3ca59c5af586a00733c6c1bc07313af..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-xxhdpi/ic_stat_name.png and /dev/null differ
diff --git a/android/res/drawable-xxhdpi/icon.png b/android/res/drawable-xxhdpi/icon.png
deleted file mode 100755
index b2259e9c772f94c0ff8b6433aee60f2851b71ebb..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-xxhdpi/icon.png and /dev/null differ
diff --git a/android/res/drawable-xxhdpi/notification_icon.png b/android/res/drawable-xxhdpi/notification_icon.png
deleted file mode 100755
index 2c09cadf9007f6ffc5080cecd673a7e9c176f0fa..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-xxhdpi/notification_icon.png and /dev/null differ
diff --git a/android/res/drawable-xxhdpi/splash.png b/android/res/drawable-xxhdpi/splash.png
deleted file mode 100755
index 54b7e612acc7dd1ae95f7e8f8daa1ac1d146df98..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-xxhdpi/splash.png and /dev/null differ
diff --git a/android/res/drawable-xxxhdpi/icon.png b/android/res/drawable-xxxhdpi/icon.png
deleted file mode 100644
index 664a15dd90914573c5f08e49229febab0ce49535..0000000000000000000000000000000000000000
Binary files a/android/res/drawable-xxxhdpi/icon.png and /dev/null differ
diff --git a/android/res/values/libs.xml b/android/res/values/libs.xml
deleted file mode 100755
index 43296f2e7a24d7bdfafcfcbb0e872dc9eb3f3958..0000000000000000000000000000000000000000
--- a/android/res/values/libs.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<resources>
-    <array name="qt_sources">
-        <item>https://download.qt.io/ministro/android/qt5/qt-5.7</item>
-    </array>
-
-    <!-- The following is handled automatically by the deployment tool. It should
-         not be edited manually. -->
-
-    <array name="bundled_libs">
-        <!-- %%INSERT_EXTRA_LIBS%% -->
-    </array>
-
-     <array name="qt_libs">
-         <!-- %%INSERT_QT_LIBS%% -->
-     </array>
-
-    <array name="bundled_in_lib">
-        <!-- %%INSERT_BUNDLED_IN_LIB%% -->
-    </array>
-    <array name="bundled_in_assets">
-        <!-- %%INSERT_BUNDLED_IN_ASSETS%% -->
-    </array>
-
-</resources>
diff --git a/android/src/at/gv/ucom/GcmBroadcastReceiver.java b/android/src/at/gv/ucom/GcmBroadcastReceiver.java
deleted file mode 100755
index 640b7b883317c9a199b6a337c03ae1dc78fac7c4..0000000000000000000000000000000000000000
--- a/android/src/at/gv/ucom/GcmBroadcastReceiver.java
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright 2013 Google Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package at.gv.ucom;
-
-import android.app.Activity;
-import android.content.ComponentName;
-import android.content.Context;
-import android.content.Intent;
-import android.support.v4.content.WakefulBroadcastReceiver;
-
-
-public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {
-    @Override
-    public void onReceive(Context context, Intent intent) {
-
-        // Explicitly specify that GcmIntentService will handle the intent.
-        ComponentName comp = new ComponentName(context.getPackageName(),
-                GcmIntentService.class.getName());
-        // Start the service, keeping the device awake while it is launching.
-        startWakefulService(context, (intent.setComponent(comp)));
-        setResultCode(Activity.RESULT_OK);
-        //MainActivity.badgeCount += 1;
-        //MainActivity.setShortCutBadge();
-    }
-}
diff --git a/android/src/at/gv/ucom/GcmIntentService.java b/android/src/at/gv/ucom/GcmIntentService.java
deleted file mode 100755
index f5150cb1ec92ebf252b36d0ae083b7845655a90e..0000000000000000000000000000000000000000
--- a/android/src/at/gv/ucom/GcmIntentService.java
+++ /dev/null
@@ -1,176 +0,0 @@
-/*
- * Copyright (C) 2013 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
- package at.gv.ucom;
-
-import com.google.android.gms.gcm.GoogleCloudMessaging;
-
-import android.app.IntentService;
-import android.app.Notification;
-import android.app.NotificationManager;
-import android.app.PendingIntent;
-import android.content.Context;
-import android.content.Intent;
-import android.content.SharedPreferences;
-import android.nfc.Tag;
-import android.os.Bundle;
-
-import android.os.SystemClock;
-import android.support.v4.app.NotificationCompat;
-import android.util.Log;
-
-import org.json.JSONException;
-import org.json.JSONObject;
-
-import me.leolin.shortcutbadger.ShortcutBadger;
-
-import static android.app.Notification.DEFAULT_ALL;
-
-public class GcmIntentService extends IntentService {
-
-    public static final int NOTIFICATION_ID = 1;
-
-    public static final String TAG = "Ucom";
-    private static NotificationManager mNotificationManager;
-    private static Notification.Builder builder;
-    public static int badgeCount = 0;
-    public static Context context;
-
-
-    public GcmIntentService() {
-        super("GcmIntentService");
-        context = this;
-    }
-
-
-    @Override
-    protected void onHandleIntent(Intent intent) {
-        Bundle extras = intent.getExtras();
-        GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(this);
-
-        String messageType = gcm.getMessageType(intent);
-
-        if (!extras.isEmpty()) {
-            if (GoogleCloudMessaging.MESSAGE_TYPE_SEND_ERROR.equals(messageType)) {
-               // sendNotification(extras.toString());
-            } else if (GoogleCloudMessaging.MESSAGE_TYPE_DELETED.equals(messageType)) {
-                // sendNotification("Deleted messages on server: " + extras.toString());
-                // If it's a regular GCM message, do some work.
-            } else if (GoogleCloudMessaging.MESSAGE_TYPE_MESSAGE.equals(messageType)) {
-                sendNotification(extras);
-                Log.i(TAG, "Received: " + extras.toString());
-            }
-        }
-        // Release the wake lock provided by the WakefulBroadcastReceiver.
-        GcmBroadcastReceiver.completeWakefulIntent(intent);
-    }
-    // Put the message into a notification and post it.
-    // This is just one simple example of what you might choose to do with
-    // a oj GCM message.
-    private void sendNotification(Bundle msg) {
-
-       /* try {
-            Thread.sleep(10000);
-        } catch (InterruptedException e) {
-            e.printStackTrace();
-        } */
-
-        SharedPreferences sharedPref = context.getSharedPreferences(
-                new String("at.gv.ucom.preferences"), Context.MODE_PRIVATE);
-
-        String title = msg.getString("title");
-        String message = msg.getString("message");
-        String ejson = msg.getString("ejson");
-        String msgCount = msg.getString("msgcnt");
-        if(msgCount !=null) {
-            SharedPreferences.Editor editor = sharedPref.edit();
-            int count = Integer.valueOf(msgCount);
-            int badgecount = sharedPref.getInt(new String("badgecount"), 0);
-            badgecount++;
-            GcmIntentService.badgeCount += count;
-            editor.putInt(new String("badgecount"),badgecount);
-            editor.commit();
-            //MainActivity.setShortCutBadge();
-
-            ShortcutBadger.applyCount(this, badgecount);
-
-        }
-        String rid = "";
-        String server = "";
-        String name = "";
-        String type = "";
-
-
-        try {
-            if(ejson != null) {
-                JSONObject reader = new JSONObject(ejson);
-                rid = reader.getString("rid");
-                server = reader.getString("host");
-                name = reader.getString("name");
-                type = reader.getString("type");
-                if (name.compareTo("null") == 0 || name.length() == 0) {
-                    JSONObject sender = reader.getJSONObject("sender");
-                    name = sender.getString("username");
-                } else {
-                    name = "";
-                }
-            }
-        }
-        catch (JSONException ex){
-            Log.i(TAG,ex.toString());
-        }
-        mNotificationManager = (NotificationManager)
-                this.getSystemService(Context.NOTIFICATION_SERVICE);
-
-        if(title !=null&& message !=null&&server !=null&&type !=null&&rid !=null) {
-            Intent intent = new Intent(this, MainActivity.class);
-            if(rid.length()>0)
-            intent.putExtra("rid", rid);
-            if(server.length()>0)
-            intent.putExtra("server", server);
-            if(name.length()>0)
-            intent.putExtra("name", name);
-            if(type.length()>0)
-            intent.putExtra("type", type);
-
-
-            PendingIntent contentIntent = PendingIntent.getActivity(this,
-                    (int) System.currentTimeMillis(),
-                    intent, 0);
-
-
-            NotificationCompat.Builder mBuilder =
-                    new NotificationCompat.Builder(this)
-                            .setSmallIcon(R.drawable.ic_stat_name)
-                            .setColor(0x004f5d)
-                            .setContentTitle(title)
-                            .setStyle(new NotificationCompat.BigTextStyle()
-                                    .bigText(message))
-                            .setContentText(message)
-                            .setAutoCancel(true)
-                            .setDefaults(DEFAULT_ALL);
-
-
-            mBuilder.setContentIntent(contentIntent);
-            mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
-        }
-    }
-
-}
-
-
-
-
diff --git a/android/src/at/gv/ucom/MainActivity.java b/android/src/at/gv/ucom/MainActivity.java
deleted file mode 100755
index 99a1e0e6b2d49b29c2d5b1ab94ebb8a997ee9cc2..0000000000000000000000000000000000000000
--- a/android/src/at/gv/ucom/MainActivity.java
+++ /dev/null
@@ -1,366 +0,0 @@
-/*
- * Copyright 2013 Google Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package at.gv.ucom;
-
-import android.Manifest;
-import android.content.Context;
-import android.content.Intent;
-import android.content.SharedPreferences;
-import android.content.pm.PackageInfo;
-import android.content.pm.PackageManager.NameNotFoundException;
-import android.content.pm.ResolveInfo;
-import android.graphics.Color;
-import android.net.Uri;
-import android.os.AsyncTask;
-import android.os.Build;
-import android.os.Bundle;
-import android.support.v4.content.ContextCompat;
-import android.util.Log;
-
-import com.google.android.gms.common.ConnectionResult;
-import com.google.android.gms.common.GooglePlayServicesUtil;
-import com.google.android.gms.common.api.GoogleApiClient;
-import com.google.android.gms.gcm.GoogleCloudMessaging;
-import com.google.firebase.crash.FirebaseCrash;
-
-import android.content.pm.PackageManager;
-
-import android.view.WindowManager;
-import android.view.Window;
-import android.view.View;
-
-
-
-import org.qtproject.qt5.android.bindings.QtActivity;
-
-import android.support.v4.app.ActivityCompat;
-
-import java.io.IOException;
-import java.util.List;
-
-import io.fabric.sdk.android.Fabric;
-import me.leolin.shortcutbadger.ShortcutBadger;
-
-import com.crashlytics.android.Crashlytics;
-import com.crashlytics.android.ndk.CrashlyticsNdk;
-
-
-/**
- * Main UI for the demo app.
- */
-
-
-public class MainActivity extends QtActivity {
-
-    private static final int PLAY_SERVICES_RESOLUTION_REQUEST = 9000;
-    private static final String TAG = "MainActivity";
-    private static Context context = null;
-    private static MainActivity m_instance;
-    public static int badgeCount = 0;
-    public static SharedPreferences sharedPref;
-    public static SharedPreferences.Editor editor;
-    public static Window window = null;
-    public static View view;
-    public static Intent lastIntent = null;
-
-    /**
-     * ATTENTION: This was auto-generated to implement the App Indexing API.
-     * See https://g.co/AppIndexing/AndroidStudio for more information.
-     */
-    private GoogleApiClient client;
-
-
-    public MainActivity() {
-        super();
-        m_instance = this;
-    }
-
-    @Override
-    public void onCreate(Bundle savedInstanceState) {
-
-        super.onCreate(savedInstanceState);
-
-       /* try {
-            Thread.sleep(10000);
-            } catch (InterruptedException e) {
-            e.printStackTrace();
-            }*/
-
-        Fabric fabric = new Fabric.Builder(this).debuggable(true).kits(new Crashlytics(), new CrashlyticsNdk()).build();
-        Fabric.with(fabric);
-        //Fabric.with(this, new Crashlytics(), new CrashlyticsNdk());
-        context = this;
-
-        int currentapiVersion = Build.VERSION.SDK_INT;
-        if (currentapiVersion >= Build.VERSION_CODES.M) {
-            String[] permissions = {Manifest.permission.READ_EXTERNAL_STORAGE,Manifest.permission.CAMERA,Manifest.permission.RECORD_AUDIO,Manifest.permission.WRITE_EXTERNAL_STORAGE};
-            requestPermissions(permissions,1);
-        }
-        else{
-            requestPermission(Manifest.permission.READ_EXTERNAL_STORAGE);
-            requestPermission(Manifest.permission.CAMERA);
-            requestPermission(Manifest.permission.RECORD_AUDIO);
-            requestPermission(Manifest.permission.WRITE_EXTERNAL_STORAGE);
-        }
-        MainActivity.window = this.getWindow();
-        MainActivity.view = new View(context);
-       MainActivity.setStatusBarColor(Color.parseColor("#005766"));
-
-        // ATTENTION: This was auto-generated to implement the App Indexing API.
-        // See https://g.co/AppIndexing/AndroidStudio for more information.
-        //client = new GoogleApiClient.Builder(this).addApi(AppIndex.API).build();
-
-        sharedPref = context.getSharedPreferences(
-                new String("at.gv.ucom.preferences"), Context.MODE_PRIVATE);
-        editor = sharedPref.edit();
-
-        Intent intent = getIntent();
-        lastIntent = intent;
-        //processIntent(intent);
-
-    }
-
-    public static void setStatusBarColor(String color){
-        int colorInt = Color.parseColor(color);
-        MainActivity.setStatusBarColor(colorInt);
-    }
-
-    public static void setStatusBarColor(int color) {
-        int currentapiVersion = Build.VERSION.SDK_INT;
-        if (currentapiVersion >= Build.VERSION_CODES.LOLLIPOP) {
-            // Do something for lollipop and above versions
-
-
-            // clear FLAG_TRANSLUCENT_STATUS flag:
-            MainActivity.window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
-
-            // add FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS flag to the window
-            MainActivity.window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
-            //view.setAlpha(1);
-            //view.setVisibility(View.GONE);
-            // finally change the color
-            MainActivity.window.setStatusBarColor(color);
-        }
-    }
-
-    public void requestPermission(String permission) {
-        if (ActivityCompat.checkSelfPermission(this,
-                permission)
-                != PackageManager.PERMISSION_GRANTED) {
-
-            // Should we show an explanation?
-            if (ActivityCompat.shouldShowRequestPermissionRationale(this,
-                    permission)) {
-
-                // Show an explanation to the user *asynchronously* -- don't block
-                // this thread waiting for the user's response! After the user
-                // sees the explanation, try again to request the permission.
-
-            } else {
-
-                // No explanation needed, we can request the permission.
-
-                ActivityCompat.requestPermissions(this,
-                        new String[]{permission},
-                        1);
-
-                // MY_PERMISSIONS_REQUEST_READ_CONTACTS is an
-                // app-defined int constant. The callback method gets the
-                // result of the request.
-            }
-        }
-    }
-
-    @Override
-    protected void onResume() {
-        super.onResume();
-        // Check device for Play Services APK.
-        //checkPlayServices();
-    }
-
-    private boolean checkPlayServices() {
-        int resultCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
-        if (resultCode != ConnectionResult.SUCCESS) {
-            if (GooglePlayServicesUtil.isUserRecoverableError(resultCode)) {
-                GooglePlayServicesUtil.getErrorDialog(resultCode, this,
-                        PLAY_SERVICES_RESOLUTION_REQUEST).show();
-            } else {
-                Log.i(TAG, "This devce is not supported.");
-                finish();
-            }
-            return false;
-        }
-        return true;
-    }
-
-
-    public static void registerGCM(String senderId) {
-        Log.i(TAG, "register gcm called");
-        GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(context);
-        new RegisterTask(gcm, senderId).execute(null, null, null);
-    }
-
-    public static int checkCameraPermission() {
-        int permissionCheck = ContextCompat.checkSelfPermission(m_instance,
-                Manifest.permission.CAMERA);
-
-        int granted = 0;
-        if (permissionCheck == PackageManager.PERMISSION_GRANTED) {
-            if (checkMicrophonePermission() == 1) {
-                granted = 1;
-            }
-        }
-        return granted;
-    }
-
-    public static int checkMicrophonePermission() {
-        int permissionCheck = ContextCompat.checkSelfPermission(m_instance,
-                Manifest.permission.RECORD_AUDIO);
-
-        int granted = 0;
-        if (permissionCheck == PackageManager.PERMISSION_GRANTED) {
-            granted = 1;
-        }
-        return granted;
-    }
-
-    public static String getLauncherClassName(Context context) {
-        PackageManager pm = context.getPackageManager();
-        Intent intent = new Intent(Intent.ACTION_MAIN);
-        intent.addCategory(Intent.CATEGORY_LAUNCHER);
-        List<ResolveInfo> resolveInfos = pm.queryIntentActivities(intent, 0);
-        for (ResolveInfo resolveInfo : resolveInfos) {
-            String pkgName = resolveInfo.activityInfo.applicationInfo.packageName;
-            if (pkgName.equalsIgnoreCase(context.getPackageName())) {
-                String className = resolveInfo.activityInfo.name;
-                return className;
-            }
-        }
-        return null;
-    }
-
-    public static void setBadgeNumber(int number) {
-        if (number >= 0) {
-            editor.putInt(new String("badgecount"),number);
-            editor.commit();
-            GcmIntentService.badgeCount = number;
-            setShortCutBadge();
-        }
-    }
-
-    public static void setShortCutBadge() {
-        try {
-            ShortcutBadger.applyCount(context, GcmIntentService.badgeCount);
-           /* String launcherClassName = getLauncherClassName(context);
-            if (launcherClassName == null) {
-                return;
-            }
-            Intent intent = new Intent("android.intent.action.BADGE_COUNT_UPDATE");
-            intent.putExtra("badge_count", badgeCount);
-            intent.putExtra("badge_count_package_name", context.getPackageName());
-            intent.putExtra("badge_count_class_name", launcherClassName);
-            context.sendBroadcast(intent);
-            */
-        } catch (Exception ex) {
-            //Log.i(TAG,ex.toString());
-        }
-    }
-
-    public static void send() {
-//        new AsyncTask<Void, Void, String>() {
-//            @Override
-//            protected String doInBackground(Void... params) {
-//                String msg = "";
-//                try {
-//                    Bundle data = new Bundle();
-//                    data.putString("my_message", "Hello World");
-//                    data.putString("my_action", "com.google.android.m_gcm.demo.app.ECHO_NOW");
-//                    String id = Integer.toString(msgId.incrementAndGet());
-//                    m_gcm.send(SENDER_ID + "@m_gcm.googleapis.com", id, data);
-//                    msg = "Sent message";
-//                } catch (IOException ex) {
-//                    msg = "Error :" + ex.getMessage();
-//                }
-//                return msg;
-//            }
-//
-//            @Override
-//            protected void onPostExecute(String msg) {
-//                mDisplay.append(msg + "\n");
-//            }
-//        }.execute(null, null, null);
-
-    }
-
-    @Override
-    protected void onNewIntent(Intent intent) {
-        super.onNewIntent(intent);
-        processIntent(intent);
-    }
-
-    protected void processIntent(Intent intent){
-        if(intent != null) {
-            String server = intent.getStringExtra("server");
-            String rid = intent.getStringExtra("rid");
-            String name = intent.getStringExtra("name");
-            String type = intent.getStringExtra("type");
-
-            if (rid != null && name != null && type != null && server != null) {
-                if (server.length() > 0 && rid.length() > 0 && name.length() > 0 && type.length() > 0) {
-                    ReceiveTextMessage.sendNotificationToCpp(server, rid, name, type);
-                }
-            }
-        }
-    }
-
-    public static void checkForPendingIntent(){
-
-        if(lastIntent != null) {
-            String server = lastIntent.getStringExtra("server");
-            String rid = lastIntent.getStringExtra("rid");
-            String name = lastIntent.getStringExtra("name");
-            String type = lastIntent.getStringExtra("type");
-
-            if (rid != null && name != null && type != null && server != null) {
-                if (server.length() > 0 && rid.length() > 0 && name.length() > 0 && type.length() > 0) {
-                    ReceiveTextMessage.sendNotificationToCpp(server, rid, name, type);
-                }
-            }
-        }
-    }
-
-    public static void catchError(String error) {
-        Log.i(TAG, error);
-        FirebaseCrash.report(new Exception(error));
-    }
-
-    /**
-     * ATTENTION: This was auto-generated to implement the App Indexing API.
-     * See https://g.co/AppIndexing/AndroidStudio for more information.
-     */
-
-
-    @Override
-    public void onStart() {
-        super.onStart();
-    }
-
-    @Override
-    public void onStop() {
-        super.onStop();
-
-    }
-}
diff --git a/android/src/at/gv/ucom/ReceiveTextMessage.java b/android/src/at/gv/ucom/ReceiveTextMessage.java
deleted file mode 100755
index ea32fe23676b373c23ce2a2fe9a9f793684ff6b2..0000000000000000000000000000000000000000
--- a/android/src/at/gv/ucom/ReceiveTextMessage.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package at.gv.ucom;
-
-import android.util.Log;
-
-/**
- * Created by armin on 08.02.17.
- */
-
-public class ReceiveTextMessage {
-    private static final String TAG = RegisterTask.class.getSimpleName();
-
-    public static void sendNotificationToCpp(String server, String rid, String name, String type){
-        try {
-            messageReceived(server, rid, name, type);
-        }catch(UnsatisfiedLinkError ex){
-            Log.i(TAG,"jni invocation not ready, unsatified link");
-        }
-    }
-
-    private static native void messageReceived(String server,String rid, String name, String type);
-
-}
diff --git a/android/src/at/gv/ucom/RegisterTask.java b/android/src/at/gv/ucom/RegisterTask.java
deleted file mode 100755
index 0917c183f1caa9ef730356e7fe2f5e0c20353bbe..0000000000000000000000000000000000000000
--- a/android/src/at/gv/ucom/RegisterTask.java
+++ /dev/null
@@ -1,48 +0,0 @@
-package at.gv.ucom;
-
-import android.os.AsyncTask;
-
-import com.google.android.gms.gcm.GoogleCloudMessaging;
-
-import java.io.IOException;
-
-public class RegisterTask extends AsyncTask<Void, Void, String> {
-
-    private static final String TAG = RegisterTask.class.getSimpleName();
-
-    private final GoogleCloudMessaging m_gcm;
-    private final String m_senderId;
-
-    public RegisterTask(){
-        this(null,null);
-    }
-
-    public RegisterTask(GoogleCloudMessaging gcm, String senderId){
-        m_gcm = gcm;
-        m_senderId = senderId;
-    }
-
-
-    @Override
-    protected String doInBackground(Void... voids){
-        try{
-            String regid = m_gcm.register(m_senderId);
-            return regid;
-        } catch(IOException ex){
-            handleRegisterError(ex.getMessage());
-            return "";
-        }
-
-    }
-
-    @Override
-    protected void onPostExecute(String result){
-            handleRegisterId(result);
-        }
-
-    private static native void handleRegisterId(String registrationId);
-    private static native void handleRegisterError(String error);
-
-
-
-}
diff --git a/api/meteorddp.cpp b/api/meteorddp.cpp
index 003c2b76423a3af940e9550da070e254a5315881..ba9d135d5c472e1c02065dd54fffb1ce9f4aaff1 100755
--- a/api/meteorddp.cpp
+++ b/api/meteorddp.cpp
@@ -1,5 +1,5 @@
 #include "meteorddp.h"
-#include "websocket/websocket.h"
+#include "websocket.h"
 #include "meteorddp.h"
 #include <QString>
 #include <QWebSocket>
@@ -22,10 +22,10 @@ void MeteorDDP::init( QString pUri )
     qDebug() << wsUri;
     qDebug( "meteor init" );
     mWebsocketUri = pUri;
+    mResponseBinding.reserve(100);
     connect( mWsClient, &Websocket::textMessageReceived, this, &MeteorDDP::onTextMessageReceived, Qt::UniqueConnection );
     connect( mWsClient, &Websocket::connected, this, &MeteorDDP::onConnected, Qt::UniqueConnection );
     connect( this, &MeteorDDP::sendMessageSignal, this, &MeteorDDP::sendJson, Qt::UniqueConnection );
-    mResponseBinding.reserve(100);
     mWsClient->open( wsUri );
     QDateTime now = QDateTime::currentDateTime();
     uint currentTime = now.toTime_t();
@@ -62,12 +62,14 @@ void MeteorDDP::onTextMessageReceived( QString pMsg )
         QJsonDocument jsonResponse = QJsonDocument::fromJson( pMsg.toUtf8(), mError );
         QJsonObject objectResponse = jsonResponse.object();
 
-        if ( Q_LIKELY( objectResponse.contains( "msg" ) ) ) {
+        if ( Q_LIKELY(mError->error ==  QJsonParseError::NoError && objectResponse.contains( "msg" ) ) ) {
+
             QDateTime now = QDateTime::currentDateTime();
             mLastPing = now.toTime_t();
             QString messagePart = objectResponse["msg"].toString();
 
             if ( messagePart == "ping" || messagePart == "pong" ) {
+
                 emit messageReceived( objectResponse );
             }
 
@@ -81,7 +83,7 @@ void MeteorDDP::onTextMessageReceived( QString pMsg )
                     if ( Q_LIKELY( subsArray.size() ) ) {
                         QString id = subsArray[0].toString();
 
-                        if ( Q_LIKELY( mResponseBinding.contains( id ) ) ) {
+                        if ( Q_LIKELY( mResponseBinding.contains( id ) && !mResponseBinding[id].isNull() ) ) {
                             std::function<void ( QJsonObject, MeteorDDP * )> succesFuncton = mResponseBinding[id]->getSuccess();
 
                             if ( Q_LIKELY( succesFuncton ) ) {
@@ -153,7 +155,7 @@ void MeteorDDP::onConnected()
 {
     qDebug() << "connected websocket";
     mWebsocketConnectionEstablished = true;
-    emit( websocketConnected() );
+   // emit( websocketConnected() );
     this->connectWithServer();
 }
 
@@ -170,35 +172,74 @@ void MeteorDDP::pong()
 
 void MeteorDDP::sendRequest( QSharedPointer<DDPRequest> pDdpRequest )
 {
-    QString frame = getFrameCount();
-    QJsonObject rawRequest =  pDdpRequest->getRawRequest();
+    if(!pDdpRequest.isNull()){
+        QString frame = getFrameCount();
+        QJsonObject rawRequest =  pDdpRequest->getRawRequest();
 
-    if ( !rawRequest.contains( "id" ) ) {
-        rawRequest["id"] = frame;
-    }
+        if ( !rawRequest.contains( "id" ) ) {
+            rawRequest["id"] = frame;
+        }
 
-    pDdpRequest->setFrame( frame );
-    mResponseBinding[frame] = pDdpRequest;
-    emit sendMessageSignal( rawRequest );
-    // sendJson( rawRequest );
+        pDdpRequest->setFrame( frame );
+        mResponseBinding[frame] = pDdpRequest;
+        emit sendMessageSignal( rawRequest );
+        // sendJson( rawRequest );
+    }
 
 }
 
+//debug
 void MeteorDDP::resume()
 {
     qDebug() << "resuming ddp";
+
+#if defined(Q_OS_ANDROID) || defined(Q_OS_LINUX)
+    qDebug()<<"websocket valid: "<<mWsClient->isValid();
+    QUrl wsUri = QUrl( "wss://" + mWebsocketUri + "/websocket" );
+
+    if(mWsClient->isDisconnected()){
+        mWsClient->open( wsUri );
+    }else if(!mWsClient->isConnecting()){
+          QMetaObject::Connection * const connection = new QMetaObject::Connection;
+          *connection = connect(mWsClient,&Websocket::closed,[&](){
+              qDebug() << "websocket closed";
+              mWsClient->open( wsUri );
+              QDateTime now = QDateTime::currentDateTime();
+              uint currentTime = now.toTime_t();
+              mLastPing = currentTime;
+              if(connection != nullptr){
+                QObject::disconnect(*connection);
+                delete connection;
+              }
+          });
+          mWsClient->close();
+    }
+
+    if(mWsClient->isDisconnected()){
+
+       // connectWithServer();
+    }
+
+#else
+    qDebug() << "resuming ddp";
     mWsClient->close();
     disconnect( mWsClient, &Websocket::textMessageReceived, this, &MeteorDDP::onTextMessageReceived );
     disconnect( mWsClient, &Websocket::connected, this, &MeteorDDP::onConnected );
     disconnect( this, &MeteorDDP::sendMessageSignal, this, &MeteorDDP::sendJson );
-    delete mWsClient;
-    mWsClient = new Websocket;
-    init( mWebsocketUri );
+    mWsClient->deleteLater();
+    connect(mWsClient,&Websocket::destroyed,[&](){
+        mWsClient = new Websocket;
+        qDebug()<<"new Websocket Object created";
+        init( mWebsocketUri );
+    });
+#endif
 }
 
 void MeteorDDP::unsetResponseBinding( QString pId )
 {
-    mResponseBinding.remove( pId );
+    if(mResponseBinding.contains(pId)){
+        mResponseBinding.remove( pId );
+    }
 }
 
 bool MeteorDDP::websocketIsValid()
@@ -247,9 +288,13 @@ bool MeteorDDP::getWebsocketConnectionEstablished() const
 
 MeteorDDP::~MeteorDDP()
 {
-    qDebug()<<"ddpThread "<<QThread::currentThreadId();
+    qDebug()<<"destroying wsClient";
+
     disconnect( mWsClient, &Websocket::textMessageReceived, this, &MeteorDDP::onTextMessageReceived );
     disconnect( mWsClient, &Websocket::connected, this, &MeteorDDP::onConnected);
     disconnect( this, &MeteorDDP::sendMessageSignal, this, &MeteorDDP::sendJson );
-    delete( mWsClient );
+
+    mWsClient->close();
+
+    mWsClient->deleteLater();
 }
diff --git a/api/meteorddp.h b/api/meteorddp.h
index 347223338432bf7cdff5022ed8828295c8600128..2290efd1dee439312a1b206299cfdf248ab17a16 100755
--- a/api/meteorddp.h
+++ b/api/meteorddp.h
@@ -36,13 +36,14 @@ class MeteorDDP : public QObject
         void setResumeToken(QString pToken);
         void setUserId(QString pUserId);
 
+        void init( QString pServer );
+
 
     private:
         QJsonParseError *mError;
 
         void pong();
         void genUri();
-        void init( QString pServer );
         void loadLocale();
         void userPresenceOnline();
         void sendJson( QJsonObject );
diff --git a/api/restapi.cpp b/api/restapi.cpp
index 496a9552c4d471532f9e41d567d420a93df5f5b6..8696f6c9f5eb268fcc180f923e00b2a3137879a6 100755
--- a/api/restapi.cpp
+++ b/api/restapi.cpp
@@ -4,8 +4,8 @@
 
 RestApi::RestApi()
 {
-    mApiUri = "https://test.ucom.gv.at/api/v1";
-    mBaseUrl = "https://test.ucom.gv.at";
+    mApiUri = "";
+    mBaseUrl = "";
     qRegisterMetaType<RestApiRequest>("RestApiRequest");
     init();
 }
@@ -75,105 +75,111 @@ void RestApi::logout()
 
 void RestApi::processLoginRequest( QNetworkReply *pReply )
 {
-    QString replyString = ( QString )pReply->readAll();
-    QJsonDocument replyJson = QJsonDocument::fromJson( replyString.toUtf8(), mError );
-    QJsonObject replyObject = replyJson.object();
-
-    if ( replyObject["status"].toString() == "success" && replyObject.contains( "data" ) ) {
-        QJsonObject data = replyObject["data"].toObject();
-
-        if ( data.contains( "authToken" ) && data.contains( "userId" ) ) {
-            this->mToken = data["authToken"].toString();
-            this->mUserId = data["userId"].toString();
-            qDebug() << "REST token: " << this->mToken;
-            qDebug() << "REST user: " << this->mUserId;
-            emit( loggedIn() );
-            initCookie();
+    if(pReply){
+        QString replyString = ( QString )pReply->readAll();
+        QJsonDocument replyJson = QJsonDocument::fromJson( replyString.toUtf8(), mError );
+        QJsonObject replyObject = replyJson.object();
+
+        if ( replyObject["status"].toString() == "success" && replyObject.contains( "data" ) ) {
+            QJsonObject data = replyObject["data"].toObject();
+
+            if ( data.contains( "authToken" ) && data.contains( "userId" ) ) {
+                this->mToken = data["authToken"].toString();
+                this->mUserId = data["userId"].toString();
+                qDebug() << "REST token: " << this->mToken;
+                qDebug() << "REST user: " << this->mUserId;
+                emit( loggedIn() );
+                initCookie();
+            }
+        } else {
+            mLoginErrorString = "wrong username or password";
+            qDebug() << "log in error" << replyString << pReply->errorString();
+            emit( loginError() );
         }
-    } else {
-        mLoginErrorString = "wrong username or password";
-        qDebug() << "log in error" << replyString << pReply->errorString();
-        emit( loginError() );
-    }
 
-    mNetworkReplies.remove( pReply );
-    pReply->deleteLater();
+        mNetworkReplies.remove( pReply );
+        pReply->deleteLater();
+    }
 }
 
 
 void RestApi::processLogoutRequest( QNetworkReply *pReply )
 {
-    mNetworkReplies.remove( pReply );
-    pReply->deleteLater();
+    if(pReply){
+        mNetworkReplies.remove( pReply );
+        pReply->deleteLater();
+    }
 }
 
 void RestApi::processNetworkRequest( QNetworkReply *pReply )
 {
-    int status = pReply->attribute( QNetworkRequest::HttpStatusCodeAttribute ).toInt();
-
-    if ( mResponseBinding.contains( pReply ) ) {
-        if ( mResponseBinding[pReply]->isRawData() ) {
-            auto request =  mResponseBinding[pReply];
-            auto success = request->getSuccess();
-            auto error = request->getError();
-            QJsonObject replyObject;
-
-            if ( pReply->attribute( QNetworkRequest::HttpStatusCodeAttribute ) == 200 ) {
-                success( pReply, replyObject, this );
+    if(pReply){
+        int status = pReply->attribute( QNetworkRequest::HttpStatusCodeAttribute ).toInt();
+
+        if ( mResponseBinding.contains( pReply ) && !mResponseBinding[pReply].isNull() ) {
+            if ( mResponseBinding[pReply]->isRawData() ) {
+                auto request =  mResponseBinding[pReply];
+                auto success = request->getSuccess();
+                auto error = request->getError();
+                QJsonObject replyObject;
+
+                if ( pReply->attribute( QNetworkRequest::HttpStatusCodeAttribute ) == 200 ) {
+                    success( pReply, replyObject, this );
+                } else {
+                    error( pReply, replyObject, this );
+                }
             } else {
-                error( pReply, replyObject, this );
-            }
-        } else {
 
-            QString replyString = ( QString )pReply->readAll();
-           // qDebug() << replyString;
-            QJsonDocument replyJson = QJsonDocument::fromJson( replyString.toUtf8(), this->mError );
-            QJsonObject replyObject = replyJson.object();
-            auto request =  mResponseBinding[pReply];
-            auto success = request->getSuccess();
-            auto error = request->getError();
-
-            if ( ( replyObject["status"].toString() == "success" || ( status >= 200 && status < 300 ) ) && success ) {
-                success( pReply, replyObject, this );
-            } else if ( error ) {
-                error( pReply, replyObject, this );
+                QString replyString = ( QString )pReply->readAll();
+               // qDebug() << replyString;
+                QJsonDocument replyJson = QJsonDocument::fromJson( replyString.toUtf8(), this->mError );
+                QJsonObject replyObject = replyJson.object();
+                auto request =  mResponseBinding[pReply];
+                auto success = request->getSuccess();
+                auto error = request->getError();
+
+                if ( ( replyObject["status"].toString() == "success" || ( status >= 200 && status < 300 ) ) && success ) {
+                    success( pReply, replyObject, this );
+                } else if ( error ) {
+                    error( pReply, replyObject, this );
+                }
             }
-        }
 
-        mResponseBinding.remove( pReply );
-        return;
-    }
+            mResponseBinding.remove( pReply );
+            return;
+        }
 
-    switch ( mNetworkReplies[pReply] ) {
+        switch ( mNetworkReplies[pReply] ) {
 
-        case methods::LOGIN:
-            qDebug() << "login reply received";
-            processLoginRequest( pReply );
-            break;
+            case methods::LOGIN:
+                qDebug() << "login reply received";
+                processLoginRequest( pReply );
+                break;
 
-        case methods::LOGOFF:
-            processLogoutRequest( pReply );
-            break;
+            case methods::LOGOFF:
+                processLogoutRequest( pReply );
+                break;
 
-        case methods::DOWNLOAD:
-            processDownload( pReply );
-            break;
+            case methods::DOWNLOAD:
+                processDownload( pReply );
+                break;
 
-        case methods::UPLOAD:
-            if ( pReply->attribute( QNetworkRequest::HttpStatusCodeAttribute ) == 200 ) {
-                qDebug() << "upload ready" << pReply->readAll() << pReply->attribute( QNetworkRequest::HttpStatusCodeAttribute );
-                emit fileUploadReady( true );
-            } else {
-                qDebug() << pReply->readAll();
-                qDebug() << "HTTP ERROR, status code:" << pReply->attribute( QNetworkRequest::HttpStatusCodeAttribute ).toInt();
-                emit fileUploadReady( false );
-            }
+            case methods::UPLOAD:
+                if ( pReply->attribute( QNetworkRequest::HttpStatusCodeAttribute ) == 200 ) {
+                    qDebug() << "upload ready" << pReply->readAll() << pReply->attribute( QNetworkRequest::HttpStatusCodeAttribute );
+                    emit fileUploadReady( true );
+                } else {
+                    qDebug() << pReply->readAll();
+                    qDebug() << "HTTP ERROR, status code:" << pReply->attribute( QNetworkRequest::HttpStatusCodeAttribute ).toInt();
+                    emit fileUploadReady( false );
+                }
 
-            break;
+                break;
 
-        default:
-            qDebug() << pReply->readAll();
-            pReply->deleteLater();
+            default:
+                qDebug() << pReply->readAll();
+                pReply->deleteLater();
+        }
     }
 }
 
@@ -222,32 +228,34 @@ QString RestApi::getName() const
 
 void RestApi::processDownload( QNetworkReply *pReply )
 {
-    qDebug() << "file downloaded";
-    qDebug() << "requstURI: " << pReply->url().path();
+    if(pReply){
+        qDebug() << "file downloaded";
+        qDebug() << "requstURI: " << pReply->url().path();
 
-    if ( pReply->error() ) {
-        qDebug() << "File received" + pReply->errorString();
-    } else {
-        QByteArray content = pReply->readAll();
-        QMimeType type = mMimeDb.mimeTypeForData( content );
-        QString suffix = type.preferredSuffix();
-        //int size = content.size();
-        QString url = pReply->url().toString();
-        QString filename = pReply->url().fileName();
-        QString directory = QStandardPaths::writableLocation( QStandardPaths::TempLocation );
-        QString filePath = directory + "/" + filename;
-        filePath.replace( filePath.length() - 4, 4, "." + suffix );
-        QFile file( filePath );
-
-        if ( file.open( QIODevice::ReadWrite ) ) {
-            file.write( content );
-            file.close();
+        if ( pReply->error() ) {
+            qDebug() << "File received" + pReply->errorString();
+        } else {
+            QByteArray content = pReply->readAll();
+            QMimeType type = mMimeDb.mimeTypeForData( content );
+            QString suffix = type.preferredSuffix();
+            //int size = content.size();
+            QString url = pReply->url().toString();
+            QString filename = pReply->url().fileName();
+            QString directory = QStandardPaths::writableLocation( QStandardPaths::TempLocation );
+            QString filePath = directory + "/" + filename;
+            filePath.replace( filePath.length() - 4, 4, "." + suffix );
+            QFile file( filePath );
+
+            if ( file.open( QIODevice::ReadWrite ) ) {
+                file.write( content );
+                file.close();
+            }
+
+            emit( fileDownloaded( pReply->url().path(), filePath ) );
         }
 
-        emit( fileDownloaded( pReply->url().path(), filePath ) );
+        pReply->deleteLater();
     }
-
-    pReply->deleteLater();
 }
 
 RestApi::~RestApi()
@@ -311,22 +319,24 @@ QHash<QNetworkReply *, RestApiRequest> RestApi::getResponseBinding() const
 
 void RestApi::sendRequestSlot(RestApiRequest pRequest)
 {
-    QNetworkReply *reply = nullptr;
-    QString path;
+    if(!pRequest.isNull()){
+        QNetworkReply *reply = nullptr;
+        QString path;
 
-    if ( !pRequest->getAbsolutePath() ) {
-        path = mApiUri + pRequest->getPath();
-    } else {
-        path = pRequest->getPath();
-    }
+        if ( !pRequest->getAbsolutePath() ) {
+            path = mApiUri + pRequest->getPath();
+        } else {
+            path = pRequest->getPath();
+        }
 
-    if ( pRequest->getMethod() == RestRequest::methods::GET ) {
-        reply = get( path, pRequest->getMimeType() );
-    }
+        if ( pRequest->getMethod() == RestRequest::methods::GET ) {
+            reply = get( path, pRequest->getMimeType() );
+        }
 
-    if ( pRequest->getMethod() == RestRequest::methods::POST ) {
-        reply = post( path, pRequest->getContent(), pRequest->getMimeType() );
-    }
+        if ( pRequest->getMethod() == RestRequest::methods::POST ) {
+            reply = post( path, pRequest->getContent(), pRequest->getMimeType() );
+        }
 
-    mResponseBinding[reply] = pRequest;
+        mResponseBinding[reply] = pRequest;
+    }
 }
diff --git a/api/restapi.h b/api/restapi.h
index 30967a4b0e56a1b9d6eb2dd3a29a6fb055085048..ba06d3610d1fd400e7b112cc273dfdcef3cd028b 100755
--- a/api/restapi.h
+++ b/api/restapi.h
@@ -27,6 +27,7 @@
 
 #include "persistancelayer.h"
 #include "restRequests/restrequest.h"
+
 typedef QSharedPointer<RestRequest> RestApiRequest;
 class PersistanceLayer;
 class RestApi: public QObject
diff --git a/config.h b/config.h
index a27676f2013f77f211a4b42bcc949f9c259e1c55..995a97002b6f6ab52298fa1f53f100fa1895e61e 100755
--- a/config.h
+++ b/config.h
@@ -3,11 +3,11 @@
 
 #define SINGLE_SERVER_MODE true
 #define USE_SSL true
-#define SERVERADRESS "test.ucom.gv.at"
+#define SERVERADRESS "ucom.gv.at"
 #define ORGANIZATION "osAlliance"
 #define APPLICATIONNAME "ucom"
 #define ORGANIZATIONDOMAIN "osAlliance.com"
-#define GCM_SENDER_ID "586069884887"
 #define CONCURRENT true
+#define DBVERSION 1
 
 #endif // CONFIG_H
diff --git a/engine.pro b/engine.pro
index 7f5d1d014a1f368a3d52c4d78cd62db3e4a562bb..345426010084872e3ccaa93970264d96ded1dd30 100644
--- a/engine.pro
+++ b/engine.pro
@@ -7,6 +7,8 @@ INCLUDEPATH += websocket\
 
 SOURCES +=  api/meteorddp.cpp \
     api/restapi.cpp \
+    websocket/websocket.cpp \
+    websocket/websocketabstract.cpp \
     ddpRequests/ddploginrequest.cpp \
     ddpRequests/ddprequest.cpp \
     ddpRequests/ddpsubscriptionrequest.cpp \
@@ -22,59 +24,63 @@ SOURCES +=  api/meteorddp.cpp \
     ddpRequests/rocketchatcreateprivategrouprequest.cpp \
     ddpRequests/rocketchatadduserstochannel.cpp \
     ddpRequests/ddpufscreaterequest.cpp \
+    ddpRequests/rocketchatupdatepushtokenrequest.cpp \
+    ddpRequests/rocketchatgetroomsrequest.cpp \
+    ddpRequests/rocketchatmessagesearchrequest.cpp \
+    ddpRequests/rocketchatsubscribeactiveusers.cpp \
+    ddpRequests/rocketchatsubscriberoomrequest.cpp \
+    repos/abstractbaserepository.cpp \
+    repos/messagerepository.cpp \
     repos/channelrepository.cpp \
     repos/userrepository.cpp \
-    websocket/websocket.cpp \
-    websocket/websocketabstract.cpp \
+    repos/emojirepo.cpp \
+    repos/entities/rocketchatuser.cpp \
+    repos/entities/rocketchatmessage.cpp \
+    repos/entities/rocketchatattachment.cpp \
+    repos/entities/rocketchatchannel.cpp \
+    repos/entities/tempfile.cpp \
+    repos/entities/audiofile.cpp \
+    repos/entities/documentfile.cpp \
+    repos/entities/videofile.cpp \
+    repos/entities/emoji.cpp \
     persistancelayer.cpp \
     rocketchat.cpp \
     rocketchatserver.cpp \
-    repos/entities/rocketchatuser.cpp \
     utils.cpp \
-    repos/messagerepository.cpp \
     restRequests/getrequest.cpp \
     restRequests/restrequest.cpp \
     restRequests/restsendmessagerequest.cpp \
     restRequests/postrequest.cpp \
     restRequests/restpaths.cpp \
-    restRequests/restgetjoinedroomsrequest.cpp\
-    repos/entities/rocketchatmessage.cpp \
+    restRequests/restgetjoinedroomsrequest.cpp \
     restRequests/restloginrequest.cpp \
+    restRequests/restfileuploadrequest.cpp \
+    restRequests/restgetjoinedgroupsrequest.cpp \
+    restRequests/restlogoutrequest.cpp \
+    restRequests/restmerequest.cpp \
     notifications/notificationabstract.cpp \
     notifications/notifications.cpp \
     fileuploader.cpp \
-    restRequests/restfileuploadrequest.cpp \
-    ddpRequests/rocketchatupdatepushtokenrequest.cpp \
-    ddpRequests/rocketchatgetroomsrequest.cpp \
-    restRequests/restgetjoinedgroupsrequest.cpp \
     services/messageservice.cpp \
     services/rocketchatchannelservice.cpp \
     services/requests/loadhistoryservicerequest.cpp \
     services/requests/loadHistoryrequestcontainer.cpp \
     services/requests/loadmissedmessageservicerequest.cpp \
-    repos/entities/rocketchatattachment.cpp \
-    repos/abstractbaserepository.cpp \
-    repos/entities/rocketchatchannel.cpp \
-    services/emojiservice.cpp \
-    repos/entities/emojis.cpp \
-    repos/emojirepo.cpp \
-    ios/urlhandler.cpp \
-    rocketchatserverconfig.cpp \
     services/fileservice.cpp \
-    repos/entities/tempfile.cpp \
-    repos/entities/audiofile.cpp \
-    repos/entities/documentfile.cpp \
-    repos/entities/videofile.cpp \
-    ddpRequests/rocketchatmessagesearchrequest.cpp \
-    ddpRequests/rocketchatsubscribeactiveusers.cpp \
-    ddpRequests/rocketchatsubscriberoomrequest.cpp \
+    services/emojiservice.cpp \
     CustomModels/usermodel.cpp \
-    restRequests/restlogoutrequest.cpp \
-    restRequests/restmerequest.cpp \
-    CustomModels/messagemodel.cpp
+    rocketchatserverconfig.cpp \
+    CustomModels/channelmodel.cpp \
+    container/sortedvector.cpp \
+    container/observablelist.cpp \
+    container/modelobserver.cpp \
+    ddpRequests/rocketchatchangeuserpresancedefaultstatus.cpp
+
 HEADERS += \
     api/meteorddp.h \
     api/restapi.h \
+    websocket/websocket.h \
+    websocket/websocketabstract.h \
     ddpRequests/ddploginrequest.h \
     ddpRequests/ddpmethodrequest.h \
     ddpRequests/ddprequest.h \
@@ -90,18 +96,30 @@ HEADERS += \
     ddpRequests/rocketchatcreateprivategrouprequest.h \
     ddpRequests/rocketchatadduserstochannel.h \
     ddpRequests/ddpufscreaterequest.h \
+    ddpRequests/rocketchatgetroomsrequest.h \
+    ddpRequests/rocketchatsubscriberoomrequest.h \
+    ddpRequests/rocketchatsubscribeactiveusers.h \
+    ddpRequests/ddplogoutrequest.h \
+    ddpRequests/rocketchatupdatepushtokenrequest.h \
+    ddpRequests/rocketchatmessagesearchrequest.h \
     repos/abstractbaserepository.h \
     repos/channelrepository.h \
     repos/userrepository.h \
-    websocket/websocket.h \
-    websocket/websocketabstract.h \
+    repos/messagerepository.h \
+    repos/emojirepo.h \
+    repos/entities/rocketchatuser.h \
+    repos/entities/rocketchatattachment.h \
+    repos/entities/rocketchatchannel.h \
+    repos/entities/rocketchatmessage.h \
+    repos/entities/tempfile.h \
+    repos/entities/audiofile.h \
+    repos/entities/documentfile.h \
+    repos/entities/videofile.h \
+    repos/entities/emoji.h \
     persistancelayer.h \
     rocketchat.h \
     rocketchatserver.h \
-    repos/entities/rocketchatuser.h \
     utils.h \
-    repos/messagerepository.h \
-    config.h \
     restRequests/getrequest.h \
     ddpRequests/rocketchatmessagesearchrequest.h \
     notifications/notificationabstract.h \
@@ -109,40 +127,29 @@ HEADERS += \
     restRequests/restpaths.h \
     restRequests/restgetjoinedroomsrequest.h \
     restRequests/restloginrequest.h \
+    restRequests/restgetjoinedgroupsrequest.h \
+    restRequests/restmerequest.h \
+    restRequests/getrequest.h \
+    restRequests/restfileuploadrequest.h \
     notifications/notifications.h \
     fileuploader.h \
     restRequests/restfileuploadrequest.h \
-    ddpRequests/rocketchatupdatepushtokenrequest.h \
-    ios/QIOSApplicationDelegate+PushDelegate.h \
-    notifications/ios/iosdevicetokenstorage.h \
-    notifications/ios/DelegateClass.h \
-    restRequests/restgetjoinedgroupsrequest.h \
     services/messageservice.h \
     services/rocketchatchannelservice.h \
     services/requests/loadhistoryservicerequest.h \
     services/requests/loadHistoryrequestcontainer.h \
     services/requests/loadmissedmessageservicerequest.h \
-    repos/entities/rocketchatattachment.h \
-    repos/entities/rocketchatchannel.h \
+    services/fileservice.h \
     services/emojiservice.h \
-    repos/entities/emojis.h \
-    repos/emojirepo.h \
-    ios/urlhandler.h \
     ddpRequests/ddplogoutrequest.h \
     rocketchatserverconfig.h \
-    services/fileservice.h \
-    repos/entities/rocketchatmessage.h \
-    ddpRequests/rocketchatsubscribeactiveusers.h \
-    repos/entities/tempfile.h \
-    repos/entities/audiofile.h \
-    repos/entities/documentfile.h \
-    repos/entities/videofile.h \
-    ddpRequests/rocketchatgetroomsrequest.h \
-    ddpRequests/rocketchatsubscriberoomrequest.h \
     CustomModels/usermodel.h \
-    restRequests/restlogoutrequest.h \
-    restRequests/restmerequest.h \
-    CustomModels/messagemodel.h
+    CustomModels/channelmodel.h \
+    container/sortedvector.h \
+    container/observablelist.h \
+    container/modelobserver.h \
+    ddpRequests/rocketchatchangeuserpresancedefaultstatus.h
+
 linux{
 
     SOURCES += websocket/linuxwebsocket/websocketlinux.cpp \
@@ -161,7 +168,8 @@ android{
         notifications/android/androidnotificationreceiver.cpp\
         android/androidcheckpermissions.cpp \
         android/androidbadges.cpp \
-        android/androidstatusbarcolor.cpp
+        android/androidstatusbarcolor.cpp \
+        android/androidfiledialog.cpp
 
 
 
@@ -170,13 +178,8 @@ android{
         notifications/android/androidnotificationreceiver.h\
         android/androidcheckpermissions.h \
         android/androidbadges.h \
-        android/androidstatusbarcolor.h
-
-
-
-    ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
-    TRDESTDIR = $$system_path($$PWD/translations)
-    QMAKE_POST_LINK = $$QMAKE_COPY $$shell_path($$[QT_INSTALL_TRANSLATIONS]/qt*_de.qm) $$TRDESTDIR
+        android/androidstatusbarcolor.h \
+        android/androidfiledialog.h
 }
 
 
@@ -188,7 +191,9 @@ ios{
         notifications/ios/applepushnotifications.cpp\
         notifications/ios/iosdevicetokenstorage.cpp\
         segfaulthandler.cpp \
-        notifications/ios/iosnotificationreceiver.cpp
+        notifications/ios/iosnotificationreceiver.cpp\
+        ios/urlhandler.cpp \
+
 
     HEADERS += websocket/linuxwebsocket/websocketlinux.h\
         notifications/ios/applepushnotifications.h\
@@ -198,9 +203,8 @@ ios{
         segfaulthandler.h \
         ios/IosGalleryPicker.h \
         ios/shareheplersingelton.h \
-        notifications/ios/iosnotificationreceiver.h
-
-
+        notifications/ios/iosnotificationreceiver.h \
+        ios/urlhandler.h \
 
 
     OBJECTIVE_SOURCES += ios/QIOSApplicationDelegate+PushDelegate.mm \
@@ -214,11 +218,6 @@ ios{
     LIBS += -framework NotificationCenter
     LIBS += -framework UserNotifications
 
-    QMAKE_IOS_DEPLOYMENT_TARGET = 10
-    QMAKE_IOS_TARGETED_DEVICE_FAMILY = 1
-    PRODUCT_NAME = ucom
-    PRODUCT_BUNDLE_IDENTIFIER = at.gv.ucom
-
 }
 CONFIG(release, debug|release) {
     CONFIG  += qt release
diff --git a/ios/.DS_Store b/ios/.DS_Store
deleted file mode 100644
index efc1b3722aace8c03168cdc5e1ab137b09070e03..0000000000000000000000000000000000000000
Binary files a/ios/.DS_Store and /dev/null differ
diff --git a/ios/FileHandlerActivity.h b/ios/FileHandlerActivity.h
deleted file mode 100755
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/ios/FileHandlerActivity.mm b/ios/FileHandlerActivity.mm
deleted file mode 100755
index 4fb420d2db1df9371cab74f9f4d65fe3092c7836..0000000000000000000000000000000000000000
--- a/ios/FileHandlerActivity.mm
+++ /dev/null
@@ -1,11 +0,0 @@
-#import "FileHandlerActivity.h"
-#include <string>
-
-@implementation FileHandlerActivity
-
--(void) callFileActiviy:(std::string)path{
-
-
-}
-
-@end
\ No newline at end of file
diff --git a/ios/IosGalleryPicker.h b/ios/IosGalleryPicker.h
deleted file mode 100644
index 618a4b022433b283de7711644b675548c913f0ed..0000000000000000000000000000000000000000
--- a/ios/IosGalleryPicker.h
+++ /dev/null
@@ -1,38 +0,0 @@
-//
-//  IosGalleryPicker.h
-//  ucom
-//
-//  Created by armin on 08/03/17.
-//
-//
-
-#ifndef IosGalleryPicker_h
-#define IosGalleryPicker_h
-
-#include <QObject>
-#include <QString>
-
-class IosGalleryPicker:public QObject
-{
-Q_OBJECT
-
-public:
-    explicit IosGalleryPicker();
-    
-    QString imagePath(){
-        return mImagePath;
-    }
-    
-    void open();
-    
-    void receiveFile(QString pFileUrl);
-    
-private:
-    QString mImagePath;
-    void *mDelegate;
-    
-signals:
-    void filePicked(QString fileUrl);
-};
-
-#endif /* IosGalleryPicker_h */
diff --git a/ios/IosGalleryPicker.mm b/ios/IosGalleryPicker.mm
deleted file mode 100644
index a73c9dda007ec7d36b53e56837c28e69bb503743..0000000000000000000000000000000000000000
--- a/ios/IosGalleryPicker.mm
+++ /dev/null
@@ -1,77 +0,0 @@
-//
-//  IosGalleryPicker.m
-//  ucom
-//
-//  Created by armin on 08/03/17.
-//
-//
-
-#import <Foundation/Foundation.h>
-#import <UIKit/UIKit.h>
-#include <QtGui>
-#include <QtQuick>
-#include <QtGui/qpa/qplatformnativeinterface.h>
-#include <QString>
-#include <string>
-#include "ios/IosGalleryPicker.h"
-
-
-@interface IosGalleryPickerDelegate : NSObject<UIImagePickerControllerDelegate,UINavigationControllerDelegate>{
-    IosGalleryPicker *mIosPicker;
-}
-
-@end
-
-@implementation IosGalleryPickerDelegate
-
--(id) initWithIosGallery:(IosGalleryPicker *)iosPicker{
-    self = [super init];
-    if (self){
-        mIosPicker = iosPicker;
-    }
-    return self;
-}
-
-- (void) imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info
-{
-    
-    UIImage *orig = [info valueForKey:UIImagePickerControllerOriginalImage];
-    NSData *imgData = UIImagePNGRepresentation(orig);
-    QByteArray qImgData = QByteArray::fromNSData(imgData);
-    QMimeDatabase mimeDb;
-    QMimeType mimeType = mimeDb.mimeTypeForData(qImgData);
-    QString path = QStandardPaths::writableLocation( QStandardPaths::DocumentsLocation );
-    path += "/picker."+mimeType.preferredSuffix();
-    QFile destFile(path);
-    destFile.open(QFile::WriteOnly);
-    destFile.write(qImgData);
-    
-    mIosPicker->receiveFile(path);
-    [picker dismissViewControllerAnimated:YES completion:NULL];
-    [picker release];
-    
-}
-@end
-
-IosGalleryPicker::IosGalleryPicker():
-mDelegate([[IosGalleryPickerDelegate alloc] initWithIosGallery:this])
-{
-}
-
-void IosGalleryPicker::receiveFile(QString pFileUrl){
-    emit filePicked(pFileUrl);
-}
-
-
-void IosGalleryPicker::open()
-{
-    UIViewController *qtController = [[UIApplication sharedApplication].keyWindow rootViewController];
-    
-    UIImagePickerController *imageController = [[UIImagePickerController alloc] init];
-    [imageController setSourceType:UIImagePickerControllerSourceTypeSavedPhotosAlbum];
-    [imageController setDelegate:id(mDelegate)];
-    [imageController setAllowsEditing:YES];
-    
-    
-    [qtController presentViewController:imageController animated:YES completion:NULL];
-}
\ No newline at end of file
diff --git a/ios/QIOSApplicationDelegate+PushDelegate.h b/ios/QIOSApplicationDelegate+PushDelegate.h
deleted file mode 100755
index 832e1e55cbe75aef6e98a358d8974af868a06217..0000000000000000000000000000000000000000
--- a/ios/QIOSApplicationDelegate+PushDelegate.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#import <UIKit/UIKit.h>
-#import <UserNotifications/UserNotifications.h>
-
-
-@interface QIOSApplicationDelegate : UIResponder <UIApplicationDelegate,UNUserNotificationCenterDelegate>
-@end
-
-@interface QIOSApplicationDelegate (PushDelegate)
-@end
-
diff --git a/ios/QIOSApplicationDelegate+PushDelegate.mm b/ios/QIOSApplicationDelegate+PushDelegate.mm
deleted file mode 100755
index 3a8fe4646018463f9e46d5d86b50164ab86c8b4d..0000000000000000000000000000000000000000
--- a/ios/QIOSApplicationDelegate+PushDelegate.mm
+++ /dev/null
@@ -1,137 +0,0 @@
-#import "QIOSApplicationDelegate+PushDelegate.h"
-#import <UserNotifications/UserNotifications.h>
-
-#import "DelegateClass.h"
-#include "shareheplersingelton.h"
-#include "applepushnotifications.h"
-
-#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v)  ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
-#define SYSTEM_VERSION_LESS_THAN(v)                 ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending)
-
-@implementation QIOSApplicationDelegate (PushDelegate)
-static int badgeCount = 0;
-
-- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
-
-    UIColor *color = [UIColor colorWithRed:0 green:0.341 blue:0.4 alpha:1 ];
-    UIView *statusBar = [[[UIApplication sharedApplication] valueForKey:@"statusBarWindow"] valueForKey:@"statusBar"];
-    
-    if ([statusBar respondsToSelector:@selector(setBackgroundColor:)]) {
-        statusBar.backgroundColor = color;
-    }
-    
-    if( SYSTEM_VERSION_LESS_THAN( @"9.0" ) ){
-        if ([application respondsToSelector:@selector(isRegisteredForRemoteNotifications)])
-        {
-            // for iOS 8
-            [application registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge) categories:nil]];
-            [application registerForRemoteNotifications];
-        }else{
-            UIUserNotificationType myTypes = UIUserNotificationTypeBadge|UIRemoteNotificationTypeAlert|UIRemoteNotificationTypeSound;
-            [application registerForRemoteNotificationTypes:myTypes];
-        }
-
-    }else if( SYSTEM_VERSION_LESS_THAN( @"10.0" ) )
-    {
-        [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeSound |    UIUserNotificationTypeAlert | UIUserNotificationTypeBadge) categories:nil]];
-        [[UIApplication sharedApplication] registerForRemoteNotifications];
-        
-        if( launchOptions != nil )
-        {
-            NSLog( @"registerForPushWithOptions:" );
-        }
-    }
-    else
-    {
-        UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
-        center.delegate = self;
-        [center requestAuthorizationWithOptions:(UNAuthorizationOptionSound | UNAuthorizationOptionAlert | UNAuthorizationOptionBadge) completionHandler:^(BOOL granted, NSError * _Nullable error)
-         {
-             if( !error )
-             {
-                 [[UIApplication sharedApplication] registerForRemoteNotifications];  // required to get the app to do anything at all about push notifications
-                 NSLog( @"Push registration success." );
-             }
-             else
-             {
-                 NSLog( @"Push registration FAILED" );
-                 NSLog( @"ERROR: %@ - %@", error.localizedFailureReason, error.localizedDescription );
-                 NSLog( @"SUGGESTIONS: %@ - %@", error.localizedRecoveryOptions, error.localizedRecoverySuggestion );  
-             }  
-         }];  
-    }
-    
-       application.applicationIconBadgeNumber = 0;
-    
-    volatile NSDictionary *remoteNotif = [launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey];
-    if(remoteNotif){
-        NSLog(@"%@",remoteNotif);
-    }
-    
-    if([launchOptions objectForKey:UIApplicationLaunchOptionsURLKey]){
-        NSURL *fileUrl = [launchOptions valueForKey:UIApplicationLaunchOptionsURLKey];
-        NSString *fileStr = [fileUrl absoluteString];
-        //QString qFileStr = QString::fromStdString([fileStr UTF8String]);
-        ShareHelperSingelton *instance = ShareHelperSingelton::getInstance();
-        
-        instance->setPath([fileStr UTF8String]);
-    }
-    
-    
-    return YES;
-}
-
--(void)application:(UIApplication*)application didRegisterUserNotificationSettings:(  UIUserNotificationSettings *)notificationSettings{
-    [application registerForRemoteNotifications];
-}
-
-
-- (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken
-{
-    NSLog(@"My token is: %@", deviceToken);
-     NSString * deviceTokenString = [[[[deviceToken description] stringByReplacingOccurrencesOfString: @"<" withString: @""] stringByReplacingOccurrencesOfString: @">" withString: @""]   stringByReplacingOccurrencesOfString: @" " withString: @""];
-     NSLog(@"the generated device token string is : %@",deviceTokenString);
-    DelegateObject *delegateObject = [[DelegateObject alloc] init];
-    [delegateObject initWithCPPInstance];
-    [delegateObject setToken:deviceTokenString];
-
-}
-- (void)application:(UIApplication*)application didFailToRegisterForRemoteNotificationsWithError:(NSError*)error
-{
-    NSLog(@"Failed to get token, error: %@", error);
-}
-
-- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo{
-
-}
-
-- (void)application:(UIApplication *)application didReceiveRemoteNotification:(nonnull NSDictionary *)userInfo fetchCompletionHandler:(nonnull void (^)(UIBackgroundFetchResult))completionHandler{
-
-    
-    application.applicationIconBadgeNumber = 0;
-
-    DelegateObject *delegateObject = [[DelegateObject alloc] init];
-    [delegateObject initWithCPPInstance];
-
-    NSString *ejson = [userInfo valueForKey:@"ejson"];
-    NSData *jsonData = [ejson dataUsingEncoding:NSUTF8StringEncoding];
-    NSMutableDictionary *apns = [userInfo valueForKey:@"apns"];
-    NSMutableDictionary *dict = [NSJSONSerialization JSONObjectWithData:jsonData options:kNilOptions error:nil];
-    NSMutableDictionary *sender = [dict valueForKey:@"sender"];
-    NSLog(@"%@",sender);
-    NSString *username = [sender valueForKey:@"username"];
-    NSString *name = [dict valueForKey:@"name"];
-    if([[dict valueForKey:@"name"] isEqual:[NSNull null]]){
-        name = username;
-    }
-    NSLog(@"%@",name);
-        NSString *server = [dict valueForKey:@"rid"];
-        NSString *type = [dict objectForKey:@"type"];
-        NSString *rid = [dict valueForKey:@"rid"];
-        application.applicationIconBadgeNumber = 0;
-    if(server!=nil&&rid!=nil&&name!=nil&&type!=nil){
-        [delegateObject sendMessage:server :rid :name :type ];
-    }
-}
-
-@end
diff --git a/ios/fileopener.h b/ios/fileopener.h
deleted file mode 100755
index 9f6195dc8a188fc7d3c04923d21e6a3a337f1664..0000000000000000000000000000000000000000
--- a/ios/fileopener.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef FILEOPENER_H
-#define FILEOPENER_H
-
-#include <QObject>
-
-class FileOpener : public QObject
-{
-    Q_OBJECT
-public:
-    static void callFileOpenDialog(QString path);
-private:
-    explicit FileOpener(QObject *parent = 0);
-
-};
-
-#endif // FILEOPENER_H
diff --git a/ios/fileopener.mm b/ios/fileopener.mm
deleted file mode 100755
index e55b8f0210f3b8b85c542f854de93d8bf1f16cc3..0000000000000000000000000000000000000000
--- a/ios/fileopener.mm
+++ /dev/null
@@ -1,37 +0,0 @@
-#include "fileopener.h"
-#import <UIKit/UIKit.h>
-#import <Foundation/Foundation.h>
-#include <QDebug>
-
-void FileOpener::callFileOpenDialog(QString path)
-{
-    path = path.right(path.length()-7);
-    QStringList pathParts = path.split("/");
-    std::string fileName = pathParts.last().toStdString();
-    std::string fullPath = path.toStdString();
-    
-    NSString *completePath = [NSString stringWithUTF8String:fullPath.c_str()];
-    NSString *activityItemName = [NSString stringWithUTF8String:fileName.c_str()];
-    
-    NSData* data = [NSData dataWithContentsOfFile:completePath];
-    if (data != nil){
-        UIActivityViewController* activityViewController = [[UIActivityViewController alloc] initWithActivityItems:@[activityItemName, data] applicationActivities:nil];
-    
-        activityViewController.excludedActivityTypes = nil;
-        
-        UIApplication * application = [UIApplication sharedApplication];
-
-        UIWindow *window = [application keyWindow];
-
-        UIViewController *viewController = [window rootViewController];
-
-        [viewController presentViewController:activityViewController animated:false completion:nil];
-   
-        [activityViewController release];
-    }
-}
-
-FileOpener::FileOpener(QObject *parent) : QObject(parent)
-{
-
-}
diff --git a/ios/qiosapplicationdelegate.h b/ios/qiosapplicationdelegate.h
deleted file mode 100755
index 722c0801a0573c9d0600ab43ae8a71d1a76428a5..0000000000000000000000000000000000000000
--- a/ios/qiosapplicationdelegate.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the plugins of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#import <UIKit/UIKit.h>
-#import <QtGui/QtGui>
-
-#import "qiosviewcontroller.h"
-
-@interface QIOSApplicationDelegate : UIResponder <UIApplicationDelegate>
-@end
diff --git a/ios/shareheplersingelton.h b/ios/shareheplersingelton.h
deleted file mode 100644
index 0c7b84b34682756e701a16159394c3185457b875..0000000000000000000000000000000000000000
--- a/ios/shareheplersingelton.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef SHAREHEPLERSINGELTON_H
-#define SHAREHEPLERSINGELTON_H
-
-#include <QObject>
-#include <QString>
-
-class ShareHelperSingelton:public QObject{
-    Q_OBJECT
-
-public:
-    static ShareHelperSingelton* getInstance();
-
-    ShareHelperSingelton& operator=(ShareHelperSingelton const &) = delete;
-    ShareHelperSingelton (ShareHelperSingelton const &) = delete;
-
-    QString getPath();
-    void setPath(QString pPath);
-
-private:
-    ShareHelperSingelton(){}
-    static ShareHelperSingelton* mInstance;
-    QString mCurPath;
-
-signals:
-    void shareLinkReceived(QString link);
-
-};
-
-
-
-#endif // SHAREHEPLERSINGELTON_H
diff --git a/ios/shareheplersingelton.mm b/ios/shareheplersingelton.mm
deleted file mode 100644
index 6c5d9d9ca1f4a8796fb8d4a99099638925ef8911..0000000000000000000000000000000000000000
--- a/ios/shareheplersingelton.mm
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "shareheplersingelton.h"
-
-ShareHelperSingelton *ShareHelperSingelton::mInstance = nullptr;
-
-ShareHelperSingelton *ShareHelperSingelton::getInstance()
-{
-    if(mInstance == nullptr){
-        mInstance = new ShareHelperSingelton;
-    }
-    return mInstance;
-}
-
-QString ShareHelperSingelton::getPath()
-{
-    return mCurPath;
-}
-
-void ShareHelperSingelton::setPath(QString pPath)
-{
-    mCurPath = pPath;
-    emit shareLinkReceived(pPath);
-}
diff --git a/ios/urlhandler.cpp b/ios/urlhandler.cpp
deleted file mode 100644
index 91eb35bc49d4f63adf17df97b26c29cf5c3ed631..0000000000000000000000000000000000000000
--- a/ios/urlhandler.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "urlhandler.h"
-#include <QUrl>
-
-UrlHandler::UrlHandler(QObject *parent) : QObject(parent)
-{
-
-}
-
-void UrlHandler::files(const QUrl &url)
-{
-    emit openFile(url.toLocalFile());
-}
-
-UrlHandler::~UrlHandler(){
-
-}
\ No newline at end of file
diff --git a/ios/urlhandler.h b/ios/urlhandler.h
deleted file mode 100644
index 71a7c4b05ae464dba1362d502f17800b09e83721..0000000000000000000000000000000000000000
--- a/ios/urlhandler.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef URLHANDLER_H
-#define URLHANDLER_H
-
-#include <QObject>
-
-class UrlHandler : public QObject
-{
-    Q_OBJECT
-public:
-    explicit UrlHandler(QObject *parent = 0);
-
-
-    ~UrlHandler();
-
-public slots:
-    void files(const QUrl &url);
-
-    
-signals:
-    void openFile(const QString&);
-};
-
-#endif // URLHANDLER_H
diff --git a/main.cpp b/main.cpp
deleted file mode 100755
index afd78292fb37b8e4a7237c8166253f845c6b28e1..0000000000000000000000000000000000000000
--- a/main.cpp
+++ /dev/null
@@ -1,152 +0,0 @@
-#include <QGuiApplication>
-#include <QQmlApplicationEngine>
-#include <QRect>
-#include <QQmlContext>
-#include <QSettings>
-#include <QThread>
-#include <QtMultimedia/QMediaRecorder>
-#include <QtMultimedia/QAudioRecorder>
-#include <QtMultimedia/QCamera>
-#include <QtMultimedia/QVideoRendererControl>
-#include <QImageReader>
-#include <QImageReader>
-#include <QQuickStyle>
-#include <QDebug>
-#include <QtGlobal>
-#include <iostream>
-#include <QtWebView/QtWebView>
-
-#include "config.h"
-
-#include "rocketchat.h"
-#include "persistancelayer.h"
-#include "rocketchatserver.h"
-#include "notifications/notifications.h"
-#include "CustomModels/usermodel.h"
-#include "CustomModels/messagemodel.h"
-#include "utils.h"
-
-#ifdef Q_OS_ANDROID
-    #include <signal.h>
-    #include <stdio.h>
-    #include <stdlib.h>
-
-
-
-void segfaultHandler(int signo){
-    Q_UNUSED(signo)
-    std::cout<<"segfault";
-    exit(1);
-}
-#endif
-
-#ifdef Q_OS_WINRT
-
-#endif
-
-
-int main( int argc, char *argv[] )
-{
-
-    
-    QCoreApplication::setAttribute( Qt::AA_EnableHighDpiScaling );
-    QCoreApplication::setOrganizationName( ORGANIZATION );
-    QCoreApplication::setOrganizationDomain( ORGANIZATIONDOMAIN );
-    QCoreApplication::setApplicationName( APPLICATIONNAME );
-    PersistanceLayer *storage = PersistanceLayer::instance();
-    UserModel userModel;
-    MessageModel messageModel;
-    #ifdef Q_OS_ANDROID
-
-    struct sigaction act;
-
-    act.sa_handler = segfaultHandler;
-    sigemptyset(&act.sa_mask);
-    act.sa_flags = 0;
-
-//    sigaction(SIGSEGV,&act,NULL);
-    #endif
-
-
-
-
-    int result = EXIT_FAILURE;
-    QGuiApplication app( argc, argv );
-    QtWebView::initialize();
-
-
-
-    QString cleanExit = storage->getSetting("cleanExit");
-    if(cleanExit == "false"){
-        qCritical()<<"app unclean exit last time";
-
-        if(storage->getSetting("Error").length()){
-            #ifdef Q_OS_ANDROID
-            QAndroidJniObject errorStringJni = QAndroidJniObject::fromString(storage->getSetting("ERROR"));
-
-            QAndroidJniObject::callStaticMethod<void>("at/gv/ucom/MainActivity", "catchError","(Ljava/lang/String;)V",errorStringJni.object<jstring>());
-            #endif
-        }
-    }
-    storage->setSetting("cleanExit","false");
-    storage->setSetting("ERROR","");
-
-    QTranslator qtTranslator;
-    QString language = QLocale::system().bcp47Name().split("-")[0].toLower();
-    qDebug()<<"locale : "<<QLatin1String("qt_") + language;
-
-    QTranslator myappTranslator;
-    qDebug()<<"language code: "<<language;
-    if(myappTranslator.load(QLatin1String(":/ucom_") + language)){
-        qWarning()<<"loaded translation file: "<<"ucom_"+language;
-        app.installTranslator(&myappTranslator);
-    }else{
-        qWarning()<<"could not open translation file: "<<"ucom_"+language;
-    }
-
-    QTranslator qtTranslator3;
-
-    if(qtTranslator3.load(QLatin1String(":/translations/qtquickcontrols_") + language)){
-        qWarning()<<"loaded translation file: "<<"qtquickcontrols_"+language;
-        app.installTranslator(&qtTranslator3);
-    }else{
-        qWarning()<<"could not open translation file: "<<"qtquickcontrols_"+language;
-    }
-    QQmlApplicationEngine engine;
-
-    QSharedPointer<RocketChatServerData> server(
-                new RocketChatServerData( "testUcomServer", SERVERADRESS,
-                                          "https://" + QString( SERVERADRESS ) + "/api/v1",userModel, messageModel )
-                );
-    RocketChat rocketChat( &app );
-    rocketChat.registerServer( server );
-
-    QQmlContext *context = engine.rootContext();
-
-    QString buildTime(__TIME__ );
-    QString buildDate(__DATE__ );
-    QString serverAdress(SERVERADRESS);
-    context->setContextProperty( "rocketChatController", &rocketChat );
-    context->setContextProperty( "storage", storage );
-#ifdef QT_DEBUG
-    context->setContextProperty( "debug", QVariant(true) );
-#else
-    context->setContextProperty( "debug", QVariant(false) );
-#endif
-    context->setContextProperty("buildTime",QVariant(buildTime));
-    context->setContextProperty("userModel",&userModel);
-    context->setContextProperty("messagesModel",&messageModel);
-    context->setContextProperty("buildDate",QVariant(buildDate));
-    context->setContextProperty("serverAdress",QVariant(serverAdress));
-    context->setContextProperty("pathPrefix", Utils::getPathPrefix());
-
-    engine.load( QUrl( QLatin1String( "qrc:/qml/main.qml" ) ) );
-
-    try {
-        result =  app.exec();
-        storage->setSetting("cleanExit","true");
-    } catch (const std::exception &ex) {
-        qCritical()<<ex.what();
-    }
-    return result;
-}
diff --git a/notifications/android/androidnotificationreceiver.cpp b/notifications/android/androidnotificationreceiver.cpp
index ee11aa7844b13a98bfde7a63393a660118837c4a..8ac4cd28db982b2de0561a5bcb71efd45f691871 100755
--- a/notifications/android/androidnotificationreceiver.cpp
+++ b/notifications/android/androidnotificationreceiver.cpp
@@ -3,8 +3,7 @@
 #include <QAndroidJniObject>
 #include <QDebug>
 
-Q_GLOBAL_STATIC(AndroidNotificationReceiver, androidReceiver)
-
+AndroidNotificationReceiver *AndroidNotificationReceiver::mAndroidReceiver = nullptr;
 
 AndroidNotificationReceiver::AndroidNotificationReceiver():mReceiver(0)
 {
@@ -60,22 +59,28 @@ AndroidNotificationReceiver::~AndroidNotificationReceiver(){
 
 }
 
-void AndroidNotificationReceiver::doRegister(GooglePushNotifications *pReceiver, const QString &pSenderId){
+void AndroidNotificationReceiver::doRegister(GooglePushNotifications* pGooglePushNotifications){
 
     qDebug()<<"called register";
-    qDebug()<<pSenderId;
-    mReceiver = pReceiver;
-
-    QAndroidJniObject jSenderId = QAndroidJniObject::fromString(pSenderId);
-    QAndroidJniObject::callStaticMethod<void>(
-                "at/gv/ucom/MainActivity",
-                "registerGCM",
-                "(Ljava/lang/String;)V",
-                jSenderId.object<jstring>());
+    mReceiver = pGooglePushNotifications;
+
+     QAndroidJniObject regIdObject = QAndroidJniObject::callStaticObjectMethod(
+                "at/gv/ucom/FcmMessageTokenHandler",
+                "getToken",
+                 "()Ljava/lang/String;");
+    QAndroidJniEnvironment env;
+
+    QString qStr = regIdObject.toString();
+    if(!qStr.isEmpty()){
+        mAndroidReceiver->mReceiver->setGcmRegistrationId(qStr);
+    }
 }
 
 AndroidNotificationReceiver *AndroidNotificationReceiver::instance(){
-    return androidReceiver;
+    if(!mAndroidReceiver){
+        mAndroidReceiver = new AndroidNotificationReceiver;
+    }
+    return mAndroidReceiver;
 }
 
 void AndroidNotificationReceiver::registrationIdHandler(JNIEnv *env, jobject thiz, jstring registrationId){
@@ -85,7 +90,7 @@ void AndroidNotificationReceiver::registrationIdHandler(JNIEnv *env, jobject thi
     QString str = QString::fromUtf8(nativeString);
     qDebug()<<"regId: "<<str;
     env->ReleaseStringUTFChars(registrationId, nativeString);
-    androidReceiver->mReceiver->setGcmRegistrationId(str);
+    mAndroidReceiver->mReceiver->setGcmRegistrationId(str);
 }
 
 void AndroidNotificationReceiver::errorHandler(JNIEnv *env, jobject thiz, jstring errorMessage){
@@ -108,9 +113,20 @@ void AndroidNotificationReceiver::messageReceived(JNIEnv *env, jobject thiz, jst
     QString nameStr = QString::fromUtf8(nameCpp);
     QString typeStr = QString::fromUtf8(typeCpp);
 
+    AndroidNotificationReceiver *androidNotificationReceiver = AndroidNotificationReceiver::instance();
 
-    if(androidReceiver->mReceiver){
-        androidReceiver->mReceiver->pushMessageReceived(serverStr, ridStr, nameStr, typeStr);
+    if(androidNotificationReceiver->mReceiver != nullptr){
+        androidNotificationReceiver->mReceiver->pushMessageReceived(serverStr, ridStr, nameStr, typeStr);
     }
     qDebug()<<"received push notification in cpp: "<<ridCpp<<" "<<serverCpp;
 }
+
+GooglePushNotifications *AndroidNotificationReceiver::receiver() const
+{
+    return mReceiver;
+}
+
+void AndroidNotificationReceiver::setReceiver(GooglePushNotifications *receiver)
+{
+    mReceiver = receiver;
+}
diff --git a/notifications/android/androidnotificationreceiver.h b/notifications/android/androidnotificationreceiver.h
index e86c81d6e1978241b772bcca9fe27cb583639765..15d92180bd7ce7f0ccedb40ee9a9226de41dcddd 100755
--- a/notifications/android/androidnotificationreceiver.h
+++ b/notifications/android/androidnotificationreceiver.h
@@ -5,7 +5,7 @@
 #include <QAndroidJniEnvironment>
 #include <QAndroidJniObject>
 #include <QGlobalStatic>
-#include "googlepushnotifications.h"
+#include "notifications/android/googlepushnotifications.h"
 
 class GooglePushNotifications;
 
@@ -15,15 +15,20 @@ public:
     AndroidNotificationReceiver();
     ~AndroidNotificationReceiver();
 
-    void doRegister(GooglePushNotifications *pReceiver,const QString& pSenderId);
+    void doRegister(GooglePushNotifications* pGooglePushNotifications);
 
     static AndroidNotificationReceiver *instance();
     static void registrationIdHandler(JNIEnv *env, jobject thiz, jstring errorMessge);
     static void errorHandler(JNIEnv *env, jobject thiz, jstring errorMessage);
     static void messageReceived(JNIEnv *env, jobject thiz, jstring server, jstring rid, jstring name, jstring type);
 
+    GooglePushNotifications *receiver() const;
+    void setReceiver(GooglePushNotifications *receiver);
+
 private:
-    GooglePushNotifications *mReceiver;
+    static AndroidNotificationReceiver *mAndroidReceiver;
+
+    GooglePushNotifications *mReceiver = nullptr;
     QString mSenderId;
 
 };
diff --git a/notifications/android/googlepushnotifications.cpp b/notifications/android/googlepushnotifications.cpp
index 55e6c1d4ef6526ad19794594f2e14e0016ced861..c8fea8fe775c0ac29d8e0eafc6cf69fd8c499bf9 100755
--- a/notifications/android/googlepushnotifications.cpp
+++ b/notifications/android/googlepushnotifications.cpp
@@ -4,34 +4,34 @@
 
 GooglePushNotifications::GooglePushNotifications()
 {
-
+    mReceiver = AndroidNotificationReceiver::instance();
+    mReceiver->setReceiver(this);
 }
 
-QString GooglePushNotifications::getGcmSenderId() const
-{
-    return mGcmSenderId;
-}
+//QString GooglePushNotifications::getGcmSenderId() const
+//{
+//    return mGcmSenderId;
+//}
 
-void GooglePushNotifications::setGcmSenderId(const QString &pSenderId)
-{
-    if(mGcmSenderId != pSenderId){
-        mGcmSenderId = pSenderId;
-    }
-}
+//void GooglePushNotifications::setGcmSenderId(const QString &pSenderId)
+//{
+//    if(mGcmSenderId != pSenderId){
+//        mGcmSenderId = pSenderId;
+//    }
+//}
 
 QString GooglePushNotifications::getGcmRegistrationId() const
 {
     return mGcmRegistrationId;
 }
 
-void GooglePushNotifications::setGcmRegistrationId(const QString &pRegistrationId)
+void GooglePushNotifications::setGcmRegistrationId(QString pRegistrationId)
 {
     if(!pRegistrationId.isEmpty()){
         if(mGcmRegistrationId != pRegistrationId){
             mGcmRegistrationId = pRegistrationId;
+            emit tokenReceived(pRegistrationId);
         }
-
-        emit tokenReceived(pRegistrationId);
     }
 }
 
@@ -42,15 +42,15 @@ void GooglePushNotifications::pushMessageReceived(QString pServer, QString pRid,
 
 void GooglePushNotifications::init()
 {
-    if(!mGcmSenderId.isEmpty()){
+   // if(!mGcmSenderId.isEmpty()){
         if(mGcmRegistrationId.isEmpty()){
             qDebug()<<"init gcm register called";
-            AndroidNotificationReceiver::instance()->doRegister(this, mGcmSenderId);
+            mReceiver->doRegister(this);
         }
         else{
 
         }
-    }
+   // }
 }
 
 void GooglePushNotifications::registerWithService()
diff --git a/notifications/android/googlepushnotifications.h b/notifications/android/googlepushnotifications.h
index 7c6d93394cea1022794d426787d15e1e12f87ef5..01df7e3e9f44504f74979ea5379dca3d246055c3 100755
--- a/notifications/android/googlepushnotifications.h
+++ b/notifications/android/googlepushnotifications.h
@@ -1,19 +1,21 @@
 #ifndef GOOGLEPUSHNOTIFICATIONS_H
 #define GOOGLEPUSHNOTIFICATIONS_H
 #include "notifications/notificationabstract.h"
+#include "notifications/android/androidnotificationreceiver.h"
 #include "config.h"
 
+class AndroidNotificationReceiver;
 class GooglePushNotifications:public NotificationAbstract
 {
     Q_OBJECT
 public:
     GooglePushNotifications();
 
-    QString getGcmSenderId() const;
-    void setGcmSenderId(const QString &pValue);
+//    QString getGcmSenderId() const;
+//    void setGcmSenderId(const QString &pValue);
 
     QString getGcmRegistrationId() const;
-    void setGcmRegistrationId(const QString &pValue);
+    void setGcmRegistrationId(QString pValue);
 
     void pushMessageReceived(QString pServer, QString pRid, QString pName, QString pType);
 
@@ -22,8 +24,9 @@ public:
     virtual void registerWithService();
 
 private:
-    QString mGcmSenderId = GCM_SENDER_ID;
+  //  QString mGcmSenderId = GCM_SENDER_ID;
     QString mGcmRegistrationId;
+    AndroidNotificationReceiver* mReceiver;
 
 };
 
diff --git a/notifications/notifications.cpp b/notifications/notifications.cpp
index b65785413a0fc754d851ac50bfc04685abeaaac4..577c0d1fb6b3dd87f3ad7f7457ec4e088a478f65 100755
--- a/notifications/notifications.cpp
+++ b/notifications/notifications.cpp
@@ -19,7 +19,7 @@ Notifications::Notifications()
 
 #endif
 
-    if(mNotificationInstance != NULL){
+    if(mNotificationInstance != nullptr){
         connect(mNotificationInstance,&Notifications::tokenReceived,this, &Notifications::tokenReceived);
         connect(mNotificationInstance,&Notifications::messageReceived,this, &Notifications::messageReceived);
     }
diff --git a/persistancelayer.cpp b/persistancelayer.cpp
index ddef3d9abe800dbec3f6a82b6462580a3789fd6e..54c30f837797c81ded5a239a31a4366efbf44109 100755
--- a/persistancelayer.cpp
+++ b/persistancelayer.cpp
@@ -46,8 +46,9 @@ void PersistanceLayer::initShema()
         qDebug() << pragmaquery.lastError();
     }
 
-    QSqlQuery query;
     transaction();
+
+    QSqlQuery query;
     query.prepare( "CREATE TABLE IF NOT EXISTS user_data "
                    "(id integer primary key,"
                    "username varchar(40),"
@@ -110,25 +111,50 @@ void PersistanceLayer::initShema()
     if ( !query.exec() ) {
         qWarning() << query.lastError();
     }
-
     query.prepare( "CREATE TABLE IF NOT EXISTS custom_emojis"
                    "(id varchar(30) primary key,"
                    "file varchar(200),"
                    "html varchar(200),"
                    "unicode varchar(20),"
-                   "category varchar(100))" );
+                   "category varchar(100),"
+                   "sort_order integer DEFAULT 1)" );
 
     if ( !query.exec() ) {
         qWarning() << query.lastError();
     }
+    commit();
 
-    query.prepare( "CREATE TABLE IF NOT EXISTS app_info"
-                   "(id varchar(30) primary key,"
-                   "db_ver integer,"
-                   "app_ver integer)" );
-
-    if ( !query.exec() ) {
+    query.prepare( "SELECT db_ver FROM app_info WHERE id=0" );
+    int dbVer = -1;
+    if( !query.exec() ) {
         qWarning() << query.lastError();
+    }else{
+        dbVer = 0;
+        QSqlRecord rec = query.record();
+        int dbVerIndex = rec.indexOf("db_ver");
+        while ( query.next() ){
+            dbVer = query.value(dbVerIndex).toInt();
+        }
+    }
+
+    if( !dbVer ) {
+        upgradeSchema();
+    }else if( dbVer == -1 ){
+        transaction();
+        query.prepare( "CREATE TABLE IF NOT EXISTS app_info"
+                       "(id varchar(30) primary key,"
+                       "db_ver integer,"
+                       "app_ver integer)" );
+
+        if ( !query.exec() ) {
+            qWarning() << query.lastError();
+        }
+        commit();
+        QString dbVersion = QString::number(DBVERSION);
+        query.prepare("INSERT INTO app_info (db_ver) VALUES("+dbVersion+")");
+        if(!query.exec()){
+            qWarning() << query.lastError();
+        }
     }
 
     query.prepare( "CREATE TABLE IF NOT EXISTS app_settings"
@@ -141,7 +167,7 @@ void PersistanceLayer::initShema()
         qWarning() << query.lastError();
     }
 
-    commit();
+
 
     query.prepare( "SELECT id FROM custom_emojis" );
 
@@ -186,6 +212,56 @@ void PersistanceLayer::initShema()
     }
 }
 
+void PersistanceLayer::upgradeSchema()
+{
+    QSqlQuery query;
+    query.prepare("SELECT db_ver FROM app_info");
+    int dbVersion = 0;
+    if( !query.exec() ){
+        qWarning() << "failed execute app_version query";
+    }else{
+        QSqlRecord rec = query.record();
+        int dbVerIndex = rec.indexOf("db_ver");
+        while ( query.next() ){
+            dbVersion = query.value(dbVerIndex).toInt();
+        }
+        if(dbVersion < DBVERSION){
+            QFile sqlFile;
+
+            if(dbVersion < 1){
+                sqlFile.setFileName( ":/sql/migrations/1.sql" );
+                query.prepare("DELETE FROM custom_emojis");
+                if(query.exec()){
+                    qWarning()<<"truncation of, custom_emojis failed";
+                    qWarning()<< query.lastError();
+                }
+            }
+
+            if ( !sqlFile.open( QIODevice::ReadOnly | QIODevice::Text ) ) {
+                qWarning() << "error loading dump";
+                qWarning() << sqlFile.errorString();
+            }else{
+                transaction();
+
+                QTextStream in( &sqlFile );
+                QString line;
+
+                while(!in.atEnd()){
+                    line = in.readLine();
+                    query.prepare(line);
+                    if( !query.exec() ){
+                        qWarning() << "migration to DB ver 1 failed";
+                        qWarning() << query.lastError();
+                    }
+                }
+
+                commit();
+            }
+            upgradeSchema();
+        }
+    }
+}
+
 void PersistanceLayer::wipeDb()
 
 {
@@ -688,17 +764,21 @@ void PersistanceLayer::addCustomEmoji( QString pTag, QString pPath, QString pHtm
     addCustomEmoji( pTag, pPath, pHtml, pCategory, QString( "" ) );
 }
 
-void PersistanceLayer::addCustomEmoji( QString pTag, QString pPath, QString pHtml, QString pCategory, QString pUnicode )
+void PersistanceLayer::addCustomEmoji(QString pTag, QString pPath, QString pHtml, QString pCategory, QString pUnicode )
 {
+    addCustomEmoji( pTag, pPath, pHtml, pCategory, pUnicode, 0 );
+}
+void PersistanceLayer::addCustomEmoji(QString pTag, QString pPath, QString pHtml, QString pCategory, QString pUnicode , int pOrder){
     transaction();
     QSqlQuery addCustomEmojiQuery;
-    addCustomEmojiQuery.prepare( "REPLACE INTO custom_emojis (id,file,html,unicode,category)"
-                                 " VALUES (:id,:file,:html,:unicode,:category)" );
+    addCustomEmojiQuery.prepare( "REPLACE INTO custom_emojis (id,file,html,unicode,category,sort_order)"
+                                 " VALUES (:id,:file,:html,:unicode,:category,:sort_order)" );
     addCustomEmojiQuery.bindValue( ":id", pTag );
     addCustomEmojiQuery.bindValue( ":file", pPath );
     addCustomEmojiQuery.bindValue( ":html", pHtml );
     addCustomEmojiQuery.bindValue( ":unicode", pUnicode );
     addCustomEmojiQuery.bindValue( ":category", pCategory );
+    addCustomEmojiQuery.bindValue( ":sort_order", pOrder);
 
     if ( !addCustomEmojiQuery.exec() ) {
         qWarning() << addCustomEmojiQuery.lastError();
@@ -706,6 +786,7 @@ void PersistanceLayer::addCustomEmoji( QString pTag, QString pPath, QString pHtm
     commit();
 }
 
+
 QHash<QString, QString> PersistanceLayer::getMessageByid( QString pId )
 {
     QSqlQuery message;
@@ -971,7 +1052,7 @@ QList<QJsonObject > PersistanceLayer::getMessagesByRid( QString pRid, qint64 pFr
 QList<QVariantHash> PersistanceLayer::getChannels( void )
 {
     QSqlQuery rooms;
-    rooms.prepare( "SELECT * FROM rooms" );
+    rooms.prepare( "SELECT * FROM rooms LEFT JOIN (SELECT DISTINCT rid FROM messages ORDER BY ts DESC) AS sub ON rooms.id = sub.rid " );
     QList<QVariantHash> roomsList;
     roomsList.reserve(100);
 
@@ -1008,7 +1089,7 @@ QList<QVariantHash> PersistanceLayer::getChannels( void )
 QList< QHash<QString, QString > > PersistanceLayer::getCustomEmojis()
 {
     QSqlQuery emojiQuery;
-    emojiQuery.prepare( "SELECT id,file,html,category,unicode FROM custom_emojis" );
+    emojiQuery.prepare( "SELECT id,file,html,category,unicode,sort_order FROM custom_emojis" );
     QList<QHash<QString, QString> > returnList;
     returnList.reserve(3000);
 
@@ -1023,6 +1104,7 @@ QList< QHash<QString, QString > > PersistanceLayer::getCustomEmojis()
         int htmlCol = rec.indexOf( "html" );
         int catCol = rec.indexOf( "category" );
         int unicodeCol = rec.indexOf( "unicode" );
+        int orderCol = rec.indexOf( "sort_order" );
 
         while ( emojiQuery.next() ) {
             QHash<QString, QString> entry;
@@ -1031,6 +1113,7 @@ QList< QHash<QString, QString > > PersistanceLayer::getCustomEmojis()
             entry["html"] = emojiQuery.value( htmlCol ).toString();
             entry["category"] = emojiQuery.value( catCol ).toString();
             entry["unicode"] = emojiQuery.value( unicodeCol ).toString();
+            entry["sort_order"] = emojiQuery.value( orderCol ).toString();
 
             returnList.append( entry );
         }
diff --git a/persistancelayer.h b/persistancelayer.h
index 737679dc83c72497290c7eb91bc09650da3089b0..5879fe76b59967ba5908b97aa1e71b25fa457d3d 100755
--- a/persistancelayer.h
+++ b/persistancelayer.h
@@ -13,6 +13,8 @@
 #include <QJsonObject>
 
 #include "repos/entities/rocketchatchannel.h"
+#include "config.h"
+
 class RocketChatChannel;
 class RestApi;
 class MeteorDDP;
@@ -43,6 +45,7 @@ public slots:
         void addFileCacheEntry( QString pUrl, QString pPath );
         void addCustomEmoji( QString pTag, QString pPath, QString pHtml, QString pCategory );
         void addCustomEmoji( QString pTag, QString pPath, QString pHtml, QString pCategory, QString pUnicode );
+        void addCustomEmoji( QString pTag, QString pPath, QString pHtml, QString pCategory, QString pUnicode, int pOrder );
 public:
 
         QString addFileToTemp( QString pUrl, QString pPath );
@@ -93,6 +96,8 @@ public:
         void init();
         void initShema();
 
+        void upgradeSchema();
+
         int mCommitCounter = 0;
 
     signals:
diff --git a/repos/abstractbaserepository.cpp b/repos/abstractbaserepository.cpp
index 614f80128c07a3bbe0c0a5413072a0374c7e6054..40d4a2f3c22dc1663cf15a63dd9285eec13e52ed 100755
--- a/repos/abstractbaserepository.cpp
+++ b/repos/abstractbaserepository.cpp
@@ -43,6 +43,12 @@ QHash<QString, QSharedPointer<T> > AbstractBaseRepository<T>::getElements() cons
     return mElements;
 }
 
+template<typename T>
+int AbstractBaseRepository<T>::size()
+{
+    return mElements.size();
+}
+
 template <typename T>
 bool AbstractBaseRepository<T>::isEmpty()
 {
diff --git a/repos/abstractbaserepository.h b/repos/abstractbaserepository.h
index 1e2a25968674649db3b078cb1d352519be71d950..cc1057c14eeb297575cce3aa94d12140c47d0e16 100755
--- a/repos/abstractbaserepository.h
+++ b/repos/abstractbaserepository.h
@@ -16,6 +16,7 @@ public:
     QSharedPointer<T> get(QString pId);
     QMap<QString,T> list();
     QHash<QString, QSharedPointer<T> > getElements() const;
+    int size();
     T& operator [](QString pArgument){
         return *mElements[pArgument];
     }
diff --git a/repos/channelrepository.cpp b/repos/channelrepository.cpp
index df3070a0a3198033d7638621839fe659a996bfd1..4cf66b184ea642ab23bf4fe07b8d0677a674b646 100755
--- a/repos/channelrepository.cpp
+++ b/repos/channelrepository.cpp
@@ -1,5 +1,6 @@
 #include "channelrepository.h"
-ChannelRepository::ChannelRepository()
+ChannelRepository::ChannelRepository(ChannelModel &channelsModel, ChannelModel &groupsModel, ChannelModel &directModel):
+    mChannelsModel(channelsModel), mGroupsModel(groupsModel),mDirectModel(directModel)
 {
     mElements.reserve(50);
 }
@@ -7,16 +8,19 @@ ChannelRepository::ChannelRepository()
 bool ChannelRepository::add( QString id, QSharedPointer<RocketChatChannel> msg )
 {
     connect(msg.data(),&RocketChatChannel::messageAdded,this,&ChannelRepository::receiveTimestamp, Qt::UniqueConnection);
-    bool newFlag  = AbstractBaseRepository::add( id, msg );
-    connect(msg.data(), &RocketChatChannel::rowAdded, this,  &ChannelRepository::newMessage);
-    connect(msg.data(), &RocketChatChannel::beginInsertList, this,  &ChannelRepository::beginInsertList);
-    connect(msg.data(), &RocketChatChannel::endInsertList, this,  &ChannelRepository::endInsertList);
-    return newFlag;
+    QString type = msg->getType();
+    if(type == "c"){
+        QMetaObject::invokeMethod(&mChannelsModel,"addChannelSlot", Q_ARG(QSharedPointer<RocketChatChannel>,msg));
+    }else if (type == "d"){
+         QMetaObject::invokeMethod(&mDirectModel,"addChannelSlot", Q_ARG(QSharedPointer<RocketChatChannel>,msg));
+    }else if(type == "p"){
+        QMetaObject::invokeMethod(&mGroupsModel,"addChannelSlot", Q_ARG(QSharedPointer<RocketChatChannel>,msg));
+    }
+    return AbstractBaseRepository::add( id, msg );
 }
 
 bool ChannelRepository::add(QSharedPointer<RocketChatChannel> pChannel)
 {
-
     QString id = pChannel->getRoomId();
     return add(id,pChannel);
 }
@@ -28,19 +32,26 @@ ChannelRepository::~ChannelRepository()
 
 void ChannelRepository::receiveTimestamp(QString pId, qint64 pTimestamp)
 {
-    qDebug()<<"timestamp "<<pTimestamp;
-
     QSharedPointer<RocketChatChannel> channel = get(pId);
 
     if(mChannelTimeIndex.contains(channel)){
         mTimestampIndex.remove(mChannelTimeIndex[channel]);
         mChannelTimeIndex[channel] = pTimestamp;
-
     }else{
         mChannelTimeIndex.insert(channel,pTimestamp);
     }
     mTimestampIndex.insert(pTimestamp, channel);
-    //emit orderChanged(pId);
+    //TODO: depricated?
+    emit orderChanged(pId);
+}
+
+QSharedPointer<RocketChatChannel> ChannelRepository::getChannelByName(QString pName)
+{
+    if(mNameIndex.contains(pName)){
+        return mNameIndex[pName];
+    }else{
+        return nullptr;
+    }
 }
 
 unsigned long ChannelRepository::getYoungestMessageDate()
@@ -73,10 +84,12 @@ unsigned long ChannelRepository::getOldestMessageDate()
     long youngest = 0;
 
     for ( auto channel : mElements ) {
-        long temp = channel->getYoungestMessage()->getTimestamp();
+        if(!channel.isNull()){
+            long temp = channel->getYoungestMessage()->getTimestamp();
 
-        if ( temp > youngest ) {
-            youngest = temp;
+            if ( temp > youngest ) {
+                youngest = temp;
+            }
         }
     }
 
@@ -119,8 +132,10 @@ QVariantMap ChannelRepository::getSortOder()
 
     int i = 0;
     for(auto channel : mTimestampIndex){
-        sortOrder[channel->getRoomId()] = i;
-        i++;
+        if(!channel.isNull()){
+            sortOrder[channel->getRoomId()] = i;
+            i++;
+        }
     }
 
     return sortOrder;
@@ -136,67 +151,64 @@ QHash<QString, QVariantMap> ChannelRepository::getSortOderPerCategory()
 
     QList<QSharedPointer<RocketChatChannel> > channelsWithOutMessages;
 
-    for ( auto currentChannel : mElements.values() ) {
-        if(Q_LIKELY(mChannelTimeIndex.contains(currentChannel))){
-            if(currentChannel->getType() != "d"){
-                countC += 1;
-            }else{
-                countD += 1;
+        for ( auto currentChannel : mElements.values() ) {
+            if( Q_LIKELY( !currentChannel.isNull() ) ){
+                if(Q_LIKELY(mChannelTimeIndex.contains(currentChannel))){
+                    if(currentChannel->getType() != "d"){
+                        countC += 1;
+                    }else{
+                        countD += 1;
+                    }
+                }else{
+                    channelsWithOutMessages.append(currentChannel);
+                }
             }
-        }else{
-            channelsWithOutMessages.append(currentChannel);
         }
-    }
-
-//    for ( QString type : typeMap.uniqueKeys() ) {
-//        auto repo = new ChannelRepository;
 
-//        for ( QSharedPointer<RocketChatChannel> current : typeMap.values( type ) ) {
-//            repo->add( current->getRoomId(), current );
-//        }
-
-//        //add direct channels to normal channels as they are one tab in the view
-//        if ( type == "c" ) {
-//            for ( QSharedPointer<RocketChatChannel> current : typeMap.values( "p" ) ) {
-//                repo->add( current->getRoomId(), current );
-//            }
-//        }
-
-//        sortOrderByType[type] = repo->getSortOder();
-//        delete repo;
-//    }
-
-    QVariantMap channelsC;
-    QVariantMap channelsD;
-
-    QMapIterator<qint64, QSharedPointer<RocketChatChannel> > iterator(mTimestampIndex);
-
-    int cI = countC-1;
-    int dI = countD-1;
-
-    while(iterator.hasNext()){
-        iterator.next();
-        if(iterator.value()->getType() != "d"){
-            channelsC[iterator.value()->getRoomId()] = cI;
-            cI--;
-        }else{
-            channelsD[iterator.value()->getRoomId()] = dI;
-            dI--;
+        QVariantMap channelsC;
+        QVariantMap channelsD;
+
+        QMapIterator<qint64, QSharedPointer<RocketChatChannel> > iterator(mTimestampIndex);
+
+        int cI = countC-1;
+        int dI = countD-1;
+
+        while(iterator.hasNext()){
+            iterator.next();
+            QVariantMap data;
+            if(!iterator.value().isNull()){
+                data["unread"] = iterator.value()->getUnreadMessages();
+                data["lastMessage"] = iterator.value()->getYoungestMessage()->toQVariantMap();
+                if(iterator.value()->getType() != "d"){
+                    data["order"] = cI;
+                    channelsC[iterator.value()->getRoomId()] = data;
+                    cI--;
+                }else{
+                    data["order"] = dI;
+                    channelsD[iterator.value()->getRoomId()] = data;
+                    dI--;
+                }
+            }
         }
-    }
 
-    for(auto channel: channelsWithOutMessages){
-        if(channel->getType() != "d"){
-            channelsC[channel->getRoomId()] = countC;
-            countC++;
-        }else{
-            channelsD[channel->getRoomId()] = countD;
-            countD++;
+        for(auto channel: channelsWithOutMessages){
+            QVariantMap data;
+            data["unread"] = 0;
+            data["lastMessage"] = "";
+            if(channel->getType() != "d"){
+                data["order"] = countC;
+                channelsC[channel->getRoomId()] = data;
+                countC++;
+            }else{
+                data["order"] = countD;
+                channelsD[channel->getRoomId()] = data;
+                countD++;
+            }
         }
-    }
 
-    sortOrderByType["d"] = channelsD;
-    sortOrderByType["c"] = channelsC;
+        sortOrderByType["d"] = channelsD;
+        sortOrderByType["c"] = channelsC;
 
     return sortOrderByType;
+
 }
diff --git a/repos/channelrepository.cpp.orig b/repos/channelrepository.cpp.orig
index f7e505bed4478df119ab644edaa72afe8f7d0755..1e04fc9ce55b950591e697b54b818d53b8400f73 100755
--- a/repos/channelrepository.cpp.orig
+++ b/repos/channelrepository.cpp.orig
@@ -1,5 +1,6 @@
 #include "channelrepository.h"
-ChannelRepository::ChannelRepository()
+ChannelRepository::ChannelRepository(ChannelModel &channelsModel, ChannelModel &groupsModel, ChannelModel &directModel):
+    mChannelsModel(channelsModel), mGroupsModel(groupsModel),mDirectModel(directModel)
 {
     mElements.reserve(50);
 }
@@ -8,24 +9,27 @@ bool ChannelRepository::add( QString id, QSharedPointer<RocketChatChannel> msg )
 {
     connect(msg.data(),&RocketChatChannel::messageAdded,this,&ChannelRepository::receiveTimestamp, Qt::UniqueConnection);
 <<<<<<< HEAD
-    msg->setParentRepo(this);
-
     bool newFlag  = AbstractBaseRepository::add( id, msg );
-    if( newFlag){
-        auto order = msg->getMessageRepo()->order();
-        for(int i = 0; i< order.count();i++){
-            emit newMessage(id,i);
-        }
-    }
+    connect(msg.data(), &RocketChatChannel::rowAdded, this,  &ChannelRepository::newMessage);
+    connect(msg.data(), &RocketChatChannel::beginInsertList, this,  &ChannelRepository::beginInsertList);
+    connect(msg.data(), &RocketChatChannel::endInsertList, this,  &ChannelRepository::endInsertList);
     return newFlag;
 =======
+    QString type = msg->getType();
+    if(type == "c"){
+        QMetaObject::invokeMethod(&mChannelsModel,"addChannelSlot", Q_ARG(QSharedPointer<RocketChatChannel>,msg));
+    }else if (type == "d"){
+         QMetaObject::invokeMethod(&mDirectModel,"addChannelSlot", Q_ARG(QSharedPointer<RocketChatChannel>,msg));
+    }else if(type == "p"){
+        QMetaObject::invokeMethod(&mGroupsModel,"addChannelSlot", Q_ARG(QSharedPointer<RocketChatChannel>,msg));
+    }
     return AbstractBaseRepository::add( id, msg );
->>>>>>> 244e331b9c8cffea5dcac841644bc8213905004a
+>>>>>>> master
 }
 
 bool ChannelRepository::add(QSharedPointer<RocketChatChannel> pChannel)
 {
-    connect(pChannel.data(), &RocketChatChannel::rowAdded, this,  &ChannelRepository::newMessage);
+
     QString id = pChannel->getRoomId();
     return add(id,pChannel);
 }
@@ -37,19 +41,26 @@ ChannelRepository::~ChannelRepository()
 
 void ChannelRepository::receiveTimestamp(QString pId, qint64 pTimestamp)
 {
-    qDebug()<<"timestamp "<<pTimestamp;
-
     QSharedPointer<RocketChatChannel> channel = get(pId);
 
     if(mChannelTimeIndex.contains(channel)){
         mTimestampIndex.remove(mChannelTimeIndex[channel]);
         mChannelTimeIndex[channel] = pTimestamp;
-
     }else{
         mChannelTimeIndex.insert(channel,pTimestamp);
     }
     mTimestampIndex.insert(pTimestamp, channel);
-    //emit orderChanged(pId);
+    //TODO: depricated?
+    emit orderChanged(pId);
+}
+
+QSharedPointer<RocketChatChannel> ChannelRepository::getChannelByName(QString pName)
+{
+    if(mNameIndex.contains(pName)){
+        return mNameIndex[pName];
+    }else{
+        return nullptr;
+    }
 }
 
 unsigned long ChannelRepository::getYoungestMessageDate()
@@ -82,10 +93,12 @@ unsigned long ChannelRepository::getOldestMessageDate()
     long youngest = 0;
 
     for ( auto channel : mElements ) {
-        long temp = channel->getYoungestMessage()->getTimestamp();
+        if(!channel.isNull()){
+            long temp = channel->getYoungestMessage()->getTimestamp();
 
-        if ( temp > youngest ) {
-            youngest = temp;
+            if ( temp > youngest ) {
+                youngest = temp;
+            }
         }
     }
 
@@ -128,8 +141,10 @@ QVariantMap ChannelRepository::getSortOder()
 
     int i = 0;
     for(auto channel : mTimestampIndex){
-        sortOrder[channel->getRoomId()] = i;
-        i++;
+        if(!channel.isNull()){
+            sortOrder[channel->getRoomId()] = i;
+            i++;
+        }
     }
 
     return sortOrder;
@@ -145,67 +160,64 @@ QHash<QString, QVariantMap> ChannelRepository::getSortOderPerCategory()
 
     QList<QSharedPointer<RocketChatChannel> > channelsWithOutMessages;
 
-    for ( auto currentChannel : mElements.values() ) {
-        if(Q_LIKELY(mChannelTimeIndex.contains(currentChannel))){
-            if(currentChannel->getType() != "d"){
-                countC += 1;
-            }else{
-                countD += 1;
+        for ( auto currentChannel : mElements.values() ) {
+            if( Q_LIKELY( !currentChannel.isNull() ) ){
+                if(Q_LIKELY(mChannelTimeIndex.contains(currentChannel))){
+                    if(currentChannel->getType() != "d"){
+                        countC += 1;
+                    }else{
+                        countD += 1;
+                    }
+                }else{
+                    channelsWithOutMessages.append(currentChannel);
+                }
             }
-        }else{
-            channelsWithOutMessages.append(currentChannel);
         }
-    }
 
-//    for ( QString type : typeMap.uniqueKeys() ) {
-//        auto repo = new ChannelRepository;
-
-//        for ( QSharedPointer<RocketChatChannel> current : typeMap.values( type ) ) {
-//            repo->add( current->getRoomId(), current );
-//        }
-
-//        //add direct channels to normal channels as they are one tab in the view
-//        if ( type == "c" ) {
-//            for ( QSharedPointer<RocketChatChannel> current : typeMap.values( "p" ) ) {
-//                repo->add( current->getRoomId(), current );
-//            }
-//        }
-
-//        sortOrderByType[type] = repo->getSortOder();
-//        delete repo;
-//    }
-
-    QVariantMap channelsC;
-    QVariantMap channelsD;
-
-    QMapIterator<qint64, QSharedPointer<RocketChatChannel> > iterator(mTimestampIndex);
-
-    int cI = countC-1;
-    int dI = countD-1;
-
-    while(iterator.hasNext()){
-        iterator.next();
-        if(iterator.value()->getType() != "d"){
-            channelsC[iterator.value()->getRoomId()] = cI;
-            cI--;
-        }else{
-            channelsD[iterator.value()->getRoomId()] = dI;
-            dI--;
+        QVariantMap channelsC;
+        QVariantMap channelsD;
+
+        QMapIterator<qint64, QSharedPointer<RocketChatChannel> > iterator(mTimestampIndex);
+
+        int cI = countC-1;
+        int dI = countD-1;
+
+        while(iterator.hasNext()){
+            iterator.next();
+            QVariantMap data;
+            if(!iterator.value().isNull()){
+                data["unread"] = iterator.value()->getUnreadMessages();
+                data["lastMessage"] = iterator.value()->getYoungestMessage()->toQVariantMap();
+                if(iterator.value()->getType() != "d"){
+                    data["order"] = cI;
+                    channelsC[iterator.value()->getRoomId()] = data;
+                    cI--;
+                }else{
+                    data["order"] = dI;
+                    channelsD[iterator.value()->getRoomId()] = data;
+                    dI--;
+                }
+            }
         }
-    }
 
-    for(auto channel: channelsWithOutMessages){
-        if(channel->getType() != "d"){
-            channelsC[channel->getRoomId()] = countC;
-            countC++;
-        }else{
-            channelsD[channel->getRoomId()] = countD;
-            countD++;
+        for(auto channel: channelsWithOutMessages){
+            QVariantMap data;
+            data["unread"] = 0;
+            data["lastMessage"] = "";
+            if(channel->getType() != "d"){
+                data["order"] = countC;
+                channelsC[channel->getRoomId()] = data;
+                countC++;
+            }else{
+                data["order"] = countD;
+                channelsD[channel->getRoomId()] = data;
+                countD++;
+            }
         }
-    }
 
-    sortOrderByType["d"] = channelsD;
-    sortOrderByType["c"] = channelsC;
+        sortOrderByType["d"] = channelsD;
+        sortOrderByType["c"] = channelsC;
 
     return sortOrderByType;
+
 }
diff --git a/repos/channelrepository.h b/repos/channelrepository.h
index f8494acb9d1ba4be39e819fb9e0beadfdfbc4d19..91a807af536f9d9b1fcf5e8cbe44d1cc05469708 100755
--- a/repos/channelrepository.h
+++ b/repos/channelrepository.h
@@ -5,29 +5,35 @@
 #include "utils.h"
 #include "abstractbaserepository.h"
 #include "repos/entities/rocketchatchannel.h"
+#include "CustomModels/channelmodel.h"
 class RocketChatChannel;
+class ChannelModel;
 class ChannelRepository : public QObject, public AbstractBaseRepository<RocketChatChannel>
 {
     Q_OBJECT
 public:
 
-    explicit ChannelRepository();
+    explicit ChannelRepository(ChannelModel& channelsModel, ChannelModel& groupsModel, ChannelModel& directModel);
     unsigned long  getYoungestMessageDate();
     unsigned long  getOldestMessageDate();
     QVariantMap getSortOder(void);
     QHash<QString, QVariantMap> getSortOderPerCategory(void);
     bool add(QString id, QSharedPointer<RocketChatChannel>);
     bool add(QSharedPointer<RocketChatChannel> pChannel);
+
     void receiveTimestamp(QString pId, qint64 pTimestamp);
+
+    QSharedPointer<RocketChatChannel> getChannelByName(QString pName);
+
     ~ChannelRepository();
 private:
     QHash<QSharedPointer<RocketChatChannel> ,qint64 >  mChannelTimeIndex;
     QMap<qint64, QSharedPointer<RocketChatChannel> > mTimestampIndex;
+    ChannelModel &mChannelsModel, &mGroupsModel, &mDirectModel;
+    QHash<QString, QSharedPointer<RocketChatChannel> > mNameIndex;
+
 signals:
-    void newMessage(QString channelid, int row, QString pMessageId);
     void orderChanged(QString channelId);
-    void beginInsertList(QString channelId);
-    void endInsertList(QString channelId);
 };
 
 #endif // CHANNELREPOSITORY_H
diff --git a/repos/channelrepository.h.orig b/repos/channelrepository.h.orig
index a125212bce7c505105ae2c06c412d985001a7058..0a37f6992d6064c0fcc1adfb0d8ce469f7c43228 100755
--- a/repos/channelrepository.h.orig
+++ b/repos/channelrepository.h.orig
@@ -5,13 +5,15 @@
 #include "utils.h"
 #include "abstractbaserepository.h"
 #include "repos/entities/rocketchatchannel.h"
+#include "CustomModels/channelmodel.h"
 class RocketChatChannel;
+class ChannelModel;
 class ChannelRepository : public QObject, public AbstractBaseRepository<RocketChatChannel>
 {
     Q_OBJECT
 public:
 
-    explicit ChannelRepository();
+    explicit ChannelRepository(ChannelModel& channelsModel, ChannelModel& groupsModel, ChannelModel& directModel);
     unsigned long  getYoungestMessageDate();
     unsigned long  getOldestMessageDate();
     QVariantMap getSortOder(void);
@@ -19,18 +21,27 @@ public:
     bool add(QString id, QSharedPointer<RocketChatChannel>);
     bool add(QSharedPointer<RocketChatChannel> pChannel);
     void receiveTimestamp(QString pId, qint64 pTimestamp);
+<<<<<<< HEAD
+=======
+
+    QSharedPointer<RocketChatChannel> getChannelByName(QString pName);
+
+>>>>>>> master
     ~ChannelRepository();
 private:
     QHash<QSharedPointer<RocketChatChannel> ,qint64 >  mChannelTimeIndex;
     QMap<qint64, QSharedPointer<RocketChatChannel> > mTimestampIndex;
 <<<<<<< HEAD
-signals:
-    void newMessage(QString channelid, int row);
 =======
+    ChannelModel &mChannelsModel, &mGroupsModel, &mDirectModel;
+    QHash<QString, QSharedPointer<RocketChatChannel> > mNameIndex;
 
+>>>>>>> master
 signals:
+    void newMessage(QString channelid, int row, QString pMessageId);
     void orderChanged(QString channelId);
->>>>>>> 244e331b9c8cffea5dcac841644bc8213905004a
+    void beginInsertList(QString channelId);
+    void endInsertList(QString channelId);
 };
 
 #endif // CHANNELREPOSITORY_H
diff --git a/repos/emojirepo.cpp b/repos/emojirepo.cpp
index 167a3bf586eec6114565c93301721049f95b96f2..9db154d1eb720a02002ea2afa90f80d6cc983214 100644
--- a/repos/emojirepo.cpp
+++ b/repos/emojirepo.cpp
@@ -4,3 +4,28 @@ EmojiRepo::EmojiRepo()
 {
     mElements.reserve(3000);
 }
+
+bool EmojiRepo::add(QSharedPointer<Emoji> pEmoji)
+{
+    return add(pEmoji->getIdentifier(), pEmoji);
+}
+
+bool EmojiRepo::add(QString pId, QSharedPointer<Emoji> pEmoji)
+{
+    if(!pEmoji.isNull()){
+        if(!mEmojisOrdered.isEmpty()){
+            if(!pEmoji->getOrder()){
+                pEmoji->setOrder(mEmojisOrdered.last()->getOrder()+1);
+            }
+        }
+        mEmojisOrdered.insert( pEmoji->getOrder(), pEmoji );
+        return AbstractBaseRepository::add( pId, pEmoji );
+    }else{
+        return false;
+    }
+}
+
+QMap<int, QSharedPointer<Emoji> > EmojiRepo::emojisOrdered() const
+{
+    return mEmojisOrdered;
+}
diff --git a/repos/emojirepo.h b/repos/emojirepo.h
index 1a546202a696e66f202e3942ee8cf52ca455be38..8431ce77ae5f35e4c59732b0a0c9fdf64fe251d9 100644
--- a/repos/emojirepo.h
+++ b/repos/emojirepo.h
@@ -2,14 +2,23 @@
 #define EMOJIREPO_H
 
 #include <QObject>
-#include "utils.h"
+#include <QMap>
 #include "abstractbaserepository.h"
-#include "repos/entities/rocketchatchannel.h"
-#include "repos/entities/emojis.h"
-class EmojiRepo : AbstractBaseRepository<Emoji>
+#include "repos/entities/emoji.h"
+
+#include "utils.h"
+
+class EmojiRepo : public QObject, public AbstractBaseRepository<Emoji>
 {
 public:
     EmojiRepo();
+    bool add(QSharedPointer<Emoji> pEmoji);
+    bool add(QString pId, QSharedPointer<Emoji> pEmoji);
+
+    QMap<int, QSharedPointer<Emoji> > emojisOrdered() const;
+
+private:
+    QMap<int,QSharedPointer<Emoji> > mEmojisOrdered;
 };
 
 #endif // EMOJIREPO_H
diff --git a/repos/entities/emojis.cpp b/repos/entities/emojis.cpp
deleted file mode 100644
index 0e1ca09cbdb3b0806b92128d9fd00730d7aeb063..0000000000000000000000000000000000000000
--- a/repos/entities/emojis.cpp
+++ /dev/null
@@ -1,80 +0,0 @@
-#include "emojis.h"
-
-Emoji::Emoji(QString name, QString extension,QString category):mCategory(category)
-{
-
-     this->mIdentifier = ":"+name+":";
-     mName = name;
-     mExtension = extension;
-     this->mType = "emoji";
-}
-
-Emoji::Emoji(QString name, QString category, QString filePath, QString html):mCategory(category)
-{
-    this->mIdentifier = name;
-    QFileInfo fileInfo(filePath);
-    mFilePath = filePath;
-    mhtml = html;
-    mExtension = fileInfo.completeSuffix();
-}
-
-QString Emoji::getIdentifier() const
-{
-    return mIdentifier;
-}
-
-QVariantMap Emoji::toQVariantMap()
-{
-    QVariantMap entry;
-    entry["category"] = mCategory;
-    entry["text"] = mIdentifier;
-    entry["file"] = mFilePath;
-    return entry;
-}
-
-QString Emoji::getHtml() const
-{
-    return mhtml;
-}
-
-void Emoji::setHtml(const QString &value)
-{
-    mhtml = value;
-}
-
-QString Emoji::getExtension() const
-{
-    return mExtension;
-}
-
-QString Emoji::getName() const
-{
-    return mName;
-}
-
-void Emoji::setName(const QString &name)
-{
-    mName = name;
-}
-
-QString Emoji::getCategory() const
-{
-    return mCategory;
-}
-
-void Emoji::setCategory(const QString &pCategory)
-{
-    mCategory = pCategory;
-}
-
-qint16 Emoji::getEmojiHash() const
-{
-    return emojiHash;
-}
-
-void Emoji::setEmojiHash(const qint16 &value)
-{
-    emojiHash = value;
-}
-
-
diff --git a/repos/entities/emojis.h b/repos/entities/emojis.h
deleted file mode 100644
index c940ae0c296e0a40279eec6448b70000af185ff0..0000000000000000000000000000000000000000
--- a/repos/entities/emojis.h
+++ /dev/null
@@ -1,38 +0,0 @@
-#ifndef EMOJIS_H
-#define EMOJIS_H
-#include <QString>
-#include <QFileInfo>
-#include <QVariantMap>
-#include "tempfile.h"
-
-class Emoji : public TempFile
-{
-    public:
-        Emoji( QString name, QString extension, QString category );
-        Emoji( QString name, QString category, QString file, QString html );
-        QString getIdentifier() const;
-        QVariantMap toQVariantMap();
-        QString getHtml() const;
-        void setHtml(const QString &value);
-
-        QString getExtension() const;
-
-        QString getName() const;
-        void setName(const QString &name);
-
-        QString getCategory() const;
-        void setCategory(const QString &pCategory);
-
-        qint16 getEmojiHash() const;
-        void setEmojiHash(const qint16 &value);
-
-protected:
-        QString mIdentifier;
-        QString mName;
-        QString mCategory;
-        QString mExtension;
-        QString mhtml;
-        qint16 emojiHash = 0;
-};
-
-#endif // EMOJIS_H
diff --git a/repos/entities/rocketchatchannel.cpp b/repos/entities/rocketchatchannel.cpp
index 75ad5192c1a159aa18a37b75313a419b88f79333..f2241f929203a5fe83e221e5147a0c29334eb9ef 100755
--- a/repos/entities/rocketchatchannel.cpp
+++ b/repos/entities/rocketchatchannel.cpp
@@ -5,29 +5,29 @@
 
 RocketChatChannel::RocketChatChannel( RocketChatServerData *pServer, MessageService *pMessageService, QString pRoomId, QString pName, QString pType )
 {
-    Q_UNUSED(pServer)
-    Q_UNUSED(pMessageService)
+    Q_UNUSED( pServer )
+    Q_UNUSED( pMessageService )
     this->mRoomId = pRoomId;
     this->mName = pName;
     this->mType = pType;
-    connect( &mMessages , &MessageRepository::messageAdded, this, &RocketChatChannel::onMessageAdded, Qt::UniqueConnection );
 }
 
-bool RocketChatChannel::addMessage( const ChatMessage pMessage )
+bool RocketChatChannel::addMessage( const ChatMessage pMessage, bool nosignal )
 {
     if ( !pMessage.isNull() ) {
         if ( mMessages.add( pMessage->getId() , pMessage ) ) {
             qint64 timestamp = pMessage.data()->getTimestamp();
             qint64 youngest = mMessages.youngest().data()->getTimestamp();
-            if(timestamp>=youngest){
-                emit(messageAdded(getRoomId(),timestamp));
+
+            if ( timestamp >= youngest && !nosignal) {
+                emit( messageAdded( getRoomId(), timestamp ) );
             }
 
             return true;
         } else {
             return false;
         }
-    }else{
+    } else {
         return false;
     }
 }
@@ -87,6 +87,7 @@ void RocketChatChannel::setUsers( const QList<QSharedPointer<RocketChatUser> > &
     for ( auto currentUser : value ) {
         mUsers[currentUser->getUserName()] = currentUser;
     }
+
 }
 
 ChatMessage RocketChatChannel::getYoungestMessage()
@@ -115,13 +116,15 @@ MessageRepository *RocketChatChannel::getMessageRepo()
 QList<QSharedPointer<RocketChatMessage>> RocketChatChannel::addMessages( QList<QSharedPointer<RocketChatMessage>> messagesList )
 {
     QList<QSharedPointer<RocketChatMessage>> newMessages;
-    emit beginInsertList(getRoomId());
+
     for ( auto currentMessage : messagesList ) {
-        if ( addMessage( currentMessage ) ) {
-            newMessages.append( currentMessage );
+        if(!currentMessage.isNull()){
+            if ( addMessage( currentMessage ) ) {
+                newMessages.append( currentMessage );
+            }
         }
     }
-    emit endInsertList(getRoomId());
+    emit messageAdded( getRoomId(), 0 );
     return newMessages;
 
 }
@@ -144,6 +147,7 @@ unsigned int RocketChatChannel::getUnreadMessages() const
 void RocketChatChannel::setUnreadMessages( unsigned int value )
 {
     mUnreadMessages = value;
+    emit unreadMessagesChanged(mRoomId, value);
 }
 
 QString RocketChatChannel::getType() const
@@ -186,13 +190,13 @@ void RocketChatChannel::setArchived( bool value )
 QJsonObject RocketChatChannel::toJsonObject()
 {
     QJsonObject currentChannelObject;
-    currentChannelObject["name"] = getName();
-    currentChannelObject["joined"] =   getJoined();
-    currentChannelObject["ro"] =   getReadOnly();
-    currentChannelObject["muted"] =   QJsonArray::fromStringList( getMuted() );
+    currentChannelObject["name"] =       getName();
+    currentChannelObject["joined"] =     getJoined();
+    currentChannelObject["ro"] =         getReadOnly();
+    currentChannelObject["muted"] =      QJsonArray::fromStringList( getMuted() );
     currentChannelObject["archived"] =   getArchived();
-    currentChannelObject["type"] =   getType();
-    currentChannelObject["roomId"] =  getRoomId();
+    currentChannelObject["type"] =       getType();
+    currentChannelObject["roomId"] =     getRoomId();
     return currentChannelObject;
 }
 
@@ -206,13 +210,11 @@ void RocketChatChannel::setSelfMuted( bool value )
     mSelfMuted = value;
 }
 
-//TODO: replace with cleaner solution
-void RocketChatChannel::setParentRepo( ChannelRepository *pParentRepo )
-{
-    mReverseRepoPointer = pParentRepo;
-}
-
-void RocketChatChannel::onMessageAdded(int row,QString messageId)
+int RocketChatChannel::operator >( RocketChatChannel &channel )
 {
-    emit rowAdded(getRoomId(),row,messageId);
+    auto youngestMessage = this->getYoungestMessage();
+    auto youngestMessage2 = channel.getYoungestMessage();
+    int timestamp1 = youngestMessage.isNull() ? 0 : youngestMessage->getTimestamp() ;
+    int timestamp2 = youngestMessage2.isNull() ? 0 : youngestMessage2->getTimestamp() ;
+    return timestamp1 > timestamp2;
 }
diff --git a/repos/entities/rocketchatchannel.h b/repos/entities/rocketchatchannel.h
index 2f4cd8d0d455a4c561cd1ebb23600351ca034d05..542d26e8518c654501a016ff3d13f447a0a882c4 100755
--- a/repos/entities/rocketchatchannel.h
+++ b/repos/entities/rocketchatchannel.h
@@ -12,10 +12,11 @@
 #include <QLinkedList>
 #include <QtConcurrent>
 
-#include "repos/entities/rocketchatuser.h"
-#include "rocketchatserver.h"
-#include "utils.h"
 #include "repos/messagerepository.h"
+#include "repos/channelrepository.h"
+#include "repos/entities/rocketchatuser.h"
+#include "repos/entities/rocketchatmessage.h"
+
 #include "api/restapi.h"
 #include "api/meteorddp.h"
 #include "restRequests/postrequest.h"
@@ -23,21 +24,24 @@
 #include "ddpRequests/ddpmethodrequest.h"
 #include "ddpRequests/ddpsubscriptionrequest.h"
 #include "ddpRequests/rocketchatsubscribechannelrequest.h"
+
+#include "utils.h"
 #include "persistancelayer.h"
 #include "rocketchatserver.h"
 #include "services/messageservice.h"
-#include "repos/channelrepository.h"
 
-class PersistanceLayer;
 typedef QSharedPointer<RestRequest> RestApiRequest;
+
+class PersistanceLayer;
 class RocketChatServerData;
+
 class RocketChatChannel : public QObject
 {
         Q_OBJECT
     public:
         RocketChatChannel( RocketChatServerData *pServer, MessageService *pMessageService,QString pRoomId, QString pName, QString pType );
 
-        bool addMessage( const ChatMessage );
+        bool addMessage( const ChatMessage, bool nosiginal = false );
         void setRoomId( const QString &pValue );
         void setName( const QString &pValue );
         void setUsers( const QMap<QString, QSharedPointer<RocketChatUser> > &pValue );
@@ -75,12 +79,9 @@ class RocketChatChannel : public QObject
         void setSelfMuted( bool pValue );
 
         void setParentRepo(ChannelRepository* pParentRepo);
-        int count(void);
+        int operator >(RocketChatChannel &channel);
     protected:
 
-        //TODO: implement a cleaner solution
-        ChannelRepository* mReverseRepoPointer = nullptr;
-
         bool mReadOnly = false;
         bool mArchived = false;
         QStringList mMuted;
@@ -92,14 +93,10 @@ class RocketChatChannel : public QObject
         QString mType;
         unsigned int mUnreadMessages = 0;
         bool mSelfMuted = false;
-        void onMessageAdded(int row, QString pMessageId);
-        void onBeginInsertMessage(int row);
     signals:
         void messageListReceived( QString pChannelId, QList<ChatMessage> pMessages);
         void messageAdded(QString id, qint64 timestamp);
-        void rowAdded(QString id, int row,QString messageId);
-        void beginInsertList(QString channelId);
-        void endInsertList(QString channelId);
+        void unreadMessagesChanged(QString id, int number);
 };
 
 #endif // ROCKETCHATCHANNEL_H
diff --git a/repos/entities/rocketchatmessage.cpp b/repos/entities/rocketchatmessage.cpp
index 3578b83e63d7cf598a92df4805ffea4eab6fa182..87325aee7f3874474d53a35670c97b2109c17901 100755
--- a/repos/entities/rocketchatmessage.cpp
+++ b/repos/entities/rocketchatmessage.cpp
@@ -95,15 +95,8 @@ void RocketChatMessage::setMessageString(const QString &value)
     messageString = value;
 }
 
-QString RocketChatMessage::getMessageType()
-{
-    if(messageType.length() == 0){
-        this->messageType = "textMessage";
-          if(!attachments.empty()){
-              QSharedPointer<RocketChatAttachment> first = attachments.first();
-              this->messageType = first->getType();
-          }
-    }
+QString RocketChatMessage::getMessageType() const
+{
     return messageType;
 }
 
@@ -139,12 +132,14 @@ QVariantMap RocketChatMessage::toQVariantMap()
     auto attachments = getAttachments();
     if(!attachments.empty()){
         QSharedPointer<RocketChatAttachment> first = attachments.first();
-        map["type"] = first->getType();
-        map["msg"] = first->getTitle();
-        map["linkurl"] = first->getUrl();
-        if(first->getWidth() > -1 && first->getHeight() > -1){
-            map["height"] = first->getHeight();
-            map["width"] = first->getWidth();
+        if(!first.isNull()){
+            map["type"] = first->getType();
+            map["msg"] = first->getTitle();
+            map["linkurl"] = first->getUrl();
+            if(first->getWidth() > -1 && first->getHeight() > -1){
+                map["height"] = first->getHeight();
+                map["width"] = first->getWidth();
+            }
         }
     }
     return map;
@@ -160,9 +155,11 @@ void RocketChatMessage::setOwnMessage(bool value)
     ownMessage = value;
 }
 
-void RocketChatMessage::emojify(QHash<QString, QString> &pEmojisMap)
+void RocketChatMessage::emojify(EmojiRepo *pEmojiRepo)
 {
-    messageString = Utils::emojiFy(messageString,pEmojisMap);
+    if(pEmojiRepo != nullptr){
+        messageString = Utils::emojiFy( messageString, pEmojiRepo );
+    }
 }
 
 QList<QSharedPointer<RocketChatAttachment> > RocketChatMessage::getAttachments() const
diff --git a/repos/entities/rocketchatmessage.h b/repos/entities/rocketchatmessage.h
index ffc35c14bb31b58797bcb65233c6d2c2f4d44511..1a9b1e5a5a93cbb2b736e190525f350d95920aac 100755
--- a/repos/entities/rocketchatmessage.h
+++ b/repos/entities/rocketchatmessage.h
@@ -2,12 +2,15 @@
 #define ROCKETCHATMESSAGE_H
 
 #include <QJsonObject>
-#include <repos/entities/rocketchatattachment.h>
 #include <QList>
 #include <QSharedPointer>
+#include "repos/entities/rocketchatattachment.h"
+#include "repos/emojirepo.h"
 #include "utils.h"
 #include "rocketchatattachment.h"
 
+class EmojiRepo;
+
 class RocketChatMessage
 {
     public:
@@ -25,10 +28,6 @@ class RocketChatMessage
         {
             return ( timestamp < compMessage->getTimestamp() );
         }
-        bool operator < ( const QSharedPointer<RocketChatMessage> compMessage ) const
-        {
-            return ( timestamp < compMessage->getTimestamp() );
-        }
 
         qint64 getTimestamp() const;
         bool isEmpty() const;
@@ -51,13 +50,13 @@ class RocketChatMessage
         QString getMessageString() const;
         void setMessageString(const QString &value);
 
-        QString getMessageType();
+        QString getMessageType() const;
         void setMessageType(const QString &value);
         QVariantMap toQVariantMap();
         bool getOwnMessage() const;
         void setOwnMessage(bool value);
 
-        void emojify(QHash<QString, QString> &pEmojisMap);
+        void emojify(EmojiRepo *pEmojiRepo);
 
         QList<QSharedPointer<RocketChatAttachment> > getAttachments() const;
         void setAttachments(const QList<QSharedPointer<RocketChatAttachment> > &value);
@@ -69,7 +68,7 @@ class RocketChatMessage
 
 protected:
         bool empty = false;
-        qint64 timestamp;
+        qint64 timestamp = 0;
         QJsonObject data;
         QString roomId;
         Type type;
@@ -80,7 +79,7 @@ protected:
         QString formattedDate;
         QString messageString;
         QString id;
-        QString author = "";
+        QString author;
         QString messageType;
         QList<QSharedPointer<RocketChatAttachment>> attachments;
         qint64 mEmojiHash = 0;
diff --git a/repos/messagerepository.cpp b/repos/messagerepository.cpp
index ba3a13bbead2da122ec1a36f04f569647900bd3b..247bec6effd61fe53f256f0966300d25d07e1df6 100755
--- a/repos/messagerepository.cpp
+++ b/repos/messagerepository.cpp
@@ -12,7 +12,6 @@ ChatMessage MessageRepository::youngest()
     if(Q_LIKELY(mTimestampIndex.size())){
         obj = mTimestampIndex.last();
     }
-
     return obj;
 }
 
@@ -22,7 +21,6 @@ ChatMessage MessageRepository::oldest()
     if(Q_LIKELY(mTimestampIndex.size())){
         obj = mTimestampIndex.first();
     }
-
     return obj;
 }
 
@@ -31,69 +29,21 @@ QVector<QSharedPointer<RocketChatMessage> > MessageRepository::messagesAsObjects
     QVector<QSharedPointer<RocketChatMessage>> list;
 
     for ( auto message : mTimestampIndex.values() ) {
-        QSharedPointer<RocketChatMessage> sortable( new RocketChatMessage( *message.data() ) );
-        list.append( sortable );
+        if(!message.isNull()){
+            QSharedPointer<RocketChatMessage> sortable( new RocketChatMessage( *message.data() ) );
+            list.append( sortable );
+        }
     }
 
     return list;
 }
 
-QMap<qint64, QSharedPointer<RocketChatMessage> > MessageRepository::timestampIndex() const
+bool MessageRepository::add(QString pId, QSharedPointer<RocketChatMessage> pMsg)
 {
-    return mTimestampIndex;
-}
-
-void MessageRepository::setTimestampIndex( const QMap<qint64, QSharedPointer<RocketChatMessage> > &timestampIndex )
-{
-    mTimestampIndex = timestampIndex;
-}
-
-QList<QSharedPointer<RocketChatMessage> >& MessageRepository::order()
-{
-    return mOrder;
-}
-
-int MessageRepository::count()
-{
-    return mOrder.count();
-}
-
-bool MessageRepository::add( QString pId, QSharedPointer<RocketChatMessage> pMsg )
-{
-    mTimestampIndex[pMsg->getTimestamp()] = pMsg;
-    if(!mElements.contains(pId)){
-
-    }
-    bool newFlag =  AbstractBaseRepository::add( pId, pMsg );
-
-    if ( newFlag ) {
-        int row = -1;
-
-        if ( mOrder.isEmpty() ) {
-            emit beginInsertMessage(0);
-            mOrder.append( pMsg );
-            row = 0;
-        } else {
-            for ( int i = 0; i < mOrder.count(); i++ ) {
-                if ( mOrder[i]->getTimestamp() > pMsg->getTimestamp() ) {
-                    emit beginInsertMessage(i);
-                    mOrder.insert( i, pMsg );
-                    row = i;
-                    break;
-                }
-            }
-            if(row == -1){
-                row = mOrder.count();
-                emit beginInsertMessage(row);
-                mOrder.append( pMsg );
-
-            }
-
-        }
-
-        emit messageAdded( row, pMsg->getId() );
-
+    if(!pMsg.isNull()){
+        mTimestampIndex[pMsg->getTimestamp()] = pMsg;
+        return AbstractBaseRepository::add(pId,pMsg);
+    }else{
+        return false;
     }
-
-    return newFlag;
 }
diff --git a/repos/messagerepository.cpp.orig b/repos/messagerepository.cpp.orig
index a2c330b074d4223df11e448858107eec317c6cda..f87235d5111d1cab75ab0791016f4163ff32aaf6 100755
--- a/repos/messagerepository.cpp.orig
+++ b/repos/messagerepository.cpp.orig
@@ -9,12 +9,7 @@ ChatMessage MessageRepository::youngest()
 {
 
     ChatMessage obj;
-<<<<<<< HEAD
-
-    if ( mTimestampIndex.size() ) {
-=======
     if(Q_LIKELY(mTimestampIndex.size())){
->>>>>>> 5d56c7a7abd9a9fe97c897ecafe83ba25072bfbe
         obj = mTimestampIndex.last();
     }
 
@@ -24,12 +19,7 @@ ChatMessage MessageRepository::youngest()
 ChatMessage MessageRepository::oldest()
 {
     ChatMessage obj;
-<<<<<<< HEAD
-
-    if ( mTimestampIndex.size() ) {
-=======
     if(Q_LIKELY(mTimestampIndex.size())){
->>>>>>> 5d56c7a7abd9a9fe97c897ecafe83ba25072bfbe
         obj = mTimestampIndex.first();
     }
 
@@ -41,8 +31,10 @@ QVector<QSharedPointer<RocketChatMessage> > MessageRepository::messagesAsObjects
     QVector<QSharedPointer<RocketChatMessage>> list;
 
     for ( auto message : mTimestampIndex.values() ) {
-        QSharedPointer<RocketChatMessage> sortable( new RocketChatMessage( *message.data() ) );
-        list.append( sortable );
+        if(!message.isNull()){
+            QSharedPointer<RocketChatMessage> sortable( new RocketChatMessage( *message.data() ) );
+            list.append( sortable );
+        }
     }
 
     return list;
@@ -58,13 +50,19 @@ void MessageRepository::setTimestampIndex( const QMap<qint64, QSharedPointer<Roc
     mTimestampIndex = timestampIndex;
 }
 
-QList<QSharedPointer<RocketChatMessage> > MessageRepository::order() const
+QList<QSharedPointer<RocketChatMessage> >& MessageRepository::order()
 {
     return mOrder;
 }
 
+int MessageRepository::count()
+{
+    return mOrder.count();
+}
+
 bool MessageRepository::add( QString pId, QSharedPointer<RocketChatMessage> pMsg )
 {
+<<<<<<< HEAD
     mTimestampIndex[pMsg->getTimestamp()] = pMsg;
     if(!mElements.contains(pId)){
 
@@ -75,26 +73,38 @@ bool MessageRepository::add( QString pId, QSharedPointer<RocketChatMessage> pMsg
         int row = -1;
 
         if ( mOrder.isEmpty() ) {
+            emit beginInsertMessage(0);
             mOrder.append( pMsg );
-            row = mOrder.count()-1;
+            row = 0;
         } else {
             for ( int i = 0; i < mOrder.count(); i++ ) {
                 if ( mOrder[i]->getTimestamp() > pMsg->getTimestamp() ) {
+                    emit beginInsertMessage(i);
                     mOrder.insert( i, pMsg );
                     row = i;
                     break;
                 }
             }
             if(row == -1){
+                row = mOrder.count();
+                emit beginInsertMessage(row);
                 mOrder.append( pMsg );
-                row = mOrder.count()-1;
+
             }
 
         }
 
-        emit messageAdded( row );
+        emit messageAdded( row, pMsg->getId() );
 
     }
 
     return newFlag;
+=======
+    if(!pMsg.isNull()){
+        mTimestampIndex[pMsg->getTimestamp()] = pMsg;
+        return AbstractBaseRepository::add(pId,pMsg);
+    }else{
+        return false;
+    }
+>>>>>>> master
 }
diff --git a/repos/messagerepository.h b/repos/messagerepository.h
index b14fce749fc946f7b5a908da62c1c4e279efbb38..7c5d97e2bb36bb34ee3d48cc2f90462de693660c 100755
--- a/repos/messagerepository.h
+++ b/repos/messagerepository.h
@@ -1,33 +1,26 @@
 #ifndef MESSAGEREPOSITORY_H
 #define MESSAGEREPOSITORY_H
-#include "abstractbaserepository.h"
-#include "QVector"
-#include "QList"
+#include <QVector>
+#include <QList>
 #include <algorithm>
-#include "QJsonObject"
-#include "utils.h"
+#include <QJsonObject>
+#include "abstractbaserepository.h"
 #include "repos/entities/rocketchatmessage.h"
+#include "utils.h"
+
+class RocketChatMessage;
 typedef QSharedPointer<RocketChatMessage> ChatMessage;
-class MessageRepository : public QObject, public AbstractBaseRepository<RocketChatMessage>
+class MessageRepository : public AbstractBaseRepository<RocketChatMessage>
 {
-    Q_OBJECT
 public:
     MessageRepository();
     ChatMessage youngest();
     ChatMessage oldest();
     QVector<QSharedPointer<RocketChatMessage> > messagesAsObjects();
     bool add(QString pId, ChatMessage);
-    QMap<qint64, QSharedPointer<RocketChatMessage> > timestampIndex() const;
-    void setTimestampIndex(const QMap<qint64, QSharedPointer<RocketChatMessage> > &timestampIndex);
-
-    QList<QSharedPointer<RocketChatMessage> > &order();
-    int count(void);
 protected:
-    QMap<qint64, QSharedPointer<RocketChatMessage> > mTimestampIndex;
-    QList<QSharedPointer<RocketChatMessage>> mOrder;
-signals:
-    void beginInsertMessage(int row);
-    void messageAdded(int row, QString messageId);
+   QMap<qint64, QSharedPointer<RocketChatMessage> > mTimestampIndex;
+   qint64 oldestReceivedMessageFromServer = 0;
 
 };
 
diff --git a/rocketchat.cpp b/rocketchat.cpp
index ae07ee78471fb40500b439bd7f3c02d5a58d46b2..53db7f59ef788f44ad31083fe994995d28394860 100755
--- a/rocketchat.cpp
+++ b/rocketchat.cpp
@@ -41,10 +41,6 @@ RocketChat::RocketChat( QGuiApplication *app )
     this->mApp = app;
     connect( app, &QGuiApplication::applicationStateChanged, this, &RocketChat::onApplicationStateChanged, Qt::UniqueConnection );
     this->mStorage = PersistanceLayer::instance();
-   // mStorageStatus = true;
-    mStorage->moveToThread(&mStorageThread);
-    connect(&mStorageThread,&QThread::started,this,&RocketChat::storageReadySlot);
-    mStorageThread.start();
 
 #ifdef Q_OS_IOS
     mGalleryPicker = new IosGalleryPicker();
@@ -59,7 +55,8 @@ RocketChat::RocketChat( QGuiApplication *app )
 #ifdef Q_OS_ANDROID
     mAndroidStatusBarColor = new AndroidStatusBarColor;
 #endif
-
+    qRegisterMetaType<ConnectionState>("ConnectionState");
+    qRegisterMetaType<Qt::ApplicationState>("Qt::ApplicationState");
 }
 
 RocketChat::~RocketChat()
@@ -68,39 +65,16 @@ RocketChat::~RocketChat()
     mStorageThread.quit();
     mServerThread.wait();
     mStorageThread.wait();
-
 }
 
 
 void RocketChat::joinChannel( QString pServerId, QString pChannelId )
 {
     Q_UNUSED( pServerId );
-
-   // QtConcurrent::run( [ = ]() {
-#if defined(Q_OS_ANDROID) || defined(Q_OS_MACOS) || defined(Q_OS_LINUX) ||defined(Q_OS_IOS)
-
-     //   volatile SegfaultHandler segfaultHandler( "RocketChat::joinChannel" );
-#endif
-        QSharedPointer<RocketChatServerData> server =  mServerMap.first();
-
-        //server->joinChannel( pChannelId );
+    if(mServerStatus){
 
         QMetaObject::invokeMethod( mServerMap.first().data(), "joinChannel",Q_ARG( QString, pChannelId ) );
-
-
-        auto channel = server->getChannels()->get( pChannelId );
-        QString name = channel->getName();
-        //channel->setUnreadMessages( 0 );
-        QMetaObject::invokeMethod( server.data() , "setUnreadMessages", Q_ARG( QString, pChannelId ), Q_ARG( int, 0 ) );
-        //server->markChannelAsRead( pChannelId );
-        emit channelSwitchRequest("default",pChannelId, channel->getName(),channel->getType());
-
-       // mStorage->setCurrentChannel( pChannelId, name );
-
-        QMetaObject::invokeMethod( mStorage, "setCurrentChannel",Q_ARG( QString, pChannelId ), Q_ARG( QString, name ) );
-
-
-  //  } );
+    }
 }
 
 void RocketChat::login( QString pServerId, QString pUsername, QString pPassword )
@@ -111,19 +85,16 @@ void RocketChat::login( QString pServerId, QString pUsername, QString pPassword
         mStorage->wipeDb();
     }
     qDebug()<<"login thread id: "<< QThread::currentThreadId();
-    //mServerMap.first()->login( pUsername, pPassword );
-    QMetaObject::invokeMethod( mServerMap.first().data(), "login", Q_ARG( QString, pUsername ), Q_ARG( QString, pPassword ) );
-
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "login", Q_ARG( QString, pUsername ), Q_ARG( QString, pPassword ) );
+    }
 }
 
 void RocketChat::loadRecentHistory( QString pChannelId )
 {
-    //QtConcurrent::run([=]{
-    //mServerMap.first()->loadRecentHistory( pChannelId );
-
-    QMetaObject::invokeMethod( mServerMap.first().data(), "loadRecentHistory", Q_ARG( QString, pChannelId ) );
-
-    //});
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "loadRecentHistory", Q_ARG( QString, pChannelId ) );
+    }
 }
 
 bool RocketChat::isServerReady()
@@ -172,45 +143,54 @@ void RocketChat::channelViewReady()
 #endif
 }
 
-QString RocketChat::getUserOfChannel( QString pServerId, QString pChannelId )
+bool RocketChat::customEmojisReady()
 {
-    Q_UNUSED( pServerId );
-    QSharedPointer<RocketChatServerData> server = mServerMap.first();
-    QList<QSharedPointer<RocketChatUser>> users = server->getUserOfChannel( pChannelId );
-    QJsonArray array;
+    return mEmojisReady;
+}
 
-    for ( QSharedPointer<RocketChatUser> current : users ) {
-        array.append( current->getUserName() );
-    }
+void RocketChat::checkLoggedIn()
+{
 
-    QJsonDocument doc( array );
-    return doc.toJson();
 }
 
+void RocketChat::getChannelDetails(QString pServerId, QString pChannelName)
+{
+    Q_UNUSED( pServerId );
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "requestGetChannelDetails", Q_ARG( QString, pChannelName ) );
+    }
+}
 
-void RocketChat::openPrivateChannelWith( QString pServerId, QString pUsername )
+//TODO: make asynchonous
+void RocketChat::getUserOfChannel( QString pServerId, QString pChannelId )
 {
     Q_UNUSED( pServerId );
-    QSharedPointer<RocketChatServerData> server =  mServerMap.first();
-    //server->openPrivateChannelWith( pUsername );
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "requestUsersOfChannel", Q_ARG( QString, pChannelId ) );
+    }
+}
 
-    QMetaObject::invokeMethod( mServerMap.first().data(), "openPrivateChannelWith", Q_ARG( QString, pUsername ) );
 
+void RocketChat::openPrivateChannelWith( QString pServerId, QString pUsername )
+{
+    Q_UNUSED( pServerId );
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "openPrivateChannelWith", Q_ARG( QString, pUsername ) );
+    }
 }
 
 void RocketChat::getFileRessource( QString pUrl )
 {
-   // mServerMap.first()->getFileRessource( pUrl, "temp" );
-    QMetaObject::invokeMethod( mServerMap.first().data(), "getFileRessource", Q_ARG( QString, pUrl ), Q_ARG( QString, "temp" ) );
-
-
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "getFileRessource", Q_ARG( QString, pUrl ), Q_ARG( QString, "temp" ) );
+    }
 }
 
 void RocketChat::getFileRessource( QString pUrl, QString pType )
 {
-    //mServerMap.first()->getFileRessource( pUrl, pType );
-    QMetaObject::invokeMethod( mServerMap.first().data(), "getFileRessource", Q_ARG( QString, pUrl ), Q_ARG( QString, pType ) );
-
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "getFileRessource", Q_ARG( QString, pUrl ), Q_ARG( QString, pType ) );
+    }
 }
 
 void RocketChat::uploadVideo( QString pChannelId, QString pPath )
@@ -246,20 +226,20 @@ void RocketChat::uploadFile( QString pChannelId, QString pPath )
 void RocketChat::addUsersToChannel( QString pServerId, QString pChannelName, QString pUsernames )
 {
     Q_UNUSED( pServerId );
-    QStringList unserList = pUsernames.split( "," );
-   // mServerMap.first()->addUsersToChannel( pChannelName, unserList );
-    QMetaObject::invokeMethod( mServerMap.first().data(), "addUsersToChannel", Q_ARG( QString, pChannelName ), Q_ARG( QStringList, unserList ) );
-
+    if(mServerStatus){
+        QStringList unserList = pUsernames.split( "," );
+        QMetaObject::invokeMethod( mServerMap.first().data(), "addUsersToChannel", Q_ARG( QString, pChannelName ), Q_ARG( QStringList, unserList ) );
+    }
 }
 
 
 void RocketChat::sendMessage( QString pServerId, QString pChannelId, QString pMessage )
 {
     Q_UNUSED( pServerId );
-    QSharedPointer<RocketChatServerData> server = mServerMap.first();
-   // server->sendMessage( pChannelId,  pMessage );
-    QMetaObject::invokeMethod( mServerMap.first().data(), "sendMessage", Q_ARG( QString, pChannelId ), Q_ARG( QString, pMessage ) );
-
+    if(mServerStatus){
+        QSharedPointer<RocketChatServerData> server = mServerMap.first();
+        QMetaObject::invokeMethod( mServerMap.first().data(), "sendMessage", Q_ARG( QString, pChannelId ), Q_ARG( QString, pMessage ) );
+    }
 }
 
 void RocketChat::openFileDialog( QString pChannelId )
@@ -285,22 +265,12 @@ void RocketChat::openFileExternally( QString pPath )
 
 }
 
-QString RocketChat::getSortOrderByCategory( QString pServerId, QString pType )
+void RocketChat::getSortOrderByCategory( QString pServerId, QString pType )
 {
     Q_UNUSED( pServerId );
-
-    QSharedPointer<RocketChatServerData> server = mServerMap.first();
-    auto sortOrder = server->getChannels()->getSortOderPerCategory();
-
-    QVariantMap sortedHash;
-
-    if ( sortOrder.contains( pType ) ) {
-        sortedHash = sortOrder[pType];
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "requestChannelSortOrder", Q_ARG( QString, pType ) );
     }
-
-    emit( channelSort( sortedHash ) );
-    //    });
-    return "";
 }
 
 bool RocketChat::hasCameraPermission()
@@ -319,52 +289,53 @@ bool RocketChat::hasCameraPermission()
 
 QString RocketChat::getCleanString( QString pText )
 {
+    pText = Utils::replaceUnicodeEmojis(pText, mServerMap.first()->getEmojiRepo() );
     pText = Utils::removeUtf8Emojis( pText );
     return pText;
 }
 
-QVariantList RocketChat::getAllChannels()
+void RocketChat::getAllChannels()
 {
-    QSharedPointer<RocketChatServerData> server = mServerMap.first();
-    auto channels = server->getChannels()->getElements();
-    QVariantList channelsMap;
-
-    for ( auto channel : channels ) {
-        QVariantMap obj;
-        obj["name"] = channel->getName();
-        obj["id"] = channel->getRoomId();
-        channelsMap.append( obj );
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "requestAllChannels" );
     }
-
-    return channelsMap;
 }
 
 void RocketChat::uploadSharedFileToChannel( QString pChannelId )
 {
-    //mServerMap.first()->uploadFile( pChannelId, mFileToShare );
-    QMetaObject::invokeMethod( mServerMap.first().data(), "uploadFile", Q_ARG( QString, pChannelId ), Q_ARG( QString, mFileToShare ) );
-
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "uploadFile", Q_ARG( QString, pChannelId ), Q_ARG( QString, mFileToShare ) );
+    }
 }
 
 void RocketChat::joinJitsiCall( QString pServer, QString pChannelIdm, QString pMessageId )
 {
     Q_UNUSED( pServer );
-    auto server =  mServerMap.first();
-   // server->joinJitsiCall( pChannelIdm, pMessageId );
-    QMetaObject::invokeMethod( mServerMap.first().data(), "joinJitsiCall", Q_ARG( QString, pChannelIdm ), Q_ARG( QString, pMessageId ) );
-
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "joinJitsiCall", Q_ARG( QString, pChannelIdm ), Q_ARG( QString, pMessageId ) );
+    }
 }
 
+//TODO: make async
 QString RocketChat::getUsername( QString pServerId )
 {
     Q_UNUSED( pServerId );
-    return mServerMap.first()->getUsername();
+    if(mServerStatus){
+        return mServerMap.first()->getUsername();
+    }else{
+        return "";
+    }
 }
 
+//TODO: make async
 QString RocketChat::getPassword( QString pServerId )
 {
     Q_UNUSED( pServerId );
-    return mStorage->getPassword();
+    if(mServerStatus){
+        return mStorage->getPassword();
+    }else{
+        return "";
+    }
 }
 
 void RocketChat::setUsername( QString pServerId, QString pUsername )
@@ -382,11 +353,10 @@ void RocketChat::setPassword( QString pServerId, QString pPassword )
 void RocketChat::setCurrentChannel( QString pServerId, QString pCurrentChannel, QString pChannelName )
 {
     Q_UNUSED( pServerId );
-   // mServerMap.first()->setCurrentChannel(pCurrentChannel);
-
-    QMetaObject::invokeMethod( mServerMap.first().data(), "setCurrentChannel", Q_ARG( QString, pCurrentChannel ) );
-
-    mStorage->setCurrentChannel( pCurrentChannel, pChannelName );
+    Q_UNUSED( pChannelName );
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "setCurrentChannel", Q_ARG( QString, pCurrentChannel ) );
+    }
 }
 
 QString RocketChat::getNewVideoPath()
@@ -419,9 +389,9 @@ void RocketChat::callGalleryPicker( QString pChannelId )
 
 void RocketChat::markChannelAsRead( QString pChannelId )
 {
- //   mServerMap.first()->markChannelAsRead( pChannelId );
-    QMetaObject::invokeMethod( mServerMap.first().data(), "markChannelAsRead", Q_ARG( QString, pChannelId ) );
-
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "markChannelAsRead", Q_ARG( QString, pChannelId ) );
+    }
 }
 
 QString RocketChat::getCurrentChannel()
@@ -437,191 +407,63 @@ void RocketChat::resetCurrentChannel()
     mStorage->setCurrentChannel( "none", "none" );
 }
 
-int RocketChat::getUnreadMessages( QString pServerId, QString pChannelId )
-{
-    Q_UNUSED( pServerId );
-    QSharedPointer<RocketChatServerData> server =  mServerMap.first();
-    auto channels = server->getChannels();
-    int unreadMessages = 0;
-
-    if ( channels->contains( pChannelId ) ) {
-        unreadMessages = channels->get( pChannelId )->getUnreadMessages();
-    }
-
-    return unreadMessages;
-
-}
-
-QString RocketChat::getYoungestMessage( QString pServerId, QString pChannelId )
-{
-    Q_UNUSED( pServerId );
-    QSharedPointer<RocketChatServerData> server =  mServerMap.first();
-
-    if ( !server->getChannels()->get( pChannelId )->getMessageRepo()->isEmpty() ) {
-        auto message = server->getChannels()->get( pChannelId )->getYoungestMessage();
-        QJsonObject data = message->getData();
-        data["msg"] = message->getMessageString();
-        data["type"] = message->getMessageType();
-        QJsonDocument doc( data );
-        return doc.toJson();
-    }
-
-    return "";
-}
-
-bool RocketChat::isChannelJoined( QString pServerId, QString pChannelId )
-{
-    Q_UNUSED( pServerId );
-    QSharedPointer<RocketChatServerData> server =  mServerMap.first();
-    auto channels = server->getChannels();
-    bool isJoined = false;
-
-    if ( channels->contains( pChannelId ) ) {
-        isJoined = channels->get( pChannelId )->getJoined();
-    }
-
-    return isJoined;
-}
-
-void RocketChat::loadChannels( QString pServerId )
-{
-    Q_UNUSED( pServerId );
-    auto server = mServerMap.first();
-    //server->loadChannels();
-    QMetaObject::invokeMethod( mServerMap.first().data(), "loadChannels" );
-
-}
-
 void RocketChat::getUserSuggestions( QString pTerm, QString pExceptions )
 {
-  //  mServerMap.first()->getUserSuggestions( pTerm, pExceptions );
-    QMetaObject::invokeMethod( mServerMap.first().data(), "getUserSuggestions", Q_ARG( QString, pTerm ), Q_ARG( QString, pExceptions ) );
-
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "getUserSuggestions", Q_ARG( QString, pTerm ), Q_ARG( QString, pExceptions ) );
+    }
 }
 
 void RocketChat::getRoomInformation( QString pServerId, QString pChannelName )
 {
     Q_UNUSED( pServerId );
-   // mServerMap.first()->getRoomInformation( pChannelName );
-    QMetaObject::invokeMethod( mServerMap.first().data(), "getRoomInformation", Q_ARG( QString, pChannelName ) );
-
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "getRoomInformation", Q_ARG( QString, pChannelName ) );
+    }
 }
 
 void RocketChat::cancelUpload( QString pServerId, QString pFileId )
 {
     Q_UNUSED( pServerId );
-    auto server = mServerMap.first();
-    //server->cancelUpload( pFileId );
-
-    QMetaObject::invokeMethod( mServerMap.first().data(), "cancelUpload", Q_ARG( QString, pFileId ) );
-
-
-}
-
-QString RocketChat::getChannelDetails( QString pServerId, QString pChannelName )
-{
-    Q_UNUSED( pServerId );
-    bool archived = false;
-    bool readonly = false;
-    bool selfMuted = false;
-    QString type;
-    QStringList muted;
-    auto channels = mServerMap.first()->getChannels();
-
-    if ( channels->contains( pChannelName ) ) {
-        auto channel = channels->get( pChannelName );
-        archived = channel->getArchived();
-        readonly = channel->getReadOnly();
-        muted = channel->getMuted();
-        selfMuted = channel->getSelfMuted();
-        type = channel->getType();
-    }
-
-
-    QJsonArray jsonArray = QJsonArray::fromStringList( muted );
-    QJsonObject details;
-    details["archived"] = archived;
-    details["ro"] = readonly;
-    details["muted"] = jsonArray;
-    details["selfMuted"] = selfMuted;
-    details["type"] = type;
-    QJsonDocument doc( details );
-    return doc.toJson();
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "cancelUpload", Q_ARG( QString, pFileId ) );
+    }
 }
 
 void RocketChat::logout( QString pServerId )
 {
     Q_UNUSED( pServerId );
-    QSharedPointer<RocketChatServerData> server = mServerMap.first();
-    //server->logout();
-    QMetaObject::invokeMethod( mServerMap.first().data(), "logout");
-
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "logout");
+    }
 }
 
 void RocketChat::createChannel( QString pServerId, QString pChannelName, QStringList pUsersNames, bool pReadonly )
 {
     Q_UNUSED( pServerId );
-   // mServerMap.first()->createChannel( pChannelName, pUsersNames, pReadonly );
-    QMetaObject::invokeMethod( mServerMap.first().data(), "createChannel", Q_ARG( QString, pChannelName ), Q_ARG( QStringList, pUsersNames ), Q_ARG( bool, pReadonly ) );
-
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "createChannel", Q_ARG( QString, pChannelName ), Q_ARG( QStringList, pUsersNames ), Q_ARG( bool, pReadonly ) );
+    }
 }
 
 void RocketChat::createPrivateGroup( QString pServerId, QString pChannelName, QStringList pUsersNames, bool pReadonly )
 {
     Q_UNUSED( pServerId );
-  //  mServerMap.first()->createPrivateGroup( pChannelName, pUsersNames, pReadonly );
-    QMetaObject::invokeMethod( mServerMap.first().data(), "createPrivateGroup", Q_ARG( QString, pChannelName ), Q_ARG( QStringList, pUsersNames ), Q_ARG( bool, pReadonly ) );
-
+    if(mServerStatus){
+        QMetaObject::invokeMethod( mServerMap.first().data(), "createPrivateGroup", Q_ARG( QString, pChannelName ), Q_ARG( QStringList, pUsersNames ), Q_ARG( bool, pReadonly ) );
+    }
 }
 
 void RocketChat::registerServer( QSharedPointer<RocketChatServerData> pServer )
 {
     pServer->moveToThread(&mServerThread);
     mServerMap[pServer->getServerId()] = pServer;
-    //prevent destruction of shared pointer
-    mFirstServer = pServer;
-    //RestApi *restApi = server->getRestApi();
-    connect( pServer.data(), &RocketChatServerData::ddpConnected, this, &RocketChat::onDDPConnected, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::loggedIn, this, &RocketChat::loggedIn, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::channelFound, this, &RocketChat::onChannelFound, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::privateChannelCreated, this, &RocketChat::onPrivateChannelCreated, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::customEmojisReceived, this, &RocketChat::customEmojisReceived, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::channelDataProcessed, this, &RocketChat::channelDataProcessed, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::loggedOut, this, &RocketChat::onLogout, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::suggestionsReady, this, &RocketChat::suggestionsReady, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::loginError, this, &RocketChat::loginError, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::roomInformationReady, this, &RocketChat::roomInformationReady, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::channelMetadataUpdated, this, &RocketChat::onChannelMetadataUpdated, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::fileuploadStarted, this, &RocketChat::fileuploadStarted, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::fileUploadProgressChanged, this, &RocketChat::fileUploadProgressChanged, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::fileUploadFinished, this, &RocketChat::fileUploadFinished, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::error, this, &RocketChat::error, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::fileRessourceProcessed, this, &RocketChat::fileRessourceProcessed, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::messageListReceived, this, &RocketChat::messageListReceived, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::channelSwitchRequest, this, &RocketChat::onChannelSwitchRequest, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::onHashLoggedIn, this, &RocketChat::hashLoggedIn, Qt::UniqueConnection );
-    connect( pServer.data(), &RocketChatServerData::channelOrderChanged, this, &RocketChat::channelMetadataUpdated, Qt::UniqueConnection);
-    connect( pServer.data(), &RocketChatServerData::registerForPush, this, &RocketChat::registerForPush, Qt::UniqueConnection);
-    connect( &mNotificationsObject, &Notifications::tokenReceived, pServer.data(), &RocketChatServerData::sendPushToken, Qt::UniqueConnection );
-    connect( &mNotificationsObject, &Notifications::messageReceived, pServer.data(), &RocketChatServerData::switchChannel, Qt::UniqueConnection );
-#ifdef Q_OS_ANDROID
-    connect( pServer.data(), &RocketChatServerData::readyToCheckForPendingNotification, this, &RocketChat::checkForpendingNotification, Qt::UniqueConnection );
-#endif
-
 
-    // connect( restApi, &RestApi::fileDownloaded, this, &RocketChat::handleFileDownload );
-    connect( &mNetworkConfiguration, &QNetworkConfigurationManager::onlineStateChanged, this, &RocketChat::onOnlineStateChanged, Qt::UniqueConnection );
+    connect(&mServerThread,&QThread::started, pServer.data(), &RocketChatServerData::init, Qt::UniqueConnection);
+    connect( pServer.data(), &RocketChatServerData::readyToCheckForPendingNotification, this, &RocketChat::serverReadySlot, Qt::UniqueConnection );
 
-    connect(&mServerThread,&QThread::started,this,&RocketChat::serverReadySlot, Qt::UniqueConnection);
     mServerThread.start();
 
-    QMetaObject::invokeMethod( mServerMap.first().data(), "init" );
-
-   // pServer->init();
-
-    //mServerStatus = true;
-
-    mDdpConnectionEstablished = pServer->isConnected();
 }
 
 void RocketChat::openIosFile( const QString &fileName )
@@ -633,19 +475,21 @@ void RocketChat::openIosFile( const QString &fileName )
     emit openShareDialog();
 }
 
-void RocketChat::registerForPush()
+void RocketChat::openUrl(const QString url)
 {
-#ifdef Q_OS_ANDROID
-    mNotificationsObject.registerWithService();
-#endif
+    if(!QDesktopServices::openUrl(url)){
+         qDebug()<<"Jitsi meet could not be opened";
+         emit noJitsiMeetAvailable();
+    }
 }
 
-QVariantList RocketChat::getEmojisByCategory()
+void RocketChat::registerForPush()
 {
-    return mServerMap.first()->getEmojisByCategory();
+#if defined(Q_OS_ANDROID) || defined(Q_OS_IOS)
+    mNotificationsObject.registerWithService();
+#endif
 }
 
-
 void RocketChat::onLogout( QString pServerId )
 {
     emit loggedOut( pServerId );
@@ -654,36 +498,30 @@ void RocketChat::onLogout( QString pServerId )
 //TODO: less calls !
 void RocketChat::onChannelMetadataUpdated( QString pChannelId )
 {
+    emit channelMetadataUpdated( pChannelId );
+}
 
-
+void RocketChat::onUnreadCountChanged(QString pServerId, uint pUnread)
+{
 #ifdef Q_OS_ANDROID
 
-    int number = 0;
+    mUnreadSum[pServerId] = pUnread;
 
-    for ( auto server : mServerMap ) {
-        for ( auto channel : server->getChannels()->getElements() ) {
-            number += channel->getUnreadMessages();
-        }
-    }
 
-    if(mLastBadgeCount!=number){
-        mLastBadgeCount = number;
-        std::tuple<QString, QString> currentChannelTupel = mStorage->getCurrentChannel();
-        QString currentChannel = std::get<0>( currentChannelTupel );
+    uint number = 0;
 
-        if(pChannelId == currentChannel){
-            number = 0;
+    if(mServerStatus){
+        for ( auto count: mUnreadSum ) {
+            number += count;
         }
-        static int count = 0;
-        qDebug()<<"badge set called times: "<<++count;
         AndroidBadges::setNumber( number );
-    }
+     }
 #endif
-    emit channelMetadataUpdated( pChannelId );
 }
 
 void RocketChat::onChannelSwitchRequest(QString server, QString rid, QString name, QString type)
 {
+    //TODO: fix
     emit channelSwitchRequest(server,rid,name,type);
     mChannelSwitchRequest["server"] = server;
     mChannelSwitchRequest["rid"] = rid;
@@ -693,6 +531,47 @@ void RocketChat::onChannelSwitchRequest(QString server, QString rid, QString nam
 
 void RocketChat::serverReadySlot()
 {
+   // QMetaObject::invokeMethod( mServerMap.first().data(), "init" );
+    auto pServer = mServerMap.first();
+    connect( pServer.data(), &RocketChatServerData::ddpConnected, this, &RocketChat::onDDPConnected, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::loggedIn, this, &RocketChat::loggedIn, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::channelFound, this, &RocketChat::onChannelFound, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::usersLoaded, this, &RocketChat::onUsersLoaded, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::privateChannelCreated, this, &RocketChat::onPrivateChannelCreated, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::customEmojisReceived, this, &RocketChat::onEmojisReady, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::channelDataProcessed, this, &RocketChat::channelDataProcessed, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::loggedOut, this, &RocketChat::onLogout, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::suggestionsReady, this, &RocketChat::suggestionsReady, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::loginError, this, &RocketChat::loginError, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::roomInformationReady, this, &RocketChat::roomInformationReady, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::channelMetadataUpdated, this, &RocketChat::onChannelMetadataUpdated, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::fileuploadStarted, this, &RocketChat::fileuploadStarted, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::fileUploadProgressChanged, this, &RocketChat::fileUploadProgressChanged, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::fileUploadFinished, this, &RocketChat::fileUploadFinished, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::error, this, &RocketChat::error, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::fileRessourceProcessed, this, &RocketChat::fileRessourceProcessed, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::messageListReceived, this, &RocketChat::messageListReceived, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::channelSwitchRequest, this, &RocketChat::onChannelSwitchRequest, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::onHashLoggedIn, this, &RocketChat::hashLoggedIn, Qt::UniqueConnection );
+    //TODO: chekck for redundancy
+    connect( pServer.data(), &RocketChatServerData::channelOrderChanged, this, &RocketChat::onChannelMetadataUpdated, Qt::UniqueConnection);
+    connect( pServer.data(), &RocketChatServerData::registerForPush, this, &RocketChat::registerForPush, Qt::UniqueConnection);
+    connect( &mNotificationsObject, &Notifications::tokenReceived, pServer.data(), &RocketChatServerData::sendPushToken, Qt::UniqueConnection );
+    connect( &mNotificationsObject, &Notifications::messageReceived, pServer.data(), &RocketChatServerData::switchChannel, Qt::UniqueConnection );
+    connect( pServer.data(), &RocketChatServerData::openUrl, this, &RocketChat::openUrl, Qt::UniqueConnection);
+    //TODO: chekck for redundancy
+    connect( pServer.data(), &RocketChatServerData::sortOrderReady, this, &RocketChat::onChannelSortReceived, Qt::UniqueConnection);
+    connect( pServer.data(), &RocketChatServerData::allChannelsReady, this, &RocketChat::onAllChannelsReceived, Qt::UniqueConnection);
+    connect( pServer.data(), &RocketChatServerData::usersReady, this, &RocketChat::channelUsersReady, Qt::UniqueConnection);
+    connect( pServer.data(), &RocketChatServerData::channelDetailsReady, this, &RocketChat::channelDetailsReady, Qt::UniqueConnection);
+    connect( pServer.data(), &RocketChatServerData::unreadCountChanged, this, &RocketChat::onUnreadCountChanged, Qt::UniqueConnection);
+#ifdef Q_OS_ANDROID
+    checkForpendingNotification();
+#endif
+    connect( &mNetworkConfiguration, &QNetworkConfigurationManager::onlineStateChanged, this, &RocketChat::onOnlineStateChanged, Qt::UniqueConnection );
+
+    mDdpConnectionEstablished = pServer->isConnected();
+
     mServerStatus = true;
     emit serverReady();
 }
@@ -720,7 +599,6 @@ void RocketChat::openAndroidFileDialog( QString channelId )
 void RocketChat::checkForpendingNotification()
 {
     QAndroidJniObject::callStaticMethod<void>( "at/gv/ucom/MainActivity", "checkForPendingIntent" );
-
 }
 #endif
 void RocketChat::openFileNameReady( QString pFile )
@@ -729,11 +607,8 @@ void RocketChat::openFileNameReady( QString pFile )
 
     if ( pFile == "null" ) {
         emit error( "invalid file information" );
-    } else if ( !pFile.isEmpty() ) {
-        //mServerMap.first()->uploadFile( mCurrentChannel, pFile );
+    } else if ( !pFile.isEmpty() && mServerStatus) {
         QMetaObject::invokeMethod( mServerMap.first().data() , "uploadFile", Q_ARG( QString, mCurrentChannel ), Q_ARG( QString, pFile ) );
-
-
     }
 }
 
@@ -745,9 +620,24 @@ void RocketChat::onKeyboardVisiblityChanged()
     emit keyboardVisibilityChanged(visible, height);
 }
 
-void RocketChat::onChannelFound( QString pSeverId, QString pJson )
+void RocketChat::onEmojisReady(QVariantList pEmojiList)
 {
+    mEmojisReady = true;
+    emit emojisReady(pEmojiList);
+}
 
+void RocketChat::onChannelSortReceived(QVariantMap pSortOrder, QString channelType)
+{
+   // emit channelSort( pSortOrder, channelType );
+}
+
+void RocketChat::onAllChannelsReceived(QVariantList pChannels)
+{
+    emit allChannelsReceived(pChannels);
+}
+
+void RocketChat::onChannelFound( QString pSeverId, QString pJson )
+{
     emit channelFound( pSeverId, pJson );
 }
 
@@ -757,6 +647,11 @@ void RocketChat::onDDPConnected( QString pServerId )
     emit serverConnected( pServerId );
 }
 
+void RocketChat::onUsersLoaded( QString pServerId, QString pUsers )
+{
+    emit usersLoaded( pServerId, pUsers );
+}
+
 void RocketChat::onPrivateChannelCreated( QString pServerId, QString pRid, QString pUsername )
 {
     qDebug() << "sending private channel creation to gui";
@@ -767,26 +662,25 @@ void RocketChat::onOnlineStateChanged( bool pOnline )
 {
     qDebug() << "stat changed" << pOnline;
     connect( &mNetworkConfiguration, &QNetworkConfigurationManager::onlineStateChanged, this, &RocketChat::onOnlineStateChanged, Qt::UniqueConnection );
+    if(mServerStatus){
+        if ( pOnline ) {
 
-    if ( pOnline ) {
-        QSharedPointer<RocketChatServerData> server =  mServerMap.first();
-   //     server->resume();
-        QMetaObject::invokeMethod( mServerMap.first().data(), "resume" );
-
-    } else {
-        for ( auto server : mServerMap ) {
-           // server->setConnectionState( ConnectionState::OFFLINE );
-            QMetaObject::invokeMethod( server.data() , "setConnectionState", Q_ARG( ConnectionState, ConnectionState::OFFLINE ) );
+            for ( auto server : mServerMap ) {
+                QMetaObject::invokeMethod( server.data() , "resume" );
+            }
+        } else {
+            for ( auto server : mServerMap ) {
+                QMetaObject::invokeMethod( server.data() , "setConnectionState", Q_ARG( ConnectionState, ConnectionState::OFFLINE ) );
+            }
 
+            emit offline();
         }
-
-        emit offline();
     }
 }
 
 void RocketChat::onApplicationStateChanged( Qt::ApplicationState pState )
 {
-    if ( pState == Qt::ApplicationActive ) {
+    if ( pState == Qt::ApplicationActive &&mServerStatus ) {
         QDateTime date;
         qDebug() << "application changed to active";
         qDebug() << "time: " << date.currentDateTime();
@@ -798,21 +692,21 @@ void RocketChat::onApplicationStateChanged( Qt::ApplicationState pState )
 
         if ( mInitialized && mNetworkConfiguration.isOnline() ) {
             qDebug() << "network connection active";
-
             for ( auto server : mServerMap ) {
 
-                //check if websocket connection is still alive, and if DDP is timedout
-                qDebug() << "diff to last ping " << server->diffToLastDDPPing();
-
-                if ( !server->isWebsocketValid() || server->diffToLastDDPPing() > 29 ) {
-                    qDebug() << "call resume";
-                  //  server->resume();
-                    QMetaObject::invokeMethod( mServerMap.first().data(), "resume" );
-                }
+                    //check if websocket connection is still alive, and if DDP is timedout
+                    QMetaObject::invokeMethod(server.data(), "onStateChanged", Q_ARG(Qt::ApplicationState, pState ));   
             }
         } else {
             mInitialized = 1;
         }
+    }else if(((pState == Qt::ApplicationInactive)||pState == Qt::ApplicationSuspended) &&mServerStatus){
+        qDebug()<<"away";
+        if(mNetworkConfiguration.isOnline()){
+            for ( auto server : mServerMap ) {
+                QMetaObject::invokeMethod( server.data(), "setUserPresenceStatus", Q_ARG(int,2) );
+            }
+        }
     }
 }
 
diff --git a/rocketchat.h b/rocketchat.h
index 8a41c4c4d777e4ff76d9386c0f2c7c16170cf4bf..7b6b6bb84df5af80aac017f49b5b6fab1d53c92c 100755
--- a/rocketchat.h
+++ b/rocketchat.h
@@ -43,18 +43,7 @@ using namespace std;
 class RocketChat : public QObject
 {
         Q_OBJECT
-        Q_PROPERTY( QVariantList emojisByCategory READ getEmojisByCategory() )
     public:
-        //TODO: should be moved to RocketChatServer
-        enum class fileTypes {
-            image,
-            document,
-            audio,
-            video,
-            temp,
-            emoji
-        };
-
         RocketChat( QGuiApplication *mApp );
         ~RocketChat();
 
@@ -69,34 +58,26 @@ class RocketChat : public QObject
         Q_INVOKABLE void getFileRessource( QString pUrl, QString pType );
 
         Q_INVOKABLE QString getCurrentChannel( void );
-        Q_INVOKABLE int getUnreadMessages( QString pServerId, QString pChannelId );
-        Q_INVOKABLE QString getYoungestMessage( QString pServerId, QString pChannelId );
         Q_INVOKABLE void getUserSuggestions( QString pTerm, QString pExceptions );
         Q_INVOKABLE void getRoomInformation( QString pServerId, QString pChannelName );
         Q_INVOKABLE void cancelUpload( QString pServerId, QString pFileId );
 
-        Q_INVOKABLE QString getChannelDetails( QString pServerId, QString pChannelName );
-
-        QVariantList getEmojisByCategory();
-
         Q_INVOKABLE void joinChannel( QString pServer, QString pChannelId );
         Q_INVOKABLE void login( QString pServerId, QString pUsername, QString pPassword );
-        Q_INVOKABLE QString getUserOfChannel( QString pServerId, QString pId );
+        Q_INVOKABLE void getUserOfChannel( QString pServerId, QString pId );
         Q_INVOKABLE void openPrivateChannelWith( QString pServerId , QString pUsername );
         Q_INVOKABLE void sendMessage( QString pServerId, QString pChannelId, QString pMessage );
         Q_INVOKABLE void openFileDialog( QString pChannelId );
         Q_INVOKABLE void resetCurrentChannel( void );
-        Q_INVOKABLE bool isChannelJoined( QString pServerId, QString pChannelId );
-        Q_INVOKABLE void loadChannels( QString pServerId );
         Q_INVOKABLE void logout( QString pServer );
         Q_INVOKABLE void createChannel( QString pServerId, QString pChannelName, QStringList pUsersNames, bool pReadonly = false );
         Q_INVOKABLE void createPrivateGroup( QString pServerId, QString pChannelName, QStringList pUsersNames, bool pReadonly = false );
         Q_INVOKABLE void addUsersToChannel( QString pServerId, QString pChannelName, QString pUsernames );
         Q_INVOKABLE void openFileExternally( QString pPath );
-        Q_INVOKABLE QString getSortOrderByCategory( QString pServerId, QString pType );
+        Q_INVOKABLE void getSortOrderByCategory( QString pServerId, QString pType );
         Q_INVOKABLE bool hasCameraPermission();
         Q_INVOKABLE QString getCleanString( QString pText );
-        Q_INVOKABLE QVariantList getAllChannels();
+        Q_INVOKABLE void getAllChannels();
         Q_INVOKABLE void uploadSharedFileToChannel(QString channelId);
         Q_INVOKABLE void joinJitsiCall( QString pServer, QString pChannelId, QString pMessageId );
 
@@ -125,6 +106,13 @@ class RocketChat : public QObject
         Q_INVOKABLE void resetChannelSwitchRequest();
 
         Q_INVOKABLE void channelViewReady();
+
+        Q_INVOKABLE bool customEmojisReady();
+
+        Q_INVOKABLE void checkLoggedIn();
+
+        Q_INVOKABLE void getChannelDetails( QString pServerId, QString pChannelName );
+
         void channelsList( QString pFilter, QString pChannelType, QString pSort );
         void deleteFileMessage( QString pFileID );
         void ufsCreate( QString pFilename, int pSize, QString pMime, QString pRid );
@@ -134,6 +122,7 @@ class RocketChat : public QObject
         void openIosFile(const QString &fileName);
 
         void registerForPush();
+        void openUrl(const QString url);
 
     protected:
 #ifdef Q_OS_IOS
@@ -149,6 +138,7 @@ class RocketChat : public QObject
         QMap<QString, QSharedPointer<RocketChatServerData> > mServerMap;
         QNetworkConfigurationManager mNetworkConfiguration;
         QInputMethod *mInputMethod = nullptr;
+        QHash<QString,uint> mUnreadSum;
 
         Notifications mNotificationsObject;
 
@@ -165,7 +155,8 @@ class RocketChat : public QObject
         bool mStorageStatus = false;
         bool mInitialized = false;
         bool mDdpConnectionEstablished = false;
-        QHash<QString, fileTypes> mDownloadedFiles;
+        bool mEmojisReady = false;
+
         QString currentChannel;
         QString parseMessageReceived( QString pMessage );
         void onChannelFound( QString pSeverId, QString pJson );
@@ -179,6 +170,7 @@ class RocketChat : public QObject
         void handleFileDownload( QString pUrl, QString pPath );
         void onLogout( QString pServerId );
         void onChannelMetadataUpdated( QString pChannelId );
+        void onUnreadCountChanged( QString pServerId, uint pUnread );
 
         void onChannelSwitchRequest( QString server, QString rid, QString name, QString type );
 
@@ -195,9 +187,16 @@ class RocketChat : public QObject
 
         void onKeyboardVisiblityChanged();
 
+        void onEmojisReady(QVariantList pEmojiList);
+
+        void onChannelSortReceived(QVariantMap pSortOrder , QString channelType);
+
+        void onAllChannelsReceived(QVariantList pChannels);
+
     signals:
         void channelFound( QString serverId, QString channel );
         void messageListReceived( QString serverId, QString channelId, QVariantList messages );
+        void usersLoaded( QString serverId, QString users );
         void userJoined( QString channelId, QString user );
         void fileRessourceProcessed( QString url, QString path , bool showInline );
         void privateChannelCreated( QString serverId, QString roomId, QString username );
@@ -217,11 +216,17 @@ class RocketChat : public QObject
         void fileUploadProgressChanged( QString data );
         void error( QString text );
         void channelSwitchRequest( QString server, QString rid, QString name, QString type );
-        void channelSort(QVariantMap sortObj);
+        void channelSort(QVariantMap sortObj,QString channelType);
         void openShareDialog();
         void serverReady();
         void storageReady();
         void keyboardVisibilityChanged(bool visible, float height);
+        void emojisReady(QVariantList emojis);
+        void allChannelsReceived(QVariantList channels);
+        //TODO: use QVariant...
+        void channelUsersReady(QString users, QString channel);
+        void channelDetailsReady(QString details, QString channelId);
+        void noJitsiMeetAvailable();
 };
 
 #endif // ROCKETCHAT_H
diff --git a/rocketchatserver.cpp b/rocketchatserver.cpp
index 9230070b029edb5fd22ab3a0cb0c9d4f50e94c96..d48a23f06cc7873bcd88bbe058f8859b0db745cd 100755
--- a/rocketchatserver.cpp
+++ b/rocketchatserver.cpp
@@ -3,11 +3,17 @@
 
 
 
-RocketChatServerData::RocketChatServerData( QString pId,  QString pBaseUrl, QString pApiUri,
-                                            UserModel &pUserModel,MessageModel  &pmessageModel  )
-    : mBaseUrl( pBaseUrl ), mApiUri( pApiUri ), mServerId( pId ), userModel(pUserModel),messageModel(pmessageModel)
+RocketChatServerData::RocketChatServerData( QString pId,  QString pBaseUrl,
+                                            QString pApiUri,
+                                            UserModel &pUserModel,
+                                            ChannelModel &channelModel,
+                                            ChannelModel &groupsModel,
+                                            ChannelModel &directModel )
+    : mBaseUrl( pBaseUrl ), mApiUri( pApiUri ), mServerId( pId ), userModel( pUserModel ),
+      channelsModel(channelModel), groupsModel(groupsModel), directModel(directModel)
 {
     mStorage = PersistanceLayer::instance();
+    mEmojiRepo = new EmojiRepo;
 }
 
 void RocketChatServerData::init()
@@ -16,13 +22,13 @@ void RocketChatServerData::init()
     setRestApi( new RestApi( "https://" + mBaseUrl, mApiUri ) );
     mRestApi->moveToThread(QThread::currentThread());
     mDdpApi->moveToThread(QThread::currentThread());
+    mUsername = mStorage->getUserName();
+
+    mChannels = new ChannelRepository(channelsModel, channelsModel, groupsModel);
 
-    this->mStorage = PersistanceLayer::instance();
-    this->mUsername = mStorage->getUserName();
-    mChannels = new ChannelRepository;
-    messageModel.setRepo(mChannels);
     mFileService = new FileService( this );
     mEmojiService = new EmojiService( this, mFileService, mStorage );
+
     connect( mDdpApi, &MeteorDDP::messageReceived, this, &RocketChatServerData::onDDPMessageReceived, Qt::UniqueConnection );
     connect( mDdpApi, &MeteorDDP::ddpConnected, this, &RocketChatServerData::onDDPConnected, Qt::UniqueConnection );
     qDebug() << "loaded channel list from db";
@@ -30,19 +36,25 @@ void RocketChatServerData::init()
     mUserId = mStorage->getUserId();
     mUsername = mStorage->getUserName();
 
-    mEmojisMap.reserve(3000);
+    // mEmojisMap.reserve(3000);
     mDownloadsInProgress.reserve(100);
 
     loadEmojis();
-    mMessageService = new MessageService( mStorage, this, mEmojisMap );
+    //mMessageService = new MessageService( mStorage, this, mEmojisMap );
+    mMessageService = new MessageService( mStorage, this, mEmojiRepo );
 
     channelService = new RocketChatChannelService( this, mMessageService );
     channelService->setChannels( mChannels );
+
     connect( channelService, &RocketChatChannelService::channelsLoaded, this, &RocketChatServerData::onChannelsLoaded, Qt::UniqueConnection );
     connect( channelService, &RocketChatChannelService::usersLoaded, this, &RocketChatServerData::onUsersLoaded, Qt::UniqueConnection );
-
     connect( mChannels, &ChannelRepository::orderChanged, this, &RocketChatServerData::channelOrderChanged, Qt::UniqueConnection);
+    connect( channelService, &RocketChatChannelService::directChannelReady, this, &RocketChatServerData::switchChannelByRid, Qt::UniqueConnection);
+    connect( &channelsModel, &ChannelModel::unreadMessagesChanged, this, &RocketChatServerData::onUnreadCountChanged, Qt::UniqueConnection);
+
+    emit readyToCheckForPendingNotification();
     channelService->loadJoinedChannelsFromDb();
+
 }
 
 void RocketChatServerData::setRestApi( RestApi *pNewRestApi )
@@ -63,16 +75,39 @@ void RocketChatServerData::setRestApi( RestApi *pNewRestApi )
 void RocketChatServerData::loadEmojis()
 {
 
+   /* QFile file(":/emoji.json");
+    if(!file.open(QFile::ReadOnly)){
+        qDebug()<<file.errorString();
+        qDebug()<<file.error();
+    }
+
+    QJsonDocument doc = QJsonDocument::fromJson(file.readAll());
+
+    QJsonObject obj = doc.object();
+
+    for(QString key: obj.keys()){
+        QJsonObject emojiObj = obj[key].toObject();
+        QString id = ":"+key+":";
+        QString file = "qrc:/res/emojis/"+emojiObj["unicode"].toString()+".png";
+        QString html = "<img height='20' width='20' src='"+file+"' />";
+        QString unicode = Utils::escapeUnicodeEmoji(emojiObj["unicode"].toString());
+        QString category = emojiObj["category"].toString();
+        QString sort_order = emojiObj["emoji_order"].toString();
+        int sort_orderInt = sort_order.toInt();
+        qDebug()<<sort_orderInt;
+        mStorage->addCustomEmoji(id,file,html,category,unicode,sort_orderInt);
+    }*/
+
+
     auto emojiList = mEmojiService->loadEmojisFromDb();
 
     for ( auto emoji : emojiList ) {
-        mEmojisMap[emoji->getIdentifier()] = emoji->getHtml();
-        if(emoji->getCategory() == "custom"){
-            mCustomEmojis.append(emoji->getIdentifier());
-            mCustomEmojisHash = Utils::hash(mCustomEmojis);
+        if( mEmojiRepo != nullptr && !emoji.isNull() ){
+           mEmojiRepo->add(emoji->getIdentifier(), emoji);
+//        if(emoji->getCategory() == "custom"){
+//            mCustomEmojisHash = Utils::hash(mCustomEmojis);
+//        }
         }
-        QVariantMap entry = emoji->toQVariantMap();
-        this->mEmojis.append( entry );
     }
 
     qDebug() << "emojis parsed";
@@ -80,15 +115,92 @@ void RocketChatServerData::loadEmojis()
 
 void RocketChatServerData::switchChannel( QString pServer, QString pRid, QString pName, QString pType )
 {
+    qDebug()<<"switch channel to: "<<pRid;
+    bool switchPossible = false;
     if ( pRid.length() ) {
-        qDebug()<<"channels in rep: "<<mChannels->getElements().size();
         if ( !mChannels->contains( pRid ) ) {
             if ( pType == "d" || pType == "c" || pType == "p" ) {
+                qDebug()<<"create new channel object to:"<<pRid;
                 channelService->createChannelObject( pRid, pName, pType );
+                if(mChannels->contains( pRid ) && !mChannels->get(pRid).isNull()){
+                    switchPossible = true;
+                }
             }
+        }else{
+            switchPossible = true;
+        }
+    }
+    if(switchPossible){
+        qDebug()<<"current Channel "<<mCurrentChannel;
+        qDebug()<<"room "<<pRid;
+        if(mCurrentChannel != pRid){
+            emit channelSwitchRequest( pServer, pRid, pName, pType );
+        }
+    }
+}
+
+void RocketChatServerData::switchChannelByRid(QString pName)
+{
+    if(mChannels->getChannelByName(pName)){
+        auto channel = mChannels->getChannelByName(pName);
+        switchChannel("default", channel->getRoomId(), pName, channel->getType());
+    }
+}
+
+void RocketChatServerData::requestGetChannelDetails(QString pChannelId)
+{
+    QString type;
+    QStringList muted;
+    bool archived = false;
+    bool readonly = false;
+    bool selfMuted = false;
+
+    if ( mChannels->contains( pChannelId ) ) {
+        auto channel = mChannels->get( pChannelId );
+        if(!channel.isNull()){
+            archived = channel->getArchived();
+            readonly = channel->getReadOnly();
+            muted = channel->getMuted();
+            selfMuted = channel->getSelfMuted();
+            type = channel->getType();
+
+            QJsonArray jsonArray = QJsonArray::fromStringList( muted );
+            QJsonObject details;
+            details["archived"] = archived;
+            details["ro"] = readonly;
+            details["muted"] = jsonArray;
+            details["selfMuted"] = selfMuted;
+            details["type"] = type;
+            details["name"] = channel->getName();
+            QJsonDocument doc( details );
+            emit channelDetailsReady(doc.toJson(), pChannelId);
         }
+    }
+}
+
+void RocketChatServerData::requestIsLoggedIn()
+{
+    if(mLoggedIn){
+        emit loggedIn("default");
+    }
+}
+
+void RocketChatServerData::setUserPresenceStatus(int pStatus)
+{
+    if(pStatus >0 &&pStatus<5 && isWebsocketValid() && diffToLastDDPPing() < 29){
+
+        QSharedPointer<DDPMethodRequest> request( new RocketChatChangeUserPresanceDefaultStatus( static_cast<RocketChatChangeUserPresanceDefaultStatus::status>( pStatus) ) );
+        mDdpApi->sendRequest(request);
+    }
+}
 
-        emit channelSwitchRequest( pServer, pRid, pName, pType );
+void RocketChatServerData::onStateChanged(Qt::ApplicationState pState)
+{
+    if ( !isWebsocketValid() || diffToLastDDPPing() > 29 ) {
+        qDebug() << "call resume";
+        resume();
+    }else{
+        setUserPresenceStatus(1);
     }
 }
 
@@ -104,24 +216,7 @@ void RocketChatServerData::setUserId(const QString &userId)
 
 void RocketChatServerData::checkForMissedMessages()
 {
-    /*auto channels = this->channels->getElements();
-    std::function<void (QMultiMap<QString, QSharedPointer<RocketChatMessage> > *messages)> success =
-            [=](QMultiMap<QString, QSharedPointer<RocketChatMessage> > *messages){
-        storage->transaction();
-        for(auto key: messages->uniqueKeys()){
-            auto messageList = messages->values(key);
-            auto channel = this->channels->get(key);
-            channel->addMessages(messageList);
-        }
-        storage->commit();
-    };
-    for ( auto current : channels ) {
-        auto messages = current->getMessageRepo()->messagesAsObjects();
-        QList<QSharedPointer<RocketChatMessage>> messageList = messages.toList();
-        QSharedPointer<LoadMissedMessageServiceRequest> request(new LoadMissedMessageServiceRequest( current->getRoomId(),messageList));
-        request->setSuccess(success);
-        messageService->checkForMissingMessages(request);
-    }*/
+
 }
 
 void RocketChatServerData::loadHistories()
@@ -129,25 +224,29 @@ void RocketChatServerData::loadHistories()
     QStringList channelIds;
 
     for ( auto currentChannel : mChannels->getElements() ) {
-        if ( Q_LIKELY( currentChannel->getJoined() ) ) {
+        if ( Q_LIKELY(!currentChannel.isNull() && currentChannel->getJoined() ) ) {
             //joinChannel( currentChannel->getRoomId() );
             channelIds.append( currentChannel->getRoomId() );
         }
     }
 
     std::function<void ( QMultiMap<QString, QSharedPointer<RocketChatMessage>> *messages )> historyLoaded = [ = ]( QMultiMap<QString, QSharedPointer<RocketChatMessage>> *messages ) {
-        mStorage->transaction();
-
-        for ( auto key : messages->uniqueKeys() ) {
-            if ( Q_LIKELY( mChannels->contains( key ) ) ) {
-                MessageList messageList = messages->values( key );
-                mChannels->get( key )->addMessages( messageList );
-                mMessageService->persistMessages( messageList );
+        if(messages){
+            mStorage->transaction();
+
+            for ( auto key : messages->uniqueKeys() ) {
+                if ( Q_LIKELY( mChannels->contains( key ) && !mChannels->get(key).isNull() ) ) {
+                    MessageList messageList = messages->values( key );
+                    mChannels->get( key )->addMessages( messageList );
+                    mMessageService->persistMessages( messageList );
+                    newMessageListForGui( key, messageList );
+                }
+            }
+            mStorage->commit();
+            if(messages != nullptr){
+                delete messages;
             }
         }
-
-        mStorage->commit();
-        delete messages;
     };
     QSharedPointer<LoadHistoryServiceRequest> request( new LoadHistoryServiceRequest( channelIds ) );
     request->setSuccess( historyLoaded );
@@ -181,7 +280,7 @@ void RocketChatServerData::loadHistories()
 
 QString RocketChatServerData::parseMessageReceived( QString pMessage )
 {
-    pMessage = Utils::emojiFy( pMessage, mEmojisMap );
+    pMessage = Utils::emojiFy( pMessage, mEmojiRepo );
     //    message = Utils::linkiFy( message );
     //    message = message.replace( "\n", "<br>" );
     return pMessage;
@@ -192,12 +291,28 @@ void RocketChatServerData::onUsersLoaded( QString pChannelId, QVector<QSharedPoi
 {
     if ( Q_LIKELY( mChannels->contains( pChannelId ) ) ) {
         auto channel = mChannels->get( pChannelId );
+        if(!channel.isNull()){
+            for ( auto user : pUserList ) {
+                if(!user.isNull()){
+                    channel->addUser( user );
+                    userModel.insertUser( pChannelId, user );
+                }
+            }
+
+            emit channelMetadataUpdated( pChannelId );
+        }
+    }
+}
 
-        for ( auto user : pUserList ) {
-            channel->addUser( user );
-            userModel.insertUser( pChannelId, user );
+void RocketChatServerData::onUnreadCountChanged()
+{
+    uint number = 0;
+    for (auto channel: mChannels->getElements()){
+        if(!channel.isNull()){
+            number += channel->getUnreadMessages();
         }
     }
+    emit unreadCountChanged("default", number);
 }
 
 qint16 RocketChatServerData::getCustomEmojisHash() const
@@ -210,9 +325,24 @@ void RocketChatServerData::setCustomEmojisHash(const qint16 &customEmojisHash)
     mCustomEmojisHash = customEmojisHash;
 }
 
+EmojiRepo *RocketChatServerData::getEmojiRepo() const
+{
+    return mEmojiRepo;
+}
+
+void RocketChatServerData::setEmojiRepo(EmojiRepo *emojiRepo)
+{
+    mEmojiRepo = emojiRepo;
+}
+
 QVariantList RocketChatServerData::getEmojisByCategory()
 {
-    return this->mEmojis;
+    QVariantList list;
+    auto emojiMap = mEmojiRepo->emojisOrdered();
+    for(auto emoji : emojiMap){
+        list.append(emoji->toQVariantMap());
+    }
+    return list;
 }
 
 void RocketChatServerData::login( QString pUsername, QString pPassword )
@@ -328,7 +458,8 @@ void RocketChatServerData::loginWithToken( QString pUsername, QString pToken, bo
                     mDdpApi->unsetResponseBinding( request->getFrame() );
 
 
-                    RestApiRequest meRequest( new restMeRequest( meCallBackSuccess ) );
+                    RestApiRequest meRequest
+                            = RestApiRequest( new restMeRequest( meCallBackSuccess ) );
 
                     mRestApi->sendRequest(meRequest);
 
@@ -381,29 +512,10 @@ void RocketChatServerData::onDDPConnected()
 
 void RocketChatServerData::onDDPAuthenticated()
 {
+    //TODO: dirty fix!
+    getCustomEmojis();
+    setUserPresenceStatus(1);
 
-
-    QSharedPointer<RocketChatSubscribeUserNotify> notifySubSubscription( new RocketChatSubscribeUserNotify( this->mUserId ) );
-    QSharedPointer<RocketChatNotifyNoticesRequest> notifyNoticeSubSubscription( new RocketChatNotifyNoticesRequest( this->mUserId ) );
-    QSharedPointer<RocketChatSubScriptionChangedRequest> noitfySubscriptionsSubscription( new RocketChatSubScriptionChangedRequest( this->mUserId ) );
-    QSharedPointer<RocketChatSubscribeActiveUsers> activeUsersSubscription( new RocketChatSubscribeActiveUsers() );
-    mDdpApi->sendRequest( notifySubSubscription );
-    mDdpApi->sendRequest( notifyNoticeSubSubscription );
-    mDdpApi->sendRequest( noitfySubscriptionsSubscription );
-    mDdpApi->sendRequest( activeUsersSubscription );
-
-    //getCustomEmojis();
-    //    QtConcurrent::run([=]{
-    //        volatile SegfaultHandler segfaultHandler("RocketChatServerData::onDDPAuthenticated");
-    onLoggedIn();
-    sendUnsentMessages();
-    getServerSettings();
-    emit registerForPush();
-   // mNotificationsObject.registerWithService();
-    //    });
-    qDebug() << "ddp authenticated";
-    this->initialised = 1;
-    emit readyToCheckForPendingNotification();
 }
 
 void RocketChatServerData::handleChannelMessage( QJsonObject pMessage )
@@ -424,13 +536,16 @@ void RocketChatServerData::handleChannelMessage( QJsonObject pMessage )
 
                     if ( !mChannels->contains( "id" ) ) {
                         QSharedPointer<RocketChatChannel> channel  = channelService->createChannelObject( rid, name, newChannel["t"].toString() );
-                        QJsonDocument doc( channel->toJsonObject() );
-                        channel->setJoined( true );
-
-                        //if ( this->channels->add( rid, channel ) ) {
-                        emit channelFound( "default", doc.toJson() );
-                        emit channelMetadataUpdated( rid );
-                        //}
+                        if(!channel.isNull()){
+                            connect( channel.data(), &RocketChatChannel::messageListReceived, this, &RocketChatServerData::newMessageListForGui, Qt::UniqueConnection );
+                            QJsonDocument doc( channel->toJsonObject() );
+                            channel->setJoined( true );
+
+                            //if ( this->channels->add( rid, channel ) ) {
+                            emit channelFound( "default", doc.toJson() );
+                            emit channelMetadataUpdated( rid );
+                            //}
+                        }
                     }
                 }
             } else if ( firstArg == "updated" ) {
@@ -438,7 +553,7 @@ void RocketChatServerData::handleChannelMessage( QJsonObject pMessage )
                 int unread = data["unread"].toInt();
                 QString rid = data["rid"].toString();
 
-                if ( mChannels->contains( rid ) ) {
+                if ( mChannels->contains( rid ) && !mChannels->get(rid).isNull()) {
                     mChannels->get( rid )->setUnreadMessages( unread );
                     emit channelMetadataUpdated( rid );
                 } else {
@@ -461,11 +576,14 @@ void RocketChatServerData::getFileRessource( QString pUrl )
 
 void RocketChatServerData::getFileRessource( QString pUrl, QString pType )
 {
-    QString returnString = "";
-    auto then = [ = ]( QSharedPointer<TempFile> tempfile ) {
-        emit( fileRessourceProcessed( pUrl, tempfile->getFilePath(), true ) );
+    bool showInline = false;
+    if(pType == "temp"){
+        showInline = true;
+    }
+    auto then = [ = ]( QSharedPointer<TempFile> tempfile, bool showInline ) {
+        emit( fileRessourceProcessed( pUrl, tempfile->getFilePath(), showInline ) );
     };
-    QSharedPointer< FileRequest > request( new FileRequest( pUrl, pType, then ) );
+    QSharedPointer< FileRequest > request( new FileRequest( pUrl, pType, then, showInline ) );
     mFileService->getFileRessource( request );
 
 }
@@ -473,28 +591,63 @@ void RocketChatServerData::getFileRessource( QString pUrl, QString pType )
 void RocketChatServerData::sendPushToken( QString pToken )
 {
     if ( !mUserId.isEmpty() && !pToken.isEmpty() ) {
+        qDebug()<<"send push token "+pToken;
         QSharedPointer<DDPRequest> sendToken = QSharedPointer<DDPRequest>( new RocketChatUpdatePushTokenRequest( pToken, mUserId ) );
         mDdpApi->sendRequest( sendToken );
+     
     }
 }
 
+
+void RocketChatServerData::requestAllChannels()
+{
+    QVariantList channelsMap;
+    for ( auto channel : mChannels->getElements() ) {
+        if(!channel.isNull()){
+            QVariantMap obj;
+            obj["name"] = channel->getName();
+            obj["id"] = channel->getRoomId();
+            channelsMap.append( obj );
+        }
+    }
+    emit allChannelsReady(channelsMap);
+}
+
+void RocketChatServerData::requestUsersOfChannel(QString pChannelId)
+{
+    auto users = getUserOfChannel(pChannelId);
+    QJsonArray array;
+
+    for ( auto current : users ){
+        if(!current.isNull()){
+            array.append(current->getUserName());
+        }
+    }
+    //TODO: use QVariant...
+    QJsonDocument doc( array );
+    emit usersReady(doc.toJson(), pChannelId);
+}
+
 void RocketChatServerData::sendUnsentMessages()
 {
-    static QMutex mutex;
-    QMutexLocker locker(&mutex);
     qDebug() << "send unsend ddp messages";
 
-    if ( mConnectionState == ConnectionState::ONLINE ) {
+    if ( mConnectionState == ConnectionState::ONLINE
+        ) {
         mUnsentMutex.lock();
         for ( auto request : mUnsendDdpRequests ) {
-            sendDdprequest( request );
+            if(!request.isNull()){
+                sendDdprequest( request );
+            }
         }
 
         mUnsendDdpRequests.clear();
         qDebug() << "send unsend rest messages";
 
         for ( auto request : mUnsendRestRequests ) {
-            sendApiRequest( request );
+            if(!request.isNull()){
+                sendApiRequest( request );
+            }
         }
 
         mUnsendRestRequests.clear();
@@ -509,10 +662,12 @@ void RocketChatServerData::sendApiRequest( RestApiRequest pRequest, bool pRetry
 
     if ( pRetry ) {
         RestRequestCallback errorWrapperFunction = [ = ]( QNetworkReply * pReply, QJsonObject pData, RestApi * pRestApi ) {
-            mUnsendRestRequests.append( pRequest );
+            if(pReply && pRestApi){
+                mUnsendRestRequests.append( pRequest );
 
-            if ( originalCallback ) {
-                originalCallback( pReply, pData, pRestApi );
+                if ( originalCallback ) {
+                    originalCallback( pReply, pData, pRestApi );
+                }
             }
         };
         pRequest->setError( errorWrapperFunction );
@@ -523,14 +678,16 @@ void RocketChatServerData::sendApiRequest( RestApiRequest pRequest, bool pRetry
 
 void RocketChatServerData::sendDdprequest( QSharedPointer<DDPRequest> pRequest, bool pRetry )
 {
-    int diff = diffToLastDDPPing();
-    qDebug( "%d diff to last ping %d", static_cast<int>( mConnectionState ), diff );
+    if(!pRequest.isNull()){
+        int diff = diffToLastDDPPing();
+        qDebug( "%d diff to last ping %d", static_cast<int>( mConnectionState ), diff );
 
-    if ( Q_LIKELY( mConnectionState == ConnectionState::ONLINE && diff <= 29 ) ) {
-        mDdpApi->sendRequest( pRequest );
-    } else if ( pRetry ) {
-        qDebug() << "message queued";
-        mUnsendDdpRequests.append( pRequest );
+        if ( Q_LIKELY( mConnectionState == ConnectionState::ONLINE && diff <= 29 ) ) {
+            mDdpApi->sendRequest( pRequest );
+        } else if ( pRetry ) {
+            qDebug() << "message queued";
+            mUnsendDdpRequests.append( pRequest );
+        }
     }
 }
 
@@ -622,12 +779,15 @@ void RocketChatServerData::handleStreamRoomMessage( QJsonObject pMessage )
 
                 if ( Q_LIKELY( currentArgObj.contains( "rid" ) && currentArgObj.contains( "_id" ) ) ) {
                     QString roomId = currentArgObj["rid"].toString();
-                    auto message = mMessageService->parseMessage( currentArgObj );
+                    auto message = mMessageService->parseMessage( currentArgObj, true );
 
                     if ( Q_LIKELY( mChannels->contains( roomId ) ) ) {
+                        bool newMessage = mChannels->get( roomId )->addMessage( message );
                         mMessageService->persistMessage( message );
-                        auto channel = mChannels->get(roomId);
-                        channel->addMessage(message);
+
+                        if ( newMessage ) {
+                            newMessageListForGui( roomId, {message} );
+                        }
                     }
                 }
             }
@@ -650,12 +810,14 @@ void RocketChatServerData::handleUserJoinMessage( QJsonObject pMessage )
 
                 if ( Q_LIKELY( mChannels->contains( roomId ) ) ) {
                     QSharedPointer<RocketChatChannel> channel = mChannels->get( roomId );
-                    QSharedPointer<RocketChatUser> ptr( new RocketChatUser( username ) );
-                    ptr->setUserId( userId );
+                    if(!channel.isNull()){
+                        QSharedPointer<RocketChatUser> ptr( new RocketChatUser( username ) );
+                        ptr->setUserId( userId );
 
-                    if ( Q_LIKELY( channel->addUser( ptr ) ) ) {
-                        emit userJoined( roomId, username );
-                    };
+                        if ( Q_LIKELY( channel->addUser( ptr ) ) ) {
+                            emit userJoined( roomId, username );
+                        }
+                    }
                 }
             }
         }
@@ -758,7 +920,12 @@ void RocketChatServerData::joinJitsiCall( QString pRoomId, QString messageId )
 
     if ( Q_LIKELY( mChannels->contains( pRoomId ) ) ) {
         QString hash = QCryptographicHash::hash( ( config.uniqueId + pRoomId ).toUtf8(), QCryptographicHash::Md5 ).toHex();
-        QString url = "https://" + config.jitsiMeetUrl + "/" + config.jitsiMeetPrefix + hash;
+#if defined(Q_OS_IOS) || defined(Q_OS_ANDROID)
+        QString scheme = "org.jitsi.meet://";
+#else
+        QString scheme = "https://";
+#endif
+        QString url = scheme + config.jitsiMeetUrl + "/" + config.jitsiMeetPrefix + hash;
         qDebug() << url;
         emit openUrl( url );
     }
@@ -791,11 +958,13 @@ RocketChatServerData::~RocketChatServerData()
 
     qDebug()<<"serverThread "<<QThread::currentThreadId();
 
-    delete( mMessageService );
-    delete( channelService );
-    delete( mDdpApi );
-    delete( mRestApi );
-
+    mDdpApi->deleteLater();
+    mRestApi->deleteLater();
+    mMessageService->deleteLater();
+    channelService->deleteLater();
+    mEmojiRepo->deleteLater();
+    delete mFileService;
+    delete mEmojiService;
 }
 
 QString RocketChatServerData::getCurrentChannel() const
@@ -805,7 +974,14 @@ QString RocketChatServerData::getCurrentChannel() const
 
 void RocketChatServerData::setCurrentChannel( const QString &pCurrentChannel )
 {
-    mCurrentChannel = pCurrentChannel;
+    if(mChannels->contains(pCurrentChannel) && !mChannels->get(pCurrentChannel).isNull() ){
+        mCurrentChannel = pCurrentChannel;
+        auto channel = mChannels->get(pCurrentChannel);
+        mStorage->setCurrentChannel(pCurrentChannel,channel->getName());
+    }else if(pCurrentChannel == ""){
+        mCurrentChannel = pCurrentChannel;
+        mStorage->setCurrentChannel("","");
+    }
 }
 
 QString RocketChatServerData::getUsername() const
@@ -851,7 +1027,28 @@ void RocketChatServerData::getServerSettings()
     sendDdprequest( request );
 }
 
+void RocketChatServerData::newMessageListForGui( QString pChannelId, QList< QSharedPointer<RocketChatMessage>> pMessages )
+{
+    if ( mCurrentChannel == pChannelId ) {
+        QVariantList list;
+
+        for ( auto currentMessage : pMessages ) {
+            if(!currentMessage.isNull()){
+                if ( customEmojisDirtyFlag ) {
+                    if(currentMessage->getEmojiHash() != mCustomEmojisHash){
+                        currentMessage->emojify( mEmojiRepo );
+                    }
+                }
 
+                list.append( currentMessage->toQVariantMap() );
+            }
+        }
+
+        if ( list.size() ) {
+            emit messageListReceived( this->mServerId, pChannelId, list );
+        }
+    }
+}
 
 void RocketChatServerData::onChannelsLoaded( QVector<QSharedPointer<RocketChatChannel>> pChannels )
 {
@@ -876,7 +1073,7 @@ void RocketChatServerData::onFileDownloaded( QString pUrl, QString pTempfile )
 
 void RocketChatServerData::onLoggedIn()
 {
-    getCustomEmojis();
+    mLoggedIn = true;
     channelService->loadJoinedChannelsFromServer();
     emit loggedIn( mServerId );
 }
@@ -892,10 +1089,17 @@ void RocketChatServerData::markChannelAsRead( QString pChannelId )
 void RocketChatServerData::joinChannel( QString pChannelId )
 {
     if ( Q_LIKELY( mChannels->contains( pChannelId ) ) ) {
-        mCurrentChannel = pChannelId;
-        auto channel = mChannels->get( pChannelId );
-        channelService->subscribeChannel( channel );
-        messageModel.setCurrent(pChannelId);
+      //  if(mCurrentChannel != pChannelId){
+            mCurrentChannel = pChannelId;
+            auto channel = mChannels->get( pChannelId );
+            channelService->subscribeChannel( channel );
+            auto messages = channel->getMessages().values();
+            setUnreadMessages(pChannelId,0);
+            markChannelAsRead(pChannelId);
+            setCurrentChannel(pChannelId);
+            newMessageListForGui( pChannelId, messages );
+            //loadMissedMessages(pChannelId);
+       // }
     } else {
         qCritical() << "Subscribing channel that is not existent.";
     }
@@ -947,11 +1151,16 @@ void RocketChatServerData::loadRecentHistory( QString pChannelId )
         request->setEnd( end );
         std::function<void ( QMultiMap<QString, QSharedPointer<RocketChatMessage> > *messages )> success =
         [ = ]( QMultiMap<QString, QSharedPointer<RocketChatMessage> > *messages ) {
-            auto messageList = messages->values( pChannelId );
-            qDebug() << "load recent history successfull loaded " << messageList.size();
-            QList<QSharedPointer<RocketChatMessage>> newmessages = mChannels->get( pChannelId )->addMessages( messageList );
-            mMessageService->persistMessages( messageList );
-            delete messages;
+            if(messages){
+                auto messageList = messages->values( pChannelId );
+                qDebug() << "load recent history successfull loaded " << messageList.size();
+                QList<QSharedPointer<RocketChatMessage>> newmessages = mChannels->get( pChannelId )->addMessages( messageList );
+                mMessageService->persistMessages( messageList );
+                newMessageListForGui( pChannelId, newmessages );
+                if(messages != nullptr){
+                    delete messages;
+                }
+            }
         };
         request->setSuccess( success );
         mMessageService->loadHistory( request );
@@ -972,31 +1181,56 @@ void RocketChatServerData::getCustomEmojis()
         mStorage->transaction();
 
         for ( auto emoji : pEmojiList ) {
-            mEmojiService->persistEmoji( emoji );
+            if(!emoji.isNull()){
+                mEmojiService->persistEmoji( emoji );
 
-            if ( !mEmojisMap.contains( emoji->getIdentifier() ) ) {
                 customEmojisDirtyFlag = true;
-            }
 
-            mEmojisMap[emoji->getIdentifier()] = emoji->getHtml();
-            variantList.append( emoji->toQVariantMap() );
-            if(emoji->getCategory() == "custom"){
-                mCustomEmojis.append(emoji->getIdentifier());
-                mCustomEmojisHash = Utils::hash(mCustomEmojis);
+                if( !mEmojiRepo->contains( emoji->getIdentifier() ) ){
+
+                    mEmojiRepo->add( emoji->getIdentifier(), emoji);
+                    variantList.append( emoji->toQVariantMap() );
+                    if(emoji->getCategory() == "custom"){
+                       // mCustomEmojisHash = Utils::hash(mCustomEmojis);
+                    }
+                }
             }
         }
-
         mStorage->commit();
-        emit customEmojisReceived( variantList );
+        emit customEmojisReceived( getEmojisByCategory() );
+
+
+
+        QSharedPointer<RocketChatSubscribeUserNotify> notifySubSubscription( new RocketChatSubscribeUserNotify( this->mUserId ) );
+        QSharedPointer<RocketChatNotifyNoticesRequest> notifyNoticeSubSubscription( new RocketChatNotifyNoticesRequest( this->mUserId ) );
+        QSharedPointer<RocketChatSubScriptionChangedRequest> noitfySubscriptionsSubscription( new RocketChatSubScriptionChangedRequest( this->mUserId ) );
+        QSharedPointer<RocketChatSubscribeActiveUsers> activeUsersSubscription( new RocketChatSubscribeActiveUsers() );
+        mDdpApi->sendRequest( notifySubSubscription );
+        mDdpApi->sendRequest( notifyNoticeSubSubscription );
+        mDdpApi->sendRequest( noitfySubscriptionsSubscription );
+        mDdpApi->sendRequest( activeUsersSubscription );
+
+        onLoggedIn();
+        sendUnsentMessages();
+        getServerSettings();
+        emit registerForPush();
+
+        qDebug() << "ddp authenticated";
+        this->initialised = 1;
     };
     mEmojiService->loadCustomEmojis( success );
 }
 
 void RocketChatServerData::openPrivateChannelWith( QString pUsername )
 {
-    channelService->openPrivateChannelWith( pUsername );
+    if(mChannels->getChannelByName(pUsername) ){
+        switchChannelByRid(pUsername);
+    }else{
+        channelService->openPrivateChannelWith( pUsername );
+    }
 }
 
+//TODO: clear up memory when finished with unsetbinding
 void RocketChatServerData::uploadFile( QString pChannelId, QString pFilePath )
 {
     qDebug() << "uploading file: " << pFilePath;
@@ -1074,16 +1308,16 @@ void RocketChatServerData::getUserSuggestions( QString pTerm, QString pExeptions
     QSharedPointer<DDPSubscriptionRequest> subSuggestions( new DDPSubscriptionRequest( "userAutocomplete", params ) );
     std::function<void ( QJsonObject, MeteorDDP * )> success = [ = ]( QJsonObject pResponse, MeteorDDP * pDdp ) {
 
-        QString test = pResponse["msg"].toString();
-
-        if ( pResponse.contains( "msg" ) ) {
-            if ( pResponse["msg"] == "ready" ) {
-                emit suggestionsReady( mAutocompleteRecords );
-                mAutocompleteRecords.clear();
-                QSharedPointer<DDPUnsubscriptionRequest> unSubSuggestions( new DDPUnsubscriptionRequest( subSuggestions->getFrame() ) );
-                mDdpApi->sendRequest( unSubSuggestions );
-                pDdp->unsetResponseBinding( subSuggestions->getFrame() );
+        if(pDdp){
+            if ( pResponse.contains( "msg" ) ) {
+                if ( pResponse["msg"] == "ready" ) {
+                    emit suggestionsReady( mAutocompleteRecords );
+                    mAutocompleteRecords.clear();
+                    QSharedPointer<DDPUnsubscriptionRequest> unSubSuggestions( new DDPUnsubscriptionRequest( subSuggestions->getFrame() ) );
+                    mDdpApi->sendRequest( unSubSuggestions );
+                    pDdp->unsetResponseBinding( subSuggestions->getFrame() );
 
+                }
             }
         }
     };
@@ -1106,7 +1340,7 @@ QList<QSharedPointer<RocketChatUser> > RocketChatServerData::getUserOfChannel( Q
     QList<QSharedPointer<RocketChatUser>> users;
     users.reserve(100);
 
-    if ( mChannels->contains( pChannelId ) ) {
+    if ( mChannels->contains( pChannelId ) && !mChannels->get(pChannelId).isNull() ) {
         QSharedPointer<RocketChatChannel> channel = mChannels->get( pChannelId );
         users =  channel->getUsers().values();
     }
@@ -1127,12 +1361,8 @@ void RocketChatServerData::resume( void )
 
 void RocketChatServerData::logout()
 {
-
-    RestApiRequest logoutRequest = QSharedPointer<RestRequest>( new RestLogoutRequest );
-
-    qDebug()<<"thread id "<<QThread::currentThreadId();
-
     qDebug() << "logged out";
+    RestApiRequest logoutRequest = QSharedPointer<RestRequest>( new RestLogoutRequest );
     mResumeOperation = false;
     mDdpApi->resume();
    // mRestApi->logout();
@@ -1142,9 +1372,10 @@ void RocketChatServerData::logout()
     mStorage->wipeDb();
     this->mUsername = "";
     mDdpApi->setToken( "" );
-    mRestApi->deleteLater();
-    setRestApi( new RestApi( "https://" + mBaseUrl, mApiUri ) );
-    mRestApi->moveToThread(QThread::currentThread());
+//    mRestApi->deleteLater();
+//    setRestApi( new RestApi( "https://" + mBaseUrl, mApiUri ) );
+//    mRestApi->moveToThread(QThread::currentThread());
+    mLoggedIn = false;
     emit loggedOut( this->mServerId );
 }
 
@@ -1196,7 +1427,9 @@ void RocketChatServerData::loadMissedMessages( QString pChannelId )
 {
     if ( Q_LIKELY( mChannels->contains( pChannelId ) ) ) {
         auto channel = mChannels->get( pChannelId );
-        channelService->loadMissedMessages( channel );
+        if(!channel.isNull()){
+            channelService->loadMissedMessages( channel );
+        }
     } else {
         qWarning() << "channel not in channels repo: " << pChannelId;
     }
@@ -1205,15 +1438,19 @@ void RocketChatServerData::loadMissedMessages( QString pChannelId )
 void RocketChatServerData::loadMissedMessages()
 {
     for ( auto currentChannel : mChannels->getElements() ) {
-        channelService->loadMissedMessages( currentChannel );
+        if(!currentChannel.isNull()){
+            channelService->loadMissedMessages( currentChannel );
+        }
     }
 }
 
 void RocketChatServerData::loadChannels()
 {
     for ( auto currentChannel : mChannels->getElements() ) {
-        QJsonDocument doc( currentChannel->toJsonObject() );
-        emit channelFound( "default", doc.toJson() );
+        if(!currentChannel.isNull()){
+            QJsonDocument doc( currentChannel->toJsonObject() );
+            emit channelFound( "default", doc.toJson() );
+        }
     }
 }
 
@@ -1222,43 +1459,50 @@ void RocketChatServerData::postProcessChannelData( QVector<QSharedPointer<Rocket
     mStorage->transaction();
 
     for ( QSharedPointer<RocketChatChannel> currentChannel : pVec ) {
-        QString id  = currentChannel->getRoomId();
-        channelService->persistChannel( currentChannel );
-        QList<QSharedPointer<RocketChatUser>> users = currentChannel->getUsers().values();
+        if(!currentChannel.isNull()){
+            QString id  = currentChannel->getRoomId();
+            channelService->persistChannel( currentChannel );
+            QList<QSharedPointer<RocketChatUser>> users = currentChannel->getUsers().values();
+
+            if ( currentChannel->getType() == "d" &&  users.length() > 1 ) {
+
+                if(!users[0].isNull() && !users[1].isNull()){
+                    if ( users[0]->getUserName() == mUsername ) {
+                        currentChannel->setName( users[1]->getUserName() );
+                    } else {
+                        currentChannel->setName( users[0]->getUserName() );
+                    }
+                }
+            }
+
 
-        if ( currentChannel->getType() == "d" &&  users.length() > 1 ) {
+            QJsonDocument doc( currentChannel->toJsonObject() );
 
+            emit channelFound( mServerId, doc.toJson() );
 
-            if ( users[0]->getUserName() == mUsername ) {
-                currentChannel->setName( users[1]->getUserName() );
+            /* if ( channels->add( id, currentChannel ) ) {
+
+                 QJsonDocument doc( currentChannel->toJsonObject() );
+                 emit channelFound( mServerId, doc.toJson() );
+             } else {*/
+            if ( mChannels->contains( id ) ) {
+                auto channel = mChannels->get( id );
+                if(!channel.isNull()){
+                    channel->setArchived( currentChannel->getArchived() );
+                    channel->setMuted( currentChannel->getMuted() );
+                    channel->setReadOnly( currentChannel->getReadOnly() );
+                    channel->setUsers( users );
+                    channel->setUnreadMessages( currentChannel->getUnreadMessages() );
+                    emit channelMetadataUpdated( channel->getRoomId() );
+                }
             } else {
-                currentChannel->setName( users[0]->getUserName() );
+                qWarning() << "channel not in channels repo: " << id;
             }
         }
-
-        QJsonDocument doc( currentChannel->toJsonObject() );
-
-        emit channelFound( mServerId, doc.toJson() );
-
-        /* if ( channels->add( id, currentChannel ) ) {
-
-             QJsonDocument doc( currentChannel->toJsonObject() );
-             emit channelFound( mServerId, doc.toJson() );
-         } else {*/
-        if ( mChannels->contains( id ) ) {
-            auto channel = mChannels->get( id );
-            channel->setArchived( currentChannel->getArchived() );
-            channel->setMuted( currentChannel->getMuted() );
-            channel->setReadOnly( currentChannel->getReadOnly() );
-            channel->setUsers( users );
-            channel->setUnreadMessages( currentChannel->getUnreadMessages() );
-            emit channelMetadataUpdated( channel->getRoomId() );
-        } else {
-            qWarning() << "channel not in channels repo: " << id;
         }
 
         //}
-    }
+
 
     mStorage->commit();
 }
diff --git a/rocketchatserver.h b/rocketchatserver.h
index d6fa14fd39afa0c242773eb0c5d791ac20e95d68..0c89926ff02f602685b193fe8c81ac1efbbe9dcb 100755
--- a/rocketchatserver.h
+++ b/rocketchatserver.h
@@ -33,6 +33,7 @@
 #include "ddpRequests/rocketchatupdatepushtokenrequest.h"
 #include "ddpRequests/ddplogoutrequest.h"
 #include "ddpRequests/rocketchatsubscribeactiveusers.h"
+#include "ddpRequests/rocketchatchangeuserpresancedefaultstatus.h"
 #include "restRequests/restrequest.h"
 #include "restRequests/restlogoutrequest.h"
 #include "fileuploader.h"
@@ -48,7 +49,6 @@
 #include "restRequests/getrequest.h"
 #include "segfaulthandler.h"
 #include "CustomModels/usermodel.h"
-#include "CustomModels/messagemodel.h"
 #include "restRequests/restmerequest.h"
 
 class RocketChatChannelService;
@@ -60,7 +60,8 @@ class MessageService;
 class EmojiService;
 class DdpLogoutRequest;
 class FileService;
-class MessageModel;
+class EmojiRepo;
+class ChannelModel;
 
 enum class ConnectionState {
     OFFLINE,
@@ -73,9 +74,12 @@ class RocketChatServerData : public QObject
 
         Q_OBJECT
     public:
-        RocketChatServerData( QString pServerId, QString pBaseUrl,
-                              QString pApiUri, UserModel &userModel, MessageModel &messageModel );
-
+        RocketChatServerData(QString pId,  QString pBaseUrl,
+                             QString pApiUri,
+                             UserModel &pUserModel,
+                             ChannelModel &channelModel,
+                             ChannelModel &groupsModel,
+                             ChannelModel &directModel);
 
         void setServerId( const QString &pValue );
 
@@ -125,24 +129,32 @@ public slots:
 
         void sendPushToken( QString pToken );
 
-public:
-        QString getServerId() const;
-        bool isConnected() const;
-        bool isWebsocketValid( void ) const;
+        void requestAllChannels();
 
-        void getCustomEmojis();
+        void requestUsersOfChannel(QString pChannelId);
 
+        void switchChannel( QString pServer, QString pRid, QString pName, QString pType );
 
+        void switchChannelByRid( QString pRid );
 
-        QList<QSharedPointer<RocketChatUser>> getUserOfChannel( QString pChannelId );
+        void requestGetChannelDetails(QString pChannelId);
 
-        RestApi *getRestApi() const;
+        void requestIsLoggedIn();
+
+        void setUserPresenceStatus( int pStatus);
 
+        void onStateChanged(Qt::ApplicationState pState);
 
+public:
+        QString getServerId() const;
+        bool isConnected() const;
+        bool isWebsocketValid( void ) const;
+        void getCustomEmojis();
+        QList<QSharedPointer<RocketChatUser>> getUserOfChannel( QString pChannelId );
+        RestApi *getRestApi() const;
         ChannelRepository *getChannels() const;
         void loadMissedMessages( QString pChannelId );
         void loadMissedMessages( void );
-
         RocketChatChannelService *channelService;
         void handleChannelMessage( QJsonObject pMessage );
         uint diffToLastDDPPing();
@@ -155,24 +167,22 @@ public:
         QJsonObject formatMessageTime( QJsonObject pJsonObject );
         bool initialised = 0;
         ConnectionState getConnectionState() const;
-
         ~RocketChatServerData();
 
-        QHash<QString, QString> mEmojisMap;
-
         QString getCurrentChannel() const;
 
         QString getUsername() const;
         void setUsername(const QString &pUsername);
 
-        void switchChannel( QString pServer, QString pRid, QString pName, QString pType );
-
         QString getUserId() const;
         void setUserId(const QString &userId);
 
         qint16 getCustomEmojisHash() const;
         void setCustomEmojisHash(const qint16 &customEmojisHash);
 
+        EmojiRepo *getEmojiRepo() const;
+        void setEmojiRepo(EmojiRepo *emojiRepo);
+
 protected:
         RocketChatServerData();
         ConnectionState mConnectionState = ConnectionState::OFFLINE;
@@ -187,9 +197,11 @@ protected:
         QString mResumeToken;
         uint mTokenExpire = 0;
         ChannelRepository *mChannels;
+        EmojiRepo *mEmojiRepo;
         QVariantMap mAutocompleteRecords;
         RocketChatServerConfig config;
         bool mConnected = false;
+        bool mLoggedIn = false;
         bool mResumeOperation = false;
         Notifications mNotificationsObject;
         MessageService *mMessageService;
@@ -207,7 +219,10 @@ protected:
         QString mCurrentChannel;
         UserModel &userModel;
         QMutex mUnsentMutex;
-        MessageModel &messageModel;
+        ChannelModel &channelsModel;
+        ChannelModel &directModel;
+        ChannelModel &groupsModel;
+
 
         void postProcessChannelData( QVector<QSharedPointer<RocketChatChannel>> pVec );
         void onDDPConnected();
@@ -224,6 +239,8 @@ protected:
         void handleRoomInformation( QJsonObject pInfo );
         void onLoginError();
         void onResume();
+        void newMessageForGui( QString pChannelId, QSharedPointer<RocketChatMessage> pMessage );
+        void newMessageListForGui( QString pChannelId, QList< QSharedPointer<RocketChatMessage>> pMessages);
         void setRestApi( RestApi * );
         bool customEmojisDirtyFlag = false;
 
@@ -232,7 +249,7 @@ protected:
         void checkForMissedMessages(void);
         void onUsersLoaded( QString pChannelId, QVector<QSharedPointer<RocketChatUser>> pUserList );
 
-
+        void onUnreadCountChanged();
 
         QStringList mCustomEmojis;
         qint16 mCustomEmojisHash= 0;
@@ -264,6 +281,12 @@ protected:
         void readyToCheckForPendingNotification();
         void channelOrderChanged(QString pChannelId);
         void registerForPush();
+        void emojisReady();
+        void sortOrderReady(QVariantMap sortOrder, QString channelType);
+        void allChannelsReady(QVariantList channels);
+        void usersReady(QString users ,QString channel);
+        void channelDetailsReady(QString details, QString channelId);
+        void unreadCountChanged(QString pServerId, uint pUnread);
 
 };
 
diff --git a/services/emojiservice.cpp b/services/emojiservice.cpp
old mode 100644
new mode 100755
index af0c84e2a372f36354b53fa16f42849438274149..b48a01bf10ebe0856778654ab23c96b3019c1d2a
--- a/services/emojiservice.cpp
+++ b/services/emojiservice.cpp
@@ -3,13 +3,14 @@
 #include <QJsonArray>
 #include <QJsonObject>
 #include "rocketchatserver.h"
+#include "utils.h"
 
 
 
 EmojiService::EmojiService( RocketChatServerData *server,  FileService *pFileService ,PersistanceLayer *storage )
     : server( server ), storage( storage ),mFileService(pFileService)
 {
-
+    mParsedCustomEmojisTemp.reserve(50);
 }
 /**
  * Loads the custom emojis from the server
@@ -57,31 +58,35 @@ void EmojiService::persistEmoji(QSharedPointer<Emoji> pEmoji)
 
 void EmojiService::handleCustomEmojisReceived( EmojiData *data )
 {
-    QJsonArray jsonArray = data->getEmojiData();
-
-    QList<QSharedPointer<Emoji>> parsedEmojis;
-    parsedEmojis.reserve(50);
+    if(data){
+        QJsonArray jsonArray = data->getEmojiData();
 
-    for(auto currentEmoji : jsonArray){
-        auto parsedEmoji = parseEmoji(currentEmoji.toObject());
-        parsedEmojis.append(parsedEmoji);
-        qDebug() << "emoji parsed: "<<parsedEmoji->getIdentifier();
-        QString url ="/emoji-custom/" + parsedEmoji->getName() + "." + parsedEmoji->getExtension();
-        std::function<void ( QSharedPointer<TempFile> )> then = [=](QSharedPointer<TempFile> file){
-            if(Q_UNLIKELY(file.isNull())){
-                qWarning() << "file is null"<< parsedEmoji->getIdentifier();
-                return;
+        for(auto currentEmoji : jsonArray){
+            if(!currentEmoji.isNull()){
+                auto parsedEmoji = parseEmoji(currentEmoji.toObject());
+                if(!parsedEmoji.isNull()){
+                    mParsedCustomEmojisTemp.append(parsedEmoji);
+                    qDebug() << "emoji parsed: "<<parsedEmoji->getIdentifier();
+                    QString url ="/emoji-custom/" + parsedEmoji->getName() + "." + parsedEmoji->getExtension();
+                    std::function<void ( QSharedPointer<TempFile>, bool )> then = [=](QSharedPointer<TempFile> file, bool){
+                        if(Q_UNLIKELY(file.isNull())){
+                            qWarning() << "file is null"<< parsedEmoji->getIdentifier();
+                            return;
+                        }
+                        QString path = Utils::getPathPrefix()+file->getFilePath();
+                        parsedEmoji->setCategory("custom");
+                        parsedEmoji->setFilePath(path);
+                        parsedEmoji->setHtml("<img height='20' width='20' src='"+path+"' />");
+                        data->emojisProcessed++;
+                        if(data->emojisProcessed == data->emojiCounter){
+                            data->success(mParsedCustomEmojisTemp);
+                        }
+                    };
+                    QSharedPointer<FileRequest> fileRequest(new FileRequest(url,"emoji",then, true));
+                    mFileService->getFileRessource(fileRequest);
+                }
             }
-            QString path = "file://"+file->getFilePath();
-            parsedEmoji->setFilePath(path);
-            parsedEmoji->setHtml("<img height='20' width='20' src='"+path+"' />");
-            data->emojisProcessed++;
-            if(data->emojisProcessed == data->emojiCounter){
-                data->success(parsedEmojis);
-            }
-        };
-        QSharedPointer<FileRequest> fileRequest(new FileRequest(url,"emoji",then));
-        mFileService->getFileRessource(fileRequest);
+        }
     }
 
 }
@@ -104,7 +109,10 @@ QSharedPointer<Emoji> EmojiService::parseEmoji( QHash<QString, QString> pEmojiDa
     QString html = pEmojiData["html"];
     QString catgeory = pEmojiData["category"];
     QString filePath = pEmojiData["file"];
-    QSharedPointer<Emoji> emoji( new Emoji( name, catgeory,filePath, html ) );
+    QString unicode = pEmojiData["unicode"];
+    int order = pEmojiData["sort_order"].toInt();
+
+    QSharedPointer<Emoji> emoji( new Emoji( name, catgeory,filePath, html, unicode, order ) );
     return emoji;
 }
 
diff --git a/services/emojiservice.h b/services/emojiservice.h
index d864d17de7b1762bf50f2a8cd2cab4fcc59204ae..c0227955a46f2c7e8800f2e4695bdfd06161515a 100644
--- a/services/emojiservice.h
+++ b/services/emojiservice.h
@@ -7,7 +7,7 @@
 #include <QJsonObject>
 #include <QSharedPointer>
 #include "rocketchatserver.h"
-#include "repos/entities/emojis.h"
+#include "repos/entities/emoji.h"
 #include "services/fileservice.h"
 
 class RocketChatServerData;
@@ -38,6 +38,8 @@ class EmojiService
         QSharedPointer<Emoji> parseEmoji( QJsonObject pEmojiData );
         PersistanceLayer *storage;
         FileService *mFileService;
+        QList<QSharedPointer<Emoji>> mParsedCustomEmojisTemp;
+
     signals:
         void emojisReceived( QList<QSharedPointer<Emoji>> pEmojiList );
 };
diff --git a/services/fileservice.cpp b/services/fileservice.cpp
old mode 100644
new mode 100755
index 41e954a5d7ef582a3333bd7a35c945012d19ae0c..393f955ec4d2e3dec541a57eb1945ca4145d083f
--- a/services/fileservice.cpp
+++ b/services/fileservice.cpp
@@ -2,12 +2,27 @@
 
 FileService::FileService( RocketChatServerData *server )
 {
-    mStorage = PersistanceLayer::instance();
-    mTempPath = QStandardPaths::writableLocation( QStandardPaths::TempLocation );
-    mImagepath = QStandardPaths::writableLocation( QStandardPaths::PicturesLocation );
-    mVideoPath = QStandardPaths::writableLocation( QStandardPaths::MoviesLocation );
-    mMusicPath = QStandardPaths::writableLocation( QStandardPaths::MusicLocation );
-    mServer = server;
+    if(server != nullptr){
+        mStorage = PersistanceLayer::instance();
+        mTempPath = QStandardPaths::writableLocation(QStandardPaths::TempLocation);
+        mDocumentPath = QStandardPaths::writableLocation( QStandardPaths::DocumentsLocation );
+        if (!mDocumentPath.size()) {
+            mDocumentPath = mTempPath;
+        }
+        mImagepath = QStandardPaths::writableLocation( QStandardPaths::PicturesLocation );
+        if (!mImagepath.size()) {
+            mImagepath = mDocumentPath;
+        }
+        mVideoPath = QStandardPaths::writableLocation( QStandardPaths::MoviesLocation );
+        if (!mVideoPath.size()) {
+            mVideoPath = mDocumentPath;
+        }
+        mMusicPath = QStandardPaths::writableLocation( QStandardPaths::MusicLocation );
+        if (!mMusicPath.size()) {
+            mMusicPath = mDocumentPath;
+        }
+        mServer = server;
+    }
 }
 
 
@@ -21,17 +36,17 @@ FileService::FileService( RocketChatServerData *server )
  * @param pThen function that is execeuted when thre is some result
  * @return bool true if the file is already downloaded, then is not executed in this case
  */
-bool FileService::getFileRessource( QSharedPointer< FileRequest > pRequest )
+bool FileService::getFileRessource( QSharedPointer< FileRequest > pRequest)
 {
 
-    if ( pRequest->url.size() > 0 ) {
+    if ( !pRequest.isNull() && pRequest->url.size() > 0 ) {
         if ( mCurrentDownloads.contains( pRequest->url ) ) {
             return true;
         }  else {
             auto tempFile = getFileFromCache( pRequest );
 
             if ( !tempFile.isNull() ) {
-                pRequest->then( tempFile );
+                pRequest->then( tempFile, pRequest->showInline );
             } else {
                 getFileFromServer( pRequest );
             }
@@ -43,112 +58,134 @@ bool FileService::getFileRessource( QSharedPointer< FileRequest > pRequest )
 
 QSharedPointer<TempFile> FileService::getFileFromCache( QSharedPointer< FileRequest > pRequest )
 {
-    QString baseUrl = mServer->getRestApi()->getBaseUrl();
-    QString fullUrl = baseUrl + pRequest->url ;
-    qDebug() << "file from cache requested" << fullUrl;
-    QString storageEntry = mStorage->getFileCacheEntry( fullUrl );
-
-
-    if ( !storageEntry.length() ) {
-        return QSharedPointer<TempFile> ( NULL );
-    } else {
+    if(!pRequest.isNull()){
+        QString baseUrl = mServer->getRestApi()->getBaseUrl();
+        QString fullUrl = baseUrl + pRequest->url ;
+        qDebug() << "file from cache requested" << fullUrl;
+        QString storageEntry = mStorage->getFileCacheEntry( fullUrl );
         qDebug() << "cachehit:" << fullUrl << ":" << storageEntry;
-        QFile cacheHit( storageEntry );
-
-        if ( cacheHit.exists() ) {
-            return QSharedPointer<TempFile> ( new TempFile( storageEntry, pRequest->url ) );
+        qDebug() << "storageEntry len " << storageEntry.size();
+        if ( !storageEntry.size() ) {
+            return QSharedPointer<TempFile> ( nullptr );
         } else {
-            mStorage->removeFileCacheEntry( pRequest->url, storageEntry );
-            return QSharedPointer<TempFile> ( NULL );
+            QFile cacheHit( storageEntry );
+
+            if ( cacheHit.exists() ) {
+                return QSharedPointer<TempFile> ( new TempFile( storageEntry, pRequest->url ) );
+            } else {
+                mStorage->removeFileCacheEntry( pRequest->url, storageEntry );
+                return QSharedPointer<TempFile> ( nullptr );
+            }
         }
+    }else{
+        return QSharedPointer<TempFile> ( nullptr );
     }
 }
 
 void FileService::getFileFromServer( QSharedPointer< FileRequest > pRequest )
 {
-    QMutexLocker( &this->mDownloadMutex );
-    QString baseUrl = mServer->getRestApi()->getBaseUrl();
-    QString fullUrl = baseUrl + pRequest->url ;
-
-    if ( !mCurrentDownloads.contains( fullUrl ) ) {
-        RestRequestCallback success = [ = ]( QNetworkReply * pReply, QJsonObject pData, RestApi * api ) {
-            Q_UNUSED( pData );
-            Q_UNUSED( api );
-//            QtConcurrent::run( [ = ] {
-//                volatile SegfaultHandler segfaultHandler( "RocketChat::getFileFromServer" );
-
-                QByteArray content = pReply->readAll();
-                QMimeType mimetype = mMimeDb.mimeTypeForData( content );
-                QString location = determineLocation( pReply->url(), mimetype );
-                QUrl locationUrl( location );
-                QString dirPath = locationUrl.adjusted( QUrl::RemoveFilename | QUrl::RemoveScheme ).toString();
-                QDir dir( dirPath );
-
-                if ( !dir.exists() )
-                {
-                    dir.mkpath( dirPath );
-                }
-
-                QFile file( location );
-                QString url = pReply->url().toString();
-
-                if ( file.exists() )
-                {
-                    QString fileHash = getFileHash( &file );
-                    QString dataHash = QCryptographicHash::hash( content, QCryptographicHash::Sha512 );
-
-                    if ( fileHash == dataHash ) {
-                        QSharedPointer<TempFile> tempfile( new TempFile( location, url ) );
-                        pRequest->then( tempfile );
-                        mStorage->addFileCacheEntry( url, location );
-                        mCurrentDownloads.remove( fullUrl );
-                        return;
+    if( Q_LIKELY(!pRequest.isNull()) ){
+        QMutexLocker( &this->mDownloadMutex );
+        QString baseUrl = mServer->getRestApi()->getBaseUrl();
+        QString fullUrl = baseUrl + pRequest->url ;
+
+        if ( !mCurrentDownloads.contains( fullUrl ) ) {
+            RestRequestCallback success = [ = ]( QNetworkReply * pReply, QJsonObject pData, RestApi * api ) {
+                Q_UNUSED( pData );
+                Q_UNUSED( api );
+                if(pReply){
+                    QByteArray content = pReply->readAll();
+                    QMimeType mimetype = mMimeDb.mimeTypeForData( content );
+                    QString location = determineLocation( pReply->url(), mimetype );
+                    QUrl locationUrl( location );
+                    QString dirPath = locationUrl.adjusted( QUrl::RemoveFilename ).toString();
+                    QStringList parts = location.split("/");
+
+                    QDir dir( dirPath );
+
+                    if(!dir.exists()){
+                        QString tempPath = parts.first();
+                        for (int i = 1; i < parts.length()-1; i++) {
+                            tempPath.append("/"+parts[i]);
+                            QDir temp(tempPath);
+                            if (!temp.exists()) {
+                                temp.mkdir(tempPath);
+                            }
+                        }
                     }
-                }
 
-                if ( file.open( QIODevice::ReadWrite ) )
-                {
-                    int written = file.write( content );
-                    qDebug() << "wrote byte to file" << written;
-                    file.close();
-                    QSharedPointer<TempFile> tempfile( new TempFile( location, url ) );
-                    mStorage->addFileCacheEntry( url, location );
-                    pRequest->then( tempfile );
-
-                } else {
-                    qWarning() << "Could not write file" + location;
+                    if (dir.exists()) {
+
+                        QFile file(location);
+                        QString url = pReply->url().toString();
+
+                        if (file.exists())
+                        {
+                            QString fileHash = getFileHash(&file);
+                            QString dataHash = QCryptographicHash::hash(content, QCryptographicHash::Md5);
+
+                            if (fileHash == dataHash) {
+                                QSharedPointer<TempFile> tempfile(new TempFile(location, url));
+                                pRequest->then(tempfile, pRequest->showInline);
+
+                                if (location.size()) {
+                                    mStorage->addFileCacheEntry(url, location);
+                                    mCurrentDownloads.remove(fullUrl);
+                                }
+                                return;
+                            }
+                        }
+
+                        if (file.open(QIODevice::ReadWrite))
+                        {
+                            int written = file.write(content);
+                            qDebug() << "wrote byte to file" << written;
+                            file.close();
+                            QSharedPointer<TempFile> tempfile(new TempFile(location, url));
+                            mStorage->addFileCacheEntry(url, location);
+                            pRequest->then(tempfile, pRequest->showInline);
+
+                        }
+                        else {
+                            qWarning() << "Could not write file" + location;
+                            qWarning() << file.errorString();
+                        }
+                        mCurrentDownloads.remove(fullUrl);
+                    }
+                    else {
+                        qWarning() << "folder does not exist: " << dirPath;
+                    }
                 }
-                mCurrentDownloads.remove( fullUrl );
-//            } );
-        };
-        RestRequestCallback error = [ = ]( QNetworkReply * reply, QJsonObject pData, RestApi * api ) {
-            Q_UNUSED( reply );
-            Q_UNUSED( pData );
-            Q_UNUSED( api );
-            qDebug() << "could not download file" << pRequest->url;
-        };
-
-        mCurrentDownloads.insert( fullUrl );
-        RestApiRequest request = QSharedPointer<RestRequest>( new GetRequest( fullUrl , success, error, true, true ) );
-
-        mServer->sendApiRequest( request );
+            };
+            RestRequestCallback error = [ = ]( QNetworkReply * reply, QJsonObject pData, RestApi * api ) {
+                Q_UNUSED( reply );
+                Q_UNUSED( pData );
+                Q_UNUSED( api );
+                qDebug() << "could not download file" << pRequest->url;
+            };
+
+            mCurrentDownloads.insert( fullUrl );
+            RestApiRequest request = QSharedPointer<RestRequest>( new GetRequest( fullUrl , success, error, true, true ) );
+
+            mServer->sendApiRequest( request );
+        }
     }
 }
 
 QString FileService::getFileHash( QFile *pFile )
 {
     QString hashString = "";
+    if(pFile){
+        if ( pFile->open( QFile::ReadOnly ) ) {
+            QCryptographicHash hash( QCryptographicHash::Md4 );
 
-    if ( pFile->open( QFile::ReadOnly ) ) {
-        QCryptographicHash hash( QCryptographicHash::Sha512 );
+            if ( hash.addData( pFile ) ) {
+                hashString =  hash.result();
+            }
 
-        if ( hash.addData( pFile ) ) {
-            hashString =  hash.result();
+            pFile->close();
         }
-
-        pFile->close();
     }
-
     return hashString;
 }
 
@@ -195,9 +232,10 @@ QString FileService::determineLocation( QUrl pUrl, QMimeType pType )
     return filePath;
 }
 
-FileRequest::FileRequest( QString url, QString type,  std::function<void ( QSharedPointer<TempFile> )> then )
+FileRequest::FileRequest( QString url, QString type,  std::function<void ( QSharedPointer<TempFile>, bool )> then, bool showInline )
 {
     this->type = type;
     this->url = url;
     this->then = then;
+    this->showInline = showInline;
 }
diff --git a/services/fileservice.h b/services/fileservice.h
index af94ca3822dfc8ba6df72b4ab9a62920fcce0ece..d8c5dbe765b5703d52b7bc415f86d515d49996e6 100644
--- a/services/fileservice.h
+++ b/services/fileservice.h
@@ -8,11 +8,13 @@
 #include "rocketchatserver.h"
 class RocketChatServerData;
 
-struct FileRequest{
-    FileRequest(QString url,QString type , std::function<void ( QSharedPointer<TempFile> )> then);
-    QString type = "";
-    QString url = "";
-    std::function<void ( QSharedPointer<TempFile> )> then;
+class FileRequest{
+   public:
+        FileRequest(QString url, QString type , std::function<void ( QSharedPointer<TempFile>, bool )> then, bool showInline);
+        QString type = "";
+        QString url = "";
+        std::function<void ( QSharedPointer<TempFile>, bool )> then;
+        bool showInline = true;
 };
 
 class FileService
diff --git a/services/messageservice.cpp b/services/messageservice.cpp
index 0f8c07edd6af444c629d34b56b944b3e06c937d6..1dfc430847229ec328e876efe2a5bae609f85f33 100644
--- a/services/messageservice.cpp
+++ b/services/messageservice.cpp
@@ -2,9 +2,17 @@
 
 
 
-MessageService::MessageService( PersistanceLayer *pPersistanceLayer,
-                                RocketChatServerData *pServer,
-                                QHash<QString, QString> &pEmojisMap ): mEmojisMap( pEmojisMap )
+//MessageService::MessageService( PersistanceLayer *pPersistanceLayer,
+//                                RocketChatServerData *pServer,
+//                                QHash<QString, QString> &pEmojisMap ): mEmojisMap( pEmojisMap )
+//{
+//    this->mPersistanceLayer = pPersistanceLayer;
+//    this->mServer = pServer;
+//}
+
+MessageService::MessageService(PersistanceLayer *pPersistanceLayer,
+                               RocketChatServerData *pServer,
+                               EmojiRepo *pEmojiRepo):mEmojiRepo( pEmojiRepo )
 {
     this->mPersistanceLayer = pPersistanceLayer;
     this->mServer = pServer;
@@ -12,59 +20,49 @@ MessageService::MessageService( PersistanceLayer *pPersistanceLayer,
 
 void MessageService::loadHistory( QSharedPointer<LoadHistoryServiceRequest> pRequest )
 {
-    switch ( pRequest->getSource() ) {
-        case LoadHistoryServiceRequest::Source::DataBase:
-            loadHistoryFromDb( pRequest );
-            break;
-
-        case LoadHistoryServiceRequest::Source::SERVER:
-            loadHistoryFromServer( pRequest );
-            break;
-
-        default:
-            loadHistoryFromAutoSource( pRequest );
-            break;
+    if(!pRequest.isNull()){
+        switch ( pRequest->getSource() ) {
+            case LoadHistoryServiceRequest::Source::DataBase:
+                loadHistoryFromDb( pRequest );
+                break;
+
+            case LoadHistoryServiceRequest::Source::SERVER:
+                loadHistoryFromServer( pRequest );
+                break;
+
+            default:
+                loadHistoryFromAutoSource( pRequest );
+                break;
+        }
     }
 }
 
+
+
 void MessageService::checkForMissingMessages( QSharedPointer<LoadMissedMessageServiceRequest> pRequest )
 {
-    Q_UNUSED(pRequest)
-    //for the moment outcommented, it legacy code those the job of this section
-    //and soon it will replace the legacy code
-    //for now it would be just bug potential
-    /*QString channelId = request->getChannelId();
-    MessageList list = request->getMessages();
-
-    qSort( list );
-
-    if ( !list.empty() ) {
-        double end = list.last()->getTimestamp();
-        double start = end - ( 86400 * 3 * 1000 );
-        QSharedPointer<LoadHistoryServiceRequest> request( new LoadHistoryServiceRequest( channelId ) );
-        request->setStart( end );
-        request->setStart( start );
-        //load from now to youngest message
-        qDebug() << "checking for missing messages";
-        loadHistoryFromServer( request );
-
-    }*/
+    Q_UNUSED( pRequest )
+    
 }
 
 void MessageService::sendMessage( QSharedPointer<RocketChatMessage> pMessage )
 {
-    QJsonObject params;
-    params["rid"] = pMessage->getRoomId();
-    params["msg"] = pMessage->getMessageString();
-    QSharedPointer<DDPRequest> sendMessageRequest( new DDPMethodRequest( "sendMessage", {params} ) );
-    mServer->sendDdprequest( sendMessageRequest, true );
+    if(!pMessage.isNull()){
+        QJsonObject params;
+        params["rid"] = pMessage->getRoomId();
+        params["msg"] = pMessage->getMessageString();
+        QSharedPointer<DDPRequest> sendMessageRequest( new DDPMethodRequest( "sendMessage", {params} ) );
+        mServer->sendDdprequest( sendMessageRequest, true );
+    }
 }
 
 void MessageService::persistMessage( QSharedPointer<RocketChatMessage> pMessage )
 {
-    QJsonDocument doc( pMessage->getData() );
-    QString msg = doc.toJson();
-    mPersistanceLayer->addMessage( pMessage->getId(), pMessage->getRoomId(), pMessage->getAuthor(), pMessage->getTimestamp(), msg );
+    if(!pMessage.isNull()){
+        QJsonDocument doc( pMessage->getData() );
+        QString msg = doc.toJson();
+        mPersistanceLayer->addMessage( pMessage->getId(), pMessage->getRoomId(), pMessage->getAuthor(), pMessage->getTimestamp(), msg );
+    }
 }
 
 void MessageService::persistMessages( MessageList pMessage )
@@ -72,12 +70,83 @@ void MessageService::persistMessages( MessageList pMessage )
     mPersistanceLayer->transaction();
 
     for ( auto currentMessage : pMessage ) {
-        persistMessage( currentMessage );
+        if(!currentMessage.isNull()){
+            persistMessage( currentMessage );
+        }
     };
 
     mPersistanceLayer->commit();
 }
 
+void MessageService::fillMessagesGap(QString pRoomId, QString pLimit, qint64 pStartTime)
+{
+//    auto channels = mServer->getChannels();
+//    if(channels && channels->contains(pRoomId)){
+
+//        QDateTime dateObj;
+//        QDateTime currentDateTime = dateObj.currentDateTime();
+//        uint now = currentDateTime.toTime_t();
+
+//        QJsonObject startObj ;
+//        startObj["$date"] = static_cast<double>(now);
+//        QJsonObject endObj ;
+//        QJsonArray params;
+
+//        params = {pRoomId, QJsonValue::Null, 50, startObj};
+
+//        QSharedPointer<DDPMethodRequest> request( new DDPMethodRequest( "loadHistory", params ) );
+
+//        std::function<void ( QJsonObject, MeteorDDP * )> ddpSuccess = [ = ]( QJsonObject pResponse, MeteorDDP * pDdp ) {
+//           Q_UNUSED(pDdp)
+//            if ( Q_LIKELY( pResponse.contains( "result" ) ) ) {
+//                QJsonObject result = pResponse["result"].toObject();
+
+//                if ( Q_LIKELY( result.contains( "messages" ) ) ) {
+//                    QJsonArray messages  = result["messages"].toArray();
+//                    bool stop = false;
+//                    qint64 oldest = 0;
+//                    for ( auto currentMessage : messages ) {
+//                        RocketChatMessage message( currentMessage.toObject() );
+//                        bool newMessage = true;
+
+//                        if ( mServer->getChannels()->contains( message.getRoomId() ) ) {
+//                            auto channel = mServer->getChannels()->get( message.getRoomId() );
+//                            newMessage = !channel->getMessageRepo()->contains( message.getId() );
+//                        }
+
+//                        auto messageObject = parseMessage( currentMessage.toObject(), true );
+
+//                        if ( !messageObject.isNull() && !duplicateCheck->contains( messageObject->getId() ) && newMessage ) {
+//                            list->insert( messageObject->getRoomId(), messageObject );
+//                            duplicateCheck->insert( messageObject->getId() );
+//                        }
+//                        if(message.getId() == pLimit){
+//                            stop = true;
+//                        }
+//                        if(!oldest || message.getTimestamp()<oldest){
+//                            oldest = message.getTimestamp();
+//                        }
+//                    }
+//                    if(!stop){
+//                        QJsonObject startObj ;
+//                        startObj["$date"] = oldest;
+//                        QJsonArray params;
+
+//                        params = {pRoomId, QJsonValue::Null, 50, startObj};
+
+//                        QSharedPointer<DDPMethodRequest> request( new DDPMethodRequest( "loadHistory", params ) );
+//                        request->setSuccess(ddpSuccess);
+//                        mServer->sendDdprequest( request );
+
+//                    }
+//                }
+//            }
+//        };
+//        request->setSuccess(ddpSucess);
+//        mServer->sendDdprequest( request );
+//    }
+}
+
 QSharedPointer<RocketChatMessage> MessageService::parseMessage( QJsonObject pMessageData, bool linkify )
 {
     ChatMessage message( NULL );
@@ -85,7 +154,7 @@ QSharedPointer<RocketChatMessage> MessageService::parseMessage( QJsonObject pMes
     QString userId = mServer->getUserId();
     qint16 emojiHash = mServer->getCustomEmojisHash();
 
-    if ( Q_LIKELY(pMessageData.contains( "msg" )) ) {
+    if ( Q_LIKELY( pMessageData.contains( "msg" ) ) ) {
         //parse message String
         QString msgString = pMessageData["msg"].toString();
         qint16 emojiHashMsg = 0;
@@ -93,45 +162,50 @@ QSharedPointer<RocketChatMessage> MessageService::parseMessage( QJsonObject pMes
             emojiHashMsg = pMessageData["emojiHash"].toInt();
         }
         if(!emojiHashMsg || !emojiHash|| emojiHash != emojiHashMsg){
-            msgString = Utils::emojiFy( msgString, mEmojisMap );
+            msgString = Utils::emojiFy( msgString, mEmojiRepo );
             emojiHashMsg = emojiHash;
             pMessageData["emojiHash"] = emojiHashMsg;
         }
 
+        msgString = Utils::removeUtf8Emojis( msgString );
         if ( linkify ) {
             msgString = Utils::removeUtf8Emojis( msgString );
+
             msgString = Utils::linkiFy( msgString );
             msgString = msgString.replace( "\n", "<br>" );
+        }
 
+        if(mEmojiRepo != nullptr){
+            msgString = Utils::emojiFy( msgString, mEmojiRepo );
         }
 
         QString msgType;
         QString author;
         QString authorId;
 
-
-        if ( Q_LIKELY(pMessageData.contains( "t" )) ) {
+        if ( Q_LIKELY( pMessageData.contains( "t" ) ) ) {
             msgType = pMessageData["t"].toString();
         }
 
         QJsonObject userObject = pMessageData["u"].toObject();
 
-        if ( Q_LIKELY(userObject.contains( "username" )) ) {
+        if ( Q_LIKELY( userObject.contains( "username" ) ) ) {
             author = userObject["username"].toString();
         }
-        if ( Q_LIKELY(userObject.contains( "_id" )) ) {
+
+        if ( Q_LIKELY( userObject.contains( "_id" ) ) ) {
             authorId = userObject["_id"].toString();
         }
 
         bool ownMessage = false;
 
-        if(authorId == userId){
+        if ( authorId == userId ) {
             ownMessage = true;
         }
         QJsonObject timestampObject = pMessageData["ts"].toObject();
         qint64 timestamp = 0;
 
-        if ( Q_LIKELY(timestampObject.contains( "$date" )) ) {
+        if ( Q_LIKELY( timestampObject.contains( "$date" ) ) ) {
             timestamp = timestampObject["$date"].toDouble();
 
         }
@@ -147,7 +221,9 @@ QSharedPointer<RocketChatMessage> MessageService::parseMessage( QJsonObject pMes
 
         if ( attachments.size() > 0 ) {
             auto firstAttachment  = attachments.first();
-            msgString =  firstAttachment->getTitle();
+            if(!firstAttachment.isNull()){
+                message->setMessageString( firstAttachment->getTitle() );
+            }
         }
 
         message->setAuthor( author );
@@ -155,11 +231,10 @@ QSharedPointer<RocketChatMessage> MessageService::parseMessage( QJsonObject pMes
         message->setFormattedTime( formattedTime );
         message->setMessageString( msgString );
         message->setMessageType( msgType );
-        message->setEmojiHash(emojiHashMsg);
 
     }
 
-    if ( Q_UNLIKELY(message.isNull()) ) {
+    if ( Q_UNLIKELY( message.isNull() ) ) {
         qDebug() << "invalid messag";
     }
 
@@ -168,101 +243,122 @@ QSharedPointer<RocketChatMessage> MessageService::parseMessage( QJsonObject pMes
 
 void MessageService::loadHistoryFromServer( QSharedPointer<LoadHistoryRequestContainer> pContainer )
 {
-    auto requests = pContainer->getRequests();
-    pContainer->mAlredayReceived = 0;
-    QMultiMap<QString, ChatMessage> *list = new QMultiMap<QString, ChatMessage>;
-    QSharedPointer<QSet<QString>> duplicateCheck( new QSet<QString> );
-
-    //loop over all channels
-    for ( auto currentChannelRequest : requests ) {
-        QString roomId = currentChannelRequest->getChannelIds().first();
-        QJsonObject startObj ;
-        startObj["$date"] = currentChannelRequest->getStart();
-        QJsonObject endObj ;
-        endObj["$date"] = currentChannelRequest->getEnd();
-        QJsonArray params;
-
-        if ( currentChannelRequest->getEnd() < 0 ) {
-            params = {roomId, QJsonValue::Null, 50, startObj};
-        } else {
-            params = {roomId, endObj , 50, startObj};
+    if(!pContainer.isNull()){
+        auto requests = pContainer->getRequests();
+        pContainer->mAlredayReceived = 0;
+
+        //TODO: fix memory leak risk
+        QMultiMap<QString, ChatMessage> *list;
+        QSharedPointer<QSet<QString>> duplicateCheck( new QSet<QString> );
+
+        if (requests.length()){
+            list = new QMultiMap<QString, ChatMessage>;
         }
 
-        QSharedPointer<DDPMethodRequest> request( new DDPMethodRequest( "loadHistory", params ) );
-        std::function<void ( QJsonObject, MeteorDDP * )> ddpSuccess = [ = ]( QJsonObject pResponse, MeteorDDP * pDdp ) {
-            Q_UNUSED( pDdp );
+        //loop over all channels
+        for ( auto currentChannelRequest : requests ) {
+            if(!currentChannelRequest.isNull()){
+                QString roomId = currentChannelRequest->getChannelIds().first();
+                QJsonObject startObj ;
+                startObj["$date"] = currentChannelRequest->getStart();
+                QJsonObject endObj ;
+                endObj["$date"] = currentChannelRequest->getEnd();
+                QJsonArray params;
+
+                int limit = currentChannelRequest->getLimit();
+                if ( currentChannelRequest->getEnd() < 0 ) {
+                    if(currentChannelRequest->getStart() < 0){
+                        params = {roomId, QJsonValue::Null, limit, QJsonValue::Null};
+                    }else{
+                        params = {roomId, QJsonValue::Null, limit, startObj};
+                    }
+                } else {
 
-            if ( Q_LIKELY(pResponse.contains( "result" )) ) {
-                QJsonObject result = pResponse["result"].toObject();
+                    params = {roomId, endObj , limit, startObj};
+                }
 
-                if ( Q_LIKELY(result.contains( "messages" )) ) {
-                    QJsonArray messages  = result["messages"].toArray();
+                QSharedPointer<DDPMethodRequest> request( new DDPMethodRequest( "loadHistory", params ) );
+                std::function<void ( QJsonObject, MeteorDDP * )> ddpSuccess = [ = ]( QJsonObject pResponse, MeteorDDP * pDdp ) {
+                    Q_UNUSED( pDdp );
 
-                    for ( auto currentMessage : messages ) {
-                        RocketChatMessage message( currentMessage.toObject() );
-                        bool newMessage = true;
+                    if ( Q_LIKELY( pResponse.contains( "result" ) ) ) {
+                        QJsonObject result = pResponse["result"].toObject();
 
-                        if ( mServer->getChannels()->contains( message.getRoomId() ) ) {
-                            auto channel = mServer->getChannels()->get( message.getRoomId() );
-                            newMessage = !channel->getMessageRepo()->contains( message.getId() );
-                        }
+                        if ( Q_LIKELY( result.contains( "messages" ) ) ) {
+                            QJsonArray messages  = result["messages"].toArray();
+
+                            for ( auto currentMessage : messages ) {
+                                RocketChatMessage message( currentMessage.toObject() );
+                                bool newMessage = true;
 
-                        auto messageObject = parseMessage( currentMessage.toObject() );
+                                if ( mServer->getChannels()->contains( message.getRoomId() ) ) {
+                                    auto channel = mServer->getChannels()->get( message.getRoomId() );
+                                    newMessage = !channel->getMessageRepo()->contains( message.getId() );
+                                }
 
-                        if ( !messageObject.isNull() && !duplicateCheck->contains( messageObject->getId() ) && newMessage ) {
-                            list->insert( messageObject->getRoomId(), messageObject );
-                            duplicateCheck->insert( messageObject->getId() );
+                                auto messageObject = parseMessage( currentMessage.toObject(), true );
+
+                                if ( !messageObject.isNull() && !duplicateCheck->contains( messageObject->getId() ) && newMessage ) {
+                                    list->insert( messageObject->getRoomId(), messageObject );
+                                    duplicateCheck->insert( messageObject->getId() );
+                                }
+                            }
                         }
                     }
-                }
-            }
 
-            pContainer->mAlredayReceived++;
+                    pContainer->mAlredayReceived++;
 
-            if ( pContainer->mAlredayReceived == pContainer->mRequests.count() ) {
-                auto containerSuccess = pContainer->getSuccess();
+                    if ( pContainer->mAlredayReceived == pContainer->mRequests.count() ) {
+                        auto containerSuccess = pContainer->getSuccess();
 
-                if ( containerSuccess ) {
-                    containerSuccess( list );
-                }
-            }
-        };
+                        if ( containerSuccess ) {
+                            containerSuccess( list );
+                        }
+                    }
+                };
 
-        request->setSuccess( ddpSuccess );
+                request->setSuccess( ddpSuccess );
 
-        mServer->sendDdprequest( request );
+                mServer->sendDdprequest( request );
+            }
+        }
     }
 
 }
 
 void MessageService::loadHistoryFromServer( QSharedPointer<LoadHistoryServiceRequest> pRequest )
 {
-    QList<QSharedPointer<LoadHistoryServiceRequest>> list;
-    list.append( pRequest );
-    QSharedPointer<LoadHistoryRequestContainer> container( new LoadHistoryRequestContainer( list, pRequest->getSuccess() ) );
-    container->setSuccess( pRequest->getSuccess() );
-    loadHistoryFromServer( container );
+    if(!pRequest.isNull()){
+        QList<QSharedPointer<LoadHistoryServiceRequest>> list;
+        list.append( pRequest );
+        QSharedPointer<LoadHistoryRequestContainer> container( new LoadHistoryRequestContainer( list, pRequest->getSuccess() ) );
+        container->setSuccess( pRequest->getSuccess() );
+        loadHistoryFromServer( container );
+    }
 }
 
 QMultiMap<QString, ChatMessage> *MessageService::loadHistoryFromDb( QSharedPointer<LoadHistoryServiceRequest> pRequest )
 {
-    QStringList channelIds = pRequest->getChannelIds();
-    double start = pRequest->getStart();
-    int limit = pRequest->getLimit();
-    QList<QJsonObject> messages;
-    messages.reserve(100);
     QMultiMap<QString, ChatMessage> *channelMap  = new QMultiMap<QString, ChatMessage>;
 
-    for ( auto channelId : channelIds ) {
-        QList<QJsonObject> result = mPersistanceLayer->getMessagesByRid( channelId, ( qint64 )start, ( int ) limit );
-        messages.append( result );
-    }
+    if(!pRequest.isNull()){
+        QStringList channelIds = pRequest->getChannelIds();
+        double start = pRequest->getStart();
+        int limit = pRequest->getLimit();
+        QList<QJsonObject> messages;
+        messages.reserve( 100 );
 
-    for ( QJsonObject current : messages ) {
-        auto parsedMessage = parseMessage( current, false );
+        for ( auto channelId : channelIds ) {
+            QList<QJsonObject> result = mPersistanceLayer->getMessagesByRid( channelId, ( qint64 )start, ( int ) limit );
+            messages.append( result );
+        }
+
+        for ( QJsonObject current : messages ) {
+            auto parsedMessage = parseMessage( current, false );
 
-        if ( Q_LIKELY(!parsedMessage.isNull()) ) {
-            channelMap->insert( parsedMessage->getRoomId(), parsedMessage );
+            if ( Q_LIKELY( !parsedMessage.isNull() ) ) {
+                channelMap->insert( parsedMessage->getRoomId(), parsedMessage );
+            }
         }
     }
 
@@ -273,14 +369,16 @@ void MessageService::loadHistoryFromAutoSource( QSharedPointer<LoadHistoryServic
 {
     auto channelMap = loadHistoryFromDb( pRequest );
     QList<QSharedPointer<LoadHistoryServiceRequest>> requestList;
-    requestList.reserve(50);
+    requestList.reserve( 50 );
     auto serverSuccess = [ = ]( QMultiMap<QString, QSharedPointer<RocketChatMessage>> *messages ) {
-        auto success = pRequest->getSuccess();
-        success( messages );
+        if(messages != nullptr){
+            auto success = pRequest->getSuccess();
+            success( messages );
+        }
     };
 
     for ( QString key :  pRequest->getChannelIds() ) {
-        if (Q_LIKELY( channelMap->contains( key )) ) {
+        if ( Q_LIKELY( channelMap->contains( key ) ) ) {
             MessageList currentList = channelMap->values( key );
 
             if ( currentList.count() < mExpectedSize ) {
@@ -345,13 +443,13 @@ QList<QSharedPointer<RocketChatAttachment>> MessageService::processAttachments(
 
     QList<QSharedPointer<RocketChatAttachment> > attachmentsList;
 
-    if ( Q_LIKELY(pMessageObj.contains( "file" )) ) {
+    if ( Q_LIKELY( pMessageObj.contains( "file" ) ) ) {
         QJsonObject fileObj = pMessageObj["file"].toObject();
 
-        if ( Q_LIKELY(fileObj.contains( "_id" )) ) {
+        if ( Q_LIKELY( fileObj.contains( "_id" ) ) ) {
             QJsonArray attachments = pMessageObj["attachments"].toArray();
 
-            if ( Q_LIKELY(attachments.size()) ) {
+            if ( Q_LIKELY( attachments.size() ) ) {
                 QString type;
                 QString url;
                 QString title;
@@ -359,7 +457,7 @@ QList<QSharedPointer<RocketChatAttachment>> MessageService::processAttachments(
                 int height = -1;
                 QJsonObject attachment = attachments[0].toObject();
 
-                if ( Q_LIKELY(attachment.contains( "image_url" ) && attachment.contains( "image_dimensions" )) ) {
+                if ( Q_LIKELY( attachment.contains( "image_url" ) && attachment.contains( "image_dimensions" ) ) ) {
                     type = "image";
                     url = attachment["image_url"].toString();
                     QJsonObject imageDimensions = attachment["image_dimensions"].toObject();
@@ -380,7 +478,7 @@ QList<QSharedPointer<RocketChatAttachment>> MessageService::processAttachments(
                     url = attachment["title_link"].toString();
                 }
 
-                if ( Q_LIKELY(attachment.contains( "title" )) ) {
+                if ( Q_LIKELY( attachment.contains( "title" ) ) ) {
                     title = attachment["title"].toString();
                 }
 
diff --git a/services/messageservice.h b/services/messageservice.h
index f61e74032da7602ae38096ac49a1856f88e067fa..aaf4bc8e8c66cd41cdb34d6bedec6df540498fda 100644
--- a/services/messageservice.h
+++ b/services/messageservice.h
@@ -6,11 +6,13 @@
 #include <QSharedPointer>
 #include <QMultiMap>
 #include <QtAlgorithms>
+#include <QDateTime>
 #include <repos/messagerepository.h>
 #include "repos/entities/rocketchatmessage.h"
 #include "persistancelayer.h"
 #include "rocketchatserver.h"
 #include "repos/entities/rocketchatattachment.h"
+#include "repos/emojirepo.h"
 #include "services/requests/loadhistoryservicerequest.h"
 #include "services/requests/loadHistoryrequestcontainer.h"
 #include "services/requests/loadmissedmessageservicerequest.h"
@@ -19,16 +21,19 @@ typedef QList<QSharedPointer<RocketChatMessage>> MessageList;
 typedef QSharedPointer<RocketChatMessage> ChatMessage;
 class PersistanceLayer;
 class RocketChatServerData;
+
 class MessageService : public QObject
 {
     Q_OBJECT
 public:
-    MessageService(PersistanceLayer *pPersistanceLayer, RocketChatServerData* pServer,QHash<QString, QString> &pEmojisMap);
+   // MessageService(PersistanceLayer *pPersistanceLayer, RocketChatServerData* pServer,QHash<QString, QString> &pEmojisMap);
+    MessageService(PersistanceLayer *pPersistanceLayer, RocketChatServerData* pServer, EmojiRepo *mEmojiRepo);
     void loadHistory(QSharedPointer<LoadHistoryServiceRequest>);
     void checkForMissingMessages(QSharedPointer<LoadMissedMessageServiceRequest> pRequest);
     void sendMessage(QSharedPointer<RocketChatMessage> pMessage);
     void persistMessage(QSharedPointer<RocketChatMessage> pMessage);
     void persistMessages(MessageList pMessage);
+    void fillMessagesGap(QString pRoomId, QString pLimit, qint64 pStartTime);
     QSharedPointer<RocketChatMessage> parseMessage(QJsonObject pMessage, bool linkify = true);
 protected:
     const static int mExpectedSize = 50;
@@ -40,7 +45,8 @@ protected:
     QMultiMap<QString, ChatMessage>* loadHistoryFromDb(QSharedPointer<LoadHistoryServiceRequest> pRequest);
     void loadHistoryFromAutoSource(QSharedPointer<LoadHistoryServiceRequest> pRequest);
     QList<QSharedPointer<RocketChatAttachment>> processAttachments(QJsonObject pMessageData);
-    QHash<QString, QString> &mEmojisMap;
+   // QHash<QString, QString> &mEmojisMap;
+    EmojiRepo *mEmojiRepo;
 
 };
 
diff --git a/services/rocketchatchannelservice.cpp b/services/rocketchatchannelservice.cpp
index cbc21d80a109713327192184913b64b58d2549c8..156c022621f9e21f934df902613a3295da3b851e 100755
--- a/services/rocketchatchannelservice.cpp
+++ b/services/rocketchatchannelservice.cpp
@@ -50,23 +50,25 @@ QVector<QSharedPointer<RocketChatChannel> > RocketChatChannelService::processCha
             int unread = currentChannelObject["unread"].toInt();
             QSharedPointer<RocketChatChannel> channel = createChannelObject( id, name, type );
 
-            if ( mutedUsers.contains( username ) ) {
-                channel->setSelfMuted( true );
-            }
+            if(!channel.isNull()){
+                if ( mutedUsers.contains( username ) ) {
+                    channel->setSelfMuted( true );
+                }
 
-            loadUsersOfChannel( channel );
-            channel->setMuted( mutedUsers );
-            channel->setReadOnly( readonly );
-            channel->setArchived( archived );
-            channel->setJoined( pJoined );
-            if(id == openChannel){
-                channel->setUnreadMessages(0);
-            }else{
-                channel->setUnreadMessages(unread);
-            }
-            if(!archived){
-                subscribeChannel(channel);
-                vec.append( channel );
+                loadUsersOfChannel( channel );
+                channel->setMuted( mutedUsers );
+                channel->setReadOnly( readonly );
+                channel->setArchived( archived );
+                channel->setJoined( pJoined );
+                if(id == openChannel){
+                    channel->setUnreadMessages(0);
+                }else{
+                    channel->setUnreadMessages(unread);
+                }
+                if(!archived){
+                    subscribeChannel(channel);
+                    vec.append( channel );
+                }
             }
 
         }
@@ -111,11 +113,13 @@ void RocketChatChannelService::loadJoinedChannelsFromDb()
 
         foreach ( QVariantHash roomHash , roomsList ) {
             QSharedPointer<RocketChatChannel> channelPointer =  createChannelObject( roomHash["id"].toString(), roomHash["name"].toString(), roomHash["type"].toString() );
-            channelPointer->setMuted( roomHash["list"].toStringList() );
-            channelPointer->setArchived( roomHash["archived"].toBool() );
-            channelPointer->setReadOnly( roomHash["readOnly"].toBool() );
-            channelPointer->setJoined( roomHash["joined"].toBool() );
-            channels.append( channelPointer );
+            if(!channelPointer.isNull()){
+                channelPointer->setMuted( roomHash["list"].toStringList() );
+                channelPointer->setArchived( roomHash["archived"].toBool() );
+                channelPointer->setReadOnly( roomHash["readOnly"].toBool() );
+                channelPointer->setJoined( roomHash["joined"].toBool() );
+                channels.append( channelPointer );
+            }
         }
 
         emit  channelsLoaded( channels, true );
@@ -139,57 +143,86 @@ void RocketChatChannelService::persistChannel( QSharedPointer<RocketChatChannel>
  */
 void RocketChatChannelService::loadUsersOfChannel( QSharedPointer<RocketChatChannel> pChannel )
 {
-    QString channelId = pChannel->getRoomId();
-    QJsonArray params = {channelId, true};
-    QSharedPointer<DDPMethodRequest> request( new DDPMethodRequest( "getUsersOfRoom", params ) );
-    std::function<void ( QJsonObject, MeteorDDP * )> success = [ = ]( QJsonObject data, MeteorDDP * ddp ) {
-        Q_UNUSED( ddp );
-
-        if ( Q_LIKELY(data.contains( "result" )) ) {
-            QJsonObject result = data["result"].toObject();
-
-            if ( Q_LIKELY(result.contains( "records" ) && result["records"].isArray()) ) {
-                QJsonArray records = result["records"].toArray();
-                QVector<QSharedPointer<RocketChatUser>> userList;
-
-                //crate new user objects and add them to the channel
-                for ( auto current : records ) {
-                    QSharedPointer<RocketChatUser> user( new RocketChatUser( current.toString() ) );
-                    userList.append( user );
+    if(!pChannel.isNull()){
+        QString channelId = pChannel->getRoomId();
+        QJsonArray params = {channelId, true};
+        QSharedPointer<DDPMethodRequest> request( new DDPMethodRequest( "getUsersOfRoom", params ) );
+        std::function<void ( QJsonObject, MeteorDDP * )> success = [ = ]( QJsonObject data, MeteorDDP * ddp ) {
+            Q_UNUSED( ddp );
+
+            if ( Q_LIKELY(data.contains( "result" )) ) {
+                QJsonObject result = data["result"].toObject();
+
+                if ( Q_LIKELY(result.contains( "records" ) && result["records"].isArray()) ) {
+                    QJsonArray records = result["records"].toArray();
+                    QVector<QSharedPointer<RocketChatUser>> userList;
+
+                    //crate new user objects and add them to the channel
+                    for ( auto current : records ) {
+                        QSharedPointer<RocketChatUser> user( new RocketChatUser( current.toString() ) );
+                        userList.append( user );
+                    }
+
+                    emit usersLoaded( channelId, userList );
                 }
-
-                emit usersLoaded( channelId, userList );
             }
-        }
-    };
-    request->setSuccess( success );
-    mServer->sendDdprequest( request );
+        };
+        request->setSuccess( success );
+        mServer->sendDdprequest( request );
+    }
 }
 
 void RocketChatChannelService::subscribeChannel(QSharedPointer<RocketChatChannel> pChannel)
 {
-    QString roomId = pChannel->getRoomId();
-    QSharedPointer<RocketChatSubscribeChannelRequest> subscription( new RocketChatSubscribeChannelRequest( pChannel->getRoomId() ) );
-    mServer->sendDdprequest( subscription );
+    if(!pChannel.isNull()){
+        QString roomId = pChannel->getRoomId();
+        QSharedPointer<RocketChatSubscribeChannelRequest> subscription( new RocketChatSubscribeChannelRequest( pChannel->getRoomId() ) );
+        mServer->sendDdprequest( subscription );
+    }
 }
 
 void RocketChatChannelService::loadMissedMessages(QSharedPointer<RocketChatChannel> pChannel)
 {
-    Q_UNUSED(pChannel)
+//    auto messageRepo = pChannel->getMessageRepo();
+//    if(messageRepo != nullptr){
+//        auto msgPrev = messageRepo->get(messageRepo->size()-2);
+//        auto msgLast = messageRepo->get(messageRepo->size()-1);
+//        qint64 msgPrevTime = msgPrev->getTimestamp();
+//        qint64 msgLastTime = msgLast->getTimestamp();
+
+//        std::function<void ( QMultiMap<QString, QSharedPointer<RocketChatMessage> > *messages )> success =
+//        [ = ]( QMultiMap<QString, QSharedPointer<RocketChatMessage> > *messages ) {
+//            auto messageList = messages->values( pChannelId );
+//            qDebug() << "load history from gap " << messageList.size();
+//            QList<QSharedPointer<RocketChatMessage>> newmessages = mChannels->get( pChannelId )->addMessages( messageList );
+//            mMessageService->persistMessages( messageList );
+//            mServer->newMessageListForGui( pChannelId, newmessages );
+//            delete messages;
+//        };
+
+//        QSharedPointer<LoadHistoryServiceRequest> pRequest = new QSharedPointer(new LoadHistoryServiceRequest);
+//        pRequest->setEnd(msgLastTime);
+//        pRequest->setStart(msgPrevTime);
+//        pRequest->setLimit(400);
+//        pRequest->setSuccess(success);
+//        mMessageService->loadHistoryFromServer(pRequest);
+//    }
 }
 
 void RocketChatChannelService::fillChannelWithMessages(QSharedPointer<RocketChatChannel> pChannel)
 {
-    QString roomId = pChannel->getRoomId();
-    auto messages = mStorage->getMessagesByRid(roomId);
-    MessageList list;
-    for(auto currentMessage : messages){
-        auto newMessage = mMessageService->parseMessage(currentMessage,false);
-        if(Q_LIKELY(!newMessage.isNull())){
-            list.append(newMessage);
+    if(!pChannel.isNull()){
+        QString roomId = pChannel->getRoomId();
+        auto messages = mStorage->getMessagesByRid(roomId);
+        MessageList list;
+        for(auto currentMessage : messages){
+            auto newMessage = mMessageService->parseMessage(currentMessage,false);
+            if(Q_LIKELY(!newMessage.isNull())){
+                list.append(newMessage);
+            }
         }
+        pChannel->addMessages(list);
     }
-    pChannel->addMessages(list);
 }
 
 
@@ -220,9 +253,12 @@ void RocketChatChannelService::openPrivateChannelWith( QString pUsername )
                 QSharedPointer<DDPSubscriptionRequest> subRoom( new DDPSubscriptionRequest( "room", {"d" + pUsername} ) );
                 QSharedPointer<RocketChatSubscribeChannelRequest> subMessages( new RocketChatSubscribeChannelRequest( rid ) );
                 QSharedPointer<RocketChatChannel> channel = createChannelObject( rid, pUsername, "d" );
-                emit channelsLoaded( {channel}, true );
-                pDdp->sendRequest( subRoom );
-                pDdp->sendRequest( subMessages );
+                if(!channel.isNull()){
+                    emit channelsLoaded( {channel}, true );
+                    pDdp->sendRequest( subRoom );
+                    pDdp->sendRequest( subMessages );
+                    emit directChannelReady(rid);
+                }
             }
         }
 
diff --git a/services/rocketchatchannelservice.h b/services/rocketchatchannelservice.h
index abee30a811b63767de91440c707d4644acad522e..9aa336a66bd41f1d3cde14ca112232c88287c180 100755
--- a/services/rocketchatchannelservice.h
+++ b/services/rocketchatchannelservice.h
@@ -64,8 +64,9 @@ protected:
 
         MessageService *mMessageService;
     signals:
-        void  channelsLoaded( channelVector pChannelList, bool pJoined );
-        void  usersLoaded(QString roomId, userVector pUserList);
+        void channelsLoaded( channelVector pChannelList, bool pJoined );
+        void usersLoaded(QString roomId, userVector pUserList);
+        void directChannelReady(QString roomId);
 
 };
 
diff --git a/sql/emojis.sql b/sql/emojis.sql
old mode 100755
new mode 100644
index 8fe6b27d4587345de4143f026eaa2425a6f052fc..345286aaa004f22c99d52f0241f6b6bfadb3a3d6
--- a/sql/emojis.sql
+++ b/sql/emojis.sql
@@ -1,1820 +1,1820 @@
-INSERT INTO `custom_emojis` VALUES (':100:','qrc:/res/emojis/1f4af.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4af.png'' />','1f4af','symbols');
-INSERT INTO `custom_emojis` VALUES (':1234:','qrc:/res/emojis/1f522.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f522.png'' />','1f522','symbols');
-INSERT INTO `custom_emojis` VALUES (':8ball:','qrc:/res/emojis/1f3b1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b1.png'' />','1f3b1','activity');
-INSERT INTO `custom_emojis` VALUES (':a:','qrc:/res/emojis/1f170.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f170.png'' />','1f170','symbols');
-INSERT INTO `custom_emojis` VALUES (':ab:','qrc:/res/emojis/1f18e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f18e.png'' />','1f18e','symbols');
-INSERT INTO `custom_emojis` VALUES (':abc:','qrc:/res/emojis/1f524.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f524.png'' />','1f524','symbols');
-INSERT INTO `custom_emojis` VALUES (':abcd:','qrc:/res/emojis/1f521.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f521.png'' />','1f521','symbols');
-INSERT INTO `custom_emojis` VALUES (':accept:','qrc:/res/emojis/1f251.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f251.png'' />','1f251','symbols');
-INSERT INTO `custom_emojis` VALUES (':aerial_tramway:','qrc:/res/emojis/1f6a1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a1.png'' />','1f6a1','travel');
-INSERT INTO `custom_emojis` VALUES (':airplane:','qrc:/res/emojis/2708.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2708.png'' />','2708','travel');
-INSERT INTO `custom_emojis` VALUES (':airplane_arriving:','qrc:/res/emojis/1f6ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6ec.png'' />','1f6ec','travel');
-INSERT INTO `custom_emojis` VALUES (':airplane_departure:','qrc:/res/emojis/1f6eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6eb.png'' />','1f6eb','travel');
-INSERT INTO `custom_emojis` VALUES (':airplane_small:','qrc:/res/emojis/1f6e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6e9.png'' />','1f6e9','travel');
-INSERT INTO `custom_emojis` VALUES (':alarm_clock:','qrc:/res/emojis/23f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23f0.png'' />','23f0','objects');
-INSERT INTO `custom_emojis` VALUES (':alembic:','qrc:/res/emojis/2697.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2697.png'' />','2697','objects');
-INSERT INTO `custom_emojis` VALUES (':alien:','qrc:/res/emojis/1f47d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47d.png'' />','1f47d','people');
-INSERT INTO `custom_emojis` VALUES (':ambulance:','qrc:/res/emojis/1f691.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f691.png'' />','1f691','travel');
-INSERT INTO `custom_emojis` VALUES (':amphora:','qrc:/res/emojis/1f3fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3fa.png'' />','1f3fa','objects');
-INSERT INTO `custom_emojis` VALUES (':anchor:','qrc:/res/emojis/2693.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2693.png'' />','2693','travel');
-INSERT INTO `custom_emojis` VALUES (':angel:','qrc:/res/emojis/1f47c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47c.png'' />','1f47c','people');
-INSERT INTO `custom_emojis` VALUES (':angel_tone1:','qrc:/res/emojis/1f47c-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47c-1f3fb.png'' />','1f47c-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':angel_tone2:','qrc:/res/emojis/1f47c-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47c-1f3fc.png'' />','1f47c-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':angel_tone3:','qrc:/res/emojis/1f47c-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47c-1f3fd.png'' />','1f47c-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':angel_tone4:','qrc:/res/emojis/1f47c-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47c-1f3fe.png'' />','1f47c-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':angel_tone5:','qrc:/res/emojis/1f47c-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47c-1f3ff.png'' />','1f47c-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':anger:','qrc:/res/emojis/1f4a2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a2.png'' />','1f4a2','symbols');
-INSERT INTO `custom_emojis` VALUES (':anger_right:','qrc:/res/emojis/1f5ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5ef.png'' />','1f5ef','symbols');
-INSERT INTO `custom_emojis` VALUES (':angry:','qrc:/res/emojis/1f620.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f620.png'' />','1f620','people');
-INSERT INTO `custom_emojis` VALUES (':anguished:','qrc:/res/emojis/1f627.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f627.png'' />','1f627','people');
-INSERT INTO `custom_emojis` VALUES (':ant:','qrc:/res/emojis/1f41c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f41c.png'' />','1f41c','nature');
-INSERT INTO `custom_emojis` VALUES (':apple:','qrc:/res/emojis/1f34e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f34e.png'' />','1f34e','food');
-INSERT INTO `custom_emojis` VALUES (':aquarius:','qrc:/res/emojis/2652.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2652.png'' />','2652','symbols');
-INSERT INTO `custom_emojis` VALUES (':aries:','qrc:/res/emojis/2648.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2648.png'' />','2648','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_backward:','qrc:/res/emojis/25c0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/25c0.png'' />','25c0','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_double_down:','qrc:/res/emojis/23ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23ec.png'' />','23ec','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_double_up:','qrc:/res/emojis/23eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23eb.png'' />','23eb','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_down:','qrc:/res/emojis/2b07.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2b07.png'' />','2b07','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_down_small:','qrc:/res/emojis/1f53d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f53d.png'' />','1f53d','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_forward:','qrc:/res/emojis/25b6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/25b6.png'' />','25b6','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_heading_down:','qrc:/res/emojis/2935.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2935.png'' />','2935','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_heading_up:','qrc:/res/emojis/2934.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2934.png'' />','2934','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_left:','qrc:/res/emojis/2b05.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2b05.png'' />','2b05','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_lower_left:','qrc:/res/emojis/2199.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2199.png'' />','2199','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_lower_right:','qrc:/res/emojis/2198.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2198.png'' />','2198','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_right:','qrc:/res/emojis/27a1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/27a1.png'' />','27a1','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_right_hook:','qrc:/res/emojis/21aa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/21aa.png'' />','21aa','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_up:','qrc:/res/emojis/2b06.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2b06.png'' />','2b06','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_up_down:','qrc:/res/emojis/2195.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2195.png'' />','2195','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_up_small:','qrc:/res/emojis/1f53c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f53c.png'' />','1f53c','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_upper_left:','qrc:/res/emojis/2196.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2196.png'' />','2196','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrow_upper_right:','qrc:/res/emojis/2197.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2197.png'' />','2197','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrows_clockwise:','qrc:/res/emojis/1f503.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f503.png'' />','1f503','symbols');
-INSERT INTO `custom_emojis` VALUES (':arrows_counterclockwise:','qrc:/res/emojis/1f504.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f504.png'' />','1f504','symbols');
-INSERT INTO `custom_emojis` VALUES (':art:','qrc:/res/emojis/1f3a8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a8.png'' />','1f3a8','activity');
-INSERT INTO `custom_emojis` VALUES (':articulated_lorry:','qrc:/res/emojis/1f69b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f69b.png'' />','1f69b','travel');
-INSERT INTO `custom_emojis` VALUES (':asterisk:','qrc:/res/emojis/002a-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/002a-20e3.png'' />','002a-20e3','symbols');
-INSERT INTO `custom_emojis` VALUES (':astonished:','qrc:/res/emojis/1f632.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f632.png'' />','1f632','people');
-INSERT INTO `custom_emojis` VALUES (':athletic_shoe:','qrc:/res/emojis/1f45f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f45f.png'' />','1f45f','people');
-INSERT INTO `custom_emojis` VALUES (':atm:','qrc:/res/emojis/1f3e7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e7.png'' />','1f3e7','symbols');
-INSERT INTO `custom_emojis` VALUES (':atom:','qrc:/res/emojis/269b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/269b.png'' />','269b','symbols');
-INSERT INTO `custom_emojis` VALUES (':avocado:','qrc:/res/emojis/1f951.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f951.png'' />','1f951','food');
-INSERT INTO `custom_emojis` VALUES (':b:','qrc:/res/emojis/1f171.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f171.png'' />','1f171','symbols');
-INSERT INTO `custom_emojis` VALUES (':baby:','qrc:/res/emojis/1f476.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f476.png'' />','1f476','people');
-INSERT INTO `custom_emojis` VALUES (':baby_bottle:','qrc:/res/emojis/1f37c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f37c.png'' />','1f37c','food');
-INSERT INTO `custom_emojis` VALUES (':baby_chick:','qrc:/res/emojis/1f424.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f424.png'' />','1f424','nature');
-INSERT INTO `custom_emojis` VALUES (':baby_symbol:','qrc:/res/emojis/1f6bc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6bc.png'' />','1f6bc','symbols');
-INSERT INTO `custom_emojis` VALUES (':baby_tone1:','qrc:/res/emojis/1f476-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f476-1f3fb.png'' />','1f476-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':baby_tone2:','qrc:/res/emojis/1f476-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f476-1f3fc.png'' />','1f476-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':baby_tone3:','qrc:/res/emojis/1f476-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f476-1f3fd.png'' />','1f476-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':baby_tone4:','qrc:/res/emojis/1f476-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f476-1f3fe.png'' />','1f476-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':baby_tone5:','qrc:/res/emojis/1f476-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f476-1f3ff.png'' />','1f476-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':back:','qrc:/res/emojis/1f519.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f519.png'' />','1f519','symbols');
-INSERT INTO `custom_emojis` VALUES (':bacon:','qrc:/res/emojis/1f953.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f953.png'' />','1f953','food');
-INSERT INTO `custom_emojis` VALUES (':badminton:','qrc:/res/emojis/1f3f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3f8.png'' />','1f3f8','activity');
-INSERT INTO `custom_emojis` VALUES (':baggage_claim:','qrc:/res/emojis/1f6c4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c4.png'' />','1f6c4','symbols');
-INSERT INTO `custom_emojis` VALUES (':balloon:','qrc:/res/emojis/1f388.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f388.png'' />','1f388','objects');
-INSERT INTO `custom_emojis` VALUES (':ballot_box:','qrc:/res/emojis/1f5f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5f3.png'' />','1f5f3','objects');
-INSERT INTO `custom_emojis` VALUES (':ballot_box_with_check:','qrc:/res/emojis/2611.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2611.png'' />','2611','symbols');
-INSERT INTO `custom_emojis` VALUES (':bamboo:','qrc:/res/emojis/1f38d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f38d.png'' />','1f38d','nature');
-INSERT INTO `custom_emojis` VALUES (':banana:','qrc:/res/emojis/1f34c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f34c.png'' />','1f34c','food');
-INSERT INTO `custom_emojis` VALUES (':bangbang:','qrc:/res/emojis/203c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/203c.png'' />','203c','symbols');
-INSERT INTO `custom_emojis` VALUES (':bank:','qrc:/res/emojis/1f3e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e6.png'' />','1f3e6','travel');
-INSERT INTO `custom_emojis` VALUES (':bar_chart:','qrc:/res/emojis/1f4ca.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ca.png'' />','1f4ca','objects');
-INSERT INTO `custom_emojis` VALUES (':barber:','qrc:/res/emojis/1f488.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f488.png'' />','1f488','objects');
-INSERT INTO `custom_emojis` VALUES (':baseball:','qrc:/res/emojis/26be.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26be.png'' />','26be','activity');
-INSERT INTO `custom_emojis` VALUES (':basketball:','qrc:/res/emojis/1f3c0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c0.png'' />','1f3c0','activity');
-INSERT INTO `custom_emojis` VALUES (':basketball_player:','qrc:/res/emojis/26f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f9.png'' />','26f9','activity');
-INSERT INTO `custom_emojis` VALUES (':basketball_player_tone1:','qrc:/res/emojis/26f9-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f9-1f3fb.png'' />','26f9-1f3fb','activity');
-INSERT INTO `custom_emojis` VALUES (':basketball_player_tone2:','qrc:/res/emojis/26f9-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f9-1f3fc.png'' />','26f9-1f3fc','activity');
-INSERT INTO `custom_emojis` VALUES (':basketball_player_tone3:','qrc:/res/emojis/26f9-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f9-1f3fd.png'' />','26f9-1f3fd','activity');
-INSERT INTO `custom_emojis` VALUES (':basketball_player_tone4:','qrc:/res/emojis/26f9-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f9-1f3fe.png'' />','26f9-1f3fe','activity');
-INSERT INTO `custom_emojis` VALUES (':basketball_player_tone5:','qrc:/res/emojis/26f9-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f9-1f3ff.png'' />','26f9-1f3ff','activity');
-INSERT INTO `custom_emojis` VALUES (':bat:','qrc:/res/emojis/1f987.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f987.png'' />','1f987','nature');
-INSERT INTO `custom_emojis` VALUES (':bath:','qrc:/res/emojis/1f6c0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c0.png'' />','1f6c0','activity');
-INSERT INTO `custom_emojis` VALUES (':bath_tone1:','qrc:/res/emojis/1f6c0-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c0-1f3fb.png'' />','1f6c0-1f3fb','activity');
-INSERT INTO `custom_emojis` VALUES (':bath_tone2:','qrc:/res/emojis/1f6c0-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c0-1f3fc.png'' />','1f6c0-1f3fc','activity');
-INSERT INTO `custom_emojis` VALUES (':bath_tone3:','qrc:/res/emojis/1f6c0-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c0-1f3fd.png'' />','1f6c0-1f3fd','activity');
-INSERT INTO `custom_emojis` VALUES (':bath_tone4:','qrc:/res/emojis/1f6c0-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c0-1f3fe.png'' />','1f6c0-1f3fe','activity');
-INSERT INTO `custom_emojis` VALUES (':bath_tone5:','qrc:/res/emojis/1f6c0-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c0-1f3ff.png'' />','1f6c0-1f3ff','activity');
-INSERT INTO `custom_emojis` VALUES (':bathtub:','qrc:/res/emojis/1f6c1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c1.png'' />','1f6c1','objects');
-INSERT INTO `custom_emojis` VALUES (':battery:','qrc:/res/emojis/1f50b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f50b.png'' />','1f50b','objects');
-INSERT INTO `custom_emojis` VALUES (':beach:','qrc:/res/emojis/1f3d6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d6.png'' />','1f3d6','travel');
-INSERT INTO `custom_emojis` VALUES (':beach_umbrella:','qrc:/res/emojis/26f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f1.png'' />','26f1','objects');
-INSERT INTO `custom_emojis` VALUES (':bear:','qrc:/res/emojis/1f43b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f43b.png'' />','1f43b','nature');
-INSERT INTO `custom_emojis` VALUES (':bed:','qrc:/res/emojis/1f6cf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6cf.png'' />','1f6cf','objects');
-INSERT INTO `custom_emojis` VALUES (':bee:','qrc:/res/emojis/1f41d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f41d.png'' />','1f41d','nature');
-INSERT INTO `custom_emojis` VALUES (':beer:','qrc:/res/emojis/1f37a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f37a.png'' />','1f37a','food');
-INSERT INTO `custom_emojis` VALUES (':beers:','qrc:/res/emojis/1f37b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f37b.png'' />','1f37b','food');
-INSERT INTO `custom_emojis` VALUES (':beetle:','qrc:/res/emojis/1f41e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f41e.png'' />','1f41e','nature');
-INSERT INTO `custom_emojis` VALUES (':beginner:','qrc:/res/emojis/1f530.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f530.png'' />','1f530','symbols');
-INSERT INTO `custom_emojis` VALUES (':bell:','qrc:/res/emojis/1f514.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f514.png'' />','1f514','symbols');
-INSERT INTO `custom_emojis` VALUES (':bellhop:','qrc:/res/emojis/1f6ce.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6ce.png'' />','1f6ce','objects');
-INSERT INTO `custom_emojis` VALUES (':bento:','qrc:/res/emojis/1f371.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f371.png'' />','1f371','food');
-INSERT INTO `custom_emojis` VALUES (':bicyclist:','qrc:/res/emojis/1f6b4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b4.png'' />','1f6b4','activity');
-INSERT INTO `custom_emojis` VALUES (':bicyclist_tone1:','qrc:/res/emojis/1f6b4-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b4-1f3fb.png'' />','1f6b4-1f3fb','activity');
-INSERT INTO `custom_emojis` VALUES (':bicyclist_tone2:','qrc:/res/emojis/1f6b4-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b4-1f3fc.png'' />','1f6b4-1f3fc','activity');
-INSERT INTO `custom_emojis` VALUES (':bicyclist_tone3:','qrc:/res/emojis/1f6b4-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b4-1f3fd.png'' />','1f6b4-1f3fd','activity');
-INSERT INTO `custom_emojis` VALUES (':bicyclist_tone4:','qrc:/res/emojis/1f6b4-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b4-1f3fe.png'' />','1f6b4-1f3fe','activity');
-INSERT INTO `custom_emojis` VALUES (':bicyclist_tone5:','qrc:/res/emojis/1f6b4-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b4-1f3ff.png'' />','1f6b4-1f3ff','activity');
-INSERT INTO `custom_emojis` VALUES (':bike:','qrc:/res/emojis/1f6b2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b2.png'' />','1f6b2','travel');
-INSERT INTO `custom_emojis` VALUES (':bikini:','qrc:/res/emojis/1f459.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f459.png'' />','1f459','people');
-INSERT INTO `custom_emojis` VALUES (':biohazard:','qrc:/res/emojis/2623.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2623.png'' />','2623','symbols');
-INSERT INTO `custom_emojis` VALUES (':bird:','qrc:/res/emojis/1f426.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f426.png'' />','1f426','nature');
-INSERT INTO `custom_emojis` VALUES (':birthday:','qrc:/res/emojis/1f382.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f382.png'' />','1f382','food');
-INSERT INTO `custom_emojis` VALUES (':black_circle:','qrc:/res/emojis/26ab.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26ab.png'' />','26ab','symbols');
-INSERT INTO `custom_emojis` VALUES (':black_heart:','qrc:/res/emojis/1f5a4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5a4.png'' />','1f5a4','symbols');
-INSERT INTO `custom_emojis` VALUES (':black_joker:','qrc:/res/emojis/1f0cf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f0cf.png'' />','1f0cf','symbols');
-INSERT INTO `custom_emojis` VALUES (':black_large_square:','qrc:/res/emojis/2b1b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2b1b.png'' />','2b1b','symbols');
-INSERT INTO `custom_emojis` VALUES (':black_medium_small_square:','qrc:/res/emojis/25fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/25fe.png'' />','25fe','symbols');
-INSERT INTO `custom_emojis` VALUES (':black_medium_square:','qrc:/res/emojis/25fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/25fc.png'' />','25fc','symbols');
-INSERT INTO `custom_emojis` VALUES (':black_nib:','qrc:/res/emojis/2712.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2712.png'' />','2712','objects');
-INSERT INTO `custom_emojis` VALUES (':black_small_square:','qrc:/res/emojis/25aa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/25aa.png'' />','25aa','symbols');
-INSERT INTO `custom_emojis` VALUES (':black_square_button:','qrc:/res/emojis/1f532.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f532.png'' />','1f532','symbols');
-INSERT INTO `custom_emojis` VALUES (':blossom:','qrc:/res/emojis/1f33c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f33c.png'' />','1f33c','nature');
-INSERT INTO `custom_emojis` VALUES (':blowfish:','qrc:/res/emojis/1f421.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f421.png'' />','1f421','nature');
-INSERT INTO `custom_emojis` VALUES (':blue_book:','qrc:/res/emojis/1f4d8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d8.png'' />','1f4d8','objects');
-INSERT INTO `custom_emojis` VALUES (':blue_car:','qrc:/res/emojis/1f699.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f699.png'' />','1f699','travel');
-INSERT INTO `custom_emojis` VALUES (':blue_heart:','qrc:/res/emojis/1f499.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f499.png'' />','1f499','symbols');
-INSERT INTO `custom_emojis` VALUES (':blush:','qrc:/res/emojis/1f60a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f60a.png'' />','1f60a','people');
-INSERT INTO `custom_emojis` VALUES (':boar:','qrc:/res/emojis/1f417.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f417.png'' />','1f417','nature');
-INSERT INTO `custom_emojis` VALUES (':bomb:','qrc:/res/emojis/1f4a3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a3.png'' />','1f4a3','objects');
-INSERT INTO `custom_emojis` VALUES (':book:','qrc:/res/emojis/1f4d6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d6.png'' />','1f4d6','objects');
-INSERT INTO `custom_emojis` VALUES (':bookmark:','qrc:/res/emojis/1f516.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f516.png'' />','1f516','objects');
-INSERT INTO `custom_emojis` VALUES (':bookmark_tabs:','qrc:/res/emojis/1f4d1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d1.png'' />','1f4d1','objects');
-INSERT INTO `custom_emojis` VALUES (':books:','qrc:/res/emojis/1f4da.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4da.png'' />','1f4da','objects');
-INSERT INTO `custom_emojis` VALUES (':boom:','qrc:/res/emojis/1f4a5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a5.png'' />','1f4a5','nature');
-INSERT INTO `custom_emojis` VALUES (':boot:','qrc:/res/emojis/1f462.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f462.png'' />','1f462','people');
-INSERT INTO `custom_emojis` VALUES (':bouquet:','qrc:/res/emojis/1f490.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f490.png'' />','1f490','nature');
-INSERT INTO `custom_emojis` VALUES (':bow:','qrc:/res/emojis/1f647.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f647.png'' />','1f647','people');
-INSERT INTO `custom_emojis` VALUES (':bow_and_arrow:','qrc:/res/emojis/1f3f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3f9.png'' />','1f3f9','activity');
-INSERT INTO `custom_emojis` VALUES (':bow_tone1:','qrc:/res/emojis/1f647-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f647-1f3fb.png'' />','1f647-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':bow_tone2:','qrc:/res/emojis/1f647-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f647-1f3fc.png'' />','1f647-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':bow_tone3:','qrc:/res/emojis/1f647-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f647-1f3fd.png'' />','1f647-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':bow_tone4:','qrc:/res/emojis/1f647-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f647-1f3fe.png'' />','1f647-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':bow_tone5:','qrc:/res/emojis/1f647-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f647-1f3ff.png'' />','1f647-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':bowling:','qrc:/res/emojis/1f3b3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b3.png'' />','1f3b3','activity');
-INSERT INTO `custom_emojis` VALUES (':boxing_glove:','qrc:/res/emojis/1f94a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f94a.png'' />','1f94a','activity');
-INSERT INTO `custom_emojis` VALUES (':boy:','qrc:/res/emojis/1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f466.png'' />','1f466','people');
-INSERT INTO `custom_emojis` VALUES (':boy_tone1:','qrc:/res/emojis/1f466-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f466-1f3fb.png'' />','1f466-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':boy_tone2:','qrc:/res/emojis/1f466-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f466-1f3fc.png'' />','1f466-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':boy_tone3:','qrc:/res/emojis/1f466-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f466-1f3fd.png'' />','1f466-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':boy_tone4:','qrc:/res/emojis/1f466-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f466-1f3fe.png'' />','1f466-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':boy_tone5:','qrc:/res/emojis/1f466-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f466-1f3ff.png'' />','1f466-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':bread:','qrc:/res/emojis/1f35e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f35e.png'' />','1f35e','food');
-INSERT INTO `custom_emojis` VALUES (':bride_with_veil:','qrc:/res/emojis/1f470.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f470.png'' />','1f470','people');
-INSERT INTO `custom_emojis` VALUES (':bride_with_veil_tone1:','qrc:/res/emojis/1f470-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f470-1f3fb.png'' />','1f470-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':bride_with_veil_tone2:','qrc:/res/emojis/1f470-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f470-1f3fc.png'' />','1f470-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':bride_with_veil_tone3:','qrc:/res/emojis/1f470-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f470-1f3fd.png'' />','1f470-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':bride_with_veil_tone4:','qrc:/res/emojis/1f470-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f470-1f3fe.png'' />','1f470-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':bride_with_veil_tone5:','qrc:/res/emojis/1f470-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f470-1f3ff.png'' />','1f470-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':bridge_at_night:','qrc:/res/emojis/1f309.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f309.png'' />','1f309','travel');
-INSERT INTO `custom_emojis` VALUES (':briefcase:','qrc:/res/emojis/1f4bc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4bc.png'' />','1f4bc','people');
-INSERT INTO `custom_emojis` VALUES (':broken_heart:','qrc:/res/emojis/1f494.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f494.png'' />','1f494','symbols');
-INSERT INTO `custom_emojis` VALUES (':bug:','qrc:/res/emojis/1f41b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f41b.png'' />','1f41b','nature');
-INSERT INTO `custom_emojis` VALUES (':bulb:','qrc:/res/emojis/1f4a1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a1.png'' />','1f4a1','objects');
-INSERT INTO `custom_emojis` VALUES (':bullettrain_front:','qrc:/res/emojis/1f685.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f685.png'' />','1f685','travel');
-INSERT INTO `custom_emojis` VALUES (':bullettrain_side:','qrc:/res/emojis/1f684.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f684.png'' />','1f684','travel');
-INSERT INTO `custom_emojis` VALUES (':burrito:','qrc:/res/emojis/1f32f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f32f.png'' />','1f32f','food');
-INSERT INTO `custom_emojis` VALUES (':bus:','qrc:/res/emojis/1f68c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f68c.png'' />','1f68c','travel');
-INSERT INTO `custom_emojis` VALUES (':busstop:','qrc:/res/emojis/1f68f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f68f.png'' />','1f68f','travel');
-INSERT INTO `custom_emojis` VALUES (':bust_in_silhouette:','qrc:/res/emojis/1f464.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f464.png'' />','1f464','people');
-INSERT INTO `custom_emojis` VALUES (':busts_in_silhouette:','qrc:/res/emojis/1f465.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f465.png'' />','1f465','people');
-INSERT INTO `custom_emojis` VALUES (':butterfly:','qrc:/res/emojis/1f98b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f98b.png'' />','1f98b','nature');
-INSERT INTO `custom_emojis` VALUES (':cactus:','qrc:/res/emojis/1f335.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f335.png'' />','1f335','nature');
-INSERT INTO `custom_emojis` VALUES (':cake:','qrc:/res/emojis/1f370.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f370.png'' />','1f370','food');
-INSERT INTO `custom_emojis` VALUES (':calendar:','qrc:/res/emojis/1f4c6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c6.png'' />','1f4c6','objects');
-INSERT INTO `custom_emojis` VALUES (':calendar_spiral:','qrc:/res/emojis/1f5d3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5d3.png'' />','1f5d3','objects');
-INSERT INTO `custom_emojis` VALUES (':call_me:','qrc:/res/emojis/1f919.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f919.png'' />','1f919','people');
-INSERT INTO `custom_emojis` VALUES (':call_me_tone1:','qrc:/res/emojis/1f919-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f919-1f3fb.png'' />','1f919-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':call_me_tone2:','qrc:/res/emojis/1f919-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f919-1f3fc.png'' />','1f919-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':call_me_tone3:','qrc:/res/emojis/1f919-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f919-1f3fd.png'' />','1f919-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':call_me_tone4:','qrc:/res/emojis/1f919-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f919-1f3fe.png'' />','1f919-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':call_me_tone5:','qrc:/res/emojis/1f919-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f919-1f3ff.png'' />','1f919-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':calling:','qrc:/res/emojis/1f4f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f2.png'' />','1f4f2','objects');
-INSERT INTO `custom_emojis` VALUES (':camel:','qrc:/res/emojis/1f42b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f42b.png'' />','1f42b','nature');
-INSERT INTO `custom_emojis` VALUES (':camera:','qrc:/res/emojis/1f4f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f7.png'' />','1f4f7','objects');
-INSERT INTO `custom_emojis` VALUES (':camera_with_flash:','qrc:/res/emojis/1f4f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f8.png'' />','1f4f8','objects');
-INSERT INTO `custom_emojis` VALUES (':camping:','qrc:/res/emojis/1f3d5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d5.png'' />','1f3d5','travel');
-INSERT INTO `custom_emojis` VALUES (':cancer:','qrc:/res/emojis/264b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/264b.png'' />','264b','symbols');
-INSERT INTO `custom_emojis` VALUES (':candle:','qrc:/res/emojis/1f56f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f56f.png'' />','1f56f','objects');
-INSERT INTO `custom_emojis` VALUES (':candy:','qrc:/res/emojis/1f36c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f36c.png'' />','1f36c','food');
-INSERT INTO `custom_emojis` VALUES (':canoe:','qrc:/res/emojis/1f6f6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6f6.png'' />','1f6f6','travel');
-INSERT INTO `custom_emojis` VALUES (':capital_abcd:','qrc:/res/emojis/1f520.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f520.png'' />','1f520','symbols');
-INSERT INTO `custom_emojis` VALUES (':capricorn:','qrc:/res/emojis/2651.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2651.png'' />','2651','symbols');
-INSERT INTO `custom_emojis` VALUES (':card_box:','qrc:/res/emojis/1f5c3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5c3.png'' />','1f5c3','objects');
-INSERT INTO `custom_emojis` VALUES (':card_index:','qrc:/res/emojis/1f4c7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c7.png'' />','1f4c7','objects');
-INSERT INTO `custom_emojis` VALUES (':carousel_horse:','qrc:/res/emojis/1f3a0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a0.png'' />','1f3a0','travel');
-INSERT INTO `custom_emojis` VALUES (':carrot:','qrc:/res/emojis/1f955.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f955.png'' />','1f955','food');
-INSERT INTO `custom_emojis` VALUES (':cartwheel:','qrc:/res/emojis/1f938.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f938.png'' />','1f938','activity');
-INSERT INTO `custom_emojis` VALUES (':cartwheel_tone1:','qrc:/res/emojis/1f938-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f938-1f3fb.png'' />','1f938-1f3fb','activity');
-INSERT INTO `custom_emojis` VALUES (':cartwheel_tone2:','qrc:/res/emojis/1f938-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f938-1f3fc.png'' />','1f938-1f3fc','activity');
-INSERT INTO `custom_emojis` VALUES (':cartwheel_tone3:','qrc:/res/emojis/1f938-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f938-1f3fd.png'' />','1f938-1f3fd','activity');
-INSERT INTO `custom_emojis` VALUES (':cartwheel_tone4:','qrc:/res/emojis/1f938-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f938-1f3fe.png'' />','1f938-1f3fe','activity');
-INSERT INTO `custom_emojis` VALUES (':cartwheel_tone5:','qrc:/res/emojis/1f938-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f938-1f3ff.png'' />','1f938-1f3ff','activity');
-INSERT INTO `custom_emojis` VALUES (':cat:','qrc:/res/emojis/1f431.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f431.png'' />','1f431','nature');
-INSERT INTO `custom_emojis` VALUES (':cat2:','qrc:/res/emojis/1f408.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f408.png'' />','1f408','nature');
-INSERT INTO `custom_emojis` VALUES (':cd:','qrc:/res/emojis/1f4bf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4bf.png'' />','1f4bf','objects');
-INSERT INTO `custom_emojis` VALUES (':chains:','qrc:/res/emojis/26d3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26d3.png'' />','26d3','objects');
-INSERT INTO `custom_emojis` VALUES (':champagne:','qrc:/res/emojis/1f37e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f37e.png'' />','1f37e','food');
-INSERT INTO `custom_emojis` VALUES (':champagne_glass:','qrc:/res/emojis/1f942.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f942.png'' />','1f942','food');
-INSERT INTO `custom_emojis` VALUES (':chart:','qrc:/res/emojis/1f4b9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b9.png'' />','1f4b9','symbols');
-INSERT INTO `custom_emojis` VALUES (':chart_with_downwards_trend:','qrc:/res/emojis/1f4c9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c9.png'' />','1f4c9','objects');
-INSERT INTO `custom_emojis` VALUES (':chart_with_upwards_trend:','qrc:/res/emojis/1f4c8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c8.png'' />','1f4c8','objects');
-INSERT INTO `custom_emojis` VALUES (':checkered_flag:','qrc:/res/emojis/1f3c1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c1.png'' />','1f3c1','travel');
-INSERT INTO `custom_emojis` VALUES (':cheese:','qrc:/res/emojis/1f9c0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f9c0.png'' />','1f9c0','food');
-INSERT INTO `custom_emojis` VALUES (':cherries:','qrc:/res/emojis/1f352.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f352.png'' />','1f352','food');
-INSERT INTO `custom_emojis` VALUES (':cherry_blossom:','qrc:/res/emojis/1f338.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f338.png'' />','1f338','nature');
-INSERT INTO `custom_emojis` VALUES (':chestnut:','qrc:/res/emojis/1f330.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f330.png'' />','1f330','nature');
-INSERT INTO `custom_emojis` VALUES (':chicken:','qrc:/res/emojis/1f414.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f414.png'' />','1f414','nature');
-INSERT INTO `custom_emojis` VALUES (':children_crossing:','qrc:/res/emojis/1f6b8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b8.png'' />','1f6b8','symbols');
-INSERT INTO `custom_emojis` VALUES (':chipmunk:','qrc:/res/emojis/1f43f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f43f.png'' />','1f43f','nature');
-INSERT INTO `custom_emojis` VALUES (':chocolate_bar:','qrc:/res/emojis/1f36b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f36b.png'' />','1f36b','food');
-INSERT INTO `custom_emojis` VALUES (':christmas_tree:','qrc:/res/emojis/1f384.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f384.png'' />','1f384','nature');
-INSERT INTO `custom_emojis` VALUES (':church:','qrc:/res/emojis/26ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26ea.png'' />','26ea','travel');
-INSERT INTO `custom_emojis` VALUES (':cinema:','qrc:/res/emojis/1f3a6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a6.png'' />','1f3a6','symbols');
-INSERT INTO `custom_emojis` VALUES (':circus_tent:','qrc:/res/emojis/1f3aa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3aa.png'' />','1f3aa','activity');
-INSERT INTO `custom_emojis` VALUES (':city_dusk:','qrc:/res/emojis/1f306.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f306.png'' />','1f306','travel');
-INSERT INTO `custom_emojis` VALUES (':city_sunset:','qrc:/res/emojis/1f307.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f307.png'' />','1f307','travel');
-INSERT INTO `custom_emojis` VALUES (':cityscape:','qrc:/res/emojis/1f3d9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d9.png'' />','1f3d9','travel');
-INSERT INTO `custom_emojis` VALUES (':cl:','qrc:/res/emojis/1f191.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f191.png'' />','1f191','symbols');
-INSERT INTO `custom_emojis` VALUES (':clap:','qrc:/res/emojis/1f44f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44f.png'' />','1f44f','people');
-INSERT INTO `custom_emojis` VALUES (':clap_tone1:','qrc:/res/emojis/1f44f-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44f-1f3fb.png'' />','1f44f-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':clap_tone2:','qrc:/res/emojis/1f44f-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44f-1f3fc.png'' />','1f44f-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':clap_tone3:','qrc:/res/emojis/1f44f-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44f-1f3fd.png'' />','1f44f-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':clap_tone4:','qrc:/res/emojis/1f44f-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44f-1f3fe.png'' />','1f44f-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':clap_tone5:','qrc:/res/emojis/1f44f-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44f-1f3ff.png'' />','1f44f-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':clapper:','qrc:/res/emojis/1f3ac.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ac.png'' />','1f3ac','activity');
-INSERT INTO `custom_emojis` VALUES (':classical_building:','qrc:/res/emojis/1f3db.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3db.png'' />','1f3db','travel');
-INSERT INTO `custom_emojis` VALUES (':clipboard:','qrc:/res/emojis/1f4cb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4cb.png'' />','1f4cb','objects');
-INSERT INTO `custom_emojis` VALUES (':clock:','qrc:/res/emojis/1f570.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f570.png'' />','1f570','objects');
-INSERT INTO `custom_emojis` VALUES (':clock1:','qrc:/res/emojis/1f550.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f550.png'' />','1f550','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock10:','qrc:/res/emojis/1f559.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f559.png'' />','1f559','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock1030:','qrc:/res/emojis/1f565.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f565.png'' />','1f565','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock11:','qrc:/res/emojis/1f55a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f55a.png'' />','1f55a','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock1130:','qrc:/res/emojis/1f566.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f566.png'' />','1f566','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock12:','qrc:/res/emojis/1f55b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f55b.png'' />','1f55b','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock1230:','qrc:/res/emojis/1f567.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f567.png'' />','1f567','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock130:','qrc:/res/emojis/1f55c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f55c.png'' />','1f55c','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock2:','qrc:/res/emojis/1f551.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f551.png'' />','1f551','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock230:','qrc:/res/emojis/1f55d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f55d.png'' />','1f55d','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock3:','qrc:/res/emojis/1f552.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f552.png'' />','1f552','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock330:','qrc:/res/emojis/1f55e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f55e.png'' />','1f55e','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock4:','qrc:/res/emojis/1f553.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f553.png'' />','1f553','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock430:','qrc:/res/emojis/1f55f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f55f.png'' />','1f55f','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock5:','qrc:/res/emojis/1f554.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f554.png'' />','1f554','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock530:','qrc:/res/emojis/1f560.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f560.png'' />','1f560','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock6:','qrc:/res/emojis/1f555.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f555.png'' />','1f555','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock630:','qrc:/res/emojis/1f561.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f561.png'' />','1f561','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock7:','qrc:/res/emojis/1f556.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f556.png'' />','1f556','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock730:','qrc:/res/emojis/1f562.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f562.png'' />','1f562','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock8:','qrc:/res/emojis/1f557.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f557.png'' />','1f557','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock830:','qrc:/res/emojis/1f563.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f563.png'' />','1f563','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock9:','qrc:/res/emojis/1f558.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f558.png'' />','1f558','symbols');
-INSERT INTO `custom_emojis` VALUES (':clock930:','qrc:/res/emojis/1f564.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f564.png'' />','1f564','symbols');
-INSERT INTO `custom_emojis` VALUES (':closed_book:','qrc:/res/emojis/1f4d5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d5.png'' />','1f4d5','objects');
-INSERT INTO `custom_emojis` VALUES (':closed_lock_with_key:','qrc:/res/emojis/1f510.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f510.png'' />','1f510','objects');
-INSERT INTO `custom_emojis` VALUES (':closed_umbrella:','qrc:/res/emojis/1f302.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f302.png'' />','1f302','people');
-INSERT INTO `custom_emojis` VALUES (':cloud:','qrc:/res/emojis/2601.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2601.png'' />','2601','nature');
-INSERT INTO `custom_emojis` VALUES (':cloud_lightning:','qrc:/res/emojis/1f329.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f329.png'' />','1f329','nature');
-INSERT INTO `custom_emojis` VALUES (':cloud_rain:','qrc:/res/emojis/1f327.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f327.png'' />','1f327','nature');
-INSERT INTO `custom_emojis` VALUES (':cloud_snow:','qrc:/res/emojis/1f328.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f328.png'' />','1f328','nature');
-INSERT INTO `custom_emojis` VALUES (':cloud_tornado:','qrc:/res/emojis/1f32a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f32a.png'' />','1f32a','nature');
-INSERT INTO `custom_emojis` VALUES (':clown:','qrc:/res/emojis/1f921.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f921.png'' />','1f921','people');
-INSERT INTO `custom_emojis` VALUES (':clubs:','qrc:/res/emojis/2663.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2663.png'' />','2663','symbols');
-INSERT INTO `custom_emojis` VALUES (':cocktail:','qrc:/res/emojis/1f378.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f378.png'' />','1f378','food');
-INSERT INTO `custom_emojis` VALUES (':coffee:','qrc:/res/emojis/2615.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2615.png'' />','2615','food');
-INSERT INTO `custom_emojis` VALUES (':coffin:','qrc:/res/emojis/26b0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26b0.png'' />','26b0','objects');
-INSERT INTO `custom_emojis` VALUES (':cold_sweat:','qrc:/res/emojis/1f630.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f630.png'' />','1f630','people');
-INSERT INTO `custom_emojis` VALUES (':comet:','qrc:/res/emojis/2604.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2604.png'' />','2604','nature');
-INSERT INTO `custom_emojis` VALUES (':compression:','qrc:/res/emojis/1f5dc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5dc.png'' />','1f5dc','objects');
-INSERT INTO `custom_emojis` VALUES (':computer:','qrc:/res/emojis/1f4bb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4bb.png'' />','1f4bb','objects');
-INSERT INTO `custom_emojis` VALUES (':confetti_ball:','qrc:/res/emojis/1f38a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f38a.png'' />','1f38a','objects');
-INSERT INTO `custom_emojis` VALUES (':confounded:','qrc:/res/emojis/1f616.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f616.png'' />','1f616','people');
-INSERT INTO `custom_emojis` VALUES (':confused:','qrc:/res/emojis/1f615.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f615.png'' />','1f615','people');
-INSERT INTO `custom_emojis` VALUES (':congratulations:','qrc:/res/emojis/3297.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/3297.png'' />','3297','symbols');
-INSERT INTO `custom_emojis` VALUES (':construction:','qrc:/res/emojis/1f6a7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a7.png'' />','1f6a7','travel');
-INSERT INTO `custom_emojis` VALUES (':construction_site:','qrc:/res/emojis/1f3d7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d7.png'' />','1f3d7','travel');
-INSERT INTO `custom_emojis` VALUES (':construction_worker:','qrc:/res/emojis/1f477.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f477.png'' />','1f477','people');
-INSERT INTO `custom_emojis` VALUES (':construction_worker_tone1:','qrc:/res/emojis/1f477-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f477-1f3fb.png'' />','1f477-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':construction_worker_tone2:','qrc:/res/emojis/1f477-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f477-1f3fc.png'' />','1f477-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':construction_worker_tone3:','qrc:/res/emojis/1f477-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f477-1f3fd.png'' />','1f477-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':construction_worker_tone4:','qrc:/res/emojis/1f477-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f477-1f3fe.png'' />','1f477-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':construction_worker_tone5:','qrc:/res/emojis/1f477-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f477-1f3ff.png'' />','1f477-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':control_knobs:','qrc:/res/emojis/1f39b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f39b.png'' />','1f39b','objects');
-INSERT INTO `custom_emojis` VALUES (':convenience_store:','qrc:/res/emojis/1f3ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ea.png'' />','1f3ea','travel');
-INSERT INTO `custom_emojis` VALUES (':cookie:','qrc:/res/emojis/1f36a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f36a.png'' />','1f36a','food');
-INSERT INTO `custom_emojis` VALUES (':cooking:','qrc:/res/emojis/1f373.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f373.png'' />','1f373','food');
-INSERT INTO `custom_emojis` VALUES (':cool:','qrc:/res/emojis/1f192.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f192.png'' />','1f192','symbols');
-INSERT INTO `custom_emojis` VALUES (':cop:','qrc:/res/emojis/1f46e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46e.png'' />','1f46e','people');
-INSERT INTO `custom_emojis` VALUES (':cop_tone1:','qrc:/res/emojis/1f46e-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46e-1f3fb.png'' />','1f46e-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':cop_tone2:','qrc:/res/emojis/1f46e-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46e-1f3fc.png'' />','1f46e-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':cop_tone3:','qrc:/res/emojis/1f46e-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46e-1f3fd.png'' />','1f46e-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':cop_tone4:','qrc:/res/emojis/1f46e-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46e-1f3fe.png'' />','1f46e-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':cop_tone5:','qrc:/res/emojis/1f46e-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46e-1f3ff.png'' />','1f46e-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':copyright:','qrc:/res/emojis/00a9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/00a9.png'' />','00a9','symbols');
-INSERT INTO `custom_emojis` VALUES (':corn:','qrc:/res/emojis/1f33d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f33d.png'' />','1f33d','food');
-INSERT INTO `custom_emojis` VALUES (':couch:','qrc:/res/emojis/1f6cb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6cb.png'' />','1f6cb','objects');
-INSERT INTO `custom_emojis` VALUES (':couple:','qrc:/res/emojis/1f46b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46b.png'' />','1f46b','people');
-INSERT INTO `custom_emojis` VALUES (':couple_mm:','qrc:/res/emojis/1f468-2764-1f468.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-2764-1f468.png'' />','1f468-2764-1f468','people');
-INSERT INTO `custom_emojis` VALUES (':couple_with_heart:','qrc:/res/emojis/1f491.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f491.png'' />','1f491','people');
-INSERT INTO `custom_emojis` VALUES (':couple_ww:','qrc:/res/emojis/1f469-2764-1f469.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-2764-1f469.png'' />','1f469-2764-1f469','people');
-INSERT INTO `custom_emojis` VALUES (':couplekiss:','qrc:/res/emojis/1f48f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f48f.png'' />','1f48f','people');
-INSERT INTO `custom_emojis` VALUES (':cow:','qrc:/res/emojis/1f42e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f42e.png'' />','1f42e','nature');
-INSERT INTO `custom_emojis` VALUES (':cow2:','qrc:/res/emojis/1f404.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f404.png'' />','1f404','nature');
-INSERT INTO `custom_emojis` VALUES (':cowboy:','qrc:/res/emojis/1f920.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f920.png'' />','1f920','people');
-INSERT INTO `custom_emojis` VALUES (':crab:','qrc:/res/emojis/1f980.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f980.png'' />','1f980','nature');
-INSERT INTO `custom_emojis` VALUES (':crayon:','qrc:/res/emojis/1f58d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f58d.png'' />','1f58d','objects');
-INSERT INTO `custom_emojis` VALUES (':credit_card:','qrc:/res/emojis/1f4b3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b3.png'' />','1f4b3','objects');
-INSERT INTO `custom_emojis` VALUES (':crescent_moon:','qrc:/res/emojis/1f319.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f319.png'' />','1f319','nature');
-INSERT INTO `custom_emojis` VALUES (':cricket:','qrc:/res/emojis/1f3cf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cf.png'' />','1f3cf','activity');
-INSERT INTO `custom_emojis` VALUES (':crocodile:','qrc:/res/emojis/1f40a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f40a.png'' />','1f40a','nature');
-INSERT INTO `custom_emojis` VALUES (':croissant:','qrc:/res/emojis/1f950.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f950.png'' />','1f950','food');
-INSERT INTO `custom_emojis` VALUES (':cross:','qrc:/res/emojis/271d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/271d.png'' />','271d','symbols');
-INSERT INTO `custom_emojis` VALUES (':crossed_flags:','qrc:/res/emojis/1f38c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f38c.png'' />','1f38c','objects');
-INSERT INTO `custom_emojis` VALUES (':crossed_swords:','qrc:/res/emojis/2694.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2694.png'' />','2694','objects');
-INSERT INTO `custom_emojis` VALUES (':crown:','qrc:/res/emojis/1f451.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f451.png'' />','1f451','people');
-INSERT INTO `custom_emojis` VALUES (':cruise_ship:','qrc:/res/emojis/1f6f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6f3.png'' />','1f6f3','travel');
-INSERT INTO `custom_emojis` VALUES (':cry:','qrc:/res/emojis/1f622.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f622.png'' />','1f622','people');
-INSERT INTO `custom_emojis` VALUES (':crying_cat_face:','qrc:/res/emojis/1f63f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f63f.png'' />','1f63f','people');
-INSERT INTO `custom_emojis` VALUES (':crystal_ball:','qrc:/res/emojis/1f52e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f52e.png'' />','1f52e','objects');
-INSERT INTO `custom_emojis` VALUES (':cucumber:','qrc:/res/emojis/1f952.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f952.png'' />','1f952','food');
-INSERT INTO `custom_emojis` VALUES (':cupid:','qrc:/res/emojis/1f498.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f498.png'' />','1f498','symbols');
-INSERT INTO `custom_emojis` VALUES (':curly_loop:','qrc:/res/emojis/27b0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/27b0.png'' />','27b0','symbols');
-INSERT INTO `custom_emojis` VALUES (':currency_exchange:','qrc:/res/emojis/1f4b1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b1.png'' />','1f4b1','symbols');
-INSERT INTO `custom_emojis` VALUES (':curry:','qrc:/res/emojis/1f35b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f35b.png'' />','1f35b','food');
-INSERT INTO `custom_emojis` VALUES (':custard:','qrc:/res/emojis/1f36e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f36e.png'' />','1f36e','food');
-INSERT INTO `custom_emojis` VALUES (':customs:','qrc:/res/emojis/1f6c3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c3.png'' />','1f6c3','symbols');
-INSERT INTO `custom_emojis` VALUES (':cyclone:','qrc:/res/emojis/1f300.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f300.png'' />','1f300','symbols');
-INSERT INTO `custom_emojis` VALUES (':dagger:','qrc:/res/emojis/1f5e1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5e1.png'' />','1f5e1','objects');
-INSERT INTO `custom_emojis` VALUES (':dancer:','qrc:/res/emojis/1f483.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f483.png'' />','1f483','people');
-INSERT INTO `custom_emojis` VALUES (':dancer_tone1:','qrc:/res/emojis/1f483-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f483-1f3fb.png'' />','1f483-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':dancer_tone2:','qrc:/res/emojis/1f483-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f483-1f3fc.png'' />','1f483-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':dancer_tone3:','qrc:/res/emojis/1f483-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f483-1f3fd.png'' />','1f483-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':dancer_tone4:','qrc:/res/emojis/1f483-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f483-1f3fe.png'' />','1f483-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':dancer_tone5:','qrc:/res/emojis/1f483-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f483-1f3ff.png'' />','1f483-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':dancers:','qrc:/res/emojis/1f46f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46f.png'' />','1f46f','people');
-INSERT INTO `custom_emojis` VALUES (':dango:','qrc:/res/emojis/1f361.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f361.png'' />','1f361','food');
-INSERT INTO `custom_emojis` VALUES (':dark_sunglasses:','qrc:/res/emojis/1f576.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f576.png'' />','1f576','people');
-INSERT INTO `custom_emojis` VALUES (':dart:','qrc:/res/emojis/1f3af.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3af.png'' />','1f3af','activity');
-INSERT INTO `custom_emojis` VALUES (':dash:','qrc:/res/emojis/1f4a8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a8.png'' />','1f4a8','nature');
-INSERT INTO `custom_emojis` VALUES (':date:','qrc:/res/emojis/1f4c5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c5.png'' />','1f4c5','objects');
-INSERT INTO `custom_emojis` VALUES (':deciduous_tree:','qrc:/res/emojis/1f333.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f333.png'' />','1f333','nature');
-INSERT INTO `custom_emojis` VALUES (':deer:','qrc:/res/emojis/1f98c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f98c.png'' />','1f98c','nature');
-INSERT INTO `custom_emojis` VALUES (':department_store:','qrc:/res/emojis/1f3ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ec.png'' />','1f3ec','travel');
-INSERT INTO `custom_emojis` VALUES (':desert:','qrc:/res/emojis/1f3dc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3dc.png'' />','1f3dc','travel');
-INSERT INTO `custom_emojis` VALUES (':desktop:','qrc:/res/emojis/1f5a5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5a5.png'' />','1f5a5','objects');
-INSERT INTO `custom_emojis` VALUES (':diamond_shape_with_a_dot_inside:','qrc:/res/emojis/1f4a0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a0.png'' />','1f4a0','symbols');
-INSERT INTO `custom_emojis` VALUES (':diamonds:','qrc:/res/emojis/2666.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2666.png'' />','2666','symbols');
-INSERT INTO `custom_emojis` VALUES (':disappointed:','qrc:/res/emojis/1f61e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f61e.png'' />','1f61e','people');
-INSERT INTO `custom_emojis` VALUES (':disappointed_relieved:','qrc:/res/emojis/1f625.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f625.png'' />','1f625','people');
-INSERT INTO `custom_emojis` VALUES (':dividers:','qrc:/res/emojis/1f5c2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5c2.png'' />','1f5c2','objects');
-INSERT INTO `custom_emojis` VALUES (':dizzy:','qrc:/res/emojis/1f4ab.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ab.png'' />','1f4ab','nature');
-INSERT INTO `custom_emojis` VALUES (':dizzy_face:','qrc:/res/emojis/1f635.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f635.png'' />','1f635','people');
-INSERT INTO `custom_emojis` VALUES (':do_not_litter:','qrc:/res/emojis/1f6af.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6af.png'' />','1f6af','symbols');
-INSERT INTO `custom_emojis` VALUES (':dog:','qrc:/res/emojis/1f436.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f436.png'' />','1f436','nature');
-INSERT INTO `custom_emojis` VALUES (':dog2:','qrc:/res/emojis/1f415.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f415.png'' />','1f415','nature');
-INSERT INTO `custom_emojis` VALUES (':dollar:','qrc:/res/emojis/1f4b5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b5.png'' />','1f4b5','objects');
-INSERT INTO `custom_emojis` VALUES (':dolls:','qrc:/res/emojis/1f38e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f38e.png'' />','1f38e','objects');
-INSERT INTO `custom_emojis` VALUES (':dolphin:','qrc:/res/emojis/1f42c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f42c.png'' />','1f42c','nature');
-INSERT INTO `custom_emojis` VALUES (':door:','qrc:/res/emojis/1f6aa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6aa.png'' />','1f6aa','objects');
-INSERT INTO `custom_emojis` VALUES (':doughnut:','qrc:/res/emojis/1f369.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f369.png'' />','1f369','food');
-INSERT INTO `custom_emojis` VALUES (':dove:','qrc:/res/emojis/1f54a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f54a.png'' />','1f54a','nature');
-INSERT INTO `custom_emojis` VALUES (':dragon:','qrc:/res/emojis/1f409.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f409.png'' />','1f409','nature');
-INSERT INTO `custom_emojis` VALUES (':dragon_face:','qrc:/res/emojis/1f432.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f432.png'' />','1f432','nature');
-INSERT INTO `custom_emojis` VALUES (':dress:','qrc:/res/emojis/1f457.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f457.png'' />','1f457','people');
-INSERT INTO `custom_emojis` VALUES (':dromedary_camel:','qrc:/res/emojis/1f42a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f42a.png'' />','1f42a','nature');
-INSERT INTO `custom_emojis` VALUES (':drooling_face:','qrc:/res/emojis/1f924.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f924.png'' />','1f924','people');
-INSERT INTO `custom_emojis` VALUES (':droplet:','qrc:/res/emojis/1f4a7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a7.png'' />','1f4a7','nature');
-INSERT INTO `custom_emojis` VALUES (':drum:','qrc:/res/emojis/1f941.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f941.png'' />','1f941','activity');
-INSERT INTO `custom_emojis` VALUES (':duck:','qrc:/res/emojis/1f986.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f986.png'' />','1f986','nature');
-INSERT INTO `custom_emojis` VALUES (':dvd:','qrc:/res/emojis/1f4c0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c0.png'' />','1f4c0','objects');
-INSERT INTO `custom_emojis` VALUES (':e-mail:','qrc:/res/emojis/1f4e7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e7.png'' />','1f4e7','objects');
-INSERT INTO `custom_emojis` VALUES (':eagle:','qrc:/res/emojis/1f985.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f985.png'' />','1f985','nature');
-INSERT INTO `custom_emojis` VALUES (':ear:','qrc:/res/emojis/1f442.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f442.png'' />','1f442','people');
-INSERT INTO `custom_emojis` VALUES (':ear_of_rice:','qrc:/res/emojis/1f33e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f33e.png'' />','1f33e','nature');
-INSERT INTO `custom_emojis` VALUES (':ear_tone1:','qrc:/res/emojis/1f442-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f442-1f3fb.png'' />','1f442-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':ear_tone2:','qrc:/res/emojis/1f442-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f442-1f3fc.png'' />','1f442-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':ear_tone3:','qrc:/res/emojis/1f442-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f442-1f3fd.png'' />','1f442-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':ear_tone4:','qrc:/res/emojis/1f442-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f442-1f3fe.png'' />','1f442-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':ear_tone5:','qrc:/res/emojis/1f442-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f442-1f3ff.png'' />','1f442-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':earth_africa:','qrc:/res/emojis/1f30d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f30d.png'' />','1f30d','nature');
-INSERT INTO `custom_emojis` VALUES (':earth_americas:','qrc:/res/emojis/1f30e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f30e.png'' />','1f30e','nature');
-INSERT INTO `custom_emojis` VALUES (':earth_asia:','qrc:/res/emojis/1f30f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f30f.png'' />','1f30f','nature');
-INSERT INTO `custom_emojis` VALUES (':egg:','qrc:/res/emojis/1f95a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f95a.png'' />','1f95a','food');
-INSERT INTO `custom_emojis` VALUES (':eggplant:','qrc:/res/emojis/1f346.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f346.png'' />','1f346','food');
-INSERT INTO `custom_emojis` VALUES (':eight:','qrc:/res/emojis/0038-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0038-20e3.png'' />','0038-20e3','symbols');
-INSERT INTO `custom_emojis` VALUES (':eight_pointed_black_star:','qrc:/res/emojis/2734.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2734.png'' />','2734','symbols');
-INSERT INTO `custom_emojis` VALUES (':eight_spoked_asterisk:','qrc:/res/emojis/2733.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2733.png'' />','2733','symbols');
-INSERT INTO `custom_emojis` VALUES (':eject:','qrc:/res/emojis/23cf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23cf.png'' />','23cf','symbols');
-INSERT INTO `custom_emojis` VALUES (':electric_plug:','qrc:/res/emojis/1f50c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f50c.png'' />','1f50c','objects');
-INSERT INTO `custom_emojis` VALUES (':elephant:','qrc:/res/emojis/1f418.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f418.png'' />','1f418','nature');
-INSERT INTO `custom_emojis` VALUES (':end:','qrc:/res/emojis/1f51a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f51a.png'' />','1f51a','symbols');
-INSERT INTO `custom_emojis` VALUES (':envelope:','qrc:/res/emojis/2709.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2709.png'' />','2709','objects');
-INSERT INTO `custom_emojis` VALUES (':envelope_with_arrow:','qrc:/res/emojis/1f4e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e9.png'' />','1f4e9','objects');
-INSERT INTO `custom_emojis` VALUES (':euro:','qrc:/res/emojis/1f4b6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b6.png'' />','1f4b6','objects');
-INSERT INTO `custom_emojis` VALUES (':european_castle:','qrc:/res/emojis/1f3f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3f0.png'' />','1f3f0','travel');
-INSERT INTO `custom_emojis` VALUES (':european_post_office:','qrc:/res/emojis/1f3e4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e4.png'' />','1f3e4','travel');
-INSERT INTO `custom_emojis` VALUES (':evergreen_tree:','qrc:/res/emojis/1f332.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f332.png'' />','1f332','nature');
-INSERT INTO `custom_emojis` VALUES (':exclamation:','qrc:/res/emojis/2757.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2757.png'' />','2757','symbols');
-INSERT INTO `custom_emojis` VALUES (':expressionless:','qrc:/res/emojis/1f611.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f611.png'' />','1f611','people');
-INSERT INTO `custom_emojis` VALUES (':eye:','qrc:/res/emojis/1f441.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f441.png'' />','1f441','people');
-INSERT INTO `custom_emojis` VALUES (':eye_in_speech_bubble:','qrc:/res/emojis/1f441-1f5e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f441-1f5e8.png'' />','1f441-1f5e8','symbols');
-INSERT INTO `custom_emojis` VALUES (':eyeglasses:','qrc:/res/emojis/1f453.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f453.png'' />','1f453','people');
-INSERT INTO `custom_emojis` VALUES (':eyes:','qrc:/res/emojis/1f440.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f440.png'' />','1f440','people');
-INSERT INTO `custom_emojis` VALUES (':face_palm:','qrc:/res/emojis/1f926.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f926.png'' />','1f926','people');
-INSERT INTO `custom_emojis` VALUES (':face_palm_tone1:','qrc:/res/emojis/1f926-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f926-1f3fb.png'' />','1f926-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':face_palm_tone2:','qrc:/res/emojis/1f926-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f926-1f3fc.png'' />','1f926-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':face_palm_tone3:','qrc:/res/emojis/1f926-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f926-1f3fd.png'' />','1f926-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':face_palm_tone4:','qrc:/res/emojis/1f926-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f926-1f3fe.png'' />','1f926-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':face_palm_tone5:','qrc:/res/emojis/1f926-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f926-1f3ff.png'' />','1f926-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':factory:','qrc:/res/emojis/1f3ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ed.png'' />','1f3ed','travel');
-INSERT INTO `custom_emojis` VALUES (':fallen_leaf:','qrc:/res/emojis/1f342.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f342.png'' />','1f342','nature');
-INSERT INTO `custom_emojis` VALUES (':family:','qrc:/res/emojis/1f46a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46a.png'' />','1f46a','people');
-INSERT INTO `custom_emojis` VALUES (':family_mmb:','qrc:/res/emojis/1f468-1f468-1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f468-1f466.png'' />','1f468-1f468-1f466','people');
-INSERT INTO `custom_emojis` VALUES (':family_mmbb:','qrc:/res/emojis/1f468-1f468-1f466-1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f468-1f466-1f466.png'' />','1f468-1f468-1f466-1f466','people');
-INSERT INTO `custom_emojis` VALUES (':family_mmg:','qrc:/res/emojis/1f468-1f468-1f467.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f468-1f467.png'' />','1f468-1f468-1f467','people');
-INSERT INTO `custom_emojis` VALUES (':family_mmgb:','qrc:/res/emojis/1f468-1f468-1f467-1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f468-1f467-1f466.png'' />','1f468-1f468-1f467-1f466','people');
-INSERT INTO `custom_emojis` VALUES (':family_mmgg:','qrc:/res/emojis/1f468-1f468-1f467-1f467.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f468-1f467-1f467.png'' />','1f468-1f468-1f467-1f467','people');
-INSERT INTO `custom_emojis` VALUES (':family_mwbb:','qrc:/res/emojis/1f468-1f469-1f466-1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f469-1f466-1f466.png'' />','1f468-1f469-1f466-1f466','people');
-INSERT INTO `custom_emojis` VALUES (':family_mwg:','qrc:/res/emojis/1f468-1f469-1f467.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f469-1f467.png'' />','1f468-1f469-1f467','people');
-INSERT INTO `custom_emojis` VALUES (':family_mwgb:','qrc:/res/emojis/1f468-1f469-1f467-1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f469-1f467-1f466.png'' />','1f468-1f469-1f467-1f466','people');
-INSERT INTO `custom_emojis` VALUES (':family_mwgg:','qrc:/res/emojis/1f468-1f469-1f467-1f467.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f469-1f467-1f467.png'' />','1f468-1f469-1f467-1f467','people');
-INSERT INTO `custom_emojis` VALUES (':family_wwb:','qrc:/res/emojis/1f469-1f469-1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f469-1f466.png'' />','1f469-1f469-1f466','people');
-INSERT INTO `custom_emojis` VALUES (':family_wwbb:','qrc:/res/emojis/1f469-1f469-1f466-1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f469-1f466-1f466.png'' />','1f469-1f469-1f466-1f466','people');
-INSERT INTO `custom_emojis` VALUES (':family_wwg:','qrc:/res/emojis/1f469-1f469-1f467.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f469-1f467.png'' />','1f469-1f469-1f467','people');
-INSERT INTO `custom_emojis` VALUES (':family_wwgb:','qrc:/res/emojis/1f469-1f469-1f467-1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f469-1f467-1f466.png'' />','1f469-1f469-1f467-1f466','people');
-INSERT INTO `custom_emojis` VALUES (':family_wwgg:','qrc:/res/emojis/1f469-1f469-1f467-1f467.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f469-1f467-1f467.png'' />','1f469-1f469-1f467-1f467','people');
-INSERT INTO `custom_emojis` VALUES (':fast_forward:','qrc:/res/emojis/23e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23e9.png'' />','23e9','symbols');
-INSERT INTO `custom_emojis` VALUES (':fax:','qrc:/res/emojis/1f4e0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e0.png'' />','1f4e0','objects');
-INSERT INTO `custom_emojis` VALUES (':fearful:','qrc:/res/emojis/1f628.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f628.png'' />','1f628','people');
-INSERT INTO `custom_emojis` VALUES (':feet:','qrc:/res/emojis/1f43e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f43e.png'' />','1f43e','nature');
-INSERT INTO `custom_emojis` VALUES (':fencer:','qrc:/res/emojis/1f93a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93a.png'' />','1f93a','activity');
-INSERT INTO `custom_emojis` VALUES (':ferris_wheel:','qrc:/res/emojis/1f3a1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a1.png'' />','1f3a1','travel');
-INSERT INTO `custom_emojis` VALUES (':ferry:','qrc:/res/emojis/26f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f4.png'' />','26f4','travel');
-INSERT INTO `custom_emojis` VALUES (':field_hockey:','qrc:/res/emojis/1f3d1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d1.png'' />','1f3d1','activity');
-INSERT INTO `custom_emojis` VALUES (':file_cabinet:','qrc:/res/emojis/1f5c4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5c4.png'' />','1f5c4','objects');
-INSERT INTO `custom_emojis` VALUES (':file_folder:','qrc:/res/emojis/1f4c1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c1.png'' />','1f4c1','objects');
-INSERT INTO `custom_emojis` VALUES (':film_frames:','qrc:/res/emojis/1f39e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f39e.png'' />','1f39e','objects');
-INSERT INTO `custom_emojis` VALUES (':fingers_crossed:','qrc:/res/emojis/1f91e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91e.png'' />','1f91e','people');
-INSERT INTO `custom_emojis` VALUES (':fingers_crossed_tone1:','qrc:/res/emojis/1f91e-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91e-1f3fb.png'' />','1f91e-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':fingers_crossed_tone2:','qrc:/res/emojis/1f91e-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91e-1f3fc.png'' />','1f91e-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':fingers_crossed_tone3:','qrc:/res/emojis/1f91e-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91e-1f3fd.png'' />','1f91e-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':fingers_crossed_tone4:','qrc:/res/emojis/1f91e-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91e-1f3fe.png'' />','1f91e-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':fingers_crossed_tone5:','qrc:/res/emojis/1f91e-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91e-1f3ff.png'' />','1f91e-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':fire:','qrc:/res/emojis/1f525.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f525.png'' />','1f525','nature');
-INSERT INTO `custom_emojis` VALUES (':fire_engine:','qrc:/res/emojis/1f692.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f692.png'' />','1f692','travel');
-INSERT INTO `custom_emojis` VALUES (':fireworks:','qrc:/res/emojis/1f386.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f386.png'' />','1f386','travel');
-INSERT INTO `custom_emojis` VALUES (':first_place:','qrc:/res/emojis/1f947.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f947.png'' />','1f947','activity');
-INSERT INTO `custom_emojis` VALUES (':first_quarter_moon:','qrc:/res/emojis/1f313.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f313.png'' />','1f313','nature');
-INSERT INTO `custom_emojis` VALUES (':first_quarter_moon_with_face:','qrc:/res/emojis/1f31b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f31b.png'' />','1f31b','nature');
-INSERT INTO `custom_emojis` VALUES (':fish:','qrc:/res/emojis/1f41f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f41f.png'' />','1f41f','nature');
-INSERT INTO `custom_emojis` VALUES (':fish_cake:','qrc:/res/emojis/1f365.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f365.png'' />','1f365','food');
-INSERT INTO `custom_emojis` VALUES (':fishing_pole_and_fish:','qrc:/res/emojis/1f3a3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a3.png'' />','1f3a3','activity');
-INSERT INTO `custom_emojis` VALUES (':fist:','qrc:/res/emojis/270a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270a.png'' />','270a','people');
-INSERT INTO `custom_emojis` VALUES (':fist_tone1:','qrc:/res/emojis/270a-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270a-1f3fb.png'' />','270a-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':fist_tone2:','qrc:/res/emojis/270a-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270a-1f3fc.png'' />','270a-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':fist_tone3:','qrc:/res/emojis/270a-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270a-1f3fd.png'' />','270a-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':fist_tone4:','qrc:/res/emojis/270a-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270a-1f3fe.png'' />','270a-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':fist_tone5:','qrc:/res/emojis/270a-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270a-1f3ff.png'' />','270a-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':five:','qrc:/res/emojis/0035-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0035-20e3.png'' />','0035-20e3','symbols');
-INSERT INTO `custom_emojis` VALUES (':flag_ac:','qrc:/res/emojis/1f1e6-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1e8.png'' />','1f1e6-1f1e8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ad:','qrc:/res/emojis/1f1e6-1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1e9.png'' />','1f1e6-1f1e9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ae:','qrc:/res/emojis/1f1e6-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1ea.png'' />','1f1e6-1f1ea','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_af:','qrc:/res/emojis/1f1e6-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1eb.png'' />','1f1e6-1f1eb','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ag:','qrc:/res/emojis/1f1e6-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1ec.png'' />','1f1e6-1f1ec','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ai:','qrc:/res/emojis/1f1e6-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1ee.png'' />','1f1e6-1f1ee','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_al:','qrc:/res/emojis/1f1e6-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1f1.png'' />','1f1e6-1f1f1','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_am:','qrc:/res/emojis/1f1e6-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1f2.png'' />','1f1e6-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ao:','qrc:/res/emojis/1f1e6-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1f4.png'' />','1f1e6-1f1f4','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_aq:','qrc:/res/emojis/1f1e6-1f1f6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1f6.png'' />','1f1e6-1f1f6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ar:','qrc:/res/emojis/1f1e6-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1f7.png'' />','1f1e6-1f1f7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_as:','qrc:/res/emojis/1f1e6-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1f8.png'' />','1f1e6-1f1f8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_at:','qrc:/res/emojis/1f1e6-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1f9.png'' />','1f1e6-1f1f9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_au:','qrc:/res/emojis/1f1e6-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1fa.png'' />','1f1e6-1f1fa','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_aw:','qrc:/res/emojis/1f1e6-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1fc.png'' />','1f1e6-1f1fc','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ax:','qrc:/res/emojis/1f1e6-1f1fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1fd.png'' />','1f1e6-1f1fd','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_az:','qrc:/res/emojis/1f1e6-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1ff.png'' />','1f1e6-1f1ff','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ba:','qrc:/res/emojis/1f1e7-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1e6.png'' />','1f1e7-1f1e6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_bb:','qrc:/res/emojis/1f1e7-1f1e7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1e7.png'' />','1f1e7-1f1e7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_bd:','qrc:/res/emojis/1f1e7-1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1e9.png'' />','1f1e7-1f1e9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_be:','qrc:/res/emojis/1f1e7-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1ea.png'' />','1f1e7-1f1ea','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_bf:','qrc:/res/emojis/1f1e7-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1eb.png'' />','1f1e7-1f1eb','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_bg:','qrc:/res/emojis/1f1e7-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1ec.png'' />','1f1e7-1f1ec','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_bh:','qrc:/res/emojis/1f1e7-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1ed.png'' />','1f1e7-1f1ed','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_bi:','qrc:/res/emojis/1f1e7-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1ee.png'' />','1f1e7-1f1ee','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_bj:','qrc:/res/emojis/1f1e7-1f1ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1ef.png'' />','1f1e7-1f1ef','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_bl:','qrc:/res/emojis/1f1e7-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1f1.png'' />','1f1e7-1f1f1','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_black:','qrc:/res/emojis/1f3f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3f4.png'' />','1f3f4','objects');
-INSERT INTO `custom_emojis` VALUES (':flag_bm:','qrc:/res/emojis/1f1e7-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1f2.png'' />','1f1e7-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_bn:','qrc:/res/emojis/1f1e7-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1f3.png'' />','1f1e7-1f1f3','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_bo:','qrc:/res/emojis/1f1e7-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1f4.png'' />','1f1e7-1f1f4','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_bq:','qrc:/res/emojis/1f1e7-1f1f6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1f6.png'' />','1f1e7-1f1f6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_br:','qrc:/res/emojis/1f1e7-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1f7.png'' />','1f1e7-1f1f7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_bs:','qrc:/res/emojis/1f1e7-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1f8.png'' />','1f1e7-1f1f8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_bt:','qrc:/res/emojis/1f1e7-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1f9.png'' />','1f1e7-1f1f9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_bv:','qrc:/res/emojis/1f1e7-1f1fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1fb.png'' />','1f1e7-1f1fb','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_bw:','qrc:/res/emojis/1f1e7-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1fc.png'' />','1f1e7-1f1fc','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_by:','qrc:/res/emojis/1f1e7-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1fe.png'' />','1f1e7-1f1fe','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_bz:','qrc:/res/emojis/1f1e7-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1ff.png'' />','1f1e7-1f1ff','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ca:','qrc:/res/emojis/1f1e8-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1e6.png'' />','1f1e8-1f1e6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_cc:','qrc:/res/emojis/1f1e8-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1e8.png'' />','1f1e8-1f1e8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_cd:','qrc:/res/emojis/1f1e8-1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1e9.png'' />','1f1e8-1f1e9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_cf:','qrc:/res/emojis/1f1e8-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1eb.png'' />','1f1e8-1f1eb','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_cg:','qrc:/res/emojis/1f1e8-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1ec.png'' />','1f1e8-1f1ec','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ch:','qrc:/res/emojis/1f1e8-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1ed.png'' />','1f1e8-1f1ed','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ci:','qrc:/res/emojis/1f1e8-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1ee.png'' />','1f1e8-1f1ee','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ck:','qrc:/res/emojis/1f1e8-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1f0.png'' />','1f1e8-1f1f0','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_cl:','qrc:/res/emojis/1f1e8-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1f1.png'' />','1f1e8-1f1f1','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_cm:','qrc:/res/emojis/1f1e8-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1f2.png'' />','1f1e8-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_cn:','qrc:/res/emojis/1f1e8-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1f3.png'' />','1f1e8-1f1f3','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_co:','qrc:/res/emojis/1f1e8-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1f4.png'' />','1f1e8-1f1f4','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_cp:','qrc:/res/emojis/1f1e8-1f1f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1f5.png'' />','1f1e8-1f1f5','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_cr:','qrc:/res/emojis/1f1e8-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1f7.png'' />','1f1e8-1f1f7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_cu:','qrc:/res/emojis/1f1e8-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1fa.png'' />','1f1e8-1f1fa','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_cv:','qrc:/res/emojis/1f1e8-1f1fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1fb.png'' />','1f1e8-1f1fb','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_cw:','qrc:/res/emojis/1f1e8-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1fc.png'' />','1f1e8-1f1fc','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_cx:','qrc:/res/emojis/1f1e8-1f1fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1fd.png'' />','1f1e8-1f1fd','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_cy:','qrc:/res/emojis/1f1e8-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1fe.png'' />','1f1e8-1f1fe','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_cz:','qrc:/res/emojis/1f1e8-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1ff.png'' />','1f1e8-1f1ff','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_de:','qrc:/res/emojis/1f1e9-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e9-1f1ea.png'' />','1f1e9-1f1ea','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_dg:','qrc:/res/emojis/1f1e9-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e9-1f1ec.png'' />','1f1e9-1f1ec','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_dj:','qrc:/res/emojis/1f1e9-1f1ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e9-1f1ef.png'' />','1f1e9-1f1ef','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_dk:','qrc:/res/emojis/1f1e9-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e9-1f1f0.png'' />','1f1e9-1f1f0','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_dm:','qrc:/res/emojis/1f1e9-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e9-1f1f2.png'' />','1f1e9-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_do:','qrc:/res/emojis/1f1e9-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e9-1f1f4.png'' />','1f1e9-1f1f4','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_dz:','qrc:/res/emojis/1f1e9-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e9-1f1ff.png'' />','1f1e9-1f1ff','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ea:','qrc:/res/emojis/1f1ea-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1e6.png'' />','1f1ea-1f1e6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ec:','qrc:/res/emojis/1f1ea-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1e8.png'' />','1f1ea-1f1e8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ee:','qrc:/res/emojis/1f1ea-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1ea.png'' />','1f1ea-1f1ea','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_eg:','qrc:/res/emojis/1f1ea-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1ec.png'' />','1f1ea-1f1ec','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_eh:','qrc:/res/emojis/1f1ea-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1ed.png'' />','1f1ea-1f1ed','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_er:','qrc:/res/emojis/1f1ea-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1f7.png'' />','1f1ea-1f1f7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_es:','qrc:/res/emojis/1f1ea-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1f8.png'' />','1f1ea-1f1f8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_et:','qrc:/res/emojis/1f1ea-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1f9.png'' />','1f1ea-1f1f9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_eu:','qrc:/res/emojis/1f1ea-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1fa.png'' />','1f1ea-1f1fa','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_fi:','qrc:/res/emojis/1f1eb-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1eb-1f1ee.png'' />','1f1eb-1f1ee','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_fj:','qrc:/res/emojis/1f1eb-1f1ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1eb-1f1ef.png'' />','1f1eb-1f1ef','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_fk:','qrc:/res/emojis/1f1eb-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1eb-1f1f0.png'' />','1f1eb-1f1f0','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_fm:','qrc:/res/emojis/1f1eb-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1eb-1f1f2.png'' />','1f1eb-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_fo:','qrc:/res/emojis/1f1eb-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1eb-1f1f4.png'' />','1f1eb-1f1f4','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_fr:','qrc:/res/emojis/1f1eb-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1eb-1f1f7.png'' />','1f1eb-1f1f7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ga:','qrc:/res/emojis/1f1ec-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1e6.png'' />','1f1ec-1f1e6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gb:','qrc:/res/emojis/1f1ec-1f1e7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1e7.png'' />','1f1ec-1f1e7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gd:','qrc:/res/emojis/1f1ec-1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1e9.png'' />','1f1ec-1f1e9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ge:','qrc:/res/emojis/1f1ec-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1ea.png'' />','1f1ec-1f1ea','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gf:','qrc:/res/emojis/1f1ec-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1eb.png'' />','1f1ec-1f1eb','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gg:','qrc:/res/emojis/1f1ec-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1ec.png'' />','1f1ec-1f1ec','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gh:','qrc:/res/emojis/1f1ec-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1ed.png'' />','1f1ec-1f1ed','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gi:','qrc:/res/emojis/1f1ec-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1ee.png'' />','1f1ec-1f1ee','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gl:','qrc:/res/emojis/1f1ec-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1f1.png'' />','1f1ec-1f1f1','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gm:','qrc:/res/emojis/1f1ec-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1f2.png'' />','1f1ec-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gn:','qrc:/res/emojis/1f1ec-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1f3.png'' />','1f1ec-1f1f3','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gp:','qrc:/res/emojis/1f1ec-1f1f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1f5.png'' />','1f1ec-1f1f5','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gq:','qrc:/res/emojis/1f1ec-1f1f6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1f6.png'' />','1f1ec-1f1f6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gr:','qrc:/res/emojis/1f1ec-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1f7.png'' />','1f1ec-1f1f7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gs:','qrc:/res/emojis/1f1ec-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1f8.png'' />','1f1ec-1f1f8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gt:','qrc:/res/emojis/1f1ec-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1f9.png'' />','1f1ec-1f1f9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gu:','qrc:/res/emojis/1f1ec-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1fa.png'' />','1f1ec-1f1fa','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gw:','qrc:/res/emojis/1f1ec-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1fc.png'' />','1f1ec-1f1fc','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_gy:','qrc:/res/emojis/1f1ec-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1fe.png'' />','1f1ec-1f1fe','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_hk:','qrc:/res/emojis/1f1ed-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ed-1f1f0.png'' />','1f1ed-1f1f0','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_hm:','qrc:/res/emojis/1f1ed-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ed-1f1f2.png'' />','1f1ed-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_hn:','qrc:/res/emojis/1f1ed-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ed-1f1f3.png'' />','1f1ed-1f1f3','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_hr:','qrc:/res/emojis/1f1ed-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ed-1f1f7.png'' />','1f1ed-1f1f7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ht:','qrc:/res/emojis/1f1ed-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ed-1f1f9.png'' />','1f1ed-1f1f9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_hu:','qrc:/res/emojis/1f1ed-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ed-1f1fa.png'' />','1f1ed-1f1fa','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ic:','qrc:/res/emojis/1f1ee-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1e8.png'' />','1f1ee-1f1e8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_id:','qrc:/res/emojis/1f1ee-1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1e9.png'' />','1f1ee-1f1e9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ie:','qrc:/res/emojis/1f1ee-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1ea.png'' />','1f1ee-1f1ea','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_il:','qrc:/res/emojis/1f1ee-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1f1.png'' />','1f1ee-1f1f1','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_im:','qrc:/res/emojis/1f1ee-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1f2.png'' />','1f1ee-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_in:','qrc:/res/emojis/1f1ee-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1f3.png'' />','1f1ee-1f1f3','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_io:','qrc:/res/emojis/1f1ee-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1f4.png'' />','1f1ee-1f1f4','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_iq:','qrc:/res/emojis/1f1ee-1f1f6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1f6.png'' />','1f1ee-1f1f6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ir:','qrc:/res/emojis/1f1ee-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1f7.png'' />','1f1ee-1f1f7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_is:','qrc:/res/emojis/1f1ee-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1f8.png'' />','1f1ee-1f1f8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_it:','qrc:/res/emojis/1f1ee-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1f9.png'' />','1f1ee-1f1f9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_je:','qrc:/res/emojis/1f1ef-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ef-1f1ea.png'' />','1f1ef-1f1ea','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_jm:','qrc:/res/emojis/1f1ef-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ef-1f1f2.png'' />','1f1ef-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_jo:','qrc:/res/emojis/1f1ef-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ef-1f1f4.png'' />','1f1ef-1f1f4','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_jp:','qrc:/res/emojis/1f1ef-1f1f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ef-1f1f5.png'' />','1f1ef-1f1f5','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ke:','qrc:/res/emojis/1f1f0-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1ea.png'' />','1f1f0-1f1ea','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_kg:','qrc:/res/emojis/1f1f0-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1ec.png'' />','1f1f0-1f1ec','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_kh:','qrc:/res/emojis/1f1f0-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1ed.png'' />','1f1f0-1f1ed','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ki:','qrc:/res/emojis/1f1f0-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1ee.png'' />','1f1f0-1f1ee','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_km:','qrc:/res/emojis/1f1f0-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1f2.png'' />','1f1f0-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_kn:','qrc:/res/emojis/1f1f0-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1f3.png'' />','1f1f0-1f1f3','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_kp:','qrc:/res/emojis/1f1f0-1f1f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1f5.png'' />','1f1f0-1f1f5','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_kr:','qrc:/res/emojis/1f1f0-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1f7.png'' />','1f1f0-1f1f7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_kw:','qrc:/res/emojis/1f1f0-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1fc.png'' />','1f1f0-1f1fc','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ky:','qrc:/res/emojis/1f1f0-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1fe.png'' />','1f1f0-1f1fe','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_kz:','qrc:/res/emojis/1f1f0-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1ff.png'' />','1f1f0-1f1ff','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_la:','qrc:/res/emojis/1f1f1-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1e6.png'' />','1f1f1-1f1e6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_lb:','qrc:/res/emojis/1f1f1-1f1e7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1e7.png'' />','1f1f1-1f1e7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_lc:','qrc:/res/emojis/1f1f1-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1e8.png'' />','1f1f1-1f1e8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_li:','qrc:/res/emojis/1f1f1-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1ee.png'' />','1f1f1-1f1ee','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_lk:','qrc:/res/emojis/1f1f1-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1f0.png'' />','1f1f1-1f1f0','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_lr:','qrc:/res/emojis/1f1f1-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1f7.png'' />','1f1f1-1f1f7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ls:','qrc:/res/emojis/1f1f1-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1f8.png'' />','1f1f1-1f1f8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_lt:','qrc:/res/emojis/1f1f1-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1f9.png'' />','1f1f1-1f1f9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_lu:','qrc:/res/emojis/1f1f1-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1fa.png'' />','1f1f1-1f1fa','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_lv:','qrc:/res/emojis/1f1f1-1f1fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1fb.png'' />','1f1f1-1f1fb','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ly:','qrc:/res/emojis/1f1f1-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1fe.png'' />','1f1f1-1f1fe','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ma:','qrc:/res/emojis/1f1f2-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1e6.png'' />','1f1f2-1f1e6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mc:','qrc:/res/emojis/1f1f2-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1e8.png'' />','1f1f2-1f1e8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_md:','qrc:/res/emojis/1f1f2-1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1e9.png'' />','1f1f2-1f1e9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_me:','qrc:/res/emojis/1f1f2-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1ea.png'' />','1f1f2-1f1ea','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mf:','qrc:/res/emojis/1f1f2-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1eb.png'' />','1f1f2-1f1eb','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mg:','qrc:/res/emojis/1f1f2-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1ec.png'' />','1f1f2-1f1ec','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mh:','qrc:/res/emojis/1f1f2-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1ed.png'' />','1f1f2-1f1ed','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mk:','qrc:/res/emojis/1f1f2-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f0.png'' />','1f1f2-1f1f0','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ml:','qrc:/res/emojis/1f1f2-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f1.png'' />','1f1f2-1f1f1','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mm:','qrc:/res/emojis/1f1f2-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f2.png'' />','1f1f2-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mn:','qrc:/res/emojis/1f1f2-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f3.png'' />','1f1f2-1f1f3','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mo:','qrc:/res/emojis/1f1f2-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f4.png'' />','1f1f2-1f1f4','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mp:','qrc:/res/emojis/1f1f2-1f1f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f5.png'' />','1f1f2-1f1f5','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mq:','qrc:/res/emojis/1f1f2-1f1f6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f6.png'' />','1f1f2-1f1f6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mr:','qrc:/res/emojis/1f1f2-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f7.png'' />','1f1f2-1f1f7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ms:','qrc:/res/emojis/1f1f2-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f8.png'' />','1f1f2-1f1f8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mt:','qrc:/res/emojis/1f1f2-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f9.png'' />','1f1f2-1f1f9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mu:','qrc:/res/emojis/1f1f2-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1fa.png'' />','1f1f2-1f1fa','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mv:','qrc:/res/emojis/1f1f2-1f1fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1fb.png'' />','1f1f2-1f1fb','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mw:','qrc:/res/emojis/1f1f2-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1fc.png'' />','1f1f2-1f1fc','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mx:','qrc:/res/emojis/1f1f2-1f1fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1fd.png'' />','1f1f2-1f1fd','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_my:','qrc:/res/emojis/1f1f2-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1fe.png'' />','1f1f2-1f1fe','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_mz:','qrc:/res/emojis/1f1f2-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1ff.png'' />','1f1f2-1f1ff','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_na:','qrc:/res/emojis/1f1f3-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1e6.png'' />','1f1f3-1f1e6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_nc:','qrc:/res/emojis/1f1f3-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1e8.png'' />','1f1f3-1f1e8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ne:','qrc:/res/emojis/1f1f3-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1ea.png'' />','1f1f3-1f1ea','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_nf:','qrc:/res/emojis/1f1f3-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1eb.png'' />','1f1f3-1f1eb','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ng:','qrc:/res/emojis/1f1f3-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1ec.png'' />','1f1f3-1f1ec','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ni:','qrc:/res/emojis/1f1f3-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1ee.png'' />','1f1f3-1f1ee','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_nl:','qrc:/res/emojis/1f1f3-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1f1.png'' />','1f1f3-1f1f1','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_no:','qrc:/res/emojis/1f1f3-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1f4.png'' />','1f1f3-1f1f4','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_np:','qrc:/res/emojis/1f1f3-1f1f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1f5.png'' />','1f1f3-1f1f5','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_nr:','qrc:/res/emojis/1f1f3-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1f7.png'' />','1f1f3-1f1f7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_nu:','qrc:/res/emojis/1f1f3-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1fa.png'' />','1f1f3-1f1fa','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_nz:','qrc:/res/emojis/1f1f3-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1ff.png'' />','1f1f3-1f1ff','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_om:','qrc:/res/emojis/1f1f4-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f4-1f1f2.png'' />','1f1f4-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_pa:','qrc:/res/emojis/1f1f5-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1e6.png'' />','1f1f5-1f1e6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_pe:','qrc:/res/emojis/1f1f5-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1ea.png'' />','1f1f5-1f1ea','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_pf:','qrc:/res/emojis/1f1f5-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1eb.png'' />','1f1f5-1f1eb','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_pg:','qrc:/res/emojis/1f1f5-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1ec.png'' />','1f1f5-1f1ec','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ph:','qrc:/res/emojis/1f1f5-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1ed.png'' />','1f1f5-1f1ed','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_pk:','qrc:/res/emojis/1f1f5-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1f0.png'' />','1f1f5-1f1f0','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_pl:','qrc:/res/emojis/1f1f5-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1f1.png'' />','1f1f5-1f1f1','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_pm:','qrc:/res/emojis/1f1f5-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1f2.png'' />','1f1f5-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_pn:','qrc:/res/emojis/1f1f5-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1f3.png'' />','1f1f5-1f1f3','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_pr:','qrc:/res/emojis/1f1f5-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1f7.png'' />','1f1f5-1f1f7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ps:','qrc:/res/emojis/1f1f5-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1f8.png'' />','1f1f5-1f1f8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_pt:','qrc:/res/emojis/1f1f5-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1f9.png'' />','1f1f5-1f1f9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_pw:','qrc:/res/emojis/1f1f5-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1fc.png'' />','1f1f5-1f1fc','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_py:','qrc:/res/emojis/1f1f5-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1fe.png'' />','1f1f5-1f1fe','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_qa:','qrc:/res/emojis/1f1f6-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f6-1f1e6.png'' />','1f1f6-1f1e6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_re:','qrc:/res/emojis/1f1f7-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f7-1f1ea.png'' />','1f1f7-1f1ea','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ro:','qrc:/res/emojis/1f1f7-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f7-1f1f4.png'' />','1f1f7-1f1f4','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_rs:','qrc:/res/emojis/1f1f7-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f7-1f1f8.png'' />','1f1f7-1f1f8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ru:','qrc:/res/emojis/1f1f7-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f7-1f1fa.png'' />','1f1f7-1f1fa','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_rw:','qrc:/res/emojis/1f1f7-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f7-1f1fc.png'' />','1f1f7-1f1fc','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_sa:','qrc:/res/emojis/1f1f8-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1e6.png'' />','1f1f8-1f1e6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_sb:','qrc:/res/emojis/1f1f8-1f1e7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1e7.png'' />','1f1f8-1f1e7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_sc:','qrc:/res/emojis/1f1f8-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1e8.png'' />','1f1f8-1f1e8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_sd:','qrc:/res/emojis/1f1f8-1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1e9.png'' />','1f1f8-1f1e9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_se:','qrc:/res/emojis/1f1f8-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1ea.png'' />','1f1f8-1f1ea','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_sg:','qrc:/res/emojis/1f1f8-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1ec.png'' />','1f1f8-1f1ec','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_sh:','qrc:/res/emojis/1f1f8-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1ed.png'' />','1f1f8-1f1ed','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_si:','qrc:/res/emojis/1f1f8-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1ee.png'' />','1f1f8-1f1ee','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_sj:','qrc:/res/emojis/1f1f8-1f1ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1ef.png'' />','1f1f8-1f1ef','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_sk:','qrc:/res/emojis/1f1f8-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1f0.png'' />','1f1f8-1f1f0','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_sl:','qrc:/res/emojis/1f1f8-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1f1.png'' />','1f1f8-1f1f1','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_sm:','qrc:/res/emojis/1f1f8-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1f2.png'' />','1f1f8-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_sn:','qrc:/res/emojis/1f1f8-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1f3.png'' />','1f1f8-1f1f3','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_so:','qrc:/res/emojis/1f1f8-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1f4.png'' />','1f1f8-1f1f4','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_sr:','qrc:/res/emojis/1f1f8-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1f7.png'' />','1f1f8-1f1f7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ss:','qrc:/res/emojis/1f1f8-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1f8.png'' />','1f1f8-1f1f8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_st:','qrc:/res/emojis/1f1f8-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1f9.png'' />','1f1f8-1f1f9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_sv:','qrc:/res/emojis/1f1f8-1f1fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1fb.png'' />','1f1f8-1f1fb','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_sx:','qrc:/res/emojis/1f1f8-1f1fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1fd.png'' />','1f1f8-1f1fd','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_sy:','qrc:/res/emojis/1f1f8-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1fe.png'' />','1f1f8-1f1fe','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_sz:','qrc:/res/emojis/1f1f8-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1ff.png'' />','1f1f8-1f1ff','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ta:','qrc:/res/emojis/1f1f9-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1e6.png'' />','1f1f9-1f1e6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_tc:','qrc:/res/emojis/1f1f9-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1e8.png'' />','1f1f9-1f1e8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_td:','qrc:/res/emojis/1f1f9-1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1e9.png'' />','1f1f9-1f1e9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_tf:','qrc:/res/emojis/1f1f9-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1eb.png'' />','1f1f9-1f1eb','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_tg:','qrc:/res/emojis/1f1f9-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1ec.png'' />','1f1f9-1f1ec','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_th:','qrc:/res/emojis/1f1f9-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1ed.png'' />','1f1f9-1f1ed','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_tj:','qrc:/res/emojis/1f1f9-1f1ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1ef.png'' />','1f1f9-1f1ef','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_tk:','qrc:/res/emojis/1f1f9-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1f0.png'' />','1f1f9-1f1f0','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_tl:','qrc:/res/emojis/1f1f9-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1f1.png'' />','1f1f9-1f1f1','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_tm:','qrc:/res/emojis/1f1f9-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1f2.png'' />','1f1f9-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_tn:','qrc:/res/emojis/1f1f9-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1f3.png'' />','1f1f9-1f1f3','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_to:','qrc:/res/emojis/1f1f9-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1f4.png'' />','1f1f9-1f1f4','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_tr:','qrc:/res/emojis/1f1f9-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1f7.png'' />','1f1f9-1f1f7','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_tt:','qrc:/res/emojis/1f1f9-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1f9.png'' />','1f1f9-1f1f9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_tv:','qrc:/res/emojis/1f1f9-1f1fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1fb.png'' />','1f1f9-1f1fb','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_tw:','qrc:/res/emojis/1f1f9-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1fc.png'' />','1f1f9-1f1fc','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_tz:','qrc:/res/emojis/1f1f9-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1ff.png'' />','1f1f9-1f1ff','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ua:','qrc:/res/emojis/1f1fa-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fa-1f1e6.png'' />','1f1fa-1f1e6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ug:','qrc:/res/emojis/1f1fa-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fa-1f1ec.png'' />','1f1fa-1f1ec','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_um:','qrc:/res/emojis/1f1fa-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fa-1f1f2.png'' />','1f1fa-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_us:','qrc:/res/emojis/1f1fa-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fa-1f1f8.png'' />','1f1fa-1f1f8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_uy:','qrc:/res/emojis/1f1fa-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fa-1f1fe.png'' />','1f1fa-1f1fe','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_uz:','qrc:/res/emojis/1f1fa-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fa-1f1ff.png'' />','1f1fa-1f1ff','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_va:','qrc:/res/emojis/1f1fb-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fb-1f1e6.png'' />','1f1fb-1f1e6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_vc:','qrc:/res/emojis/1f1fb-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fb-1f1e8.png'' />','1f1fb-1f1e8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ve:','qrc:/res/emojis/1f1fb-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fb-1f1ea.png'' />','1f1fb-1f1ea','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_vg:','qrc:/res/emojis/1f1fb-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fb-1f1ec.png'' />','1f1fb-1f1ec','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_vi:','qrc:/res/emojis/1f1fb-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fb-1f1ee.png'' />','1f1fb-1f1ee','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_vn:','qrc:/res/emojis/1f1fb-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fb-1f1f3.png'' />','1f1fb-1f1f3','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_vu:','qrc:/res/emojis/1f1fb-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fb-1f1fa.png'' />','1f1fb-1f1fa','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_wf:','qrc:/res/emojis/1f1fc-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fc-1f1eb.png'' />','1f1fc-1f1eb','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_white:','qrc:/res/emojis/1f3f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3f3.png'' />','1f3f3','objects');
-INSERT INTO `custom_emojis` VALUES (':flag_ws:','qrc:/res/emojis/1f1fc-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fc-1f1f8.png'' />','1f1fc-1f1f8','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_xk:','qrc:/res/emojis/1f1fd-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fd-1f1f0.png'' />','1f1fd-1f1f0','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_ye:','qrc:/res/emojis/1f1fe-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fe-1f1ea.png'' />','1f1fe-1f1ea','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_yt:','qrc:/res/emojis/1f1fe-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fe-1f1f9.png'' />','1f1fe-1f1f9','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_za:','qrc:/res/emojis/1f1ff-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ff-1f1e6.png'' />','1f1ff-1f1e6','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_zm:','qrc:/res/emojis/1f1ff-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ff-1f1f2.png'' />','1f1ff-1f1f2','flags');
-INSERT INTO `custom_emojis` VALUES (':flag_zw:','qrc:/res/emojis/1f1ff-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ff-1f1fc.png'' />','1f1ff-1f1fc','flags');
-INSERT INTO `custom_emojis` VALUES (':flags:','qrc:/res/emojis/1f38f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f38f.png'' />','1f38f','objects');
-INSERT INTO `custom_emojis` VALUES (':flashlight:','qrc:/res/emojis/1f526.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f526.png'' />','1f526','objects');
-INSERT INTO `custom_emojis` VALUES (':fleur-de-lis:','qrc:/res/emojis/269c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/269c.png'' />','269c','symbols');
-INSERT INTO `custom_emojis` VALUES (':floppy_disk:','qrc:/res/emojis/1f4be.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4be.png'' />','1f4be','objects');
-INSERT INTO `custom_emojis` VALUES (':flower_playing_cards:','qrc:/res/emojis/1f3b4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b4.png'' />','1f3b4','symbols');
-INSERT INTO `custom_emojis` VALUES (':flushed:','qrc:/res/emojis/1f633.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f633.png'' />','1f633','people');
-INSERT INTO `custom_emojis` VALUES (':fog:','qrc:/res/emojis/1f32b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f32b.png'' />','1f32b','nature');
-INSERT INTO `custom_emojis` VALUES (':foggy:','qrc:/res/emojis/1f301.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f301.png'' />','1f301','travel');
-INSERT INTO `custom_emojis` VALUES (':football:','qrc:/res/emojis/1f3c8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c8.png'' />','1f3c8','activity');
-INSERT INTO `custom_emojis` VALUES (':footprints:','qrc:/res/emojis/1f463.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f463.png'' />','1f463','people');
-INSERT INTO `custom_emojis` VALUES (':fork_and_knife:','qrc:/res/emojis/1f374.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f374.png'' />','1f374','food');
-INSERT INTO `custom_emojis` VALUES (':fork_knife_plate:','qrc:/res/emojis/1f37d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f37d.png'' />','1f37d','food');
-INSERT INTO `custom_emojis` VALUES (':fountain:','qrc:/res/emojis/26f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f2.png'' />','26f2','travel');
-INSERT INTO `custom_emojis` VALUES (':four:','qrc:/res/emojis/0034-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0034-20e3.png'' />','0034-20e3','symbols');
-INSERT INTO `custom_emojis` VALUES (':four_leaf_clover:','qrc:/res/emojis/1f340.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f340.png'' />','1f340','nature');
-INSERT INTO `custom_emojis` VALUES (':fox:','qrc:/res/emojis/1f98a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f98a.png'' />','1f98a','nature');
-INSERT INTO `custom_emojis` VALUES (':frame_photo:','qrc:/res/emojis/1f5bc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5bc.png'' />','1f5bc','objects');
-INSERT INTO `custom_emojis` VALUES (':free:','qrc:/res/emojis/1f193.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f193.png'' />','1f193','symbols');
-INSERT INTO `custom_emojis` VALUES (':french_bread:','qrc:/res/emojis/1f956.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f956.png'' />','1f956','food');
-INSERT INTO `custom_emojis` VALUES (':fried_shrimp:','qrc:/res/emojis/1f364.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f364.png'' />','1f364','food');
-INSERT INTO `custom_emojis` VALUES (':fries:','qrc:/res/emojis/1f35f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f35f.png'' />','1f35f','food');
-INSERT INTO `custom_emojis` VALUES (':frog:','qrc:/res/emojis/1f438.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f438.png'' />','1f438','nature');
-INSERT INTO `custom_emojis` VALUES (':frowning:','qrc:/res/emojis/1f626.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f626.png'' />','1f626','people');
-INSERT INTO `custom_emojis` VALUES (':frowning2:','qrc:/res/emojis/2639.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2639.png'' />','2639','people');
-INSERT INTO `custom_emojis` VALUES (':fuelpump:','qrc:/res/emojis/26fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26fd.png'' />','26fd','travel');
-INSERT INTO `custom_emojis` VALUES (':full_moon:','qrc:/res/emojis/1f315.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f315.png'' />','1f315','nature');
-INSERT INTO `custom_emojis` VALUES (':full_moon_with_face:','qrc:/res/emojis/1f31d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f31d.png'' />','1f31d','nature');
-INSERT INTO `custom_emojis` VALUES (':game_die:','qrc:/res/emojis/1f3b2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b2.png'' />','1f3b2','activity');
-INSERT INTO `custom_emojis` VALUES (':gay_pride_flag:','qrc:/res/emojis/1f3f3-1f308.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3f3-1f308.png'' />','1f3f3-1f308','extras');
-INSERT INTO `custom_emojis` VALUES (':gear:','qrc:/res/emojis/2699.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2699.png'' />','2699','objects');
-INSERT INTO `custom_emojis` VALUES (':gem:','qrc:/res/emojis/1f48e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f48e.png'' />','1f48e','objects');
-INSERT INTO `custom_emojis` VALUES (':gemini:','qrc:/res/emojis/264a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/264a.png'' />','264a','symbols');
-INSERT INTO `custom_emojis` VALUES (':ghost:','qrc:/res/emojis/1f47b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47b.png'' />','1f47b','people');
-INSERT INTO `custom_emojis` VALUES (':gift:','qrc:/res/emojis/1f381.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f381.png'' />','1f381','objects');
-INSERT INTO `custom_emojis` VALUES (':gift_heart:','qrc:/res/emojis/1f49d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f49d.png'' />','1f49d','symbols');
-INSERT INTO `custom_emojis` VALUES (':girl:','qrc:/res/emojis/1f467.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f467.png'' />','1f467','people');
-INSERT INTO `custom_emojis` VALUES (':girl_tone1:','qrc:/res/emojis/1f467-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f467-1f3fb.png'' />','1f467-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':girl_tone2:','qrc:/res/emojis/1f467-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f467-1f3fc.png'' />','1f467-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':girl_tone3:','qrc:/res/emojis/1f467-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f467-1f3fd.png'' />','1f467-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':girl_tone4:','qrc:/res/emojis/1f467-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f467-1f3fe.png'' />','1f467-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':girl_tone5:','qrc:/res/emojis/1f467-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f467-1f3ff.png'' />','1f467-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':globe_with_meridians:','qrc:/res/emojis/1f310.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f310.png'' />','1f310','symbols');
-INSERT INTO `custom_emojis` VALUES (':goal:','qrc:/res/emojis/1f945.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f945.png'' />','1f945','activity');
-INSERT INTO `custom_emojis` VALUES (':goat:','qrc:/res/emojis/1f410.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f410.png'' />','1f410','nature');
-INSERT INTO `custom_emojis` VALUES (':golf:','qrc:/res/emojis/26f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f3.png'' />','26f3','activity');
-INSERT INTO `custom_emojis` VALUES (':golfer:','qrc:/res/emojis/1f3cc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cc.png'' />','1f3cc','activity');
-INSERT INTO `custom_emojis` VALUES (':gorilla:','qrc:/res/emojis/1f98d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f98d.png'' />','1f98d','nature');
-INSERT INTO `custom_emojis` VALUES (':grapes:','qrc:/res/emojis/1f347.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f347.png'' />','1f347','food');
-INSERT INTO `custom_emojis` VALUES (':green_apple:','qrc:/res/emojis/1f34f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f34f.png'' />','1f34f','food');
-INSERT INTO `custom_emojis` VALUES (':green_book:','qrc:/res/emojis/1f4d7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d7.png'' />','1f4d7','objects');
-INSERT INTO `custom_emojis` VALUES (':green_heart:','qrc:/res/emojis/1f49a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f49a.png'' />','1f49a','symbols');
-INSERT INTO `custom_emojis` VALUES (':grey_exclamation:','qrc:/res/emojis/2755.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2755.png'' />','2755','symbols');
-INSERT INTO `custom_emojis` VALUES (':grey_question:','qrc:/res/emojis/2754.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2754.png'' />','2754','symbols');
-INSERT INTO `custom_emojis` VALUES (':grimacing:','qrc:/res/emojis/1f62c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f62c.png'' />','1f62c','people');
-INSERT INTO `custom_emojis` VALUES (':grin:','qrc:/res/emojis/1f601.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f601.png'' />','1f601','people');
-INSERT INTO `custom_emojis` VALUES (':grinning:','qrc:/res/emojis/1f600.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f600.png'' />','1f600','people');
-INSERT INTO `custom_emojis` VALUES (':guardsman:','qrc:/res/emojis/1f482.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f482.png'' />','1f482','people');
-INSERT INTO `custom_emojis` VALUES (':guardsman_tone1:','qrc:/res/emojis/1f482-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f482-1f3fb.png'' />','1f482-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':guardsman_tone2:','qrc:/res/emojis/1f482-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f482-1f3fc.png'' />','1f482-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':guardsman_tone3:','qrc:/res/emojis/1f482-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f482-1f3fd.png'' />','1f482-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':guardsman_tone4:','qrc:/res/emojis/1f482-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f482-1f3fe.png'' />','1f482-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':guardsman_tone5:','qrc:/res/emojis/1f482-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f482-1f3ff.png'' />','1f482-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':guitar:','qrc:/res/emojis/1f3b8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b8.png'' />','1f3b8','activity');
-INSERT INTO `custom_emojis` VALUES (':gun:','qrc:/res/emojis/1f52b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f52b.png'' />','1f52b','objects');
-INSERT INTO `custom_emojis` VALUES (':haircut:','qrc:/res/emojis/1f487.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f487.png'' />','1f487','people');
-INSERT INTO `custom_emojis` VALUES (':haircut_tone1:','qrc:/res/emojis/1f487-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f487-1f3fb.png'' />','1f487-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':haircut_tone2:','qrc:/res/emojis/1f487-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f487-1f3fc.png'' />','1f487-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':haircut_tone3:','qrc:/res/emojis/1f487-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f487-1f3fd.png'' />','1f487-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':haircut_tone4:','qrc:/res/emojis/1f487-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f487-1f3fe.png'' />','1f487-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':haircut_tone5:','qrc:/res/emojis/1f487-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f487-1f3ff.png'' />','1f487-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':hamburger:','qrc:/res/emojis/1f354.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f354.png'' />','1f354','food');
-INSERT INTO `custom_emojis` VALUES (':hammer:','qrc:/res/emojis/1f528.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f528.png'' />','1f528','objects');
-INSERT INTO `custom_emojis` VALUES (':hammer_pick:','qrc:/res/emojis/2692.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2692.png'' />','2692','objects');
-INSERT INTO `custom_emojis` VALUES (':hamster:','qrc:/res/emojis/1f439.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f439.png'' />','1f439','nature');
-INSERT INTO `custom_emojis` VALUES (':hand_splayed:','qrc:/res/emojis/1f590.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f590.png'' />','1f590','people');
-INSERT INTO `custom_emojis` VALUES (':hand_splayed_tone1:','qrc:/res/emojis/1f590-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f590-1f3fb.png'' />','1f590-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':hand_splayed_tone2:','qrc:/res/emojis/1f590-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f590-1f3fc.png'' />','1f590-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':hand_splayed_tone3:','qrc:/res/emojis/1f590-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f590-1f3fd.png'' />','1f590-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':hand_splayed_tone4:','qrc:/res/emojis/1f590-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f590-1f3fe.png'' />','1f590-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':hand_splayed_tone5:','qrc:/res/emojis/1f590-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f590-1f3ff.png'' />','1f590-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':handbag:','qrc:/res/emojis/1f45c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f45c.png'' />','1f45c','people');
-INSERT INTO `custom_emojis` VALUES (':handball:','qrc:/res/emojis/1f93e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93e.png'' />','1f93e','activity');
-INSERT INTO `custom_emojis` VALUES (':handball_tone1:','qrc:/res/emojis/1f93e-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93e-1f3fb.png'' />','1f93e-1f3fb','activity');
-INSERT INTO `custom_emojis` VALUES (':handball_tone2:','qrc:/res/emojis/1f93e-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93e-1f3fc.png'' />','1f93e-1f3fc','activity');
-INSERT INTO `custom_emojis` VALUES (':handball_tone3:','qrc:/res/emojis/1f93e-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93e-1f3fd.png'' />','1f93e-1f3fd','activity');
-INSERT INTO `custom_emojis` VALUES (':handball_tone4:','qrc:/res/emojis/1f93e-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93e-1f3fe.png'' />','1f93e-1f3fe','activity');
-INSERT INTO `custom_emojis` VALUES (':handball_tone5:','qrc:/res/emojis/1f93e-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93e-1f3ff.png'' />','1f93e-1f3ff','activity');
-INSERT INTO `custom_emojis` VALUES (':handshake:','qrc:/res/emojis/1f91d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91d.png'' />','1f91d','people');
-INSERT INTO `custom_emojis` VALUES (':handshake_tone1:','qrc:/res/emojis/1f91d-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91d-1f3fb.png'' />','1f91d-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':handshake_tone2:','qrc:/res/emojis/1f91d-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91d-1f3fc.png'' />','1f91d-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':handshake_tone3:','qrc:/res/emojis/1f91d-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91d-1f3fd.png'' />','1f91d-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':handshake_tone4:','qrc:/res/emojis/1f91d-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91d-1f3fe.png'' />','1f91d-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':handshake_tone5:','qrc:/res/emojis/1f91d-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91d-1f3ff.png'' />','1f91d-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':hash:','qrc:/res/emojis/0023-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0023-20e3.png'' />','0023-20e3','symbols');
-INSERT INTO `custom_emojis` VALUES (':hatched_chick:','qrc:/res/emojis/1f425.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f425.png'' />','1f425','nature');
-INSERT INTO `custom_emojis` VALUES (':hatching_chick:','qrc:/res/emojis/1f423.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f423.png'' />','1f423','nature');
-INSERT INTO `custom_emojis` VALUES (':head_bandage:','qrc:/res/emojis/1f915.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f915.png'' />','1f915','people');
-INSERT INTO `custom_emojis` VALUES (':headphones:','qrc:/res/emojis/1f3a7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a7.png'' />','1f3a7','activity');
-INSERT INTO `custom_emojis` VALUES (':hear_no_evil:','qrc:/res/emojis/1f649.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f649.png'' />','1f649','nature');
-INSERT INTO `custom_emojis` VALUES (':heart:','qrc:/res/emojis/2764.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2764.png'' />','2764','symbols');
-INSERT INTO `custom_emojis` VALUES (':heart_decoration:','qrc:/res/emojis/1f49f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f49f.png'' />','1f49f','symbols');
-INSERT INTO `custom_emojis` VALUES (':heart_exclamation:','qrc:/res/emojis/2763.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2763.png'' />','2763','symbols');
-INSERT INTO `custom_emojis` VALUES (':heart_eyes:','qrc:/res/emojis/1f60d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f60d.png'' />','1f60d','people');
-INSERT INTO `custom_emojis` VALUES (':heart_eyes_cat:','qrc:/res/emojis/1f63b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f63b.png'' />','1f63b','people');
-INSERT INTO `custom_emojis` VALUES (':heartbeat:','qrc:/res/emojis/1f493.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f493.png'' />','1f493','symbols');
-INSERT INTO `custom_emojis` VALUES (':heartpulse:','qrc:/res/emojis/1f497.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f497.png'' />','1f497','symbols');
-INSERT INTO `custom_emojis` VALUES (':hearts:','qrc:/res/emojis/2665.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2665.png'' />','2665','symbols');
-INSERT INTO `custom_emojis` VALUES (':heavy_check_mark:','qrc:/res/emojis/2714.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2714.png'' />','2714','symbols');
-INSERT INTO `custom_emojis` VALUES (':heavy_division_sign:','qrc:/res/emojis/2797.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2797.png'' />','2797','symbols');
-INSERT INTO `custom_emojis` VALUES (':heavy_dollar_sign:','qrc:/res/emojis/1f4b2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b2.png'' />','1f4b2','symbols');
-INSERT INTO `custom_emojis` VALUES (':heavy_minus_sign:','qrc:/res/emojis/2796.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2796.png'' />','2796','symbols');
-INSERT INTO `custom_emojis` VALUES (':heavy_multiplication_x:','qrc:/res/emojis/2716.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2716.png'' />','2716','symbols');
-INSERT INTO `custom_emojis` VALUES (':heavy_plus_sign:','qrc:/res/emojis/2795.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2795.png'' />','2795','symbols');
-INSERT INTO `custom_emojis` VALUES (':helicopter:','qrc:/res/emojis/1f681.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f681.png'' />','1f681','travel');
-INSERT INTO `custom_emojis` VALUES (':helmet_with_cross:','qrc:/res/emojis/26d1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26d1.png'' />','26d1','people');
-INSERT INTO `custom_emojis` VALUES (':herb:','qrc:/res/emojis/1f33f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f33f.png'' />','1f33f','nature');
-INSERT INTO `custom_emojis` VALUES (':hibiscus:','qrc:/res/emojis/1f33a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f33a.png'' />','1f33a','nature');
-INSERT INTO `custom_emojis` VALUES (':high_brightness:','qrc:/res/emojis/1f506.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f506.png'' />','1f506','symbols');
-INSERT INTO `custom_emojis` VALUES (':high_heel:','qrc:/res/emojis/1f460.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f460.png'' />','1f460','people');
-INSERT INTO `custom_emojis` VALUES (':hockey:','qrc:/res/emojis/1f3d2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d2.png'' />','1f3d2','activity');
-INSERT INTO `custom_emojis` VALUES (':hole:','qrc:/res/emojis/1f573.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f573.png'' />','1f573','objects');
-INSERT INTO `custom_emojis` VALUES (':homes:','qrc:/res/emojis/1f3d8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d8.png'' />','1f3d8','travel');
-INSERT INTO `custom_emojis` VALUES (':honey_pot:','qrc:/res/emojis/1f36f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f36f.png'' />','1f36f','food');
-INSERT INTO `custom_emojis` VALUES (':horse:','qrc:/res/emojis/1f434.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f434.png'' />','1f434','nature');
-INSERT INTO `custom_emojis` VALUES (':horse_racing:','qrc:/res/emojis/1f3c7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c7.png'' />','1f3c7','activity');
-INSERT INTO `custom_emojis` VALUES (':horse_racing_tone1:','qrc:/res/emojis/1f3c7-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c7-1f3fb.png'' />','1f3c7-1f3fb','activity');
-INSERT INTO `custom_emojis` VALUES (':horse_racing_tone2:','qrc:/res/emojis/1f3c7-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c7-1f3fc.png'' />','1f3c7-1f3fc','activity');
-INSERT INTO `custom_emojis` VALUES (':horse_racing_tone3:','qrc:/res/emojis/1f3c7-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c7-1f3fd.png'' />','1f3c7-1f3fd','activity');
-INSERT INTO `custom_emojis` VALUES (':horse_racing_tone4:','qrc:/res/emojis/1f3c7-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c7-1f3fe.png'' />','1f3c7-1f3fe','activity');
-INSERT INTO `custom_emojis` VALUES (':horse_racing_tone5:','qrc:/res/emojis/1f3c7-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c7-1f3ff.png'' />','1f3c7-1f3ff','activity');
-INSERT INTO `custom_emojis` VALUES (':hospital:','qrc:/res/emojis/1f3e5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e5.png'' />','1f3e5','travel');
-INSERT INTO `custom_emojis` VALUES (':hot_pepper:','qrc:/res/emojis/1f336.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f336.png'' />','1f336','food');
-INSERT INTO `custom_emojis` VALUES (':hotdog:','qrc:/res/emojis/1f32d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f32d.png'' />','1f32d','food');
-INSERT INTO `custom_emojis` VALUES (':hotel:','qrc:/res/emojis/1f3e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e8.png'' />','1f3e8','travel');
-INSERT INTO `custom_emojis` VALUES (':hotsprings:','qrc:/res/emojis/2668.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2668.png'' />','2668','symbols');
-INSERT INTO `custom_emojis` VALUES (':hourglass:','qrc:/res/emojis/231b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/231b.png'' />','231b','objects');
-INSERT INTO `custom_emojis` VALUES (':hourglass_flowing_sand:','qrc:/res/emojis/23f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23f3.png'' />','23f3','objects');
-INSERT INTO `custom_emojis` VALUES (':house:','qrc:/res/emojis/1f3e0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e0.png'' />','1f3e0','travel');
-INSERT INTO `custom_emojis` VALUES (':house_abandoned:','qrc:/res/emojis/1f3da.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3da.png'' />','1f3da','travel');
-INSERT INTO `custom_emojis` VALUES (':house_with_garden:','qrc:/res/emojis/1f3e1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e1.png'' />','1f3e1','travel');
-INSERT INTO `custom_emojis` VALUES (':hugging:','qrc:/res/emojis/1f917.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f917.png'' />','1f917','people');
-INSERT INTO `custom_emojis` VALUES (':hushed:','qrc:/res/emojis/1f62f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f62f.png'' />','1f62f','people');
-INSERT INTO `custom_emojis` VALUES (':ice_cream:','qrc:/res/emojis/1f368.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f368.png'' />','1f368','food');
-INSERT INTO `custom_emojis` VALUES (':ice_skate:','qrc:/res/emojis/26f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f8.png'' />','26f8','activity');
-INSERT INTO `custom_emojis` VALUES (':icecream:','qrc:/res/emojis/1f366.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f366.png'' />','1f366','food');
-INSERT INTO `custom_emojis` VALUES (':id:','qrc:/res/emojis/1f194.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f194.png'' />','1f194','symbols');
-INSERT INTO `custom_emojis` VALUES (':ideograph_advantage:','qrc:/res/emojis/1f250.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f250.png'' />','1f250','symbols');
-INSERT INTO `custom_emojis` VALUES (':imp:','qrc:/res/emojis/1f47f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47f.png'' />','1f47f','people');
-INSERT INTO `custom_emojis` VALUES (':inbox_tray:','qrc:/res/emojis/1f4e5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e5.png'' />','1f4e5','objects');
-INSERT INTO `custom_emojis` VALUES (':incoming_envelope:','qrc:/res/emojis/1f4e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e8.png'' />','1f4e8','objects');
-INSERT INTO `custom_emojis` VALUES (':information_desk_person:','qrc:/res/emojis/1f481.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f481.png'' />','1f481','people');
-INSERT INTO `custom_emojis` VALUES (':information_desk_person_tone1:','qrc:/res/emojis/1f481-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f481-1f3fb.png'' />','1f481-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':information_desk_person_tone2:','qrc:/res/emojis/1f481-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f481-1f3fc.png'' />','1f481-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':information_desk_person_tone3:','qrc:/res/emojis/1f481-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f481-1f3fd.png'' />','1f481-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':information_desk_person_tone4:','qrc:/res/emojis/1f481-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f481-1f3fe.png'' />','1f481-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':information_desk_person_tone5:','qrc:/res/emojis/1f481-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f481-1f3ff.png'' />','1f481-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':information_source:','qrc:/res/emojis/2139.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2139.png'' />','2139','symbols');
-INSERT INTO `custom_emojis` VALUES (':innocent:','qrc:/res/emojis/1f607.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f607.png'' />','1f607','people');
-INSERT INTO `custom_emojis` VALUES (':interrobang:','qrc:/res/emojis/2049.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2049.png'' />','2049','symbols');
-INSERT INTO `custom_emojis` VALUES (':iphone:','qrc:/res/emojis/1f4f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f1.png'' />','1f4f1','objects');
-INSERT INTO `custom_emojis` VALUES (':island:','qrc:/res/emojis/1f3dd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3dd.png'' />','1f3dd','travel');
-INSERT INTO `custom_emojis` VALUES (':izakaya_lantern:','qrc:/res/emojis/1f3ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ee.png'' />','1f3ee','objects');
-INSERT INTO `custom_emojis` VALUES (':jack_o_lantern:','qrc:/res/emojis/1f383.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f383.png'' />','1f383','nature');
-INSERT INTO `custom_emojis` VALUES (':japan:','qrc:/res/emojis/1f5fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5fe.png'' />','1f5fe','travel');
-INSERT INTO `custom_emojis` VALUES (':japanese_castle:','qrc:/res/emojis/1f3ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ef.png'' />','1f3ef','travel');
-INSERT INTO `custom_emojis` VALUES (':japanese_goblin:','qrc:/res/emojis/1f47a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47a.png'' />','1f47a','people');
-INSERT INTO `custom_emojis` VALUES (':japanese_ogre:','qrc:/res/emojis/1f479.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f479.png'' />','1f479','people');
-INSERT INTO `custom_emojis` VALUES (':jeans:','qrc:/res/emojis/1f456.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f456.png'' />','1f456','people');
-INSERT INTO `custom_emojis` VALUES (':joy:','qrc:/res/emojis/1f602.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f602.png'' />','1f602','people');
-INSERT INTO `custom_emojis` VALUES (':joy_cat:','qrc:/res/emojis/1f639.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f639.png'' />','1f639','people');
-INSERT INTO `custom_emojis` VALUES (':joystick:','qrc:/res/emojis/1f579.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f579.png'' />','1f579','objects');
-INSERT INTO `custom_emojis` VALUES (':juggling:','qrc:/res/emojis/1f939.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f939.png'' />','1f939','activity');
-INSERT INTO `custom_emojis` VALUES (':juggling_tone1:','qrc:/res/emojis/1f939-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f939-1f3fb.png'' />','1f939-1f3fb','activity');
-INSERT INTO `custom_emojis` VALUES (':juggling_tone2:','qrc:/res/emojis/1f939-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f939-1f3fc.png'' />','1f939-1f3fc','activity');
-INSERT INTO `custom_emojis` VALUES (':juggling_tone3:','qrc:/res/emojis/1f939-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f939-1f3fd.png'' />','1f939-1f3fd','activity');
-INSERT INTO `custom_emojis` VALUES (':juggling_tone4:','qrc:/res/emojis/1f939-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f939-1f3fe.png'' />','1f939-1f3fe','activity');
-INSERT INTO `custom_emojis` VALUES (':juggling_tone5:','qrc:/res/emojis/1f939-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f939-1f3ff.png'' />','1f939-1f3ff','activity');
-INSERT INTO `custom_emojis` VALUES (':kaaba:','qrc:/res/emojis/1f54b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f54b.png'' />','1f54b','travel');
-INSERT INTO `custom_emojis` VALUES (':key:','qrc:/res/emojis/1f511.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f511.png'' />','1f511','objects');
-INSERT INTO `custom_emojis` VALUES (':key2:','qrc:/res/emojis/1f5dd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5dd.png'' />','1f5dd','objects');
-INSERT INTO `custom_emojis` VALUES (':keyboard:','qrc:/res/emojis/2328.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2328.png'' />','2328','objects');
-INSERT INTO `custom_emojis` VALUES (':keycap_ten:','qrc:/res/emojis/1f51f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f51f.png'' />','1f51f','symbols');
-INSERT INTO `custom_emojis` VALUES (':kimono:','qrc:/res/emojis/1f458.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f458.png'' />','1f458','people');
-INSERT INTO `custom_emojis` VALUES (':kiss:','qrc:/res/emojis/1f48b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f48b.png'' />','1f48b','people');
-INSERT INTO `custom_emojis` VALUES (':kiss_mm:','qrc:/res/emojis/1f468-2764-1f48b-1f468.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-2764-1f48b-1f468.png'' />','1f468-2764-1f48b-1f468','people');
-INSERT INTO `custom_emojis` VALUES (':kiss_ww:','qrc:/res/emojis/1f469-2764-1f48b-1f469.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-2764-1f48b-1f469.png'' />','1f469-2764-1f48b-1f469','people');
-INSERT INTO `custom_emojis` VALUES (':kissing:','qrc:/res/emojis/1f617.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f617.png'' />','1f617','people');
-INSERT INTO `custom_emojis` VALUES (':kissing_cat:','qrc:/res/emojis/1f63d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f63d.png'' />','1f63d','people');
-INSERT INTO `custom_emojis` VALUES (':kissing_closed_eyes:','qrc:/res/emojis/1f61a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f61a.png'' />','1f61a','people');
-INSERT INTO `custom_emojis` VALUES (':kissing_heart:','qrc:/res/emojis/1f618.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f618.png'' />','1f618','people');
-INSERT INTO `custom_emojis` VALUES (':kissing_smiling_eyes:','qrc:/res/emojis/1f619.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f619.png'' />','1f619','people');
-INSERT INTO `custom_emojis` VALUES (':kiwi:','qrc:/res/emojis/1f95d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f95d.png'' />','1f95d','food');
-INSERT INTO `custom_emojis` VALUES (':knife:','qrc:/res/emojis/1f52a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f52a.png'' />','1f52a','objects');
-INSERT INTO `custom_emojis` VALUES (':koala:','qrc:/res/emojis/1f428.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f428.png'' />','1f428','nature');
-INSERT INTO `custom_emojis` VALUES (':koko:','qrc:/res/emojis/1f201.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f201.png'' />','1f201','symbols');
-INSERT INTO `custom_emojis` VALUES (':label:','qrc:/res/emojis/1f3f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3f7.png'' />','1f3f7','objects');
-INSERT INTO `custom_emojis` VALUES (':large_blue_circle:','qrc:/res/emojis/1f535.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f535.png'' />','1f535','symbols');
-INSERT INTO `custom_emojis` VALUES (':large_blue_diamond:','qrc:/res/emojis/1f537.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f537.png'' />','1f537','symbols');
-INSERT INTO `custom_emojis` VALUES (':large_orange_diamond:','qrc:/res/emojis/1f536.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f536.png'' />','1f536','symbols');
-INSERT INTO `custom_emojis` VALUES (':last_quarter_moon:','qrc:/res/emojis/1f317.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f317.png'' />','1f317','nature');
-INSERT INTO `custom_emojis` VALUES (':last_quarter_moon_with_face:','qrc:/res/emojis/1f31c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f31c.png'' />','1f31c','nature');
-INSERT INTO `custom_emojis` VALUES (':laughing:','qrc:/res/emojis/1f606.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f606.png'' />','1f606','people');
-INSERT INTO `custom_emojis` VALUES (':leaves:','qrc:/res/emojis/1f343.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f343.png'' />','1f343','nature');
-INSERT INTO `custom_emojis` VALUES (':ledger:','qrc:/res/emojis/1f4d2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d2.png'' />','1f4d2','objects');
-INSERT INTO `custom_emojis` VALUES (':left_facing_fist:','qrc:/res/emojis/1f91b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91b.png'' />','1f91b','people');
-INSERT INTO `custom_emojis` VALUES (':left_facing_fist_tone1:','qrc:/res/emojis/1f91b-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91b-1f3fb.png'' />','1f91b-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':left_facing_fist_tone2:','qrc:/res/emojis/1f91b-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91b-1f3fc.png'' />','1f91b-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':left_facing_fist_tone3:','qrc:/res/emojis/1f91b-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91b-1f3fd.png'' />','1f91b-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':left_facing_fist_tone4:','qrc:/res/emojis/1f91b-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91b-1f3fe.png'' />','1f91b-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':left_facing_fist_tone5:','qrc:/res/emojis/1f91b-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91b-1f3ff.png'' />','1f91b-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':left_luggage:','qrc:/res/emojis/1f6c5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c5.png'' />','1f6c5','symbols');
-INSERT INTO `custom_emojis` VALUES (':left_right_arrow:','qrc:/res/emojis/2194.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2194.png'' />','2194','symbols');
-INSERT INTO `custom_emojis` VALUES (':leftwards_arrow_with_hook:','qrc:/res/emojis/21a9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/21a9.png'' />','21a9','symbols');
-INSERT INTO `custom_emojis` VALUES (':lemon:','qrc:/res/emojis/1f34b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f34b.png'' />','1f34b','food');
-INSERT INTO `custom_emojis` VALUES (':leo:','qrc:/res/emojis/264c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/264c.png'' />','264c','symbols');
-INSERT INTO `custom_emojis` VALUES (':leopard:','qrc:/res/emojis/1f406.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f406.png'' />','1f406','nature');
-INSERT INTO `custom_emojis` VALUES (':level_slider:','qrc:/res/emojis/1f39a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f39a.png'' />','1f39a','objects');
-INSERT INTO `custom_emojis` VALUES (':levitate:','qrc:/res/emojis/1f574.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f574.png'' />','1f574','activity');
-INSERT INTO `custom_emojis` VALUES (':libra:','qrc:/res/emojis/264e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/264e.png'' />','264e','symbols');
-INSERT INTO `custom_emojis` VALUES (':lifter:','qrc:/res/emojis/1f3cb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cb.png'' />','1f3cb','activity');
-INSERT INTO `custom_emojis` VALUES (':lifter_tone1:','qrc:/res/emojis/1f3cb-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cb-1f3fb.png'' />','1f3cb-1f3fb','activity');
-INSERT INTO `custom_emojis` VALUES (':lifter_tone2:','qrc:/res/emojis/1f3cb-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cb-1f3fc.png'' />','1f3cb-1f3fc','activity');
-INSERT INTO `custom_emojis` VALUES (':lifter_tone3:','qrc:/res/emojis/1f3cb-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cb-1f3fd.png'' />','1f3cb-1f3fd','activity');
-INSERT INTO `custom_emojis` VALUES (':lifter_tone4:','qrc:/res/emojis/1f3cb-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cb-1f3fe.png'' />','1f3cb-1f3fe','activity');
-INSERT INTO `custom_emojis` VALUES (':lifter_tone5:','qrc:/res/emojis/1f3cb-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cb-1f3ff.png'' />','1f3cb-1f3ff','activity');
-INSERT INTO `custom_emojis` VALUES (':light_rail:','qrc:/res/emojis/1f688.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f688.png'' />','1f688','travel');
-INSERT INTO `custom_emojis` VALUES (':link:','qrc:/res/emojis/1f517.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f517.png'' />','1f517','objects');
-INSERT INTO `custom_emojis` VALUES (':lion_face:','qrc:/res/emojis/1f981.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f981.png'' />','1f981','nature');
-INSERT INTO `custom_emojis` VALUES (':lips:','qrc:/res/emojis/1f444.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f444.png'' />','1f444','people');
-INSERT INTO `custom_emojis` VALUES (':lipstick:','qrc:/res/emojis/1f484.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f484.png'' />','1f484','people');
-INSERT INTO `custom_emojis` VALUES (':lizard:','qrc:/res/emojis/1f98e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f98e.png'' />','1f98e','nature');
-INSERT INTO `custom_emojis` VALUES (':lock:','qrc:/res/emojis/1f512.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f512.png'' />','1f512','objects');
-INSERT INTO `custom_emojis` VALUES (':lock_with_ink_pen:','qrc:/res/emojis/1f50f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f50f.png'' />','1f50f','objects');
-INSERT INTO `custom_emojis` VALUES (':lollipop:','qrc:/res/emojis/1f36d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f36d.png'' />','1f36d','food');
-INSERT INTO `custom_emojis` VALUES (':loop:','qrc:/res/emojis/27bf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/27bf.png'' />','27bf','symbols');
-INSERT INTO `custom_emojis` VALUES (':loud_sound:','qrc:/res/emojis/1f50a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f50a.png'' />','1f50a','symbols');
-INSERT INTO `custom_emojis` VALUES (':loudspeaker:','qrc:/res/emojis/1f4e2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e2.png'' />','1f4e2','symbols');
-INSERT INTO `custom_emojis` VALUES (':love_hotel:','qrc:/res/emojis/1f3e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e9.png'' />','1f3e9','travel');
-INSERT INTO `custom_emojis` VALUES (':love_letter:','qrc:/res/emojis/1f48c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f48c.png'' />','1f48c','objects');
-INSERT INTO `custom_emojis` VALUES (':low_brightness:','qrc:/res/emojis/1f505.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f505.png'' />','1f505','symbols');
-INSERT INTO `custom_emojis` VALUES (':lying_face:','qrc:/res/emojis/1f925.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f925.png'' />','1f925','people');
-INSERT INTO `custom_emojis` VALUES (':m:','qrc:/res/emojis/24c2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/24c2.png'' />','24c2','symbols');
-INSERT INTO `custom_emojis` VALUES (':mag:','qrc:/res/emojis/1f50d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f50d.png'' />','1f50d','objects');
-INSERT INTO `custom_emojis` VALUES (':mag_right:','qrc:/res/emojis/1f50e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f50e.png'' />','1f50e','objects');
-INSERT INTO `custom_emojis` VALUES (':mahjong:','qrc:/res/emojis/1f004.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f004.png'' />','1f004','symbols');
-INSERT INTO `custom_emojis` VALUES (':mailbox:','qrc:/res/emojis/1f4eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4eb.png'' />','1f4eb','objects');
-INSERT INTO `custom_emojis` VALUES (':mailbox_closed:','qrc:/res/emojis/1f4ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ea.png'' />','1f4ea','objects');
-INSERT INTO `custom_emojis` VALUES (':mailbox_with_mail:','qrc:/res/emojis/1f4ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ec.png'' />','1f4ec','objects');
-INSERT INTO `custom_emojis` VALUES (':mailbox_with_no_mail:','qrc:/res/emojis/1f4ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ed.png'' />','1f4ed','objects');
-INSERT INTO `custom_emojis` VALUES (':man:','qrc:/res/emojis/1f468.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468.png'' />','1f468','people');
-INSERT INTO `custom_emojis` VALUES (':man_dancing:','qrc:/res/emojis/1f57a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f57a.png'' />','1f57a','people');
-INSERT INTO `custom_emojis` VALUES (':man_dancing_tone1:','qrc:/res/emojis/1f57a-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f57a-1f3fb.png'' />','1f57a-1f3fb','activity');
-INSERT INTO `custom_emojis` VALUES (':man_dancing_tone2:','qrc:/res/emojis/1f57a-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f57a-1f3fc.png'' />','1f57a-1f3fc','activity');
-INSERT INTO `custom_emojis` VALUES (':man_dancing_tone3:','qrc:/res/emojis/1f57a-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f57a-1f3fd.png'' />','1f57a-1f3fd','activity');
-INSERT INTO `custom_emojis` VALUES (':man_dancing_tone4:','qrc:/res/emojis/1f57a-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f57a-1f3fe.png'' />','1f57a-1f3fe','activity');
-INSERT INTO `custom_emojis` VALUES (':man_dancing_tone5:','qrc:/res/emojis/1f57a-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f57a-1f3ff.png'' />','1f57a-1f3ff','activity');
-INSERT INTO `custom_emojis` VALUES (':man_in_tuxedo:','qrc:/res/emojis/1f935.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f935.png'' />','1f935','people');
-INSERT INTO `custom_emojis` VALUES (':man_in_tuxedo_tone1:','qrc:/res/emojis/1f935-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f935-1f3fb.png'' />','1f935-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':man_in_tuxedo_tone2:','qrc:/res/emojis/1f935-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f935-1f3fc.png'' />','1f935-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':man_in_tuxedo_tone3:','qrc:/res/emojis/1f935-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f935-1f3fd.png'' />','1f935-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':man_in_tuxedo_tone4:','qrc:/res/emojis/1f935-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f935-1f3fe.png'' />','1f935-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':man_in_tuxedo_tone5:','qrc:/res/emojis/1f935-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f935-1f3ff.png'' />','1f935-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':man_tone1:','qrc:/res/emojis/1f468-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f3fb.png'' />','1f468-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':man_tone2:','qrc:/res/emojis/1f468-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f3fc.png'' />','1f468-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':man_tone3:','qrc:/res/emojis/1f468-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f3fd.png'' />','1f468-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':man_tone4:','qrc:/res/emojis/1f468-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f3fe.png'' />','1f468-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':man_tone5:','qrc:/res/emojis/1f468-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f3ff.png'' />','1f468-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':man_with_gua_pi_mao:','qrc:/res/emojis/1f472.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f472.png'' />','1f472','people');
-INSERT INTO `custom_emojis` VALUES (':man_with_gua_pi_mao_tone1:','qrc:/res/emojis/1f472-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f472-1f3fb.png'' />','1f472-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':man_with_gua_pi_mao_tone2:','qrc:/res/emojis/1f472-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f472-1f3fc.png'' />','1f472-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':man_with_gua_pi_mao_tone3:','qrc:/res/emojis/1f472-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f472-1f3fd.png'' />','1f472-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':man_with_gua_pi_mao_tone4:','qrc:/res/emojis/1f472-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f472-1f3fe.png'' />','1f472-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':man_with_gua_pi_mao_tone5:','qrc:/res/emojis/1f472-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f472-1f3ff.png'' />','1f472-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':man_with_turban:','qrc:/res/emojis/1f473.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f473.png'' />','1f473','people');
-INSERT INTO `custom_emojis` VALUES (':man_with_turban_tone1:','qrc:/res/emojis/1f473-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f473-1f3fb.png'' />','1f473-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':man_with_turban_tone2:','qrc:/res/emojis/1f473-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f473-1f3fc.png'' />','1f473-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':man_with_turban_tone3:','qrc:/res/emojis/1f473-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f473-1f3fd.png'' />','1f473-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':man_with_turban_tone4:','qrc:/res/emojis/1f473-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f473-1f3fe.png'' />','1f473-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':man_with_turban_tone5:','qrc:/res/emojis/1f473-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f473-1f3ff.png'' />','1f473-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':mans_shoe:','qrc:/res/emojis/1f45e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f45e.png'' />','1f45e','people');
-INSERT INTO `custom_emojis` VALUES (':map:','qrc:/res/emojis/1f5fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5fa.png'' />','1f5fa','objects');
-INSERT INTO `custom_emojis` VALUES (':maple_leaf:','qrc:/res/emojis/1f341.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f341.png'' />','1f341','nature');
-INSERT INTO `custom_emojis` VALUES (':martial_arts_uniform:','qrc:/res/emojis/1f94b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f94b.png'' />','1f94b','activity');
-INSERT INTO `custom_emojis` VALUES (':mask:','qrc:/res/emojis/1f637.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f637.png'' />','1f637','people');
-INSERT INTO `custom_emojis` VALUES (':massage:','qrc:/res/emojis/1f486.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f486.png'' />','1f486','people');
-INSERT INTO `custom_emojis` VALUES (':massage_tone1:','qrc:/res/emojis/1f486-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f486-1f3fb.png'' />','1f486-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':massage_tone2:','qrc:/res/emojis/1f486-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f486-1f3fc.png'' />','1f486-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':massage_tone3:','qrc:/res/emojis/1f486-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f486-1f3fd.png'' />','1f486-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':massage_tone4:','qrc:/res/emojis/1f486-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f486-1f3fe.png'' />','1f486-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':massage_tone5:','qrc:/res/emojis/1f486-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f486-1f3ff.png'' />','1f486-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':meat_on_bone:','qrc:/res/emojis/1f356.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f356.png'' />','1f356','food');
-INSERT INTO `custom_emojis` VALUES (':medal:','qrc:/res/emojis/1f3c5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c5.png'' />','1f3c5','activity');
-INSERT INTO `custom_emojis` VALUES (':mega:','qrc:/res/emojis/1f4e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e3.png'' />','1f4e3','symbols');
-INSERT INTO `custom_emojis` VALUES (':melon:','qrc:/res/emojis/1f348.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f348.png'' />','1f348','food');
-INSERT INTO `custom_emojis` VALUES (':menorah:','qrc:/res/emojis/1f54e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f54e.png'' />','1f54e','symbols');
-INSERT INTO `custom_emojis` VALUES (':mens:','qrc:/res/emojis/1f6b9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b9.png'' />','1f6b9','symbols');
-INSERT INTO `custom_emojis` VALUES (':metal:','qrc:/res/emojis/1f918.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f918.png'' />','1f918','people');
-INSERT INTO `custom_emojis` VALUES (':metal_tone1:','qrc:/res/emojis/1f918-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f918-1f3fb.png'' />','1f918-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':metal_tone2:','qrc:/res/emojis/1f918-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f918-1f3fc.png'' />','1f918-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':metal_tone3:','qrc:/res/emojis/1f918-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f918-1f3fd.png'' />','1f918-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':metal_tone4:','qrc:/res/emojis/1f918-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f918-1f3fe.png'' />','1f918-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':metal_tone5:','qrc:/res/emojis/1f918-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f918-1f3ff.png'' />','1f918-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':metro:','qrc:/res/emojis/1f687.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f687.png'' />','1f687','travel');
-INSERT INTO `custom_emojis` VALUES (':microphone:','qrc:/res/emojis/1f3a4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a4.png'' />','1f3a4','activity');
-INSERT INTO `custom_emojis` VALUES (':microphone2:','qrc:/res/emojis/1f399.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f399.png'' />','1f399','objects');
-INSERT INTO `custom_emojis` VALUES (':microscope:','qrc:/res/emojis/1f52c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f52c.png'' />','1f52c','objects');
-INSERT INTO `custom_emojis` VALUES (':middle_finger:','qrc:/res/emojis/1f595.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f595.png'' />','1f595','people');
-INSERT INTO `custom_emojis` VALUES (':middle_finger_tone1:','qrc:/res/emojis/1f595-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f595-1f3fb.png'' />','1f595-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':middle_finger_tone2:','qrc:/res/emojis/1f595-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f595-1f3fc.png'' />','1f595-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':middle_finger_tone3:','qrc:/res/emojis/1f595-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f595-1f3fd.png'' />','1f595-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':middle_finger_tone4:','qrc:/res/emojis/1f595-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f595-1f3fe.png'' />','1f595-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':middle_finger_tone5:','qrc:/res/emojis/1f595-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f595-1f3ff.png'' />','1f595-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':military_medal:','qrc:/res/emojis/1f396.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f396.png'' />','1f396','activity');
-INSERT INTO `custom_emojis` VALUES (':milk:','qrc:/res/emojis/1f95b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f95b.png'' />','1f95b','food');
-INSERT INTO `custom_emojis` VALUES (':milky_way:','qrc:/res/emojis/1f30c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f30c.png'' />','1f30c','travel');
-INSERT INTO `custom_emojis` VALUES (':minibus:','qrc:/res/emojis/1f690.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f690.png'' />','1f690','travel');
-INSERT INTO `custom_emojis` VALUES (':minidisc:','qrc:/res/emojis/1f4bd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4bd.png'' />','1f4bd','objects');
-INSERT INTO `custom_emojis` VALUES (':mobile_phone_off:','qrc:/res/emojis/1f4f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f4.png'' />','1f4f4','symbols');
-INSERT INTO `custom_emojis` VALUES (':money_mouth:','qrc:/res/emojis/1f911.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f911.png'' />','1f911','people');
-INSERT INTO `custom_emojis` VALUES (':money_with_wings:','qrc:/res/emojis/1f4b8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b8.png'' />','1f4b8','objects');
-INSERT INTO `custom_emojis` VALUES (':moneybag:','qrc:/res/emojis/1f4b0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b0.png'' />','1f4b0','objects');
-INSERT INTO `custom_emojis` VALUES (':monkey:','qrc:/res/emojis/1f412.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f412.png'' />','1f412','nature');
-INSERT INTO `custom_emojis` VALUES (':monkey_face:','qrc:/res/emojis/1f435.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f435.png'' />','1f435','nature');
-INSERT INTO `custom_emojis` VALUES (':monorail:','qrc:/res/emojis/1f69d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f69d.png'' />','1f69d','travel');
-INSERT INTO `custom_emojis` VALUES (':mortar_board:','qrc:/res/emojis/1f393.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f393.png'' />','1f393','people');
-INSERT INTO `custom_emojis` VALUES (':mosque:','qrc:/res/emojis/1f54c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f54c.png'' />','1f54c','travel');
-INSERT INTO `custom_emojis` VALUES (':motor_scooter:','qrc:/res/emojis/1f6f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6f5.png'' />','1f6f5','travel');
-INSERT INTO `custom_emojis` VALUES (':motorboat:','qrc:/res/emojis/1f6e5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6e5.png'' />','1f6e5','travel');
-INSERT INTO `custom_emojis` VALUES (':motorcycle:','qrc:/res/emojis/1f3cd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cd.png'' />','1f3cd','travel');
-INSERT INTO `custom_emojis` VALUES (':motorway:','qrc:/res/emojis/1f6e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6e3.png'' />','1f6e3','travel');
-INSERT INTO `custom_emojis` VALUES (':mount_fuji:','qrc:/res/emojis/1f5fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5fb.png'' />','1f5fb','travel');
-INSERT INTO `custom_emojis` VALUES (':mountain:','qrc:/res/emojis/26f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f0.png'' />','26f0','travel');
-INSERT INTO `custom_emojis` VALUES (':mountain_bicyclist:','qrc:/res/emojis/1f6b5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b5.png'' />','1f6b5','activity');
-INSERT INTO `custom_emojis` VALUES (':mountain_bicyclist_tone1:','qrc:/res/emojis/1f6b5-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b5-1f3fb.png'' />','1f6b5-1f3fb','activity');
-INSERT INTO `custom_emojis` VALUES (':mountain_bicyclist_tone2:','qrc:/res/emojis/1f6b5-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b5-1f3fc.png'' />','1f6b5-1f3fc','activity');
-INSERT INTO `custom_emojis` VALUES (':mountain_bicyclist_tone3:','qrc:/res/emojis/1f6b5-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b5-1f3fd.png'' />','1f6b5-1f3fd','activity');
-INSERT INTO `custom_emojis` VALUES (':mountain_bicyclist_tone4:','qrc:/res/emojis/1f6b5-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b5-1f3fe.png'' />','1f6b5-1f3fe','activity');
-INSERT INTO `custom_emojis` VALUES (':mountain_bicyclist_tone5:','qrc:/res/emojis/1f6b5-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b5-1f3ff.png'' />','1f6b5-1f3ff','activity');
-INSERT INTO `custom_emojis` VALUES (':mountain_cableway:','qrc:/res/emojis/1f6a0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a0.png'' />','1f6a0','travel');
-INSERT INTO `custom_emojis` VALUES (':mountain_railway:','qrc:/res/emojis/1f69e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f69e.png'' />','1f69e','travel');
-INSERT INTO `custom_emojis` VALUES (':mountain_snow:','qrc:/res/emojis/1f3d4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d4.png'' />','1f3d4','travel');
-INSERT INTO `custom_emojis` VALUES (':mouse:','qrc:/res/emojis/1f42d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f42d.png'' />','1f42d','nature');
-INSERT INTO `custom_emojis` VALUES (':mouse2:','qrc:/res/emojis/1f401.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f401.png'' />','1f401','nature');
-INSERT INTO `custom_emojis` VALUES (':mouse_three_button:','qrc:/res/emojis/1f5b1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5b1.png'' />','1f5b1','objects');
-INSERT INTO `custom_emojis` VALUES (':movie_camera:','qrc:/res/emojis/1f3a5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a5.png'' />','1f3a5','objects');
-INSERT INTO `custom_emojis` VALUES (':moyai:','qrc:/res/emojis/1f5ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5ff.png'' />','1f5ff','objects');
-INSERT INTO `custom_emojis` VALUES (':mrs_claus:','qrc:/res/emojis/1f936.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f936.png'' />','1f936','people');
-INSERT INTO `custom_emojis` VALUES (':mrs_claus_tone1:','qrc:/res/emojis/1f936-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f936-1f3fb.png'' />','1f936-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':mrs_claus_tone2:','qrc:/res/emojis/1f936-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f936-1f3fc.png'' />','1f936-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':mrs_claus_tone3:','qrc:/res/emojis/1f936-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f936-1f3fd.png'' />','1f936-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':mrs_claus_tone4:','qrc:/res/emojis/1f936-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f936-1f3fe.png'' />','1f936-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':mrs_claus_tone5:','qrc:/res/emojis/1f936-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f936-1f3ff.png'' />','1f936-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':muscle:','qrc:/res/emojis/1f4aa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4aa.png'' />','1f4aa','people');
-INSERT INTO `custom_emojis` VALUES (':muscle_tone1:','qrc:/res/emojis/1f4aa-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4aa-1f3fb.png'' />','1f4aa-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':muscle_tone2:','qrc:/res/emojis/1f4aa-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4aa-1f3fc.png'' />','1f4aa-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':muscle_tone3:','qrc:/res/emojis/1f4aa-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4aa-1f3fd.png'' />','1f4aa-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':muscle_tone4:','qrc:/res/emojis/1f4aa-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4aa-1f3fe.png'' />','1f4aa-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':muscle_tone5:','qrc:/res/emojis/1f4aa-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4aa-1f3ff.png'' />','1f4aa-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':mushroom:','qrc:/res/emojis/1f344.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f344.png'' />','1f344','nature');
-INSERT INTO `custom_emojis` VALUES (':musical_keyboard:','qrc:/res/emojis/1f3b9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b9.png'' />','1f3b9','activity');
-INSERT INTO `custom_emojis` VALUES (':musical_note:','qrc:/res/emojis/1f3b5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b5.png'' />','1f3b5','symbols');
-INSERT INTO `custom_emojis` VALUES (':musical_score:','qrc:/res/emojis/1f3bc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3bc.png'' />','1f3bc','activity');
-INSERT INTO `custom_emojis` VALUES (':mute:','qrc:/res/emojis/1f507.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f507.png'' />','1f507','symbols');
-INSERT INTO `custom_emojis` VALUES (':nail_care:','qrc:/res/emojis/1f485.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f485.png'' />','1f485','people');
-INSERT INTO `custom_emojis` VALUES (':nail_care_tone1:','qrc:/res/emojis/1f485-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f485-1f3fb.png'' />','1f485-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':nail_care_tone2:','qrc:/res/emojis/1f485-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f485-1f3fc.png'' />','1f485-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':nail_care_tone3:','qrc:/res/emojis/1f485-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f485-1f3fd.png'' />','1f485-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':nail_care_tone4:','qrc:/res/emojis/1f485-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f485-1f3fe.png'' />','1f485-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':nail_care_tone5:','qrc:/res/emojis/1f485-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f485-1f3ff.png'' />','1f485-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':name_badge:','qrc:/res/emojis/1f4db.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4db.png'' />','1f4db','symbols');
-INSERT INTO `custom_emojis` VALUES (':nauseated_face:','qrc:/res/emojis/1f922.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f922.png'' />','1f922','people');
-INSERT INTO `custom_emojis` VALUES (':necktie:','qrc:/res/emojis/1f454.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f454.png'' />','1f454','people');
-INSERT INTO `custom_emojis` VALUES (':negative_squared_cross_mark:','qrc:/res/emojis/274e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/274e.png'' />','274e','symbols');
-INSERT INTO `custom_emojis` VALUES (':nerd:','qrc:/res/emojis/1f913.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f913.png'' />','1f913','people');
-INSERT INTO `custom_emojis` VALUES (':neutral_face:','qrc:/res/emojis/1f610.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f610.png'' />','1f610','people');
-INSERT INTO `custom_emojis` VALUES (':new:','qrc:/res/emojis/1f195.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f195.png'' />','1f195','symbols');
-INSERT INTO `custom_emojis` VALUES (':new_moon:','qrc:/res/emojis/1f311.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f311.png'' />','1f311','nature');
-INSERT INTO `custom_emojis` VALUES (':new_moon_with_face:','qrc:/res/emojis/1f31a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f31a.png'' />','1f31a','nature');
-INSERT INTO `custom_emojis` VALUES (':newspaper:','qrc:/res/emojis/1f4f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f0.png'' />','1f4f0','objects');
-INSERT INTO `custom_emojis` VALUES (':newspaper2:','qrc:/res/emojis/1f5de.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5de.png'' />','1f5de','objects');
-INSERT INTO `custom_emojis` VALUES (':ng:','qrc:/res/emojis/1f196.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f196.png'' />','1f196','symbols');
-INSERT INTO `custom_emojis` VALUES (':night_with_stars:','qrc:/res/emojis/1f303.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f303.png'' />','1f303','travel');
-INSERT INTO `custom_emojis` VALUES (':nine:','qrc:/res/emojis/0039-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0039-20e3.png'' />','0039-20e3','symbols');
-INSERT INTO `custom_emojis` VALUES (':no_bell:','qrc:/res/emojis/1f515.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f515.png'' />','1f515','symbols');
-INSERT INTO `custom_emojis` VALUES (':no_bicycles:','qrc:/res/emojis/1f6b3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b3.png'' />','1f6b3','symbols');
-INSERT INTO `custom_emojis` VALUES (':no_entry:','qrc:/res/emojis/26d4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26d4.png'' />','26d4','symbols');
-INSERT INTO `custom_emojis` VALUES (':no_entry_sign:','qrc:/res/emojis/1f6ab.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6ab.png'' />','1f6ab','symbols');
-INSERT INTO `custom_emojis` VALUES (':no_good:','qrc:/res/emojis/1f645.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f645.png'' />','1f645','people');
-INSERT INTO `custom_emojis` VALUES (':no_good_tone1:','qrc:/res/emojis/1f645-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f645-1f3fb.png'' />','1f645-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':no_good_tone2:','qrc:/res/emojis/1f645-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f645-1f3fc.png'' />','1f645-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':no_good_tone3:','qrc:/res/emojis/1f645-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f645-1f3fd.png'' />','1f645-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':no_good_tone4:','qrc:/res/emojis/1f645-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f645-1f3fe.png'' />','1f645-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':no_good_tone5:','qrc:/res/emojis/1f645-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f645-1f3ff.png'' />','1f645-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':no_mobile_phones:','qrc:/res/emojis/1f4f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f5.png'' />','1f4f5','symbols');
-INSERT INTO `custom_emojis` VALUES (':no_mouth:','qrc:/res/emojis/1f636.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f636.png'' />','1f636','people');
-INSERT INTO `custom_emojis` VALUES (':no_pedestrians:','qrc:/res/emojis/1f6b7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b7.png'' />','1f6b7','symbols');
-INSERT INTO `custom_emojis` VALUES (':no_smoking:','qrc:/res/emojis/1f6ad.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6ad.png'' />','1f6ad','symbols');
-INSERT INTO `custom_emojis` VALUES (':non-potable_water:','qrc:/res/emojis/1f6b1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b1.png'' />','1f6b1','symbols');
-INSERT INTO `custom_emojis` VALUES (':nose:','qrc:/res/emojis/1f443.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f443.png'' />','1f443','people');
-INSERT INTO `custom_emojis` VALUES (':nose_tone1:','qrc:/res/emojis/1f443-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f443-1f3fb.png'' />','1f443-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':nose_tone2:','qrc:/res/emojis/1f443-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f443-1f3fc.png'' />','1f443-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':nose_tone3:','qrc:/res/emojis/1f443-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f443-1f3fd.png'' />','1f443-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':nose_tone4:','qrc:/res/emojis/1f443-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f443-1f3fe.png'' />','1f443-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':nose_tone5:','qrc:/res/emojis/1f443-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f443-1f3ff.png'' />','1f443-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':notebook:','qrc:/res/emojis/1f4d3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d3.png'' />','1f4d3','objects');
-INSERT INTO `custom_emojis` VALUES (':notebook_with_decorative_cover:','qrc:/res/emojis/1f4d4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d4.png'' />','1f4d4','objects');
-INSERT INTO `custom_emojis` VALUES (':notepad_spiral:','qrc:/res/emojis/1f5d2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5d2.png'' />','1f5d2','objects');
-INSERT INTO `custom_emojis` VALUES (':notes:','qrc:/res/emojis/1f3b6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b6.png'' />','1f3b6','symbols');
-INSERT INTO `custom_emojis` VALUES (':nut_and_bolt:','qrc:/res/emojis/1f529.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f529.png'' />','1f529','objects');
-INSERT INTO `custom_emojis` VALUES (':o:','qrc:/res/emojis/2b55.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2b55.png'' />','2b55','symbols');
-INSERT INTO `custom_emojis` VALUES (':o2:','qrc:/res/emojis/1f17e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f17e.png'' />','1f17e','symbols');
-INSERT INTO `custom_emojis` VALUES (':ocean:','qrc:/res/emojis/1f30a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f30a.png'' />','1f30a','nature');
-INSERT INTO `custom_emojis` VALUES (':octagonal_sign:','qrc:/res/emojis/1f6d1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6d1.png'' />','1f6d1','symbols');
-INSERT INTO `custom_emojis` VALUES (':octopus:','qrc:/res/emojis/1f419.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f419.png'' />','1f419','nature');
-INSERT INTO `custom_emojis` VALUES (':oden:','qrc:/res/emojis/1f362.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f362.png'' />','1f362','food');
-INSERT INTO `custom_emojis` VALUES (':office:','qrc:/res/emojis/1f3e2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e2.png'' />','1f3e2','travel');
-INSERT INTO `custom_emojis` VALUES (':oil:','qrc:/res/emojis/1f6e2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6e2.png'' />','1f6e2','objects');
-INSERT INTO `custom_emojis` VALUES (':ok:','qrc:/res/emojis/1f197.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f197.png'' />','1f197','symbols');
-INSERT INTO `custom_emojis` VALUES (':ok_hand:','qrc:/res/emojis/1f44c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44c.png'' />','1f44c','people');
-INSERT INTO `custom_emojis` VALUES (':ok_hand_tone1:','qrc:/res/emojis/1f44c-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44c-1f3fb.png'' />','1f44c-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':ok_hand_tone2:','qrc:/res/emojis/1f44c-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44c-1f3fc.png'' />','1f44c-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':ok_hand_tone3:','qrc:/res/emojis/1f44c-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44c-1f3fd.png'' />','1f44c-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':ok_hand_tone4:','qrc:/res/emojis/1f44c-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44c-1f3fe.png'' />','1f44c-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':ok_hand_tone5:','qrc:/res/emojis/1f44c-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44c-1f3ff.png'' />','1f44c-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':ok_woman:','qrc:/res/emojis/1f646.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f646.png'' />','1f646','people');
-INSERT INTO `custom_emojis` VALUES (':ok_woman_tone1:','qrc:/res/emojis/1f646-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f646-1f3fb.png'' />','1f646-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':ok_woman_tone2:','qrc:/res/emojis/1f646-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f646-1f3fc.png'' />','1f646-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':ok_woman_tone3:','qrc:/res/emojis/1f646-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f646-1f3fd.png'' />','1f646-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':ok_woman_tone4:','qrc:/res/emojis/1f646-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f646-1f3fe.png'' />','1f646-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':ok_woman_tone5:','qrc:/res/emojis/1f646-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f646-1f3ff.png'' />','1f646-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':older_man:','qrc:/res/emojis/1f474.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f474.png'' />','1f474','people');
-INSERT INTO `custom_emojis` VALUES (':older_man_tone1:','qrc:/res/emojis/1f474-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f474-1f3fb.png'' />','1f474-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':older_man_tone2:','qrc:/res/emojis/1f474-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f474-1f3fc.png'' />','1f474-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':older_man_tone3:','qrc:/res/emojis/1f474-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f474-1f3fd.png'' />','1f474-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':older_man_tone4:','qrc:/res/emojis/1f474-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f474-1f3fe.png'' />','1f474-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':older_man_tone5:','qrc:/res/emojis/1f474-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f474-1f3ff.png'' />','1f474-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':older_woman:','qrc:/res/emojis/1f475.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f475.png'' />','1f475','people');
-INSERT INTO `custom_emojis` VALUES (':older_woman_tone1:','qrc:/res/emojis/1f475-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f475-1f3fb.png'' />','1f475-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':older_woman_tone2:','qrc:/res/emojis/1f475-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f475-1f3fc.png'' />','1f475-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':older_woman_tone3:','qrc:/res/emojis/1f475-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f475-1f3fd.png'' />','1f475-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':older_woman_tone4:','qrc:/res/emojis/1f475-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f475-1f3fe.png'' />','1f475-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':older_woman_tone5:','qrc:/res/emojis/1f475-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f475-1f3ff.png'' />','1f475-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':om_symbol:','qrc:/res/emojis/1f549.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f549.png'' />','1f549','symbols');
-INSERT INTO `custom_emojis` VALUES (':on:','qrc:/res/emojis/1f51b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f51b.png'' />','1f51b','symbols');
-INSERT INTO `custom_emojis` VALUES (':oncoming_automobile:','qrc:/res/emojis/1f698.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f698.png'' />','1f698','travel');
-INSERT INTO `custom_emojis` VALUES (':oncoming_bus:','qrc:/res/emojis/1f68d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f68d.png'' />','1f68d','travel');
-INSERT INTO `custom_emojis` VALUES (':oncoming_police_car:','qrc:/res/emojis/1f694.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f694.png'' />','1f694','travel');
-INSERT INTO `custom_emojis` VALUES (':oncoming_taxi:','qrc:/res/emojis/1f696.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f696.png'' />','1f696','travel');
-INSERT INTO `custom_emojis` VALUES (':one:','qrc:/res/emojis/0031-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0031-20e3.png'' />','0031-20e3','symbols');
-INSERT INTO `custom_emojis` VALUES (':open_file_folder:','qrc:/res/emojis/1f4c2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c2.png'' />','1f4c2','objects');
-INSERT INTO `custom_emojis` VALUES (':open_hands:','qrc:/res/emojis/1f450.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f450.png'' />','1f450','people');
-INSERT INTO `custom_emojis` VALUES (':open_hands_tone1:','qrc:/res/emojis/1f450-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f450-1f3fb.png'' />','1f450-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':open_hands_tone2:','qrc:/res/emojis/1f450-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f450-1f3fc.png'' />','1f450-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':open_hands_tone3:','qrc:/res/emojis/1f450-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f450-1f3fd.png'' />','1f450-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':open_hands_tone4:','qrc:/res/emojis/1f450-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f450-1f3fe.png'' />','1f450-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':open_hands_tone5:','qrc:/res/emojis/1f450-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f450-1f3ff.png'' />','1f450-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':open_mouth:','qrc:/res/emojis/1f62e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f62e.png'' />','1f62e','people');
-INSERT INTO `custom_emojis` VALUES (':ophiuchus:','qrc:/res/emojis/26ce.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26ce.png'' />','26ce','symbols');
-INSERT INTO `custom_emojis` VALUES (':orange_book:','qrc:/res/emojis/1f4d9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d9.png'' />','1f4d9','objects');
-INSERT INTO `custom_emojis` VALUES (':orthodox_cross:','qrc:/res/emojis/2626.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2626.png'' />','2626','symbols');
-INSERT INTO `custom_emojis` VALUES (':outbox_tray:','qrc:/res/emojis/1f4e4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e4.png'' />','1f4e4','objects');
-INSERT INTO `custom_emojis` VALUES (':owl:','qrc:/res/emojis/1f989.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f989.png'' />','1f989','nature');
-INSERT INTO `custom_emojis` VALUES (':ox:','qrc:/res/emojis/1f402.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f402.png'' />','1f402','nature');
-INSERT INTO `custom_emojis` VALUES (':package:','qrc:/res/emojis/1f4e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e6.png'' />','1f4e6','objects');
-INSERT INTO `custom_emojis` VALUES (':page_facing_up:','qrc:/res/emojis/1f4c4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c4.png'' />','1f4c4','objects');
-INSERT INTO `custom_emojis` VALUES (':page_with_curl:','qrc:/res/emojis/1f4c3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c3.png'' />','1f4c3','objects');
-INSERT INTO `custom_emojis` VALUES (':pager:','qrc:/res/emojis/1f4df.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4df.png'' />','1f4df','objects');
-INSERT INTO `custom_emojis` VALUES (':paintbrush:','qrc:/res/emojis/1f58c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f58c.png'' />','1f58c','objects');
-INSERT INTO `custom_emojis` VALUES (':palm_tree:','qrc:/res/emojis/1f334.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f334.png'' />','1f334','nature');
-INSERT INTO `custom_emojis` VALUES (':pancakes:','qrc:/res/emojis/1f95e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f95e.png'' />','1f95e','food');
-INSERT INTO `custom_emojis` VALUES (':panda_face:','qrc:/res/emojis/1f43c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f43c.png'' />','1f43c','nature');
-INSERT INTO `custom_emojis` VALUES (':paperclip:','qrc:/res/emojis/1f4ce.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ce.png'' />','1f4ce','objects');
-INSERT INTO `custom_emojis` VALUES (':paperclips:','qrc:/res/emojis/1f587.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f587.png'' />','1f587','objects');
-INSERT INTO `custom_emojis` VALUES (':park:','qrc:/res/emojis/1f3de.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3de.png'' />','1f3de','travel');
-INSERT INTO `custom_emojis` VALUES (':parking:','qrc:/res/emojis/1f17f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f17f.png'' />','1f17f','symbols');
-INSERT INTO `custom_emojis` VALUES (':part_alternation_mark:','qrc:/res/emojis/303d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/303d.png'' />','303d','symbols');
-INSERT INTO `custom_emojis` VALUES (':partly_sunny:','qrc:/res/emojis/26c5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26c5.png'' />','26c5','nature');
-INSERT INTO `custom_emojis` VALUES (':passport_control:','qrc:/res/emojis/1f6c2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c2.png'' />','1f6c2','symbols');
-INSERT INTO `custom_emojis` VALUES (':pause_button:','qrc:/res/emojis/23f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23f8.png'' />','23f8','symbols');
-INSERT INTO `custom_emojis` VALUES (':peace:','qrc:/res/emojis/262e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/262e.png'' />','262e','symbols');
-INSERT INTO `custom_emojis` VALUES (':peach:','qrc:/res/emojis/1f351.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f351.png'' />','1f351','food');
-INSERT INTO `custom_emojis` VALUES (':peanuts:','qrc:/res/emojis/1f95c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f95c.png'' />','1f95c','food');
-INSERT INTO `custom_emojis` VALUES (':pear:','qrc:/res/emojis/1f350.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f350.png'' />','1f350','food');
-INSERT INTO `custom_emojis` VALUES (':pen_ballpoint:','qrc:/res/emojis/1f58a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f58a.png'' />','1f58a','objects');
-INSERT INTO `custom_emojis` VALUES (':pen_fountain:','qrc:/res/emojis/1f58b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f58b.png'' />','1f58b','objects');
-INSERT INTO `custom_emojis` VALUES (':pencil:','qrc:/res/emojis/1f4dd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4dd.png'' />','1f4dd','objects');
-INSERT INTO `custom_emojis` VALUES (':pencil2:','qrc:/res/emojis/270f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270f.png'' />','270f','objects');
-INSERT INTO `custom_emojis` VALUES (':penguin:','qrc:/res/emojis/1f427.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f427.png'' />','1f427','nature');
-INSERT INTO `custom_emojis` VALUES (':pensive:','qrc:/res/emojis/1f614.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f614.png'' />','1f614','people');
-INSERT INTO `custom_emojis` VALUES (':performing_arts:','qrc:/res/emojis/1f3ad.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ad.png'' />','1f3ad','activity');
-INSERT INTO `custom_emojis` VALUES (':persevere:','qrc:/res/emojis/1f623.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f623.png'' />','1f623','people');
-INSERT INTO `custom_emojis` VALUES (':person_frowning:','qrc:/res/emojis/1f64d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64d.png'' />','1f64d','people');
-INSERT INTO `custom_emojis` VALUES (':person_frowning_tone1:','qrc:/res/emojis/1f64d-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64d-1f3fb.png'' />','1f64d-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':person_frowning_tone2:','qrc:/res/emojis/1f64d-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64d-1f3fc.png'' />','1f64d-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':person_frowning_tone3:','qrc:/res/emojis/1f64d-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64d-1f3fd.png'' />','1f64d-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':person_frowning_tone4:','qrc:/res/emojis/1f64d-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64d-1f3fe.png'' />','1f64d-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':person_frowning_tone5:','qrc:/res/emojis/1f64d-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64d-1f3ff.png'' />','1f64d-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':person_with_blond_hair:','qrc:/res/emojis/1f471.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f471.png'' />','1f471','people');
-INSERT INTO `custom_emojis` VALUES (':person_with_blond_hair_tone1:','qrc:/res/emojis/1f471-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f471-1f3fb.png'' />','1f471-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':person_with_blond_hair_tone2:','qrc:/res/emojis/1f471-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f471-1f3fc.png'' />','1f471-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':person_with_blond_hair_tone3:','qrc:/res/emojis/1f471-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f471-1f3fd.png'' />','1f471-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':person_with_blond_hair_tone4:','qrc:/res/emojis/1f471-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f471-1f3fe.png'' />','1f471-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':person_with_blond_hair_tone5:','qrc:/res/emojis/1f471-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f471-1f3ff.png'' />','1f471-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':person_with_pouting_face:','qrc:/res/emojis/1f64e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64e.png'' />','1f64e','people');
-INSERT INTO `custom_emojis` VALUES (':person_with_pouting_face_tone1:','qrc:/res/emojis/1f64e-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64e-1f3fb.png'' />','1f64e-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':person_with_pouting_face_tone2:','qrc:/res/emojis/1f64e-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64e-1f3fc.png'' />','1f64e-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':person_with_pouting_face_tone3:','qrc:/res/emojis/1f64e-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64e-1f3fd.png'' />','1f64e-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':person_with_pouting_face_tone4:','qrc:/res/emojis/1f64e-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64e-1f3fe.png'' />','1f64e-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':person_with_pouting_face_tone5:','qrc:/res/emojis/1f64e-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64e-1f3ff.png'' />','1f64e-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':pick:','qrc:/res/emojis/26cf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26cf.png'' />','26cf','objects');
-INSERT INTO `custom_emojis` VALUES (':pig:','qrc:/res/emojis/1f437.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f437.png'' />','1f437','nature');
-INSERT INTO `custom_emojis` VALUES (':pig2:','qrc:/res/emojis/1f416.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f416.png'' />','1f416','nature');
-INSERT INTO `custom_emojis` VALUES (':pig_nose:','qrc:/res/emojis/1f43d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f43d.png'' />','1f43d','nature');
-INSERT INTO `custom_emojis` VALUES (':pill:','qrc:/res/emojis/1f48a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f48a.png'' />','1f48a','objects');
-INSERT INTO `custom_emojis` VALUES (':pineapple:','qrc:/res/emojis/1f34d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f34d.png'' />','1f34d','food');
-INSERT INTO `custom_emojis` VALUES (':ping_pong:','qrc:/res/emojis/1f3d3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d3.png'' />','1f3d3','activity');
-INSERT INTO `custom_emojis` VALUES (':pisces:','qrc:/res/emojis/2653.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2653.png'' />','2653','symbols');
-INSERT INTO `custom_emojis` VALUES (':pizza:','qrc:/res/emojis/1f355.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f355.png'' />','1f355','food');
-INSERT INTO `custom_emojis` VALUES (':place_of_worship:','qrc:/res/emojis/1f6d0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6d0.png'' />','1f6d0','symbols');
-INSERT INTO `custom_emojis` VALUES (':play_pause:','qrc:/res/emojis/23ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23ef.png'' />','23ef','symbols');
-INSERT INTO `custom_emojis` VALUES (':point_down:','qrc:/res/emojis/1f447.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f447.png'' />','1f447','people');
-INSERT INTO `custom_emojis` VALUES (':point_down_tone1:','qrc:/res/emojis/1f447-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f447-1f3fb.png'' />','1f447-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':point_down_tone2:','qrc:/res/emojis/1f447-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f447-1f3fc.png'' />','1f447-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':point_down_tone3:','qrc:/res/emojis/1f447-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f447-1f3fd.png'' />','1f447-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':point_down_tone4:','qrc:/res/emojis/1f447-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f447-1f3fe.png'' />','1f447-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':point_down_tone5:','qrc:/res/emojis/1f447-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f447-1f3ff.png'' />','1f447-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':point_left:','qrc:/res/emojis/1f448.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f448.png'' />','1f448','people');
-INSERT INTO `custom_emojis` VALUES (':point_left_tone1:','qrc:/res/emojis/1f448-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f448-1f3fb.png'' />','1f448-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':point_left_tone2:','qrc:/res/emojis/1f448-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f448-1f3fc.png'' />','1f448-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':point_left_tone3:','qrc:/res/emojis/1f448-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f448-1f3fd.png'' />','1f448-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':point_left_tone4:','qrc:/res/emojis/1f448-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f448-1f3fe.png'' />','1f448-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':point_left_tone5:','qrc:/res/emojis/1f448-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f448-1f3ff.png'' />','1f448-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':point_right:','qrc:/res/emojis/1f449.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f449.png'' />','1f449','people');
-INSERT INTO `custom_emojis` VALUES (':point_right_tone1:','qrc:/res/emojis/1f449-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f449-1f3fb.png'' />','1f449-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':point_right_tone2:','qrc:/res/emojis/1f449-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f449-1f3fc.png'' />','1f449-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':point_right_tone3:','qrc:/res/emojis/1f449-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f449-1f3fd.png'' />','1f449-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':point_right_tone4:','qrc:/res/emojis/1f449-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f449-1f3fe.png'' />','1f449-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':point_right_tone5:','qrc:/res/emojis/1f449-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f449-1f3ff.png'' />','1f449-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':point_up:','qrc:/res/emojis/261d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/261d.png'' />','261d','people');
-INSERT INTO `custom_emojis` VALUES (':point_up_2:','qrc:/res/emojis/1f446.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f446.png'' />','1f446','people');
-INSERT INTO `custom_emojis` VALUES (':point_up_2_tone1:','qrc:/res/emojis/1f446-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f446-1f3fb.png'' />','1f446-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':point_up_2_tone2:','qrc:/res/emojis/1f446-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f446-1f3fc.png'' />','1f446-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':point_up_2_tone3:','qrc:/res/emojis/1f446-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f446-1f3fd.png'' />','1f446-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':point_up_2_tone4:','qrc:/res/emojis/1f446-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f446-1f3fe.png'' />','1f446-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':point_up_2_tone5:','qrc:/res/emojis/1f446-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f446-1f3ff.png'' />','1f446-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':point_up_tone1:','qrc:/res/emojis/261d-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/261d-1f3fb.png'' />','261d-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':point_up_tone2:','qrc:/res/emojis/261d-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/261d-1f3fc.png'' />','261d-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':point_up_tone3:','qrc:/res/emojis/261d-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/261d-1f3fd.png'' />','261d-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':point_up_tone4:','qrc:/res/emojis/261d-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/261d-1f3fe.png'' />','261d-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':point_up_tone5:','qrc:/res/emojis/261d-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/261d-1f3ff.png'' />','261d-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':police_car:','qrc:/res/emojis/1f693.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f693.png'' />','1f693','travel');
-INSERT INTO `custom_emojis` VALUES (':poodle:','qrc:/res/emojis/1f429.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f429.png'' />','1f429','nature');
-INSERT INTO `custom_emojis` VALUES (':poop:','qrc:/res/emojis/1f4a9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a9.png'' />','1f4a9','people');
-INSERT INTO `custom_emojis` VALUES (':popcorn:','qrc:/res/emojis/1f37f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f37f.png'' />','1f37f','food');
-INSERT INTO `custom_emojis` VALUES (':post_office:','qrc:/res/emojis/1f3e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e3.png'' />','1f3e3','travel');
-INSERT INTO `custom_emojis` VALUES (':postal_horn:','qrc:/res/emojis/1f4ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ef.png'' />','1f4ef','objects');
-INSERT INTO `custom_emojis` VALUES (':postbox:','qrc:/res/emojis/1f4ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ee.png'' />','1f4ee','objects');
-INSERT INTO `custom_emojis` VALUES (':potable_water:','qrc:/res/emojis/1f6b0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b0.png'' />','1f6b0','symbols');
-INSERT INTO `custom_emojis` VALUES (':potato:','qrc:/res/emojis/1f954.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f954.png'' />','1f954','food');
-INSERT INTO `custom_emojis` VALUES (':pouch:','qrc:/res/emojis/1f45d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f45d.png'' />','1f45d','people');
-INSERT INTO `custom_emojis` VALUES (':poultry_leg:','qrc:/res/emojis/1f357.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f357.png'' />','1f357','food');
-INSERT INTO `custom_emojis` VALUES (':pound:','qrc:/res/emojis/1f4b7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b7.png'' />','1f4b7','objects');
-INSERT INTO `custom_emojis` VALUES (':pouting_cat:','qrc:/res/emojis/1f63e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f63e.png'' />','1f63e','people');
-INSERT INTO `custom_emojis` VALUES (':pray:','qrc:/res/emojis/1f64f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64f.png'' />','1f64f','people');
-INSERT INTO `custom_emojis` VALUES (':pray_tone1:','qrc:/res/emojis/1f64f-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64f-1f3fb.png'' />','1f64f-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':pray_tone2:','qrc:/res/emojis/1f64f-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64f-1f3fc.png'' />','1f64f-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':pray_tone3:','qrc:/res/emojis/1f64f-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64f-1f3fd.png'' />','1f64f-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':pray_tone4:','qrc:/res/emojis/1f64f-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64f-1f3fe.png'' />','1f64f-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':pray_tone5:','qrc:/res/emojis/1f64f-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64f-1f3ff.png'' />','1f64f-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':prayer_beads:','qrc:/res/emojis/1f4ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ff.png'' />','1f4ff','objects');
-INSERT INTO `custom_emojis` VALUES (':pregnant_woman:','qrc:/res/emojis/1f930.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f930.png'' />','1f930','people');
-INSERT INTO `custom_emojis` VALUES (':pregnant_woman_tone1:','qrc:/res/emojis/1f930-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f930-1f3fb.png'' />','1f930-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':pregnant_woman_tone2:','qrc:/res/emojis/1f930-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f930-1f3fc.png'' />','1f930-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':pregnant_woman_tone3:','qrc:/res/emojis/1f930-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f930-1f3fd.png'' />','1f930-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':pregnant_woman_tone4:','qrc:/res/emojis/1f930-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f930-1f3fe.png'' />','1f930-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':pregnant_woman_tone5:','qrc:/res/emojis/1f930-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f930-1f3ff.png'' />','1f930-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':prince:','qrc:/res/emojis/1f934.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f934.png'' />','1f934','people');
-INSERT INTO `custom_emojis` VALUES (':prince_tone1:','qrc:/res/emojis/1f934-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f934-1f3fb.png'' />','1f934-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':prince_tone2:','qrc:/res/emojis/1f934-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f934-1f3fc.png'' />','1f934-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':prince_tone3:','qrc:/res/emojis/1f934-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f934-1f3fd.png'' />','1f934-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':prince_tone4:','qrc:/res/emojis/1f934-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f934-1f3fe.png'' />','1f934-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':prince_tone5:','qrc:/res/emojis/1f934-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f934-1f3ff.png'' />','1f934-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':princess:','qrc:/res/emojis/1f478.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f478.png'' />','1f478','people');
-INSERT INTO `custom_emojis` VALUES (':princess_tone1:','qrc:/res/emojis/1f478-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f478-1f3fb.png'' />','1f478-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':princess_tone2:','qrc:/res/emojis/1f478-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f478-1f3fc.png'' />','1f478-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':princess_tone3:','qrc:/res/emojis/1f478-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f478-1f3fd.png'' />','1f478-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':princess_tone4:','qrc:/res/emojis/1f478-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f478-1f3fe.png'' />','1f478-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':princess_tone5:','qrc:/res/emojis/1f478-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f478-1f3ff.png'' />','1f478-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':printer:','qrc:/res/emojis/1f5a8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5a8.png'' />','1f5a8','objects');
-INSERT INTO `custom_emojis` VALUES (':projector:','qrc:/res/emojis/1f4fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4fd.png'' />','1f4fd','objects');
-INSERT INTO `custom_emojis` VALUES (':punch:','qrc:/res/emojis/1f44a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44a.png'' />','1f44a','people');
-INSERT INTO `custom_emojis` VALUES (':punch_tone1:','qrc:/res/emojis/1f44a-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44a-1f3fb.png'' />','1f44a-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':punch_tone2:','qrc:/res/emojis/1f44a-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44a-1f3fc.png'' />','1f44a-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':punch_tone3:','qrc:/res/emojis/1f44a-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44a-1f3fd.png'' />','1f44a-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':punch_tone4:','qrc:/res/emojis/1f44a-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44a-1f3fe.png'' />','1f44a-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':punch_tone5:','qrc:/res/emojis/1f44a-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44a-1f3ff.png'' />','1f44a-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':purple_heart:','qrc:/res/emojis/1f49c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f49c.png'' />','1f49c','symbols');
-INSERT INTO `custom_emojis` VALUES (':purse:','qrc:/res/emojis/1f45b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f45b.png'' />','1f45b','people');
-INSERT INTO `custom_emojis` VALUES (':pushpin:','qrc:/res/emojis/1f4cc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4cc.png'' />','1f4cc','objects');
-INSERT INTO `custom_emojis` VALUES (':put_litter_in_its_place:','qrc:/res/emojis/1f6ae.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6ae.png'' />','1f6ae','symbols');
-INSERT INTO `custom_emojis` VALUES (':question:','qrc:/res/emojis/2753.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2753.png'' />','2753','symbols');
-INSERT INTO `custom_emojis` VALUES (':rabbit:','qrc:/res/emojis/1f430.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f430.png'' />','1f430','nature');
-INSERT INTO `custom_emojis` VALUES (':rabbit2:','qrc:/res/emojis/1f407.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f407.png'' />','1f407','nature');
-INSERT INTO `custom_emojis` VALUES (':race_car:','qrc:/res/emojis/1f3ce.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ce.png'' />','1f3ce','travel');
-INSERT INTO `custom_emojis` VALUES (':racehorse:','qrc:/res/emojis/1f40e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f40e.png'' />','1f40e','nature');
-INSERT INTO `custom_emojis` VALUES (':radio:','qrc:/res/emojis/1f4fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4fb.png'' />','1f4fb','objects');
-INSERT INTO `custom_emojis` VALUES (':radio_button:','qrc:/res/emojis/1f518.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f518.png'' />','1f518','symbols');
-INSERT INTO `custom_emojis` VALUES (':radioactive:','qrc:/res/emojis/2622.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2622.png'' />','2622','symbols');
-INSERT INTO `custom_emojis` VALUES (':rage:','qrc:/res/emojis/1f621.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f621.png'' />','1f621','people');
-INSERT INTO `custom_emojis` VALUES (':railway_car:','qrc:/res/emojis/1f683.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f683.png'' />','1f683','travel');
-INSERT INTO `custom_emojis` VALUES (':railway_track:','qrc:/res/emojis/1f6e4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6e4.png'' />','1f6e4','travel');
-INSERT INTO `custom_emojis` VALUES (':rainbow:','qrc:/res/emojis/1f308.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f308.png'' />','1f308','travel');
-INSERT INTO `custom_emojis` VALUES (':raised_back_of_hand:','qrc:/res/emojis/1f91a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91a.png'' />','1f91a','people');
-INSERT INTO `custom_emojis` VALUES (':raised_back_of_hand_tone1:','qrc:/res/emojis/1f91a-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91a-1f3fb.png'' />','1f91a-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':raised_back_of_hand_tone2:','qrc:/res/emojis/1f91a-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91a-1f3fc.png'' />','1f91a-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':raised_back_of_hand_tone3:','qrc:/res/emojis/1f91a-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91a-1f3fd.png'' />','1f91a-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':raised_back_of_hand_tone4:','qrc:/res/emojis/1f91a-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91a-1f3fe.png'' />','1f91a-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':raised_back_of_hand_tone5:','qrc:/res/emojis/1f91a-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91a-1f3ff.png'' />','1f91a-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':raised_hand:','qrc:/res/emojis/270b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270b.png'' />','270b','people');
-INSERT INTO `custom_emojis` VALUES (':raised_hand_tone1:','qrc:/res/emojis/270b-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270b-1f3fb.png'' />','270b-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':raised_hand_tone2:','qrc:/res/emojis/270b-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270b-1f3fc.png'' />','270b-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':raised_hand_tone3:','qrc:/res/emojis/270b-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270b-1f3fd.png'' />','270b-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':raised_hand_tone4:','qrc:/res/emojis/270b-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270b-1f3fe.png'' />','270b-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':raised_hand_tone5:','qrc:/res/emojis/270b-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270b-1f3ff.png'' />','270b-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':raised_hands:','qrc:/res/emojis/1f64c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64c.png'' />','1f64c','people');
-INSERT INTO `custom_emojis` VALUES (':raised_hands_tone1:','qrc:/res/emojis/1f64c-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64c-1f3fb.png'' />','1f64c-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':raised_hands_tone2:','qrc:/res/emojis/1f64c-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64c-1f3fc.png'' />','1f64c-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':raised_hands_tone3:','qrc:/res/emojis/1f64c-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64c-1f3fd.png'' />','1f64c-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':raised_hands_tone4:','qrc:/res/emojis/1f64c-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64c-1f3fe.png'' />','1f64c-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':raised_hands_tone5:','qrc:/res/emojis/1f64c-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64c-1f3ff.png'' />','1f64c-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':raising_hand:','qrc:/res/emojis/1f64b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64b.png'' />','1f64b','people');
-INSERT INTO `custom_emojis` VALUES (':raising_hand_tone1:','qrc:/res/emojis/1f64b-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64b-1f3fb.png'' />','1f64b-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':raising_hand_tone2:','qrc:/res/emojis/1f64b-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64b-1f3fc.png'' />','1f64b-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':raising_hand_tone3:','qrc:/res/emojis/1f64b-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64b-1f3fd.png'' />','1f64b-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':raising_hand_tone4:','qrc:/res/emojis/1f64b-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64b-1f3fe.png'' />','1f64b-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':raising_hand_tone5:','qrc:/res/emojis/1f64b-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64b-1f3ff.png'' />','1f64b-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':ram:','qrc:/res/emojis/1f40f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f40f.png'' />','1f40f','nature');
-INSERT INTO `custom_emojis` VALUES (':ramen:','qrc:/res/emojis/1f35c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f35c.png'' />','1f35c','food');
-INSERT INTO `custom_emojis` VALUES (':rat:','qrc:/res/emojis/1f400.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f400.png'' />','1f400','nature');
-INSERT INTO `custom_emojis` VALUES (':record_button:','qrc:/res/emojis/23fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23fa.png'' />','23fa','symbols');
-INSERT INTO `custom_emojis` VALUES (':recycle:','qrc:/res/emojis/267b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/267b.png'' />','267b','symbols');
-INSERT INTO `custom_emojis` VALUES (':red_car:','qrc:/res/emojis/1f697.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f697.png'' />','1f697','travel');
-INSERT INTO `custom_emojis` VALUES (':red_circle:','qrc:/res/emojis/1f534.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f534.png'' />','1f534','symbols');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_a:','qrc:/res/emojis/1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6.png'' />','1f1e6','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_b:','qrc:/res/emojis/1f1e7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7.png'' />','1f1e7','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_c:','qrc:/res/emojis/1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8.png'' />','1f1e8','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_d:','qrc:/res/emojis/1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e9.png'' />','1f1e9','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_e:','qrc:/res/emojis/1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea.png'' />','1f1ea','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_f:','qrc:/res/emojis/1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1eb.png'' />','1f1eb','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_g:','qrc:/res/emojis/1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec.png'' />','1f1ec','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_h:','qrc:/res/emojis/1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ed.png'' />','1f1ed','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_i:','qrc:/res/emojis/1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee.png'' />','1f1ee','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_j:','qrc:/res/emojis/1f1ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ef.png'' />','1f1ef','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_k:','qrc:/res/emojis/1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0.png'' />','1f1f0','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_l:','qrc:/res/emojis/1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1.png'' />','1f1f1','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_m:','qrc:/res/emojis/1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2.png'' />','1f1f2','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_n:','qrc:/res/emojis/1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3.png'' />','1f1f3','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_o:','qrc:/res/emojis/1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f4.png'' />','1f1f4','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_p:','qrc:/res/emojis/1f1f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5.png'' />','1f1f5','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_q:','qrc:/res/emojis/1f1f6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f6.png'' />','1f1f6','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_r:','qrc:/res/emojis/1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f7.png'' />','1f1f7','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_s:','qrc:/res/emojis/1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8.png'' />','1f1f8','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_t:','qrc:/res/emojis/1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9.png'' />','1f1f9','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_u:','qrc:/res/emojis/1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fa.png'' />','1f1fa','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_v:','qrc:/res/emojis/1f1fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fb.png'' />','1f1fb','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_w:','qrc:/res/emojis/1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fc.png'' />','1f1fc','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_x:','qrc:/res/emojis/1f1fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fd.png'' />','1f1fd','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_y:','qrc:/res/emojis/1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fe.png'' />','1f1fe','regional');
-INSERT INTO `custom_emojis` VALUES (':regional_indicator_z:','qrc:/res/emojis/1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ff.png'' />','1f1ff','regional');
-INSERT INTO `custom_emojis` VALUES (':registered:','qrc:/res/emojis/00ae.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/00ae.png'' />','00ae','symbols');
-INSERT INTO `custom_emojis` VALUES (':relaxed:','qrc:/res/emojis/263a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/263a.png'' />','263a','people');
-INSERT INTO `custom_emojis` VALUES (':relieved:','qrc:/res/emojis/1f60c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f60c.png'' />','1f60c','people');
-INSERT INTO `custom_emojis` VALUES (':reminder_ribbon:','qrc:/res/emojis/1f397.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f397.png'' />','1f397','activity');
-INSERT INTO `custom_emojis` VALUES (':repeat:','qrc:/res/emojis/1f501.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f501.png'' />','1f501','symbols');
-INSERT INTO `custom_emojis` VALUES (':repeat_one:','qrc:/res/emojis/1f502.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f502.png'' />','1f502','symbols');
-INSERT INTO `custom_emojis` VALUES (':restroom:','qrc:/res/emojis/1f6bb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6bb.png'' />','1f6bb','symbols');
-INSERT INTO `custom_emojis` VALUES (':revolving_hearts:','qrc:/res/emojis/1f49e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f49e.png'' />','1f49e','symbols');
-INSERT INTO `custom_emojis` VALUES (':rewind:','qrc:/res/emojis/23ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23ea.png'' />','23ea','symbols');
-INSERT INTO `custom_emojis` VALUES (':rhino:','qrc:/res/emojis/1f98f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f98f.png'' />','1f98f','nature');
-INSERT INTO `custom_emojis` VALUES (':ribbon:','qrc:/res/emojis/1f380.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f380.png'' />','1f380','objects');
-INSERT INTO `custom_emojis` VALUES (':rice:','qrc:/res/emojis/1f35a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f35a.png'' />','1f35a','food');
-INSERT INTO `custom_emojis` VALUES (':rice_ball:','qrc:/res/emojis/1f359.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f359.png'' />','1f359','food');
-INSERT INTO `custom_emojis` VALUES (':rice_cracker:','qrc:/res/emojis/1f358.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f358.png'' />','1f358','food');
-INSERT INTO `custom_emojis` VALUES (':rice_scene:','qrc:/res/emojis/1f391.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f391.png'' />','1f391','travel');
-INSERT INTO `custom_emojis` VALUES (':right_facing_fist:','qrc:/res/emojis/1f91c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91c.png'' />','1f91c','people');
-INSERT INTO `custom_emojis` VALUES (':right_facing_fist_tone1:','qrc:/res/emojis/1f91c-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91c-1f3fb.png'' />','1f91c-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':right_facing_fist_tone2:','qrc:/res/emojis/1f91c-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91c-1f3fc.png'' />','1f91c-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':right_facing_fist_tone3:','qrc:/res/emojis/1f91c-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91c-1f3fd.png'' />','1f91c-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':right_facing_fist_tone4:','qrc:/res/emojis/1f91c-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91c-1f3fe.png'' />','1f91c-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':right_facing_fist_tone5:','qrc:/res/emojis/1f91c-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91c-1f3ff.png'' />','1f91c-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':ring:','qrc:/res/emojis/1f48d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f48d.png'' />','1f48d','people');
-INSERT INTO `custom_emojis` VALUES (':robot:','qrc:/res/emojis/1f916.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f916.png'' />','1f916','people');
-INSERT INTO `custom_emojis` VALUES (':rocket:','qrc:/res/emojis/1f680.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f680.png'' />','1f680','travel');
-INSERT INTO `custom_emojis` VALUES (':rofl:','qrc:/res/emojis/1f923.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f923.png'' />','1f923','people');
-INSERT INTO `custom_emojis` VALUES (':roller_coaster:','qrc:/res/emojis/1f3a2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a2.png'' />','1f3a2','travel');
-INSERT INTO `custom_emojis` VALUES (':rolling_eyes:','qrc:/res/emojis/1f644.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f644.png'' />','1f644','people');
-INSERT INTO `custom_emojis` VALUES (':rooster:','qrc:/res/emojis/1f413.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f413.png'' />','1f413','nature');
-INSERT INTO `custom_emojis` VALUES (':rose:','qrc:/res/emojis/1f339.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f339.png'' />','1f339','nature');
-INSERT INTO `custom_emojis` VALUES (':rosette:','qrc:/res/emojis/1f3f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3f5.png'' />','1f3f5','activity');
-INSERT INTO `custom_emojis` VALUES (':rotating_light:','qrc:/res/emojis/1f6a8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a8.png'' />','1f6a8','travel');
-INSERT INTO `custom_emojis` VALUES (':round_pushpin:','qrc:/res/emojis/1f4cd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4cd.png'' />','1f4cd','objects');
-INSERT INTO `custom_emojis` VALUES (':rowboat:','qrc:/res/emojis/1f6a3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a3.png'' />','1f6a3','activity');
-INSERT INTO `custom_emojis` VALUES (':rowboat_tone1:','qrc:/res/emojis/1f6a3-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a3-1f3fb.png'' />','1f6a3-1f3fb','activity');
-INSERT INTO `custom_emojis` VALUES (':rowboat_tone2:','qrc:/res/emojis/1f6a3-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a3-1f3fc.png'' />','1f6a3-1f3fc','activity');
-INSERT INTO `custom_emojis` VALUES (':rowboat_tone3:','qrc:/res/emojis/1f6a3-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a3-1f3fd.png'' />','1f6a3-1f3fd','activity');
-INSERT INTO `custom_emojis` VALUES (':rowboat_tone4:','qrc:/res/emojis/1f6a3-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a3-1f3fe.png'' />','1f6a3-1f3fe','activity');
-INSERT INTO `custom_emojis` VALUES (':rowboat_tone5:','qrc:/res/emojis/1f6a3-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a3-1f3ff.png'' />','1f6a3-1f3ff','activity');
-INSERT INTO `custom_emojis` VALUES (':rugby_football:','qrc:/res/emojis/1f3c9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c9.png'' />','1f3c9','activity');
-INSERT INTO `custom_emojis` VALUES (':runner:','qrc:/res/emojis/1f3c3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c3.png'' />','1f3c3','people');
-INSERT INTO `custom_emojis` VALUES (':runner_tone1:','qrc:/res/emojis/1f3c3-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c3-1f3fb.png'' />','1f3c3-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':runner_tone2:','qrc:/res/emojis/1f3c3-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c3-1f3fc.png'' />','1f3c3-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':runner_tone3:','qrc:/res/emojis/1f3c3-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c3-1f3fd.png'' />','1f3c3-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':runner_tone4:','qrc:/res/emojis/1f3c3-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c3-1f3fe.png'' />','1f3c3-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':runner_tone5:','qrc:/res/emojis/1f3c3-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c3-1f3ff.png'' />','1f3c3-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':running_shirt_with_sash:','qrc:/res/emojis/1f3bd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3bd.png'' />','1f3bd','activity');
-INSERT INTO `custom_emojis` VALUES (':sa:','qrc:/res/emojis/1f202.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f202.png'' />','1f202','symbols');
-INSERT INTO `custom_emojis` VALUES (':sagittarius:','qrc:/res/emojis/2650.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2650.png'' />','2650','symbols');
-INSERT INTO `custom_emojis` VALUES (':sailboat:','qrc:/res/emojis/26f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f5.png'' />','26f5','travel');
-INSERT INTO `custom_emojis` VALUES (':sake:','qrc:/res/emojis/1f376.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f376.png'' />','1f376','food');
-INSERT INTO `custom_emojis` VALUES (':salad:','qrc:/res/emojis/1f957.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f957.png'' />','1f957','food');
-INSERT INTO `custom_emojis` VALUES (':sandal:','qrc:/res/emojis/1f461.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f461.png'' />','1f461','people');
-INSERT INTO `custom_emojis` VALUES (':santa:','qrc:/res/emojis/1f385.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f385.png'' />','1f385','people');
-INSERT INTO `custom_emojis` VALUES (':santa_tone1:','qrc:/res/emojis/1f385-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f385-1f3fb.png'' />','1f385-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':santa_tone2:','qrc:/res/emojis/1f385-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f385-1f3fc.png'' />','1f385-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':santa_tone3:','qrc:/res/emojis/1f385-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f385-1f3fd.png'' />','1f385-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':santa_tone4:','qrc:/res/emojis/1f385-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f385-1f3fe.png'' />','1f385-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':santa_tone5:','qrc:/res/emojis/1f385-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f385-1f3ff.png'' />','1f385-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':satellite:','qrc:/res/emojis/1f4e1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e1.png'' />','1f4e1','objects');
-INSERT INTO `custom_emojis` VALUES (':satellite_orbital:','qrc:/res/emojis/1f6f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6f0.png'' />','1f6f0','travel');
-INSERT INTO `custom_emojis` VALUES (':saxophone:','qrc:/res/emojis/1f3b7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b7.png'' />','1f3b7','activity');
-INSERT INTO `custom_emojis` VALUES (':scales:','qrc:/res/emojis/2696.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2696.png'' />','2696','objects');
-INSERT INTO `custom_emojis` VALUES (':school:','qrc:/res/emojis/1f3eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3eb.png'' />','1f3eb','travel');
-INSERT INTO `custom_emojis` VALUES (':school_satchel:','qrc:/res/emojis/1f392.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f392.png'' />','1f392','people');
-INSERT INTO `custom_emojis` VALUES (':scissors:','qrc:/res/emojis/2702.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2702.png'' />','2702','objects');
-INSERT INTO `custom_emojis` VALUES (':scooter:','qrc:/res/emojis/1f6f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6f4.png'' />','1f6f4','travel');
-INSERT INTO `custom_emojis` VALUES (':scorpion:','qrc:/res/emojis/1f982.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f982.png'' />','1f982','nature');
-INSERT INTO `custom_emojis` VALUES (':scorpius:','qrc:/res/emojis/264f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/264f.png'' />','264f','symbols');
-INSERT INTO `custom_emojis` VALUES (':scream:','qrc:/res/emojis/1f631.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f631.png'' />','1f631','people');
-INSERT INTO `custom_emojis` VALUES (':scream_cat:','qrc:/res/emojis/1f640.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f640.png'' />','1f640','people');
-INSERT INTO `custom_emojis` VALUES (':scroll:','qrc:/res/emojis/1f4dc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4dc.png'' />','1f4dc','objects');
-INSERT INTO `custom_emojis` VALUES (':seat:','qrc:/res/emojis/1f4ba.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ba.png'' />','1f4ba','travel');
-INSERT INTO `custom_emojis` VALUES (':second_place:','qrc:/res/emojis/1f948.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f948.png'' />','1f948','activity');
-INSERT INTO `custom_emojis` VALUES (':secret:','qrc:/res/emojis/3299.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/3299.png'' />','3299','symbols');
-INSERT INTO `custom_emojis` VALUES (':see_no_evil:','qrc:/res/emojis/1f648.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f648.png'' />','1f648','nature');
-INSERT INTO `custom_emojis` VALUES (':seedling:','qrc:/res/emojis/1f331.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f331.png'' />','1f331','nature');
-INSERT INTO `custom_emojis` VALUES (':selfie:','qrc:/res/emojis/1f933.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f933.png'' />','1f933','people');
-INSERT INTO `custom_emojis` VALUES (':selfie_tone1:','qrc:/res/emojis/1f933-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f933-1f3fb.png'' />','1f933-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':selfie_tone2:','qrc:/res/emojis/1f933-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f933-1f3fc.png'' />','1f933-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':selfie_tone3:','qrc:/res/emojis/1f933-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f933-1f3fd.png'' />','1f933-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':selfie_tone4:','qrc:/res/emojis/1f933-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f933-1f3fe.png'' />','1f933-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':selfie_tone5:','qrc:/res/emojis/1f933-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f933-1f3ff.png'' />','1f933-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':seven:','qrc:/res/emojis/0037-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0037-20e3.png'' />','0037-20e3','symbols');
-INSERT INTO `custom_emojis` VALUES (':shallow_pan_of_food:','qrc:/res/emojis/1f958.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f958.png'' />','1f958','food');
-INSERT INTO `custom_emojis` VALUES (':shamrock:','qrc:/res/emojis/2618.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2618.png'' />','2618','nature');
-INSERT INTO `custom_emojis` VALUES (':shark:','qrc:/res/emojis/1f988.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f988.png'' />','1f988','nature');
-INSERT INTO `custom_emojis` VALUES (':shaved_ice:','qrc:/res/emojis/1f367.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f367.png'' />','1f367','food');
-INSERT INTO `custom_emojis` VALUES (':sheep:','qrc:/res/emojis/1f411.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f411.png'' />','1f411','nature');
-INSERT INTO `custom_emojis` VALUES (':shell:','qrc:/res/emojis/1f41a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f41a.png'' />','1f41a','nature');
-INSERT INTO `custom_emojis` VALUES (':shield:','qrc:/res/emojis/1f6e1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6e1.png'' />','1f6e1','objects');
-INSERT INTO `custom_emojis` VALUES (':shinto_shrine:','qrc:/res/emojis/26e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26e9.png'' />','26e9','travel');
-INSERT INTO `custom_emojis` VALUES (':ship:','qrc:/res/emojis/1f6a2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a2.png'' />','1f6a2','travel');
-INSERT INTO `custom_emojis` VALUES (':shirt:','qrc:/res/emojis/1f455.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f455.png'' />','1f455','people');
-INSERT INTO `custom_emojis` VALUES (':shopping_bags:','qrc:/res/emojis/1f6cd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6cd.png'' />','1f6cd','objects');
-INSERT INTO `custom_emojis` VALUES (':shopping_cart:','qrc:/res/emojis/1f6d2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6d2.png'' />','1f6d2','objects');
-INSERT INTO `custom_emojis` VALUES (':shower:','qrc:/res/emojis/1f6bf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6bf.png'' />','1f6bf','objects');
-INSERT INTO `custom_emojis` VALUES (':shrimp:','qrc:/res/emojis/1f990.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f990.png'' />','1f990','nature');
-INSERT INTO `custom_emojis` VALUES (':shrug:','qrc:/res/emojis/1f937.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f937.png'' />','1f937','people');
-INSERT INTO `custom_emojis` VALUES (':shrug_tone1:','qrc:/res/emojis/1f937-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f937-1f3fb.png'' />','1f937-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':shrug_tone2:','qrc:/res/emojis/1f937-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f937-1f3fc.png'' />','1f937-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':shrug_tone3:','qrc:/res/emojis/1f937-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f937-1f3fd.png'' />','1f937-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':shrug_tone4:','qrc:/res/emojis/1f937-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f937-1f3fe.png'' />','1f937-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':shrug_tone5:','qrc:/res/emojis/1f937-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f937-1f3ff.png'' />','1f937-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':signal_strength:','qrc:/res/emojis/1f4f6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f6.png'' />','1f4f6','symbols');
-INSERT INTO `custom_emojis` VALUES (':six:','qrc:/res/emojis/0036-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0036-20e3.png'' />','0036-20e3','symbols');
-INSERT INTO `custom_emojis` VALUES (':six_pointed_star:','qrc:/res/emojis/1f52f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f52f.png'' />','1f52f','symbols');
-INSERT INTO `custom_emojis` VALUES (':ski:','qrc:/res/emojis/1f3bf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3bf.png'' />','1f3bf','activity');
-INSERT INTO `custom_emojis` VALUES (':skier:','qrc:/res/emojis/26f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f7.png'' />','26f7','activity');
-INSERT INTO `custom_emojis` VALUES (':skull:','qrc:/res/emojis/1f480.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f480.png'' />','1f480','people');
-INSERT INTO `custom_emojis` VALUES (':skull_crossbones:','qrc:/res/emojis/2620.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2620.png'' />','2620','objects');
-INSERT INTO `custom_emojis` VALUES (':sleeping:','qrc:/res/emojis/1f634.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f634.png'' />','1f634','people');
-INSERT INTO `custom_emojis` VALUES (':sleeping_accommodation:','qrc:/res/emojis/1f6cc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6cc.png'' />','1f6cc','objects');
-INSERT INTO `custom_emojis` VALUES (':sleepy:','qrc:/res/emojis/1f62a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f62a.png'' />','1f62a','people');
-INSERT INTO `custom_emojis` VALUES (':slight_frown:','qrc:/res/emojis/1f641.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f641.png'' />','1f641','people');
-INSERT INTO `custom_emojis` VALUES (':slight_smile:','qrc:/res/emojis/1f642.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f642.png'' />','1f642','people');
-INSERT INTO `custom_emojis` VALUES (':slot_machine:','qrc:/res/emojis/1f3b0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b0.png'' />','1f3b0','activity');
-INSERT INTO `custom_emojis` VALUES (':small_blue_diamond:','qrc:/res/emojis/1f539.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f539.png'' />','1f539','symbols');
-INSERT INTO `custom_emojis` VALUES (':small_orange_diamond:','qrc:/res/emojis/1f538.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f538.png'' />','1f538','symbols');
-INSERT INTO `custom_emojis` VALUES (':small_red_triangle:','qrc:/res/emojis/1f53a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f53a.png'' />','1f53a','symbols');
-INSERT INTO `custom_emojis` VALUES (':small_red_triangle_down:','qrc:/res/emojis/1f53b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f53b.png'' />','1f53b','symbols');
-INSERT INTO `custom_emojis` VALUES (':smile:','qrc:/res/emojis/1f604.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f604.png'' />','1f604','people');
-INSERT INTO `custom_emojis` VALUES (':smile_cat:','qrc:/res/emojis/1f638.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f638.png'' />','1f638','people');
-INSERT INTO `custom_emojis` VALUES (':smiley:','qrc:/res/emojis/1f603.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f603.png'' />','1f603','people');
-INSERT INTO `custom_emojis` VALUES (':smiley_cat:','qrc:/res/emojis/1f63a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f63a.png'' />','1f63a','people');
-INSERT INTO `custom_emojis` VALUES (':smiling_imp:','qrc:/res/emojis/1f608.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f608.png'' />','1f608','people');
-INSERT INTO `custom_emojis` VALUES (':smirk:','qrc:/res/emojis/1f60f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f60f.png'' />','1f60f','people');
-INSERT INTO `custom_emojis` VALUES (':smirk_cat:','qrc:/res/emojis/1f63c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f63c.png'' />','1f63c','people');
-INSERT INTO `custom_emojis` VALUES (':smoking:','qrc:/res/emojis/1f6ac.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6ac.png'' />','1f6ac','objects');
-INSERT INTO `custom_emojis` VALUES (':snail:','qrc:/res/emojis/1f40c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f40c.png'' />','1f40c','nature');
-INSERT INTO `custom_emojis` VALUES (':snake:','qrc:/res/emojis/1f40d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f40d.png'' />','1f40d','nature');
-INSERT INTO `custom_emojis` VALUES (':sneezing_face:','qrc:/res/emojis/1f927.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f927.png'' />','1f927','people');
-INSERT INTO `custom_emojis` VALUES (':snowboarder:','qrc:/res/emojis/1f3c2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c2.png'' />','1f3c2','activity');
-INSERT INTO `custom_emojis` VALUES (':snowflake:','qrc:/res/emojis/2744.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2744.png'' />','2744','nature');
-INSERT INTO `custom_emojis` VALUES (':snowman:','qrc:/res/emojis/26c4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26c4.png'' />','26c4','nature');
-INSERT INTO `custom_emojis` VALUES (':snowman2:','qrc:/res/emojis/2603.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2603.png'' />','2603','nature');
-INSERT INTO `custom_emojis` VALUES (':sob:','qrc:/res/emojis/1f62d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f62d.png'' />','1f62d','people');
-INSERT INTO `custom_emojis` VALUES (':soccer:','qrc:/res/emojis/26bd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26bd.png'' />','26bd','activity');
-INSERT INTO `custom_emojis` VALUES (':soon:','qrc:/res/emojis/1f51c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f51c.png'' />','1f51c','symbols');
-INSERT INTO `custom_emojis` VALUES (':sos:','qrc:/res/emojis/1f198.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f198.png'' />','1f198','symbols');
-INSERT INTO `custom_emojis` VALUES (':sound:','qrc:/res/emojis/1f509.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f509.png'' />','1f509','symbols');
-INSERT INTO `custom_emojis` VALUES (':space_invader:','qrc:/res/emojis/1f47e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47e.png'' />','1f47e','activity');
-INSERT INTO `custom_emojis` VALUES (':spades:','qrc:/res/emojis/2660.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2660.png'' />','2660','symbols');
-INSERT INTO `custom_emojis` VALUES (':spaghetti:','qrc:/res/emojis/1f35d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f35d.png'' />','1f35d','food');
-INSERT INTO `custom_emojis` VALUES (':sparkle:','qrc:/res/emojis/2747.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2747.png'' />','2747','symbols');
-INSERT INTO `custom_emojis` VALUES (':sparkler:','qrc:/res/emojis/1f387.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f387.png'' />','1f387','travel');
-INSERT INTO `custom_emojis` VALUES (':sparkles:','qrc:/res/emojis/2728.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2728.png'' />','2728','nature');
-INSERT INTO `custom_emojis` VALUES (':sparkling_heart:','qrc:/res/emojis/1f496.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f496.png'' />','1f496','symbols');
-INSERT INTO `custom_emojis` VALUES (':speak_no_evil:','qrc:/res/emojis/1f64a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64a.png'' />','1f64a','nature');
-INSERT INTO `custom_emojis` VALUES (':speaker:','qrc:/res/emojis/1f508.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f508.png'' />','1f508','symbols');
-INSERT INTO `custom_emojis` VALUES (':speaking_head:','qrc:/res/emojis/1f5e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5e3.png'' />','1f5e3','people');
-INSERT INTO `custom_emojis` VALUES (':speech_balloon:','qrc:/res/emojis/1f4ac.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ac.png'' />','1f4ac','symbols');
-INSERT INTO `custom_emojis` VALUES (':speech_left:','qrc:/res/emojis/1f5e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5e8.png'' />','1f5e8','symbols');
-INSERT INTO `custom_emojis` VALUES (':speedboat:','qrc:/res/emojis/1f6a4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a4.png'' />','1f6a4','travel');
-INSERT INTO `custom_emojis` VALUES (':spider:','qrc:/res/emojis/1f577.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f577.png'' />','1f577','nature');
-INSERT INTO `custom_emojis` VALUES (':spider_web:','qrc:/res/emojis/1f578.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f578.png'' />','1f578','nature');
-INSERT INTO `custom_emojis` VALUES (':spoon:','qrc:/res/emojis/1f944.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f944.png'' />','1f944','food');
-INSERT INTO `custom_emojis` VALUES (':spy:','qrc:/res/emojis/1f575.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f575.png'' />','1f575','people');
-INSERT INTO `custom_emojis` VALUES (':spy_tone1:','qrc:/res/emojis/1f575-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f575-1f3fb.png'' />','1f575-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':spy_tone2:','qrc:/res/emojis/1f575-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f575-1f3fc.png'' />','1f575-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':spy_tone3:','qrc:/res/emojis/1f575-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f575-1f3fd.png'' />','1f575-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':spy_tone4:','qrc:/res/emojis/1f575-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f575-1f3fe.png'' />','1f575-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':spy_tone5:','qrc:/res/emojis/1f575-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f575-1f3ff.png'' />','1f575-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':squid:','qrc:/res/emojis/1f991.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f991.png'' />','1f991','nature');
-INSERT INTO `custom_emojis` VALUES (':stadium:','qrc:/res/emojis/1f3df.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3df.png'' />','1f3df','travel');
-INSERT INTO `custom_emojis` VALUES (':star:','qrc:/res/emojis/2b50.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2b50.png'' />','2b50','nature');
-INSERT INTO `custom_emojis` VALUES (':star2:','qrc:/res/emojis/1f31f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f31f.png'' />','1f31f','nature');
-INSERT INTO `custom_emojis` VALUES (':star_and_crescent:','qrc:/res/emojis/262a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/262a.png'' />','262a','symbols');
-INSERT INTO `custom_emojis` VALUES (':star_of_david:','qrc:/res/emojis/2721.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2721.png'' />','2721','symbols');
-INSERT INTO `custom_emojis` VALUES (':stars:','qrc:/res/emojis/1f320.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f320.png'' />','1f320','travel');
-INSERT INTO `custom_emojis` VALUES (':station:','qrc:/res/emojis/1f689.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f689.png'' />','1f689','travel');
-INSERT INTO `custom_emojis` VALUES (':statue_of_liberty:','qrc:/res/emojis/1f5fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5fd.png'' />','1f5fd','travel');
-INSERT INTO `custom_emojis` VALUES (':steam_locomotive:','qrc:/res/emojis/1f682.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f682.png'' />','1f682','travel');
-INSERT INTO `custom_emojis` VALUES (':stew:','qrc:/res/emojis/1f372.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f372.png'' />','1f372','food');
-INSERT INTO `custom_emojis` VALUES (':stop_button:','qrc:/res/emojis/23f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23f9.png'' />','23f9','symbols');
-INSERT INTO `custom_emojis` VALUES (':stopwatch:','qrc:/res/emojis/23f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23f1.png'' />','23f1','objects');
-INSERT INTO `custom_emojis` VALUES (':straight_ruler:','qrc:/res/emojis/1f4cf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4cf.png'' />','1f4cf','objects');
-INSERT INTO `custom_emojis` VALUES (':strawberry:','qrc:/res/emojis/1f353.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f353.png'' />','1f353','food');
-INSERT INTO `custom_emojis` VALUES (':stuck_out_tongue:','qrc:/res/emojis/1f61b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f61b.png'' />','1f61b','people');
-INSERT INTO `custom_emojis` VALUES (':stuck_out_tongue_closed_eyes:','qrc:/res/emojis/1f61d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f61d.png'' />','1f61d','people');
-INSERT INTO `custom_emojis` VALUES (':stuck_out_tongue_winking_eye:','qrc:/res/emojis/1f61c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f61c.png'' />','1f61c','people');
-INSERT INTO `custom_emojis` VALUES (':stuffed_flatbread:','qrc:/res/emojis/1f959.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f959.png'' />','1f959','food');
-INSERT INTO `custom_emojis` VALUES (':sun_with_face:','qrc:/res/emojis/1f31e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f31e.png'' />','1f31e','nature');
-INSERT INTO `custom_emojis` VALUES (':sunflower:','qrc:/res/emojis/1f33b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f33b.png'' />','1f33b','nature');
-INSERT INTO `custom_emojis` VALUES (':sunglasses:','qrc:/res/emojis/1f60e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f60e.png'' />','1f60e','people');
-INSERT INTO `custom_emojis` VALUES (':sunny:','qrc:/res/emojis/2600.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2600.png'' />','2600','nature');
-INSERT INTO `custom_emojis` VALUES (':sunrise:','qrc:/res/emojis/1f305.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f305.png'' />','1f305','travel');
-INSERT INTO `custom_emojis` VALUES (':sunrise_over_mountains:','qrc:/res/emojis/1f304.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f304.png'' />','1f304','travel');
-INSERT INTO `custom_emojis` VALUES (':surfer:','qrc:/res/emojis/1f3c4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c4.png'' />','1f3c4','activity');
-INSERT INTO `custom_emojis` VALUES (':surfer_tone1:','qrc:/res/emojis/1f3c4-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c4-1f3fb.png'' />','1f3c4-1f3fb','activity');
-INSERT INTO `custom_emojis` VALUES (':surfer_tone2:','qrc:/res/emojis/1f3c4-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c4-1f3fc.png'' />','1f3c4-1f3fc','activity');
-INSERT INTO `custom_emojis` VALUES (':surfer_tone3:','qrc:/res/emojis/1f3c4-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c4-1f3fd.png'' />','1f3c4-1f3fd','activity');
-INSERT INTO `custom_emojis` VALUES (':surfer_tone4:','qrc:/res/emojis/1f3c4-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c4-1f3fe.png'' />','1f3c4-1f3fe','activity');
-INSERT INTO `custom_emojis` VALUES (':surfer_tone5:','qrc:/res/emojis/1f3c4-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c4-1f3ff.png'' />','1f3c4-1f3ff','activity');
-INSERT INTO `custom_emojis` VALUES (':sushi:','qrc:/res/emojis/1f363.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f363.png'' />','1f363','food');
-INSERT INTO `custom_emojis` VALUES (':suspension_railway:','qrc:/res/emojis/1f69f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f69f.png'' />','1f69f','travel');
-INSERT INTO `custom_emojis` VALUES (':sweat:','qrc:/res/emojis/1f613.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f613.png'' />','1f613','people');
-INSERT INTO `custom_emojis` VALUES (':sweat_drops:','qrc:/res/emojis/1f4a6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a6.png'' />','1f4a6','nature');
-INSERT INTO `custom_emojis` VALUES (':sweat_smile:','qrc:/res/emojis/1f605.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f605.png'' />','1f605','people');
-INSERT INTO `custom_emojis` VALUES (':sweet_potato:','qrc:/res/emojis/1f360.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f360.png'' />','1f360','food');
-INSERT INTO `custom_emojis` VALUES (':swimmer:','qrc:/res/emojis/1f3ca.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ca.png'' />','1f3ca','activity');
-INSERT INTO `custom_emojis` VALUES (':swimmer_tone1:','qrc:/res/emojis/1f3ca-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ca-1f3fb.png'' />','1f3ca-1f3fb','activity');
-INSERT INTO `custom_emojis` VALUES (':swimmer_tone2:','qrc:/res/emojis/1f3ca-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ca-1f3fc.png'' />','1f3ca-1f3fc','activity');
-INSERT INTO `custom_emojis` VALUES (':swimmer_tone3:','qrc:/res/emojis/1f3ca-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ca-1f3fd.png'' />','1f3ca-1f3fd','activity');
-INSERT INTO `custom_emojis` VALUES (':swimmer_tone4:','qrc:/res/emojis/1f3ca-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ca-1f3fe.png'' />','1f3ca-1f3fe','activity');
-INSERT INTO `custom_emojis` VALUES (':swimmer_tone5:','qrc:/res/emojis/1f3ca-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ca-1f3ff.png'' />','1f3ca-1f3ff','activity');
-INSERT INTO `custom_emojis` VALUES (':symbols:','qrc:/res/emojis/1f523.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f523.png'' />','1f523','symbols');
-INSERT INTO `custom_emojis` VALUES (':synagogue:','qrc:/res/emojis/1f54d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f54d.png'' />','1f54d','travel');
-INSERT INTO `custom_emojis` VALUES (':syringe:','qrc:/res/emojis/1f489.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f489.png'' />','1f489','objects');
-INSERT INTO `custom_emojis` VALUES (':taco:','qrc:/res/emojis/1f32e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f32e.png'' />','1f32e','food');
-INSERT INTO `custom_emojis` VALUES (':tada:','qrc:/res/emojis/1f389.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f389.png'' />','1f389','objects');
-INSERT INTO `custom_emojis` VALUES (':tanabata_tree:','qrc:/res/emojis/1f38b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f38b.png'' />','1f38b','nature');
-INSERT INTO `custom_emojis` VALUES (':tangerine:','qrc:/res/emojis/1f34a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f34a.png'' />','1f34a','food');
-INSERT INTO `custom_emojis` VALUES (':taurus:','qrc:/res/emojis/2649.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2649.png'' />','2649','symbols');
-INSERT INTO `custom_emojis` VALUES (':taxi:','qrc:/res/emojis/1f695.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f695.png'' />','1f695','travel');
-INSERT INTO `custom_emojis` VALUES (':tea:','qrc:/res/emojis/1f375.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f375.png'' />','1f375','food');
-INSERT INTO `custom_emojis` VALUES (':telephone:','qrc:/res/emojis/260e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/260e.png'' />','260e','objects');
-INSERT INTO `custom_emojis` VALUES (':telephone_receiver:','qrc:/res/emojis/1f4de.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4de.png'' />','1f4de','objects');
-INSERT INTO `custom_emojis` VALUES (':telescope:','qrc:/res/emojis/1f52d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f52d.png'' />','1f52d','objects');
-INSERT INTO `custom_emojis` VALUES (':tennis:','qrc:/res/emojis/1f3be.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3be.png'' />','1f3be','activity');
-INSERT INTO `custom_emojis` VALUES (':tent:','qrc:/res/emojis/26fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26fa.png'' />','26fa','travel');
-INSERT INTO `custom_emojis` VALUES (':thermometer:','qrc:/res/emojis/1f321.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f321.png'' />','1f321','objects');
-INSERT INTO `custom_emojis` VALUES (':thermometer_face:','qrc:/res/emojis/1f912.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f912.png'' />','1f912','people');
-INSERT INTO `custom_emojis` VALUES (':thinking:','qrc:/res/emojis/1f914.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f914.png'' />','1f914','people');
-INSERT INTO `custom_emojis` VALUES (':third_place:','qrc:/res/emojis/1f949.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f949.png'' />','1f949','activity');
-INSERT INTO `custom_emojis` VALUES (':thought_balloon:','qrc:/res/emojis/1f4ad.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ad.png'' />','1f4ad','symbols');
-INSERT INTO `custom_emojis` VALUES (':three:','qrc:/res/emojis/0033-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0033-20e3.png'' />','0033-20e3','symbols');
-INSERT INTO `custom_emojis` VALUES (':thumbsdown:','qrc:/res/emojis/1f44e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44e.png'' />','1f44e','people');
-INSERT INTO `custom_emojis` VALUES (':thumbsdown_tone1:','qrc:/res/emojis/1f44e-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44e-1f3fb.png'' />','1f44e-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':thumbsdown_tone2:','qrc:/res/emojis/1f44e-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44e-1f3fc.png'' />','1f44e-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':thumbsdown_tone3:','qrc:/res/emojis/1f44e-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44e-1f3fd.png'' />','1f44e-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':thumbsdown_tone4:','qrc:/res/emojis/1f44e-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44e-1f3fe.png'' />','1f44e-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':thumbsdown_tone5:','qrc:/res/emojis/1f44e-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44e-1f3ff.png'' />','1f44e-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':thumbsup:','qrc:/res/emojis/1f44d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44d.png'' />','1f44d','people');
-INSERT INTO `custom_emojis` VALUES (':thumbsup_tone1:','qrc:/res/emojis/1f44d-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44d-1f3fb.png'' />','1f44d-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':thumbsup_tone2:','qrc:/res/emojis/1f44d-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44d-1f3fc.png'' />','1f44d-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':thumbsup_tone3:','qrc:/res/emojis/1f44d-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44d-1f3fd.png'' />','1f44d-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':thumbsup_tone4:','qrc:/res/emojis/1f44d-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44d-1f3fe.png'' />','1f44d-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':thumbsup_tone5:','qrc:/res/emojis/1f44d-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44d-1f3ff.png'' />','1f44d-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':thunder_cloud_rain:','qrc:/res/emojis/26c8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26c8.png'' />','26c8','nature');
-INSERT INTO `custom_emojis` VALUES (':ticket:','qrc:/res/emojis/1f3ab.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ab.png'' />','1f3ab','activity');
-INSERT INTO `custom_emojis` VALUES (':tickets:','qrc:/res/emojis/1f39f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f39f.png'' />','1f39f','activity');
-INSERT INTO `custom_emojis` VALUES (':tiger:','qrc:/res/emojis/1f42f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f42f.png'' />','1f42f','nature');
-INSERT INTO `custom_emojis` VALUES (':tiger2:','qrc:/res/emojis/1f405.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f405.png'' />','1f405','nature');
-INSERT INTO `custom_emojis` VALUES (':timer:','qrc:/res/emojis/23f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23f2.png'' />','23f2','objects');
-INSERT INTO `custom_emojis` VALUES (':tired_face:','qrc:/res/emojis/1f62b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f62b.png'' />','1f62b','people');
-INSERT INTO `custom_emojis` VALUES (':tm:','qrc:/res/emojis/2122.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2122.png'' />','2122','symbols');
-INSERT INTO `custom_emojis` VALUES (':toilet:','qrc:/res/emojis/1f6bd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6bd.png'' />','1f6bd','objects');
-INSERT INTO `custom_emojis` VALUES (':tokyo_tower:','qrc:/res/emojis/1f5fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5fc.png'' />','1f5fc','travel');
-INSERT INTO `custom_emojis` VALUES (':tomato:','qrc:/res/emojis/1f345.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f345.png'' />','1f345','food');
-INSERT INTO `custom_emojis` VALUES (':tone1:','qrc:/res/emojis/1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3fb.png'' />','1f3fb','modifier');
-INSERT INTO `custom_emojis` VALUES (':tone2:','qrc:/res/emojis/1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3fc.png'' />','1f3fc','modifier');
-INSERT INTO `custom_emojis` VALUES (':tone3:','qrc:/res/emojis/1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3fd.png'' />','1f3fd','modifier');
-INSERT INTO `custom_emojis` VALUES (':tone4:','qrc:/res/emojis/1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3fe.png'' />','1f3fe','modifier');
-INSERT INTO `custom_emojis` VALUES (':tone5:','qrc:/res/emojis/1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ff.png'' />','1f3ff','modifier');
-INSERT INTO `custom_emojis` VALUES (':tongue:','qrc:/res/emojis/1f445.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f445.png'' />','1f445','people');
-INSERT INTO `custom_emojis` VALUES (':tools:','qrc:/res/emojis/1f6e0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6e0.png'' />','1f6e0','objects');
-INSERT INTO `custom_emojis` VALUES (':top:','qrc:/res/emojis/1f51d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f51d.png'' />','1f51d','symbols');
-INSERT INTO `custom_emojis` VALUES (':tophat:','qrc:/res/emojis/1f3a9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a9.png'' />','1f3a9','people');
-INSERT INTO `custom_emojis` VALUES (':track_next:','qrc:/res/emojis/23ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23ed.png'' />','23ed','symbols');
-INSERT INTO `custom_emojis` VALUES (':track_previous:','qrc:/res/emojis/23ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23ee.png'' />','23ee','symbols');
-INSERT INTO `custom_emojis` VALUES (':trackball:','qrc:/res/emojis/1f5b2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5b2.png'' />','1f5b2','objects');
-INSERT INTO `custom_emojis` VALUES (':tractor:','qrc:/res/emojis/1f69c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f69c.png'' />','1f69c','travel');
-INSERT INTO `custom_emojis` VALUES (':traffic_light:','qrc:/res/emojis/1f6a5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a5.png'' />','1f6a5','travel');
-INSERT INTO `custom_emojis` VALUES (':train:','qrc:/res/emojis/1f68b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f68b.png'' />','1f68b','travel');
-INSERT INTO `custom_emojis` VALUES (':train2:','qrc:/res/emojis/1f686.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f686.png'' />','1f686','travel');
-INSERT INTO `custom_emojis` VALUES (':tram:','qrc:/res/emojis/1f68a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f68a.png'' />','1f68a','travel');
-INSERT INTO `custom_emojis` VALUES (':triangular_flag_on_post:','qrc:/res/emojis/1f6a9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a9.png'' />','1f6a9','objects');
-INSERT INTO `custom_emojis` VALUES (':triangular_ruler:','qrc:/res/emojis/1f4d0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d0.png'' />','1f4d0','objects');
-INSERT INTO `custom_emojis` VALUES (':trident:','qrc:/res/emojis/1f531.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f531.png'' />','1f531','symbols');
-INSERT INTO `custom_emojis` VALUES (':triumph:','qrc:/res/emojis/1f624.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f624.png'' />','1f624','people');
-INSERT INTO `custom_emojis` VALUES (':trolleybus:','qrc:/res/emojis/1f68e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f68e.png'' />','1f68e','travel');
-INSERT INTO `custom_emojis` VALUES (':trophy:','qrc:/res/emojis/1f3c6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c6.png'' />','1f3c6','activity');
-INSERT INTO `custom_emojis` VALUES (':tropical_drink:','qrc:/res/emojis/1f379.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f379.png'' />','1f379','food');
-INSERT INTO `custom_emojis` VALUES (':tropical_fish:','qrc:/res/emojis/1f420.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f420.png'' />','1f420','nature');
-INSERT INTO `custom_emojis` VALUES (':truck:','qrc:/res/emojis/1f69a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f69a.png'' />','1f69a','travel');
-INSERT INTO `custom_emojis` VALUES (':trumpet:','qrc:/res/emojis/1f3ba.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ba.png'' />','1f3ba','activity');
-INSERT INTO `custom_emojis` VALUES (':tulip:','qrc:/res/emojis/1f337.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f337.png'' />','1f337','nature');
-INSERT INTO `custom_emojis` VALUES (':tumbler_glass:','qrc:/res/emojis/1f943.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f943.png'' />','1f943','food');
-INSERT INTO `custom_emojis` VALUES (':turkey:','qrc:/res/emojis/1f983.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f983.png'' />','1f983','nature');
-INSERT INTO `custom_emojis` VALUES (':turtle:','qrc:/res/emojis/1f422.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f422.png'' />','1f422','nature');
-INSERT INTO `custom_emojis` VALUES (':tv:','qrc:/res/emojis/1f4fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4fa.png'' />','1f4fa','objects');
-INSERT INTO `custom_emojis` VALUES (':twisted_rightwards_arrows:','qrc:/res/emojis/1f500.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f500.png'' />','1f500','symbols');
-INSERT INTO `custom_emojis` VALUES (':two:','qrc:/res/emojis/0032-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0032-20e3.png'' />','0032-20e3','symbols');
-INSERT INTO `custom_emojis` VALUES (':two_hearts:','qrc:/res/emojis/1f495.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f495.png'' />','1f495','symbols');
-INSERT INTO `custom_emojis` VALUES (':two_men_holding_hands:','qrc:/res/emojis/1f46c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46c.png'' />','1f46c','people');
-INSERT INTO `custom_emojis` VALUES (':two_women_holding_hands:','qrc:/res/emojis/1f46d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46d.png'' />','1f46d','people');
-INSERT INTO `custom_emojis` VALUES (':u5272:','qrc:/res/emojis/1f239.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f239.png'' />','1f239','symbols');
-INSERT INTO `custom_emojis` VALUES (':u5408:','qrc:/res/emojis/1f234.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f234.png'' />','1f234','symbols');
-INSERT INTO `custom_emojis` VALUES (':u55b6:','qrc:/res/emojis/1f23a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f23a.png'' />','1f23a','symbols');
-INSERT INTO `custom_emojis` VALUES (':u6307:','qrc:/res/emojis/1f22f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f22f.png'' />','1f22f','symbols');
-INSERT INTO `custom_emojis` VALUES (':u6708:','qrc:/res/emojis/1f237.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f237.png'' />','1f237','symbols');
-INSERT INTO `custom_emojis` VALUES (':u6709:','qrc:/res/emojis/1f236.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f236.png'' />','1f236','symbols');
-INSERT INTO `custom_emojis` VALUES (':u6e80:','qrc:/res/emojis/1f235.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f235.png'' />','1f235','symbols');
-INSERT INTO `custom_emojis` VALUES (':u7121:','qrc:/res/emojis/1f21a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f21a.png'' />','1f21a','symbols');
-INSERT INTO `custom_emojis` VALUES (':u7533:','qrc:/res/emojis/1f238.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f238.png'' />','1f238','symbols');
-INSERT INTO `custom_emojis` VALUES (':u7981:','qrc:/res/emojis/1f232.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f232.png'' />','1f232','symbols');
-INSERT INTO `custom_emojis` VALUES (':u7a7a:','qrc:/res/emojis/1f233.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f233.png'' />','1f233','symbols');
-INSERT INTO `custom_emojis` VALUES (':umbrella:','qrc:/res/emojis/2614.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2614.png'' />','2614','nature');
-INSERT INTO `custom_emojis` VALUES (':umbrella2:','qrc:/res/emojis/2602.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2602.png'' />','2602','nature');
-INSERT INTO `custom_emojis` VALUES (':unamused:','qrc:/res/emojis/1f612.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f612.png'' />','1f612','people');
-INSERT INTO `custom_emojis` VALUES (':underage:','qrc:/res/emojis/1f51e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f51e.png'' />','1f51e','symbols');
-INSERT INTO `custom_emojis` VALUES (':unicorn:','qrc:/res/emojis/1f984.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f984.png'' />','1f984','nature');
-INSERT INTO `custom_emojis` VALUES (':unlock:','qrc:/res/emojis/1f513.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f513.png'' />','1f513','objects');
-INSERT INTO `custom_emojis` VALUES (':up:','qrc:/res/emojis/1f199.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f199.png'' />','1f199','symbols');
-INSERT INTO `custom_emojis` VALUES (':upside_down:','qrc:/res/emojis/1f643.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f643.png'' />','1f643','people');
-INSERT INTO `custom_emojis` VALUES (':urn:','qrc:/res/emojis/26b1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26b1.png'' />','26b1','objects');
-INSERT INTO `custom_emojis` VALUES (':v:','qrc:/res/emojis/270c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270c.png'' />','270c','people');
-INSERT INTO `custom_emojis` VALUES (':v_tone1:','qrc:/res/emojis/270c-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270c-1f3fb.png'' />','270c-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':v_tone2:','qrc:/res/emojis/270c-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270c-1f3fc.png'' />','270c-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':v_tone3:','qrc:/res/emojis/270c-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270c-1f3fd.png'' />','270c-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':v_tone4:','qrc:/res/emojis/270c-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270c-1f3fe.png'' />','270c-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':v_tone5:','qrc:/res/emojis/270c-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270c-1f3ff.png'' />','270c-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':vertical_traffic_light:','qrc:/res/emojis/1f6a6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a6.png'' />','1f6a6','travel');
-INSERT INTO `custom_emojis` VALUES (':vhs:','qrc:/res/emojis/1f4fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4fc.png'' />','1f4fc','objects');
-INSERT INTO `custom_emojis` VALUES (':vibration_mode:','qrc:/res/emojis/1f4f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f3.png'' />','1f4f3','symbols');
-INSERT INTO `custom_emojis` VALUES (':video_camera:','qrc:/res/emojis/1f4f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f9.png'' />','1f4f9','objects');
-INSERT INTO `custom_emojis` VALUES (':video_game:','qrc:/res/emojis/1f3ae.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ae.png'' />','1f3ae','activity');
-INSERT INTO `custom_emojis` VALUES (':violin:','qrc:/res/emojis/1f3bb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3bb.png'' />','1f3bb','activity');
-INSERT INTO `custom_emojis` VALUES (':virgo:','qrc:/res/emojis/264d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/264d.png'' />','264d','symbols');
-INSERT INTO `custom_emojis` VALUES (':volcano:','qrc:/res/emojis/1f30b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f30b.png'' />','1f30b','travel');
-INSERT INTO `custom_emojis` VALUES (':volleyball:','qrc:/res/emojis/1f3d0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d0.png'' />','1f3d0','activity');
-INSERT INTO `custom_emojis` VALUES (':vs:','qrc:/res/emojis/1f19a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f19a.png'' />','1f19a','symbols');
-INSERT INTO `custom_emojis` VALUES (':vulcan:','qrc:/res/emojis/1f596.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f596.png'' />','1f596','people');
-INSERT INTO `custom_emojis` VALUES (':vulcan_tone1:','qrc:/res/emojis/1f596-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f596-1f3fb.png'' />','1f596-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':vulcan_tone2:','qrc:/res/emojis/1f596-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f596-1f3fc.png'' />','1f596-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':vulcan_tone3:','qrc:/res/emojis/1f596-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f596-1f3fd.png'' />','1f596-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':vulcan_tone4:','qrc:/res/emojis/1f596-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f596-1f3fe.png'' />','1f596-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':vulcan_tone5:','qrc:/res/emojis/1f596-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f596-1f3ff.png'' />','1f596-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':walking:','qrc:/res/emojis/1f6b6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b6.png'' />','1f6b6','people');
-INSERT INTO `custom_emojis` VALUES (':walking_tone1:','qrc:/res/emojis/1f6b6-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b6-1f3fb.png'' />','1f6b6-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':walking_tone2:','qrc:/res/emojis/1f6b6-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b6-1f3fc.png'' />','1f6b6-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':walking_tone3:','qrc:/res/emojis/1f6b6-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b6-1f3fd.png'' />','1f6b6-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':walking_tone4:','qrc:/res/emojis/1f6b6-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b6-1f3fe.png'' />','1f6b6-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':walking_tone5:','qrc:/res/emojis/1f6b6-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b6-1f3ff.png'' />','1f6b6-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':waning_crescent_moon:','qrc:/res/emojis/1f318.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f318.png'' />','1f318','nature');
-INSERT INTO `custom_emojis` VALUES (':waning_gibbous_moon:','qrc:/res/emojis/1f316.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f316.png'' />','1f316','nature');
-INSERT INTO `custom_emojis` VALUES (':warning:','qrc:/res/emojis/26a0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26a0.png'' />','26a0','symbols');
-INSERT INTO `custom_emojis` VALUES (':wastebasket:','qrc:/res/emojis/1f5d1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5d1.png'' />','1f5d1','objects');
-INSERT INTO `custom_emojis` VALUES (':watch:','qrc:/res/emojis/231a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/231a.png'' />','231a','objects');
-INSERT INTO `custom_emojis` VALUES (':water_buffalo:','qrc:/res/emojis/1f403.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f403.png'' />','1f403','nature');
-INSERT INTO `custom_emojis` VALUES (':water_polo:','qrc:/res/emojis/1f93d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93d.png'' />','1f93d','activity');
-INSERT INTO `custom_emojis` VALUES (':water_polo_tone1:','qrc:/res/emojis/1f93d-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93d-1f3fb.png'' />','1f93d-1f3fb','activity');
-INSERT INTO `custom_emojis` VALUES (':water_polo_tone2:','qrc:/res/emojis/1f93d-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93d-1f3fc.png'' />','1f93d-1f3fc','activity');
-INSERT INTO `custom_emojis` VALUES (':water_polo_tone3:','qrc:/res/emojis/1f93d-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93d-1f3fd.png'' />','1f93d-1f3fd','activity');
-INSERT INTO `custom_emojis` VALUES (':water_polo_tone4:','qrc:/res/emojis/1f93d-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93d-1f3fe.png'' />','1f93d-1f3fe','activity');
-INSERT INTO `custom_emojis` VALUES (':water_polo_tone5:','qrc:/res/emojis/1f93d-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93d-1f3ff.png'' />','1f93d-1f3ff','activity');
-INSERT INTO `custom_emojis` VALUES (':watermelon:','qrc:/res/emojis/1f349.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f349.png'' />','1f349','food');
-INSERT INTO `custom_emojis` VALUES (':wave:','qrc:/res/emojis/1f44b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44b.png'' />','1f44b','people');
-INSERT INTO `custom_emojis` VALUES (':wave_tone1:','qrc:/res/emojis/1f44b-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44b-1f3fb.png'' />','1f44b-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':wave_tone2:','qrc:/res/emojis/1f44b-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44b-1f3fc.png'' />','1f44b-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':wave_tone3:','qrc:/res/emojis/1f44b-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44b-1f3fd.png'' />','1f44b-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':wave_tone4:','qrc:/res/emojis/1f44b-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44b-1f3fe.png'' />','1f44b-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':wave_tone5:','qrc:/res/emojis/1f44b-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44b-1f3ff.png'' />','1f44b-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':wavy_dash:','qrc:/res/emojis/3030.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/3030.png'' />','3030','symbols');
-INSERT INTO `custom_emojis` VALUES (':waxing_crescent_moon:','qrc:/res/emojis/1f312.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f312.png'' />','1f312','nature');
-INSERT INTO `custom_emojis` VALUES (':waxing_gibbous_moon:','qrc:/res/emojis/1f314.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f314.png'' />','1f314','nature');
-INSERT INTO `custom_emojis` VALUES (':wc:','qrc:/res/emojis/1f6be.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6be.png'' />','1f6be','symbols');
-INSERT INTO `custom_emojis` VALUES (':weary:','qrc:/res/emojis/1f629.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f629.png'' />','1f629','people');
-INSERT INTO `custom_emojis` VALUES (':wedding:','qrc:/res/emojis/1f492.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f492.png'' />','1f492','travel');
-INSERT INTO `custom_emojis` VALUES (':whale:','qrc:/res/emojis/1f433.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f433.png'' />','1f433','nature');
-INSERT INTO `custom_emojis` VALUES (':whale2:','qrc:/res/emojis/1f40b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f40b.png'' />','1f40b','nature');
-INSERT INTO `custom_emojis` VALUES (':wheel_of_dharma:','qrc:/res/emojis/2638.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2638.png'' />','2638','symbols');
-INSERT INTO `custom_emojis` VALUES (':wheelchair:','qrc:/res/emojis/267f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/267f.png'' />','267f','symbols');
-INSERT INTO `custom_emojis` VALUES (':white_check_mark:','qrc:/res/emojis/2705.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2705.png'' />','2705','symbols');
-INSERT INTO `custom_emojis` VALUES (':white_circle:','qrc:/res/emojis/26aa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26aa.png'' />','26aa','symbols');
-INSERT INTO `custom_emojis` VALUES (':white_flower:','qrc:/res/emojis/1f4ae.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ae.png'' />','1f4ae','symbols');
-INSERT INTO `custom_emojis` VALUES (':white_large_square:','qrc:/res/emojis/2b1c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2b1c.png'' />','2b1c','symbols');
-INSERT INTO `custom_emojis` VALUES (':white_medium_small_square:','qrc:/res/emojis/25fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/25fd.png'' />','25fd','symbols');
-INSERT INTO `custom_emojis` VALUES (':white_medium_square:','qrc:/res/emojis/25fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/25fb.png'' />','25fb','symbols');
-INSERT INTO `custom_emojis` VALUES (':white_small_square:','qrc:/res/emojis/25ab.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/25ab.png'' />','25ab','symbols');
-INSERT INTO `custom_emojis` VALUES (':white_square_button:','qrc:/res/emojis/1f533.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f533.png'' />','1f533','symbols');
-INSERT INTO `custom_emojis` VALUES (':white_sun_cloud:','qrc:/res/emojis/1f325.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f325.png'' />','1f325','nature');
-INSERT INTO `custom_emojis` VALUES (':white_sun_rain_cloud:','qrc:/res/emojis/1f326.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f326.png'' />','1f326','nature');
-INSERT INTO `custom_emojis` VALUES (':white_sun_small_cloud:','qrc:/res/emojis/1f324.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f324.png'' />','1f324','nature');
-INSERT INTO `custom_emojis` VALUES (':wilted_rose:','qrc:/res/emojis/1f940.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f940.png'' />','1f940','nature');
-INSERT INTO `custom_emojis` VALUES (':wind_blowing_face:','qrc:/res/emojis/1f32c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f32c.png'' />','1f32c','nature');
-INSERT INTO `custom_emojis` VALUES (':wind_chime:','qrc:/res/emojis/1f390.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f390.png'' />','1f390','objects');
-INSERT INTO `custom_emojis` VALUES (':wine_glass:','qrc:/res/emojis/1f377.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f377.png'' />','1f377','food');
-INSERT INTO `custom_emojis` VALUES (':wink:','qrc:/res/emojis/1f609.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f609.png'' />','1f609','people');
-INSERT INTO `custom_emojis` VALUES (':wolf:','qrc:/res/emojis/1f43a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f43a.png'' />','1f43a','nature');
-INSERT INTO `custom_emojis` VALUES (':woman:','qrc:/res/emojis/1f469.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469.png'' />','1f469','people');
-INSERT INTO `custom_emojis` VALUES (':woman_tone1:','qrc:/res/emojis/1f469-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f3fb.png'' />','1f469-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':woman_tone2:','qrc:/res/emojis/1f469-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f3fc.png'' />','1f469-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':woman_tone3:','qrc:/res/emojis/1f469-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f3fd.png'' />','1f469-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':woman_tone4:','qrc:/res/emojis/1f469-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f3fe.png'' />','1f469-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':woman_tone5:','qrc:/res/emojis/1f469-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f3ff.png'' />','1f469-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':womans_clothes:','qrc:/res/emojis/1f45a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f45a.png'' />','1f45a','people');
-INSERT INTO `custom_emojis` VALUES (':womans_hat:','qrc:/res/emojis/1f452.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f452.png'' />','1f452','people');
-INSERT INTO `custom_emojis` VALUES (':womens:','qrc:/res/emojis/1f6ba.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6ba.png'' />','1f6ba','symbols');
-INSERT INTO `custom_emojis` VALUES (':worried:','qrc:/res/emojis/1f61f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f61f.png'' />','1f61f','people');
-INSERT INTO `custom_emojis` VALUES (':wrench:','qrc:/res/emojis/1f527.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f527.png'' />','1f527','objects');
-INSERT INTO `custom_emojis` VALUES (':wrestlers:','qrc:/res/emojis/1f93c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93c.png'' />','1f93c','activity');
-INSERT INTO `custom_emojis` VALUES (':wrestlers_tone1:','qrc:/res/emojis/1f93c-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93c-1f3fb.png'' />','1f93c-1f3fb','activity');
-INSERT INTO `custom_emojis` VALUES (':wrestlers_tone2:','qrc:/res/emojis/1f93c-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93c-1f3fc.png'' />','1f93c-1f3fc','activity');
-INSERT INTO `custom_emojis` VALUES (':wrestlers_tone3:','qrc:/res/emojis/1f93c-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93c-1f3fd.png'' />','1f93c-1f3fd','activity');
-INSERT INTO `custom_emojis` VALUES (':wrestlers_tone4:','qrc:/res/emojis/1f93c-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93c-1f3fe.png'' />','1f93c-1f3fe','activity');
-INSERT INTO `custom_emojis` VALUES (':wrestlers_tone5:','qrc:/res/emojis/1f93c-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93c-1f3ff.png'' />','1f93c-1f3ff','activity');
-INSERT INTO `custom_emojis` VALUES (':writing_hand:','qrc:/res/emojis/270d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270d.png'' />','270d','people');
-INSERT INTO `custom_emojis` VALUES (':writing_hand_tone1:','qrc:/res/emojis/270d-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270d-1f3fb.png'' />','270d-1f3fb','people');
-INSERT INTO `custom_emojis` VALUES (':writing_hand_tone2:','qrc:/res/emojis/270d-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270d-1f3fc.png'' />','270d-1f3fc','people');
-INSERT INTO `custom_emojis` VALUES (':writing_hand_tone3:','qrc:/res/emojis/270d-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270d-1f3fd.png'' />','270d-1f3fd','people');
-INSERT INTO `custom_emojis` VALUES (':writing_hand_tone4:','qrc:/res/emojis/270d-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270d-1f3fe.png'' />','270d-1f3fe','people');
-INSERT INTO `custom_emojis` VALUES (':writing_hand_tone5:','qrc:/res/emojis/270d-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270d-1f3ff.png'' />','270d-1f3ff','people');
-INSERT INTO `custom_emojis` VALUES (':x:','qrc:/res/emojis/274c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/274c.png'' />','274c','symbols');
-INSERT INTO `custom_emojis` VALUES (':yellow_heart:','qrc:/res/emojis/1f49b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f49b.png'' />','1f49b','symbols');
-INSERT INTO `custom_emojis` VALUES (':yen:','qrc:/res/emojis/1f4b4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b4.png'' />','1f4b4','objects');
-INSERT INTO `custom_emojis` VALUES (':yin_yang:','qrc:/res/emojis/262f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/262f.png'' />','262f','symbols');
-INSERT INTO `custom_emojis` VALUES (':yum:','qrc:/res/emojis/1f60b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f60b.png'' />','1f60b','people');
-INSERT INTO `custom_emojis` VALUES (':zap:','qrc:/res/emojis/26a1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26a1.png'' />','26a1','nature');
-INSERT INTO `custom_emojis` VALUES (':zero:','qrc:/res/emojis/0030-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0030-20e3.png'' />','0030-20e3','symbols');
-INSERT INTO `custom_emojis` VALUES (':zipper_mouth:','qrc:/res/emojis/1f910.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f910.png'' />','1f910','people');
-INSERT INTO `custom_emojis` VALUES (':zzz:','qrc:/res/emojis/1f4a4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a4.png'' />','1f4a4','people');
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':100:','qrc:/res/emojis/1f4af.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4af.png'' />','💯','symbols',856);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':1234:','qrc:/res/emojis/1f522.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f522.png'' />','🔢','symbols',913);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':8ball:','qrc:/res/emojis/1f3b1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b1.png'' />','🎱','activity',426);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':a:','qrc:/res/emojis/1f170.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f170.png'' />','🅰','symbols',831);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ab:','qrc:/res/emojis/1f18e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f18e.png'' />','🆎','symbols',833);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':abc:','qrc:/res/emojis/1f524.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f524.png'' />','🔤','symbols',949);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':abcd:','qrc:/res/emojis/1f521.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f521.png'' />','🔡','symbols',950);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':accept:','qrc:/res/emojis/1f251.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f251.png'' />','🉑','symbols',823);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':aerial_tramway:','qrc:/res/emojis/1f6a1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a1.png'' />','🚡','travel',496);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':airplane:','qrc:/res/emojis/2708.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2708.png'' />','✈','travel',513);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':airplane_arriving:','qrc:/res/emojis/1f6ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6ec.png'' />','🛬','travel',515);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':airplane_departure:','qrc:/res/emojis/1f6eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6eb.png'' />','🛫','travel',514);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':airplane_small:','qrc:/res/emojis/1f6e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6e9.png'' />','🛩','travel',512);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':alarm_clock:','qrc:/res/emojis/23f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23f0.png'' />','⏰','objects',624);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':alembic:','qrc:/res/emojis/2697.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2697.png'' />','âš—','objects',667);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':alien:','qrc:/res/emojis/1f47d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47d.png'' />','👽','people',77);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ambulance:','qrc:/res/emojis/1f691.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f691.png'' />','🚑','travel',483);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':amphora:','qrc:/res/emojis/1f3fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3fa.png'' />','🏺','objects',663);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':anchor:','qrc:/res/emojis/2693.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2693.png'' />','âš“','travel',524);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':angel:','qrc:/res/emojis/1f47c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47c.png'' />','👼','people',136);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':angel_tone1:','qrc:/res/emojis/1f47c-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47c-1f3fb.png'' />','👼🏻','people',1495);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':angel_tone2:','qrc:/res/emojis/1f47c-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47c-1f3fc.png'' />','👼🏼','people',1496);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':angel_tone3:','qrc:/res/emojis/1f47c-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47c-1f3fd.png'' />','👼🏽','people',1497);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':angel_tone4:','qrc:/res/emojis/1f47c-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47c-1f3fe.png'' />','👼🏾','people',1498);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':angel_tone5:','qrc:/res/emojis/1f47c-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47c-1f3ff.png'' />','👼🏿','people',1499);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':anger:','qrc:/res/emojis/1f4a2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a2.png'' />','💢','symbols',842);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':anger_right:','qrc:/res/emojis/1f5ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5ef.png'' />','🗯','symbols',1011);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':angry:','qrc:/res/emojis/1f620.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f620.png'' />','😠','people',39);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':anguished:','qrc:/res/emojis/1f627.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f627.png'' />','😧','people',56);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ant:','qrc:/res/emojis/1f41c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f41c.png'' />','🐜','nature',239);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':apple:','qrc:/res/emojis/1f34e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f34e.png'' />','🍎','food',353);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':aquarius:','qrc:/res/emojis/2652.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2652.png'' />','â™’','symbols',806);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':aries:','qrc:/res/emojis/2648.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2648.png'' />','♈','symbols',796);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_backward:','qrc:/res/emojis/25c0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/25c0.png'' />','â—€','symbols',926);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_double_down:','qrc:/res/emojis/23ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23ec.png'' />','⏬','symbols',930);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_double_up:','qrc:/res/emojis/23eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23eb.png'' />','⏫','symbols',929);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_down:','qrc:/res/emojis/2b07.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2b07.png'' />','⬇','symbols',934);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_down_small:','qrc:/res/emojis/1f53d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f53d.png'' />','🔽','symbols',928);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_forward:','qrc:/res/emojis/25b6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/25b6.png'' />','â–¶','symbols',914);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_heading_down:','qrc:/res/emojis/2935.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2935.png'' />','⤵','symbols',945);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_heading_up:','qrc:/res/emojis/2934.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2934.png'' />','⤴','symbols',944);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_left:','qrc:/res/emojis/2b05.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2b05.png'' />','⬅','symbols',932);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_lower_left:','qrc:/res/emojis/2199.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2199.png'' />','↙','symbols',937);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_lower_right:','qrc:/res/emojis/2198.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2198.png'' />','↘','symbols',936);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_right:','qrc:/res/emojis/27a1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/27a1.png'' />','âž¡','symbols',931);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_right_hook:','qrc:/res/emojis/21aa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/21aa.png'' />','↪','symbols',942);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_up:','qrc:/res/emojis/2b06.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2b06.png'' />','⬆','symbols',933);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_up_down:','qrc:/res/emojis/2195.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2195.png'' />','↕','symbols',939);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_up_small:','qrc:/res/emojis/1f53c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f53c.png'' />','🔼','symbols',927);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_upper_left:','qrc:/res/emojis/2196.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2196.png'' />','↖','symbols',938);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrow_upper_right:','qrc:/res/emojis/2197.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2197.png'' />','↗','symbols',935);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrows_clockwise:','qrc:/res/emojis/1f503.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f503.png'' />','🔃','symbols',958);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':arrows_counterclockwise:','qrc:/res/emojis/1f504.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f504.png'' />','🔄','symbols',941);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':art:','qrc:/res/emojis/1f3a8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a8.png'' />','🎨','activity',459);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':articulated_lorry:','qrc:/res/emojis/1f69b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f69b.png'' />','🚛','travel',487);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':asterisk:','qrc:/res/emojis/002a-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/002a-20e3.png'' />','⃣','symbols',947);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':astonished:','qrc:/res/emojis/1f632.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f632.png'' />','😲','people',63);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':athletic_shoe:','qrc:/res/emojis/1f45f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f45f.png'' />','👟','people',190);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':atm:','qrc:/res/emojis/1f3e7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e7.png'' />','🏧','symbols',877);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':atom:','qrc:/res/emojis/269b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/269b.png'' />','âš›','symbols',809);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':avocado:','qrc:/res/emojis/1f951.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f951.png'' />','🥑','food',10138);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':b:','qrc:/res/emojis/1f171.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f171.png'' />','🅱','symbols',832);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':baby:','qrc:/res/emojis/1f476.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f476.png'' />','👶','people',121);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':baby_bottle:','qrc:/res/emojis/1f37c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f37c.png'' />','🍼','food',416);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':baby_chick:','qrc:/res/emojis/1f424.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f424.png'' />','🐤','nature',228);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':baby_symbol:','qrc:/res/emojis/1f6bc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6bc.png'' />','🚼','symbols',890);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':baby_tone1:','qrc:/res/emojis/1f476-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f476-1f3fb.png'' />','👶🏻','people',1425);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':baby_tone2:','qrc:/res/emojis/1f476-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f476-1f3fc.png'' />','👶🏼','people',1426);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':baby_tone3:','qrc:/res/emojis/1f476-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f476-1f3fd.png'' />','👶🏽','people',1427);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':baby_tone4:','qrc:/res/emojis/1f476-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f476-1f3fe.png'' />','👶🏾','people',1428);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':baby_tone5:','qrc:/res/emojis/1f476-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f476-1f3ff.png'' />','👶🏿','people',1429);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':back:','qrc:/res/emojis/1f519.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f519.png'' />','🔙','symbols',969);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bacon:','qrc:/res/emojis/1f953.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f953.png'' />','🥓','food',10140);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':badminton:','qrc:/res/emojis/1f3f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3f8.png'' />','🏸','activity',430);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':baggage_claim:','qrc:/res/emojis/1f6c4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c4.png'' />','🛄','symbols',881);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':balloon:','qrc:/res/emojis/1f388.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f388.png'' />','🎈','objects',691);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ballot_box:','qrc:/res/emojis/1f5f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5f3.png'' />','🗳','objects',727);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ballot_box_with_check:','qrc:/res/emojis/2611.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2611.png'' />','☑','symbols',973);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bamboo:','qrc:/res/emojis/1f38d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f38d.png'' />','🎍','nature',287);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':banana:','qrc:/res/emojis/1f34c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f34c.png'' />','🍌','food',357);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bangbang:','qrc:/res/emojis/203c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/203c.png'' />','‼','symbols',854);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bank:','qrc:/res/emojis/1f3e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e6.png'' />','🏦','travel',579);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bar_chart:','qrc:/res/emojis/1f4ca.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ca.png'' />','📊','objects',718);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':barber:','qrc:/res/emojis/1f488.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f488.png'' />','💈','objects',666);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':baseball:','qrc:/res/emojis/26be.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26be.png'' />','âš¾','activity',422);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':basketball:','qrc:/res/emojis/1f3c0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c0.png'' />','🏀','activity',420);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':basketball_player:','qrc:/res/emojis/26f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f9.png'' />','⛹','activity',444);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':basketball_player_tone1:','qrc:/res/emojis/26f9-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f9-1f3fb.png'' />','⛹🏻','activity',1590);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':basketball_player_tone2:','qrc:/res/emojis/26f9-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f9-1f3fc.png'' />','⛹🏼','activity',1591);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':basketball_player_tone3:','qrc:/res/emojis/26f9-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f9-1f3fd.png'' />','⛹🏽','activity',1592);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':basketball_player_tone4:','qrc:/res/emojis/26f9-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f9-1f3fe.png'' />','⛹🏾','activity',1593);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':basketball_player_tone5:','qrc:/res/emojis/26f9-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f9-1f3ff.png'' />','⛹🏿','activity',1594);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bat:','qrc:/res/emojis/1f987.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f987.png'' />','🦇','nature',10127);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bath:','qrc:/res/emojis/1f6c0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c0.png'' />','🛀','activity',443);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bath_tone1:','qrc:/res/emojis/1f6c0-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c0-1f3fb.png'' />','🛀🏻','activity',1585);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bath_tone2:','qrc:/res/emojis/1f6c0-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c0-1f3fc.png'' />','🛀🏼','activity',1586);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bath_tone3:','qrc:/res/emojis/1f6c0-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c0-1f3fd.png'' />','🛀🏽','activity',1587);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bath_tone4:','qrc:/res/emojis/1f6c0-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c0-1f3fe.png'' />','🛀🏾','activity',1588);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bath_tone5:','qrc:/res/emojis/1f6c0-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c0-1f3ff.png'' />','🛀🏿','activity',1589);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bathtub:','qrc:/res/emojis/1f6c1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c1.png'' />','🛁','objects',678);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':battery:','qrc:/res/emojis/1f50b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f50b.png'' />','🔋','objects',629);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':beach:','qrc:/res/emojis/1f3d6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d6.png'' />','🏖','travel',554);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':beach_umbrella:','qrc:/res/emojis/26f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f1.png'' />','â›±','objects',688);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bear:','qrc:/res/emojis/1f43b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f43b.png'' />','🐻','nature',210);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bed:','qrc:/res/emojis/1f6cf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6cf.png'' />','🛏','objects',683);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bee:','qrc:/res/emojis/1f41d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f41d.png'' />','🐝','nature',235);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':beer:','qrc:/res/emojis/1f37a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f37a.png'' />','🍺','food',407);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':beers:','qrc:/res/emojis/1f37b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f37b.png'' />','🍻','food',408);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':beetle:','qrc:/res/emojis/1f41e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f41e.png'' />','🐞','nature',238);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':beginner:','qrc:/res/emojis/1f530.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f530.png'' />','🔰','symbols',864);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bell:','qrc:/res/emojis/1f514.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f514.png'' />','🔔','symbols',1001);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bellhop:','qrc:/res/emojis/1f6ce.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6ce.png'' />','🛎','objects',685);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bento:','qrc:/res/emojis/1f371.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f371.png'' />','🍱','food',388);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bicyclist:','qrc:/res/emojis/1f6b4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b4.png'' />','🚴','activity',446);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bicyclist_tone1:','qrc:/res/emojis/1f6b4-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b4-1f3fb.png'' />','🚴🏻','activity',1600);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bicyclist_tone2:','qrc:/res/emojis/1f6b4-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b4-1f3fc.png'' />','🚴🏼','activity',1601);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bicyclist_tone3:','qrc:/res/emojis/1f6b4-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b4-1f3fd.png'' />','🚴🏽','activity',1602);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bicyclist_tone4:','qrc:/res/emojis/1f6b4-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b4-1f3fe.png'' />','🚴🏾','activity',1603);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bicyclist_tone5:','qrc:/res/emojis/1f6b4-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b4-1f3ff.png'' />','🚴🏿','activity',1604);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bike:','qrc:/res/emojis/1f6b2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b2.png'' />','🚲','travel',490);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bikini:','qrc:/res/emojis/1f459.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f459.png'' />','👙','people',181);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':biohazard:','qrc:/res/emojis/2623.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2623.png'' />','☣','symbols',813);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bird:','qrc:/res/emojis/1f426.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f426.png'' />','🐦','nature',227);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':birthday:','qrc:/res/emojis/1f382.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f382.png'' />','🎂','food',399);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':black_circle:','qrc:/res/emojis/26ab.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26ab.png'' />','âš«','symbols',976);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':black_heart:','qrc:/res/emojis/1f5a4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5a4.png'' />','🖤','symbols',10124);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':black_joker:','qrc:/res/emojis/1f0cf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f0cf.png'' />','🃏','symbols',1003);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':black_large_square:','qrc:/res/emojis/2b1b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2b1b.png'' />','⬛','symbols',986);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':black_medium_small_square:','qrc:/res/emojis/25fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/25fe.png'' />','â—¾','symbols',991);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':black_medium_square:','qrc:/res/emojis/25fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/25fc.png'' />','â—¼','symbols',989);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':black_nib:','qrc:/res/emojis/2712.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2712.png'' />','✒','objects',762);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':black_small_square:','qrc:/res/emojis/25aa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/25aa.png'' />','â–ª','symbols',984);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':black_square_button:','qrc:/res/emojis/1f532.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f532.png'' />','🔲','symbols',993);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':blossom:','qrc:/res/emojis/1f33c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f33c.png'' />','🌼','nature',297);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':blowfish:','qrc:/res/emojis/1f421.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f421.png'' />','🐡','nature',247);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':blue_book:','qrc:/res/emojis/1f4d8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d8.png'' />','📘','objects',739);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':blue_car:','qrc:/res/emojis/1f699.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f699.png'' />','🚙','travel',478);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':blue_heart:','qrc:/res/emojis/1f499.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f499.png'' />','💙','symbols',772);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':blush:','qrc:/res/emojis/1f60a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f60a.png'' />','😊','people',11);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':boar:','qrc:/res/emojis/1f417.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f417.png'' />','🐗','nature',232);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bomb:','qrc:/res/emojis/1f4a3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a3.png'' />','💣','objects',654);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':book:','qrc:/res/emojis/1f4d6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d6.png'' />','📖','objects',744);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bookmark:','qrc:/res/emojis/1f516.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f516.png'' />','🔖','objects',675);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bookmark_tabs:','qrc:/res/emojis/1f4d1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d1.png'' />','📑','objects',717);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':books:','qrc:/res/emojis/1f4da.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4da.png'' />','📚','objects',743);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':boom:','qrc:/res/emojis/1f4a5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a5.png'' />','💥','nature',338);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':boot:','qrc:/res/emojis/1f462.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f462.png'' />','👢','people',188);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bouquet:','qrc:/res/emojis/1f490.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f490.png'' />','💐','nature',299);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bow:','qrc:/res/emojis/1f647.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f647.png'' />','🙇','people',146);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bow_and_arrow:','qrc:/res/emojis/1f3f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3f9.png'' />','🏹','activity',438);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bow_tone1:','qrc:/res/emojis/1f647-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f647-1f3fb.png'' />','🙇🏻','people',1525);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bow_tone2:','qrc:/res/emojis/1f647-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f647-1f3fc.png'' />','🙇🏼','people',1526);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bow_tone3:','qrc:/res/emojis/1f647-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f647-1f3fd.png'' />','🙇🏽','people',1527);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bow_tone4:','qrc:/res/emojis/1f647-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f647-1f3fe.png'' />','🙇🏾','people',1528);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bow_tone5:','qrc:/res/emojis/1f647-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f647-1f3ff.png'' />','🙇🏿','people',1529);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bowling:','qrc:/res/emojis/1f3b3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b3.png'' />','🎳','activity',475);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':boxing_glove:','qrc:/res/emojis/1f94a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f94a.png'' />','🥊','activity',10158);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':boy:','qrc:/res/emojis/1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f466.png'' />','👦','people',122);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':boy_tone1:','qrc:/res/emojis/1f466-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f466-1f3fb.png'' />','👦🏻','people',1430);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':boy_tone2:','qrc:/res/emojis/1f466-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f466-1f3fc.png'' />','👦🏼','people',1431);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':boy_tone3:','qrc:/res/emojis/1f466-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f466-1f3fd.png'' />','👦🏽','people',1432);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':boy_tone4:','qrc:/res/emojis/1f466-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f466-1f3fe.png'' />','👦🏾','people',1433);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':boy_tone5:','qrc:/res/emojis/1f466-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f466-1f3ff.png'' />','👦🏿','people',1434);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bread:','qrc:/res/emojis/1f35e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f35e.png'' />','🍞','food',371);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bride_with_veil:','qrc:/res/emojis/1f470.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f470.png'' />','👰','people',138);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bride_with_veil_tone1:','qrc:/res/emojis/1f470-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f470-1f3fb.png'' />','👰🏻','people',1505);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bride_with_veil_tone2:','qrc:/res/emojis/1f470-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f470-1f3fc.png'' />','👰🏼','people',1506);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bride_with_veil_tone3:','qrc:/res/emojis/1f470-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f470-1f3fd.png'' />','👰🏽','people',1507);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bride_with_veil_tone4:','qrc:/res/emojis/1f470-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f470-1f3fe.png'' />','👰🏾','people',1508);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bride_with_veil_tone5:','qrc:/res/emojis/1f470-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f470-1f3ff.png'' />','👰🏿','people',1509);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bridge_at_night:','qrc:/res/emojis/1f309.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f309.png'' />','🌉','travel',560);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':briefcase:','qrc:/res/emojis/1f4bc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4bc.png'' />','💼','people',200);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':broken_heart:','qrc:/res/emojis/1f494.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f494.png'' />','💔','symbols',774);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bug:','qrc:/res/emojis/1f41b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f41b.png'' />','🐛','nature',236);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bulb:','qrc:/res/emojis/1f4a1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a1.png'' />','💡','objects',631);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bullettrain_front:','qrc:/res/emojis/1f685.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f685.png'' />','🚅','travel',503);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bullettrain_side:','qrc:/res/emojis/1f684.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f684.png'' />','🚄','travel',502);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':burrito:','qrc:/res/emojis/1f32f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f32f.png'' />','🌯','food',383);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bus:','qrc:/res/emojis/1f68c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f68c.png'' />','🚌','travel',479);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':busstop:','qrc:/res/emojis/1f68f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f68f.png'' />','🚏','travel',527);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':bust_in_silhouette:','qrc:/res/emojis/1f464.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f464.png'' />','👤','people',118);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':busts_in_silhouette:','qrc:/res/emojis/1f465.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f465.png'' />','👥','people',119);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':butterfly:','qrc:/res/emojis/1f98b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f98b.png'' />','🦋','nature',10131);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cactus:','qrc:/res/emojis/1f335.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f335.png'' />','🌵','nature',278);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cake:','qrc:/res/emojis/1f370.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f370.png'' />','🍰','food',398);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':calendar:','qrc:/res/emojis/1f4c6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c6.png'' />','📆','objects',723);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':calendar_spiral:','qrc:/res/emojis/1f5d3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5d3.png'' />','🗓','objects',724);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':call_me:','qrc:/res/emojis/1f919.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f919.png'' />','🤙','people',10118);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':call_me_tone1:','qrc:/res/emojis/1f919-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f919-1f3fb.png'' />','🤙🏻','people',10045);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':call_me_tone2:','qrc:/res/emojis/1f919-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f919-1f3fc.png'' />','🤙🏼','people',10046);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':call_me_tone3:','qrc:/res/emojis/1f919-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f919-1f3fd.png'' />','🤙🏽','people',10047);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':call_me_tone4:','qrc:/res/emojis/1f919-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f919-1f3fe.png'' />','🤙🏾','people',10048);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':call_me_tone5:','qrc:/res/emojis/1f919-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f919-1f3ff.png'' />','🤙🏿','people',10049);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':calling:','qrc:/res/emojis/1f4f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f2.png'' />','📲','objects',593);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':camel:','qrc:/res/emojis/1f42b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f42b.png'' />','🐫','nature',258);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':camera:','qrc:/res/emojis/1f4f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f7.png'' />','📷','objects',607);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':camera_with_flash:','qrc:/res/emojis/1f4f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f8.png'' />','📸','objects',608);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':camping:','qrc:/res/emojis/1f3d5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d5.png'' />','🏕','travel',546);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cancer:','qrc:/res/emojis/264b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/264b.png'' />','♋','symbols',799);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':candle:','qrc:/res/emojis/1f56f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f56f.png'' />','🕯','objects',633);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':candy:','qrc:/res/emojis/1f36c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f36c.png'' />','🍬','food',401);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':canoe:','qrc:/res/emojis/1f6f6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6f6.png'' />','🛶','travel',10154);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':capital_abcd:','qrc:/res/emojis/1f520.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f520.png'' />','🔠','symbols',951);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':capricorn:','qrc:/res/emojis/2651.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2651.png'' />','♑','symbols',805);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':card_box:','qrc:/res/emojis/1f5c3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5c3.png'' />','🗃','objects',726);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':card_index:','qrc:/res/emojis/1f4c7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c7.png'' />','📇','objects',725);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':carousel_horse:','qrc:/res/emojis/1f3a0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a0.png'' />','🎠','travel',534);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':carrot:','qrc:/res/emojis/1f955.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f955.png'' />','🥕','food',10142);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cartwheel:','qrc:/res/emojis/1f938.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f938.png'' />','🤸','activity',10155);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cartwheel_tone1:','qrc:/res/emojis/1f938-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f938-1f3fb.png'' />','🤸🏻','activity',10070);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cartwheel_tone2:','qrc:/res/emojis/1f938-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f938-1f3fc.png'' />','🤸🏼','activity',10071);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cartwheel_tone3:','qrc:/res/emojis/1f938-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f938-1f3fd.png'' />','🤸🏽','activity',10072);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cartwheel_tone4:','qrc:/res/emojis/1f938-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f938-1f3fe.png'' />','🤸🏾','activity',10073);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cartwheel_tone5:','qrc:/res/emojis/1f938-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f938-1f3ff.png'' />','🤸🏿','activity',10074);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cat:','qrc:/res/emojis/1f431.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f431.png'' />','🐱','nature',206);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cat2:','qrc:/res/emojis/1f408.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f408.png'' />','🐈','nature',272);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cd:','qrc:/res/emojis/1f4bf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4bf.png'' />','💿','objects',604);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':chains:','qrc:/res/emojis/26d3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26d3.png'' />','⛓','objects',652);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':champagne:','qrc:/res/emojis/1f37e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f37e.png'' />','🍾','food',412);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':champagne_glass:','qrc:/res/emojis/1f942.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f942.png'' />','🥂','food',10147);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':chart:','qrc:/res/emojis/1f4b9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b9.png'' />','💹','symbols',867);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':chart_with_downwards_trend:','qrc:/res/emojis/1f4c9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c9.png'' />','📉','objects',720);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':chart_with_upwards_trend:','qrc:/res/emojis/1f4c8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c8.png'' />','📈','objects',719);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':checkered_flag:','qrc:/res/emojis/1f3c1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c1.png'' />','🏁','travel',530);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cheese:','qrc:/res/emojis/1f9c0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f9c0.png'' />','🧀','food',372);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cherries:','qrc:/res/emojis/1f352.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f352.png'' />','🍒','food',362);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cherry_blossom:','qrc:/res/emojis/1f338.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f338.png'' />','🌸','nature',298);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':chestnut:','qrc:/res/emojis/1f330.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f330.png'' />','🌰','nature',301);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':chicken:','qrc:/res/emojis/1f414.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f414.png'' />','🐔','nature',225);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':children_crossing:','qrc:/res/emojis/1f6b8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b8.png'' />','🚸','symbols',863);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':chipmunk:','qrc:/res/emojis/1f43f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f43f.png'' />','🐿','nature',274);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':chocolate_bar:','qrc:/res/emojis/1f36b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f36b.png'' />','🍫','food',403);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':christmas_tree:','qrc:/res/emojis/1f384.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f384.png'' />','🎄','nature',279);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':church:','qrc:/res/emojis/26ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26ea.png'' />','⛪','travel',586);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cinema:','qrc:/res/emojis/1f3a6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a6.png'' />','🎦','symbols',893);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':circus_tent:','qrc:/res/emojis/1f3aa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3aa.png'' />','🎪','activity',460);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':city_dusk:','qrc:/res/emojis/1f306.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f306.png'' />','🌆','travel',557);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':city_sunset:','qrc:/res/emojis/1f307.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f307.png'' />','🌇','travel',556);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cityscape:','qrc:/res/emojis/1f3d9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d9.png'' />','🏙','travel',558);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cl:','qrc:/res/emojis/1f191.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f191.png'' />','🆑','symbols',834);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clap:','qrc:/res/emojis/1f44f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44f.png'' />','👏','people',89);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clap_tone1:','qrc:/res/emojis/1f44f-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44f-1f3fb.png'' />','👏🏻','people',1300);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clap_tone2:','qrc:/res/emojis/1f44f-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44f-1f3fc.png'' />','👏🏼','people',1301);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clap_tone3:','qrc:/res/emojis/1f44f-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44f-1f3fd.png'' />','👏🏽','people',1302);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clap_tone4:','qrc:/res/emojis/1f44f-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44f-1f3fe.png'' />','👏🏾','people',1303);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clap_tone5:','qrc:/res/emojis/1f44f-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44f-1f3ff.png'' />','👏🏿','people',1304);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clapper:','qrc:/res/emojis/1f3ac.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ac.png'' />','🎬','activity',469);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':classical_building:','qrc:/res/emojis/1f3db.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3db.png'' />','🏛','travel',585);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clipboard:','qrc:/res/emojis/1f4cb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4cb.png'' />','📋','objects',729);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock:','qrc:/res/emojis/1f570.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f570.png'' />','🕰','objects',625);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock1:','qrc:/res/emojis/1f550.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f550.png'' />','🕐','symbols',1013);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock10:','qrc:/res/emojis/1f559.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f559.png'' />','🕙','symbols',1022);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock1030:','qrc:/res/emojis/1f565.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f565.png'' />','🕥','symbols',1034);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock11:','qrc:/res/emojis/1f55a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f55a.png'' />','🕚','symbols',1023);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock1130:','qrc:/res/emojis/1f566.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f566.png'' />','🕦','symbols',1035);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock12:','qrc:/res/emojis/1f55b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f55b.png'' />','🕛','symbols',1024);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock1230:','qrc:/res/emojis/1f567.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f567.png'' />','🕧','symbols',1036);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock130:','qrc:/res/emojis/1f55c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f55c.png'' />','🕜','symbols',1025);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock2:','qrc:/res/emojis/1f551.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f551.png'' />','🕑','symbols',1014);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock230:','qrc:/res/emojis/1f55d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f55d.png'' />','🕝','symbols',1026);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock3:','qrc:/res/emojis/1f552.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f552.png'' />','🕒','symbols',1015);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock330:','qrc:/res/emojis/1f55e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f55e.png'' />','🕞','symbols',1027);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock4:','qrc:/res/emojis/1f553.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f553.png'' />','🕓','symbols',1016);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock430:','qrc:/res/emojis/1f55f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f55f.png'' />','🕟','symbols',1028);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock5:','qrc:/res/emojis/1f554.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f554.png'' />','🕔','symbols',1017);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock530:','qrc:/res/emojis/1f560.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f560.png'' />','🕠','symbols',1029);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock6:','qrc:/res/emojis/1f555.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f555.png'' />','🕕','symbols',1018);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock630:','qrc:/res/emojis/1f561.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f561.png'' />','🕡','symbols',1030);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock7:','qrc:/res/emojis/1f556.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f556.png'' />','🕖','symbols',1019);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock730:','qrc:/res/emojis/1f562.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f562.png'' />','🕢','symbols',1031);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock8:','qrc:/res/emojis/1f557.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f557.png'' />','🕗','symbols',1020);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock830:','qrc:/res/emojis/1f563.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f563.png'' />','🕣','symbols',1032);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock9:','qrc:/res/emojis/1f558.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f558.png'' />','🕘','symbols',1021);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clock930:','qrc:/res/emojis/1f564.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f564.png'' />','🕤','symbols',1033);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':closed_book:','qrc:/res/emojis/1f4d5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d5.png'' />','📕','objects',737);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':closed_lock_with_key:','qrc:/res/emojis/1f510.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f510.png'' />','🔐','objects',756);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':closed_umbrella:','qrc:/res/emojis/1f302.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f302.png'' />','🌂','people',204);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cloud:','qrc:/res/emojis/2601.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2601.png'' />','☁','nature',332);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cloud_lightning:','qrc:/res/emojis/1f329.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f329.png'' />','🌩','nature',335);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cloud_rain:','qrc:/res/emojis/1f327.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f327.png'' />','🌧','nature',333);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cloud_snow:','qrc:/res/emojis/1f328.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f328.png'' />','🌨','nature',340);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cloud_tornado:','qrc:/res/emojis/1f32a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f32a.png'' />','🌪','nature',345);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clown:','qrc:/res/emojis/1f921.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f921.png'' />','🤡','people',10104);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':clubs:','qrc:/res/emojis/2663.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2663.png'' />','♣','symbols',1006);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cocktail:','qrc:/res/emojis/1f378.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f378.png'' />','🍸','food',410);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':coffee:','qrc:/res/emojis/2615.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2615.png'' />','☕','food',415);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':coffin:','qrc:/res/emojis/26b0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26b0.png'' />','âš°','objects',661);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cold_sweat:','qrc:/res/emojis/1f630.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f630.png'' />','😰','people',53);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':comet:','qrc:/res/emojis/2604.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2604.png'' />','☄','nature',326);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':compression:','qrc:/res/emojis/1f5dc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5dc.png'' />','🗜','objects',601);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':computer:','qrc:/res/emojis/1f4bb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4bb.png'' />','💻','objects',594);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':confetti_ball:','qrc:/res/emojis/1f38a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f38a.png'' />','🎊','objects',695);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':confounded:','qrc:/res/emojis/1f616.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f616.png'' />','😖','people',46);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':confused:','qrc:/res/emojis/1f615.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f615.png'' />','😕','people',42);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':congratulations:','qrc:/res/emojis/3297.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/3297.png'' />','㊗','symbols',827);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':construction:','qrc:/res/emojis/1f6a7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a7.png'' />','🚧','travel',525);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':construction_site:','qrc:/res/emojis/1f3d7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d7.png'' />','🏗','travel',535);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':construction_worker:','qrc:/res/emojis/1f477.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f477.png'' />','👷','people',132);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':construction_worker_tone1:','qrc:/res/emojis/1f477-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f477-1f3fb.png'' />','👷🏻','people',1480);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':construction_worker_tone2:','qrc:/res/emojis/1f477-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f477-1f3fc.png'' />','👷🏼','people',1481);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':construction_worker_tone3:','qrc:/res/emojis/1f477-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f477-1f3fd.png'' />','👷🏽','people',1482);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':construction_worker_tone4:','qrc:/res/emojis/1f477-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f477-1f3fe.png'' />','👷🏾','people',1483);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':construction_worker_tone5:','qrc:/res/emojis/1f477-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f477-1f3ff.png'' />','👷🏿','people',1484);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':control_knobs:','qrc:/res/emojis/1f39b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f39b.png'' />','🎛','objects',621);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':convenience_store:','qrc:/res/emojis/1f3ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ea.png'' />','🏪','travel',581);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cookie:','qrc:/res/emojis/1f36a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f36a.png'' />','🍪','food',406);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cooking:','qrc:/res/emojis/1f373.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f373.png'' />','🍳','food',376);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cool:','qrc:/res/emojis/1f192.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f192.png'' />','🆒','symbols',899);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cop:','qrc:/res/emojis/1f46e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46e.png'' />','👮','people',131);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cop_tone1:','qrc:/res/emojis/1f46e-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46e-1f3fb.png'' />','👮🏻','people',1475);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cop_tone2:','qrc:/res/emojis/1f46e-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46e-1f3fc.png'' />','👮🏼','people',1476);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cop_tone3:','qrc:/res/emojis/1f46e-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46e-1f3fd.png'' />','👮🏽','people',1477);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cop_tone4:','qrc:/res/emojis/1f46e-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46e-1f3fe.png'' />','👮🏾','people',1478);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cop_tone5:','qrc:/res/emojis/1f46e-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46e-1f3ff.png'' />','👮🏿','people',1479);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':copyright:','qrc:/res/emojis/00a9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/00a9.png'' />','©','symbols',965);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':corn:','qrc:/res/emojis/1f33d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f33d.png'' />','🌽','food',368);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':couch:','qrc:/res/emojis/1f6cb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6cb.png'' />','🛋','objects',681);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':couple:','qrc:/res/emojis/1f46b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46b.png'' />','👫','people',143);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':couple_mm:','qrc:/res/emojis/1f468-2764-1f468.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-2764-1f468.png'' />','❤👨','people',157);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':couple_with_heart:','qrc:/res/emojis/1f491.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f491.png'' />','💑','people',155);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':couple_ww:','qrc:/res/emojis/1f469-2764-1f469.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-2764-1f469.png'' />','❤👩','people',156);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':couplekiss:','qrc:/res/emojis/1f48f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f48f.png'' />','💏','people',158);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cow:','qrc:/res/emojis/1f42e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f42e.png'' />','🐮','nature',215);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cow2:','qrc:/res/emojis/1f404.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f404.png'' />','🐄','nature',256);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cowboy:','qrc:/res/emojis/1f920.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f920.png'' />','🤠','people',10103);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':crab:','qrc:/res/emojis/1f980.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f980.png'' />','🦀','nature',242);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':crayon:','qrc:/res/emojis/1f58d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f58d.png'' />','🖍','objects',765);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':credit_card:','qrc:/res/emojis/1f4b3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b3.png'' />','💳','objects',642);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':crescent_moon:','qrc:/res/emojis/1f319.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f319.png'' />','🌙','nature',321);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cricket:','qrc:/res/emojis/1f3cf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cf.png'' />','🏏','activity',433);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':crocodile:','qrc:/res/emojis/1f40a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f40a.png'' />','🐊','nature',251);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':croissant:','qrc:/res/emojis/1f950.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f950.png'' />','🥐','food',10137);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cross:','qrc:/res/emojis/271d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/271d.png'' />','✝','symbols',785);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':crossed_flags:','qrc:/res/emojis/1f38c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f38c.png'' />','🎌','objects',699);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':crossed_swords:','qrc:/res/emojis/2694.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2694.png'' />','âš”','objects',657);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':crown:','qrc:/res/emojis/1f451.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f451.png'' />','👑','people',195);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cruise_ship:','qrc:/res/emojis/1f6f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6f3.png'' />','🛳','travel',520);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cry:','qrc:/res/emojis/1f622.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f622.png'' />','😢','people',57);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':crying_cat_face:','qrc:/res/emojis/1f63f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f63f.png'' />','😿','people',86);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':crystal_ball:','qrc:/res/emojis/1f52e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f52e.png'' />','🔮','objects',664);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cucumber:','qrc:/res/emojis/1f952.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f952.png'' />','🥒','food',10139);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cupid:','qrc:/res/emojis/1f498.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f498.png'' />','💘','symbols',781);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':curly_loop:','qrc:/res/emojis/27b0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/27b0.png'' />','âž°','symbols',956);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':currency_exchange:','qrc:/res/emojis/1f4b1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b1.png'' />','💱','symbols',964);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':curry:','qrc:/res/emojis/1f35b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f35b.png'' />','🍛','food',389);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':custard:','qrc:/res/emojis/1f36e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f36e.png'' />','🍮','food',400);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':customs:','qrc:/res/emojis/1f6c3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c3.png'' />','🛃','symbols',880);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':cyclone:','qrc:/res/emojis/1f300.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f300.png'' />','🌀','symbols',873);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dagger:','qrc:/res/emojis/1f5e1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5e1.png'' />','🗡','objects',656);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dancer:','qrc:/res/emojis/1f483.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f483.png'' />','💃','people',141);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dancer_tone1:','qrc:/res/emojis/1f483-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f483-1f3fb.png'' />','💃🏻','people',1520);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dancer_tone2:','qrc:/res/emojis/1f483-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f483-1f3fc.png'' />','💃🏼','people',1521);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dancer_tone3:','qrc:/res/emojis/1f483-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f483-1f3fd.png'' />','💃🏽','people',1522);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dancer_tone4:','qrc:/res/emojis/1f483-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f483-1f3fe.png'' />','💃🏾','people',1523);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dancer_tone5:','qrc:/res/emojis/1f483-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f483-1f3ff.png'' />','💃🏿','people',1524);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dancers:','qrc:/res/emojis/1f46f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46f.png'' />','👯','people',142);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dango:','qrc:/res/emojis/1f361.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f361.png'' />','🍡','food',394);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dark_sunglasses:','qrc:/res/emojis/1f576.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f576.png'' />','🕶','people',202);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dart:','qrc:/res/emojis/1f3af.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3af.png'' />','🎯','activity',472);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dash:','qrc:/res/emojis/1f4a8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a8.png'' />','💨','nature',344);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':date:','qrc:/res/emojis/1f4c5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c5.png'' />','📅','objects',722);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':deciduous_tree:','qrc:/res/emojis/1f333.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f333.png'' />','🌳','nature',281);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':deer:','qrc:/res/emojis/1f98c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f98c.png'' />','🦌','nature',10132);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':department_store:','qrc:/res/emojis/1f3ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ec.png'' />','🏬','travel',575);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':desert:','qrc:/res/emojis/1f3dc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3dc.png'' />','🏜','travel',553);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':desktop:','qrc:/res/emojis/1f5a5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5a5.png'' />','🖥','objects',596);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':diamond_shape_with_a_dot_inside:','qrc:/res/emojis/1f4a0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a0.png'' />','💠','symbols',872);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':diamonds:','qrc:/res/emojis/2666.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2666.png'' />','♦','symbols',1008);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':disappointed:','qrc:/res/emojis/1f61e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f61e.png'' />','😞','people',37);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':disappointed_relieved:','qrc:/res/emojis/1f625.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f625.png'' />','😥','people',58);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dividers:','qrc:/res/emojis/1f5c2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5c2.png'' />','🗂','objects',733);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dizzy:','qrc:/res/emojis/1f4ab.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ab.png'' />','💫','nature',324);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dizzy_face:','qrc:/res/emojis/1f635.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f635.png'' />','😵','people',62);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':do_not_litter:','qrc:/res/emojis/1f6af.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6af.png'' />','🚯','symbols',845);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dog:','qrc:/res/emojis/1f436.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f436.png'' />','🐶','nature',205);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dog2:','qrc:/res/emojis/1f415.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f415.png'' />','🐕','nature',270);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dollar:','qrc:/res/emojis/1f4b5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b5.png'' />','💵','objects',637);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dolls:','qrc:/res/emojis/1f38e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f38e.png'' />','🎎','objects',697);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dolphin:','qrc:/res/emojis/1f42c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f42c.png'' />','🐬','nature',248);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':door:','qrc:/res/emojis/1f6aa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6aa.png'' />','🚪','objects',684);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':doughnut:','qrc:/res/emojis/1f369.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f369.png'' />','🍩','food',405);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dove:','qrc:/res/emojis/1f54a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f54a.png'' />','🕊','nature',269);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dragon:','qrc:/res/emojis/1f409.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f409.png'' />','🐉','nature',276);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dragon_face:','qrc:/res/emojis/1f432.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f432.png'' />','🐲','nature',277);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dress:','qrc:/res/emojis/1f457.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f457.png'' />','👗','people',180);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dromedary_camel:','qrc:/res/emojis/1f42a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f42a.png'' />','🐪','nature',257);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':drooling_face:','qrc:/res/emojis/1f924.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f924.png'' />','🤤','people',10107);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':droplet:','qrc:/res/emojis/1f4a7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a7.png'' />','💧','nature',349);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':drum:','qrc:/res/emojis/1f941.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f941.png'' />','🥁','activity',10167);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':duck:','qrc:/res/emojis/1f986.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f986.png'' />','🦆','nature',10126);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':dvd:','qrc:/res/emojis/1f4c0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c0.png'' />','📀','objects',605);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':e-mail:','qrc:/res/emojis/1f4e7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e7.png'' />','📧','objects',704);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':eagle:','qrc:/res/emojis/1f985.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f985.png'' />','🦅','nature',10125);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ear:','qrc:/res/emojis/1f442.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f442.png'' />','👂','people',114);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ear_of_rice:','qrc:/res/emojis/1f33e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f33e.png'' />','🌾','nature',292);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ear_tone1:','qrc:/res/emojis/1f442-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f442-1f3fb.png'' />','👂🏻','people',1415);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ear_tone2:','qrc:/res/emojis/1f442-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f442-1f3fc.png'' />','👂🏼','people',1416);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ear_tone3:','qrc:/res/emojis/1f442-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f442-1f3fd.png'' />','👂🏽','people',1417);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ear_tone4:','qrc:/res/emojis/1f442-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f442-1f3fe.png'' />','👂🏾','people',1418);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ear_tone5:','qrc:/res/emojis/1f442-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f442-1f3ff.png'' />','👂🏿','people',1419);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':earth_africa:','qrc:/res/emojis/1f30d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f30d.png'' />','🌍','nature',306);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':earth_americas:','qrc:/res/emojis/1f30e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f30e.png'' />','🌎','nature',305);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':earth_asia:','qrc:/res/emojis/1f30f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f30f.png'' />','🌏','nature',307);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':egg:','qrc:/res/emojis/1f95a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f95a.png'' />','🥚','food',10170);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':eggplant:','qrc:/res/emojis/1f346.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f346.png'' />','🍆','food',366);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':eight:','qrc:/res/emojis/0038-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0038-20e3.png'' />','⃣','symbols',910);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':eight_pointed_black_star:','qrc:/res/emojis/2734.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2734.png'' />','✴','symbols',821);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':eight_spoked_asterisk:','qrc:/res/emojis/2733.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2733.png'' />','✳','symbols',869);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':eject:','qrc:/res/emojis/23cf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23cf.png'' />','⏏','symbols',10101);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':electric_plug:','qrc:/res/emojis/1f50c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f50c.png'' />','🔌','objects',630);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':elephant:','qrc:/res/emojis/1f418.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f418.png'' />','🐘','nature',259);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':end:','qrc:/res/emojis/1f51a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f51a.png'' />','🔚','symbols',968);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':envelope:','qrc:/res/emojis/2709.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2709.png'' />','✉','objects',701);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':envelope_with_arrow:','qrc:/res/emojis/1f4e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e9.png'' />','📩','objects',702);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':euro:','qrc:/res/emojis/1f4b6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b6.png'' />','💶','objects',639);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':european_castle:','qrc:/res/emojis/1f3f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3f0.png'' />','🏰','travel',567);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':european_post_office:','qrc:/res/emojis/1f3e4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e4.png'' />','🏤','travel',577);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':evergreen_tree:','qrc:/res/emojis/1f332.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f332.png'' />','🌲','nature',280);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':exclamation:','qrc:/res/emojis/2757.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2757.png'' />','❗','symbols',850);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':expressionless:','qrc:/res/emojis/1f611.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f611.png'' />','😑','people',32);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':eye:','qrc:/res/emojis/1f441.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f441.png'' />','👁','people',116);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':eye_in_speech_bubble:','qrc:/res/emojis/1f441-1f5e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f441-1f5e8.png'' />','👁🗨','symbols',1037);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':eyeglasses:','qrc:/res/emojis/1f453.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f453.png'' />','👓','people',201);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':eyes:','qrc:/res/emojis/1f440.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f440.png'' />','👀','people',117);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':face_palm:','qrc:/res/emojis/1f926.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f926.png'' />','🤦','people',10113);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':face_palm_tone1:','qrc:/res/emojis/1f926-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f926-1f3fb.png'' />','🤦🏻','people',10020);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':face_palm_tone2:','qrc:/res/emojis/1f926-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f926-1f3fc.png'' />','🤦🏼','people',10021);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':face_palm_tone3:','qrc:/res/emojis/1f926-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f926-1f3fd.png'' />','🤦🏽','people',10022);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':face_palm_tone4:','qrc:/res/emojis/1f926-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f926-1f3fe.png'' />','🤦🏾','people',10023);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':face_palm_tone5:','qrc:/res/emojis/1f926-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f926-1f3ff.png'' />','🤦🏿','people',10024);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':factory:','qrc:/res/emojis/1f3ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ed.png'' />','🏭','travel',538);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fallen_leaf:','qrc:/res/emojis/1f342.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f342.png'' />','🍂','nature',290);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':family:','qrc:/res/emojis/1f46a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46a.png'' />','👪','people',161);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':family_mmb:','qrc:/res/emojis/1f468-1f468-1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f468-1f466.png'' />','👨👨👦','people',171);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':family_mmbb:','qrc:/res/emojis/1f468-1f468-1f466-1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f468-1f466-1f466.png'' />','👨👨👦👦','people',174);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':family_mmg:','qrc:/res/emojis/1f468-1f468-1f467.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f468-1f467.png'' />','👨👨👧','people',172);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':family_mmgb:','qrc:/res/emojis/1f468-1f468-1f467-1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f468-1f467-1f466.png'' />','👨👨👧👦','people',173);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':family_mmgg:','qrc:/res/emojis/1f468-1f468-1f467-1f467.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f468-1f467-1f467.png'' />','👨👨👧👧','people',175);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':family_mwbb:','qrc:/res/emojis/1f468-1f469-1f466-1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f469-1f466-1f466.png'' />','👨👩👦👦','people',164);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':family_mwg:','qrc:/res/emojis/1f468-1f469-1f467.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f469-1f467.png'' />','👨👩👧','people',162);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':family_mwgb:','qrc:/res/emojis/1f468-1f469-1f467-1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f469-1f467-1f466.png'' />','👨👩👧👦','people',163);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':family_mwgg:','qrc:/res/emojis/1f468-1f469-1f467-1f467.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f469-1f467-1f467.png'' />','👨👩👧👧','people',165);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':family_wwb:','qrc:/res/emojis/1f469-1f469-1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f469-1f466.png'' />','👩👩👦','people',166);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':family_wwbb:','qrc:/res/emojis/1f469-1f469-1f466-1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f469-1f466-1f466.png'' />','👩👩👦👦','people',169);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':family_wwg:','qrc:/res/emojis/1f469-1f469-1f467.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f469-1f467.png'' />','👩👩👧','people',167);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':family_wwgb:','qrc:/res/emojis/1f469-1f469-1f467-1f466.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f469-1f467-1f466.png'' />','👩👩👧👦','people',168);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':family_wwgg:','qrc:/res/emojis/1f469-1f469-1f467-1f467.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f469-1f467-1f467.png'' />','👩👩👧👧','people',170);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fast_forward:','qrc:/res/emojis/23e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23e9.png'' />','⏩','symbols',921);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fax:','qrc:/res/emojis/1f4e0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e0.png'' />','📠','objects',616);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fearful:','qrc:/res/emojis/1f628.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f628.png'' />','😨','people',52);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':feet:','qrc:/res/emojis/1f43e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f43e.png'' />','🐾','nature',275);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fencer:','qrc:/res/emojis/1f93a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93a.png'' />','🤺','activity',10163);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ferris_wheel:','qrc:/res/emojis/1f3a1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a1.png'' />','🎡','travel',532);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ferry:','qrc:/res/emojis/26f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f4.png'' />','â›´','travel',519);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':field_hockey:','qrc:/res/emojis/1f3d1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d1.png'' />','🏑','activity',432);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':file_cabinet:','qrc:/res/emojis/1f5c4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5c4.png'' />','🗄','objects',728);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':file_folder:','qrc:/res/emojis/1f4c1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c1.png'' />','📁','objects',731);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':film_frames:','qrc:/res/emojis/1f39e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f39e.png'' />','🎞','objects',612);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fingers_crossed:','qrc:/res/emojis/1f91e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91e.png'' />','🤞','people',10123);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fingers_crossed_tone1:','qrc:/res/emojis/1f91e-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91e-1f3fb.png'' />','🤞🏻','people',10040);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fingers_crossed_tone2:','qrc:/res/emojis/1f91e-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91e-1f3fc.png'' />','🤞🏼','people',10041);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fingers_crossed_tone3:','qrc:/res/emojis/1f91e-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91e-1f3fd.png'' />','🤞🏽','people',10042);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fingers_crossed_tone4:','qrc:/res/emojis/1f91e-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91e-1f3fe.png'' />','🤞🏾','people',10043);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fingers_crossed_tone5:','qrc:/res/emojis/1f91e-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91e-1f3ff.png'' />','🤞🏿','people',10044);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fire:','qrc:/res/emojis/1f525.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f525.png'' />','🔥','nature',337);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fire_engine:','qrc:/res/emojis/1f692.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f692.png'' />','🚒','travel',484);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fireworks:','qrc:/res/emojis/1f386.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f386.png'' />','🎆','travel',564);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':first_place:','qrc:/res/emojis/1f947.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f947.png'' />','🥇','activity',10164);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':first_quarter_moon:','qrc:/res/emojis/1f313.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f313.png'' />','🌓','nature',314);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':first_quarter_moon_with_face:','qrc:/res/emojis/1f31b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f31b.png'' />','🌛','nature',318);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fish:','qrc:/res/emojis/1f41f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f41f.png'' />','🐟','nature',246);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fish_cake:','qrc:/res/emojis/1f365.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f365.png'' />','🍥','food',386);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fishing_pole_and_fish:','qrc:/res/emojis/1f3a3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a3.png'' />','🎣','activity',439);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fist:','qrc:/res/emojis/270a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270a.png'' />','✊','people',94);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fist_tone1:','qrc:/res/emojis/270a-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270a-1f3fb.png'' />','✊🏻','people',1325);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fist_tone2:','qrc:/res/emojis/270a-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270a-1f3fc.png'' />','✊🏼','people',1326);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fist_tone3:','qrc:/res/emojis/270a-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270a-1f3fd.png'' />','✊🏽','people',1327);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fist_tone4:','qrc:/res/emojis/270a-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270a-1f3fe.png'' />','✊🏾','people',1328);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fist_tone5:','qrc:/res/emojis/270a-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270a-1f3ff.png'' />','✊🏿','people',1329);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':five:','qrc:/res/emojis/0035-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0035-20e3.png'' />','⃣','symbols',907);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ac:','qrc:/res/emojis/1f1e6-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1e8.png'' />','🇦🇨','flags',1038);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ad:','qrc:/res/emojis/1f1e6-1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1e9.png'' />','🇦🇩','flags',1042);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ae:','qrc:/res/emojis/1f1e6-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1ea.png'' />','🇦🇪','flags',1241);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_af:','qrc:/res/emojis/1f1e6-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1eb.png'' />','🇦🇫','flags',1039);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ag:','qrc:/res/emojis/1f1e6-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1ec.png'' />','🇦🇬','flags',1045);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ai:','qrc:/res/emojis/1f1e6-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1ee.png'' />','🇦🇮','flags',1044);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_al:','qrc:/res/emojis/1f1e6-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1f1.png'' />','🇦🇱','flags',1040);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_am:','qrc:/res/emojis/1f1e6-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1f2.png'' />','🇦🇲','flags',1047);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ao:','qrc:/res/emojis/1f1e6-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1f4.png'' />','🇦🇴','flags',1043);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_aq:','qrc:/res/emojis/1f1e6-1f1f6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1f6.png'' />','🇦🇶','flags',1281);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ar:','qrc:/res/emojis/1f1e6-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1f7.png'' />','🇦🇷','flags',1046);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_as:','qrc:/res/emojis/1f1e6-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1f8.png'' />','🇦🇸','flags',1280);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_at:','qrc:/res/emojis/1f1e6-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1f9.png'' />','🇦🇹','flags',1050);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_au:','qrc:/res/emojis/1f1e6-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1fa.png'' />','🇦🇺','flags',1049);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_aw:','qrc:/res/emojis/1f1e6-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1fc.png'' />','🇦🇼','flags',1048);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ax:','qrc:/res/emojis/1f1e6-1f1fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1fd.png'' />','🇦🇽','flags',1257);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_az:','qrc:/res/emojis/1f1e6-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6-1f1ff.png'' />','🇦🇿','flags',1051);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ba:','qrc:/res/emojis/1f1e7-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1e6.png'' />','🇧🇦','flags',1063);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bb:','qrc:/res/emojis/1f1e7-1f1e7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1e7.png'' />','🇧🇧','flags',1055);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bd:','qrc:/res/emojis/1f1e7-1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1e9.png'' />','🇧🇩','flags',1054);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_be:','qrc:/res/emojis/1f1e7-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1ea.png'' />','🇧🇪','flags',1057);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bf:','qrc:/res/emojis/1f1e7-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1eb.png'' />','🇧🇫','flags',1068);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bg:','qrc:/res/emojis/1f1e7-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1ec.png'' />','🇧🇬','flags',1067);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bh:','qrc:/res/emojis/1f1e7-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1ed.png'' />','🇧🇭','flags',1053);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bi:','qrc:/res/emojis/1f1e7-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1ee.png'' />','🇧🇮','flags',1069);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bj:','qrc:/res/emojis/1f1e7-1f1ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1ef.png'' />','🇧🇯','flags',1059);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bl:','qrc:/res/emojis/1f1e7-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1f1.png'' />','🇧🇱','flags',1268);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_black:','qrc:/res/emojis/1f3f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3f4.png'' />','🏴','objects',755);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bm:','qrc:/res/emojis/1f1e7-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1f2.png'' />','🇧🇲','flags',1060);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bn:','qrc:/res/emojis/1f1e7-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1f3.png'' />','🇧🇳','flags',1066);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bo:','qrc:/res/emojis/1f1e7-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1f4.png'' />','🇧🇴','flags',1062);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bq:','qrc:/res/emojis/1f1e7-1f1f6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1f6.png'' />','🇧🇶','flags',1260);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_br:','qrc:/res/emojis/1f1e7-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1f7.png'' />','🇧🇷','flags',1065);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bs:','qrc:/res/emojis/1f1e7-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1f8.png'' />','🇧🇸','flags',1052);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bt:','qrc:/res/emojis/1f1e7-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1f9.png'' />','🇧🇹','flags',1061);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bv:','qrc:/res/emojis/1f1e7-1f1fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1fb.png'' />','🇧🇻','flags',1272);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bw:','qrc:/res/emojis/1f1e7-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1fc.png'' />','🇧🇼','flags',1064);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_by:','qrc:/res/emojis/1f1e7-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1fe.png'' />','🇧🇾','flags',1056);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_bz:','qrc:/res/emojis/1f1e7-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7-1f1ff.png'' />','🇧🇿','flags',1058);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ca:','qrc:/res/emojis/1f1e8-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1e6.png'' />','🇨🇦','flags',1073);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_cc:','qrc:/res/emojis/1f1e8-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1e8.png'' />','🇨🇨','flags',1262);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_cd:','qrc:/res/emojis/1f1e8-1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1e9.png'' />','🇨🇩','flags',1082);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_cf:','qrc:/res/emojis/1f1e8-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1eb.png'' />','🇨🇫','flags',1075);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_cg:','qrc:/res/emojis/1f1e8-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1ec.png'' />','🇨🇬','flags',1081);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ch:','qrc:/res/emojis/1f1e8-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1ed.png'' />','🇨🇭','flags',1225);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ci:','qrc:/res/emojis/1f1e8-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1ee.png'' />','🇨🇮','flags',1131);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ck:','qrc:/res/emojis/1f1e8-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1f0.png'' />','🇨🇰','flags',1283);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_cl:','qrc:/res/emojis/1f1e8-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1f1.png'' />','🇨🇱','flags',1077);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_cm:','qrc:/res/emojis/1f1e8-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1f2.png'' />','🇨🇲','flags',1072);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_cn:','qrc:/res/emojis/1f1e8-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1f3.png'' />','🇨🇳','flags',1078);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_co:','qrc:/res/emojis/1f1e8-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1f4.png'' />','🇨🇴','flags',1079);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_cp:','qrc:/res/emojis/1f1e8-1f1f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1f5.png'' />','🇨🇵','flags',1278);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_cr:','qrc:/res/emojis/1f1e8-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1f7.png'' />','🇨🇷','flags',1083);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_cu:','qrc:/res/emojis/1f1e8-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1fa.png'' />','🇨🇺','flags',1085);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_cv:','qrc:/res/emojis/1f1e8-1f1fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1fb.png'' />','🇨🇻','flags',1070);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_cw:','qrc:/res/emojis/1f1e8-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1fc.png'' />','🇨🇼','flags',1284);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_cx:','qrc:/res/emojis/1f1e8-1f1fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1fd.png'' />','🇨🇽','flags',1261);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_cy:','qrc:/res/emojis/1f1e8-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1fe.png'' />','🇨🇾','flags',1086);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_cz:','qrc:/res/emojis/1f1e8-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8-1f1ff.png'' />','🇨🇿','flags',1087);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_de:','qrc:/res/emojis/1f1e9-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e9-1f1ea.png'' />','🇩🇪','flags',1108);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_dg:','qrc:/res/emojis/1f1e9-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e9-1f1ec.png'' />','🇩🇬','flags',1279);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_dj:','qrc:/res/emojis/1f1e9-1f1ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e9-1f1ef.png'' />','🇩🇯','flags',1089);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_dk:','qrc:/res/emojis/1f1e9-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e9-1f1f0.png'' />','🇩🇰','flags',1088);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_dm:','qrc:/res/emojis/1f1e9-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e9-1f1f2.png'' />','🇩🇲','flags',1090);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_do:','qrc:/res/emojis/1f1e9-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e9-1f1f4.png'' />','🇩🇴','flags',1091);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_dz:','qrc:/res/emojis/1f1e9-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e9-1f1ff.png'' />','🇩🇿','flags',1041);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ea:','qrc:/res/emojis/1f1ea-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1e6.png'' />','🇪🇦','flags',1277);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ec:','qrc:/res/emojis/1f1ea-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1e8.png'' />','🇪🇨','flags',1092);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ee:','qrc:/res/emojis/1f1ea-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1ea.png'' />','🇪🇪','flags',1097);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_eg:','qrc:/res/emojis/1f1ea-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1ec.png'' />','🇪🇬','flags',1093);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_eh:','qrc:/res/emojis/1f1ea-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1ed.png'' />','🇪🇭','flags',1252);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_er:','qrc:/res/emojis/1f1ea-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1f7.png'' />','🇪🇷','flags',1096);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_es:','qrc:/res/emojis/1f1ea-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1f8.png'' />','🇪🇸','flags',1219);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_et:','qrc:/res/emojis/1f1ea-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1f9.png'' />','🇪🇹','flags',1098);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_eu:','qrc:/res/emojis/1f1ea-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea-1f1fa.png'' />','🇪🇺','flags',1285);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_fi:','qrc:/res/emojis/1f1eb-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1eb-1f1ee.png'' />','🇫🇮','flags',1102);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_fj:','qrc:/res/emojis/1f1eb-1f1ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1eb-1f1ef.png'' />','🇫🇯','flags',1101);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_fk:','qrc:/res/emojis/1f1eb-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1eb-1f1f0.png'' />','🇫🇰','flags',1099);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_fm:','qrc:/res/emojis/1f1eb-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1eb-1f1f2.png'' />','🇫🇲','flags',1163);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_fo:','qrc:/res/emojis/1f1eb-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1eb-1f1f4.png'' />','🇫🇴','flags',1100);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_fr:','qrc:/res/emojis/1f1eb-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1eb-1f1f7.png'' />','🇫🇷','flags',1103);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ga:','qrc:/res/emojis/1f1ec-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1e6.png'' />','🇬🇦','flags',1105);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gb:','qrc:/res/emojis/1f1ec-1f1e7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1e7.png'' />','🇬🇧','flags',1242);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gd:','qrc:/res/emojis/1f1ec-1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1e9.png'' />','🇬🇩','flags',1113);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ge:','qrc:/res/emojis/1f1ec-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1ea.png'' />','🇬🇪','flags',1107);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gf:','qrc:/res/emojis/1f1ec-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1eb.png'' />','🇬🇫','flags',1286);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gg:','qrc:/res/emojis/1f1ec-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1ec.png'' />','🇬🇬','flags',1263);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gh:','qrc:/res/emojis/1f1ec-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1ed.png'' />','🇬🇭','flags',1109);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gi:','qrc:/res/emojis/1f1ec-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1ee.png'' />','🇬🇮','flags',1110);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gl:','qrc:/res/emojis/1f1ec-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1f1.png'' />','🇬🇱','flags',1112);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gm:','qrc:/res/emojis/1f1ec-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1f2.png'' />','🇬🇲','flags',1106);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gn:','qrc:/res/emojis/1f1ec-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1f3.png'' />','🇬🇳','flags',1116);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gp:','qrc:/res/emojis/1f1ec-1f1f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1f5.png'' />','🇬🇵','flags',1288);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gq:','qrc:/res/emojis/1f1ec-1f1f6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1f6.png'' />','🇬🇶','flags',1095);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gr:','qrc:/res/emojis/1f1ec-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1f7.png'' />','🇬🇷','flags',1111);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gs:','qrc:/res/emojis/1f1ec-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1f8.png'' />','🇬🇸','flags',1270);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gt:','qrc:/res/emojis/1f1ec-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1f9.png'' />','🇬🇹','flags',1115);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gu:','qrc:/res/emojis/1f1ec-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1fa.png'' />','🇬🇺','flags',1114);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gw:','qrc:/res/emojis/1f1ec-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1fc.png'' />','🇬🇼','flags',1117);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_gy:','qrc:/res/emojis/1f1ec-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec-1f1fe.png'' />','🇬🇾','flags',1118);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_hk:','qrc:/res/emojis/1f1ed-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ed-1f1f0.png'' />','🇭🇰','flags',1121);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_hm:','qrc:/res/emojis/1f1ed-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ed-1f1f2.png'' />','🇭🇲','flags',1273);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_hn:','qrc:/res/emojis/1f1ed-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ed-1f1f3.png'' />','🇭🇳','flags',1120);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_hr:','qrc:/res/emojis/1f1ed-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ed-1f1f7.png'' />','🇭🇷','flags',1084);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ht:','qrc:/res/emojis/1f1ed-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ed-1f1f9.png'' />','🇭🇹','flags',1119);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_hu:','qrc:/res/emojis/1f1ed-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ed-1f1fa.png'' />','🇭🇺','flags',1122);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ic:','qrc:/res/emojis/1f1ee-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1e8.png'' />','🇮🇨','flags',1276);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_id:','qrc:/res/emojis/1f1ee-1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1e9.png'' />','🇮🇩','flags',1125);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ie:','qrc:/res/emojis/1f1ee-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1ea.png'' />','🇮🇪','flags',1128);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_il:','qrc:/res/emojis/1f1ee-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1f1.png'' />','🇮🇱','flags',1129);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_im:','qrc:/res/emojis/1f1ee-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1f2.png'' />','🇮🇲','flags',1264);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_in:','qrc:/res/emojis/1f1ee-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1f3.png'' />','🇮🇳','flags',1124);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_io:','qrc:/res/emojis/1f1ee-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1f4.png'' />','🇮🇴','flags',1259);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_iq:','qrc:/res/emojis/1f1ee-1f1f6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1f6.png'' />','🇮🇶','flags',1127);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ir:','qrc:/res/emojis/1f1ee-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1f7.png'' />','🇮🇷','flags',1126);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_is:','qrc:/res/emojis/1f1ee-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1f8.png'' />','🇮🇸','flags',1123);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_it:','qrc:/res/emojis/1f1ee-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee-1f1f9.png'' />','🇮🇹','flags',1130);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_je:','qrc:/res/emojis/1f1ef-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ef-1f1ea.png'' />','🇯🇪','flags',1134);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_jm:','qrc:/res/emojis/1f1ef-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ef-1f1f2.png'' />','🇯🇲','flags',1132);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_jo:','qrc:/res/emojis/1f1ef-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ef-1f1f4.png'' />','🇯🇴','flags',1135);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_jp:','qrc:/res/emojis/1f1ef-1f1f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ef-1f1f5.png'' />','🇯🇵','flags',1133);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ke:','qrc:/res/emojis/1f1f0-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1ea.png'' />','🇰🇪','flags',1137);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_kg:','qrc:/res/emojis/1f1f0-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1ec.png'' />','🇰🇬','flags',1141);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_kh:','qrc:/res/emojis/1f1f0-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1ed.png'' />','🇰🇭','flags',1071);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ki:','qrc:/res/emojis/1f1f0-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1ee.png'' />','🇰🇮','flags',1138);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_km:','qrc:/res/emojis/1f1f0-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1f2.png'' />','🇰🇲','flags',1080);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_kn:','qrc:/res/emojis/1f1f0-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1f3.png'' />','🇰🇳','flags',1201);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_kp:','qrc:/res/emojis/1f1f0-1f1f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1f5.png'' />','🇰🇵','flags',1182);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_kr:','qrc:/res/emojis/1f1f0-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1f7.png'' />','🇰🇷','flags',1218);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_kw:','qrc:/res/emojis/1f1f0-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1fc.png'' />','🇰🇼','flags',1140);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ky:','qrc:/res/emojis/1f1f0-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1fe.png'' />','🇰🇾','flags',1074);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_kz:','qrc:/res/emojis/1f1f0-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0-1f1ff.png'' />','🇰🇿','flags',1136);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_la:','qrc:/res/emojis/1f1f1-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1e6.png'' />','🇱🇦','flags',1142);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_lb:','qrc:/res/emojis/1f1f1-1f1e7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1e7.png'' />','🇱🇧','flags',1144);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_lc:','qrc:/res/emojis/1f1f1-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1e8.png'' />','🇱🇨','flags',1202);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_li:','qrc:/res/emojis/1f1f1-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1ee.png'' />','🇱🇮','flags',1148);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_lk:','qrc:/res/emojis/1f1f1-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1f0.png'' />','🇱🇰','flags',1220);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_lr:','qrc:/res/emojis/1f1f1-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1f7.png'' />','🇱🇷','flags',1146);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ls:','qrc:/res/emojis/1f1f1-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1f8.png'' />','🇱🇸','flags',1145);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_lt:','qrc:/res/emojis/1f1f1-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1f9.png'' />','🇱🇹','flags',1149);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_lu:','qrc:/res/emojis/1f1f1-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1fa.png'' />','🇱🇺','flags',1150);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_lv:','qrc:/res/emojis/1f1f1-1f1fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1fb.png'' />','🇱🇻','flags',1143);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ly:','qrc:/res/emojis/1f1f1-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1-1f1fe.png'' />','🇱🇾','flags',1147);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ma:','qrc:/res/emojis/1f1f2-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1e6.png'' />','🇲🇦','flags',1169);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mc:','qrc:/res/emojis/1f1f2-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1e8.png'' />','🇲🇨','flags',1165);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_md:','qrc:/res/emojis/1f1f2-1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1e9.png'' />','🇲🇩','flags',1164);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_me:','qrc:/res/emojis/1f1f2-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1ea.png'' />','🇲🇪','flags',1167);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mf:','qrc:/res/emojis/1f1f2-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1eb.png'' />','🇲🇫','flags',1294);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mg:','qrc:/res/emojis/1f1f2-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1ec.png'' />','🇲🇬','flags',1153);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mh:','qrc:/res/emojis/1f1f2-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1ed.png'' />','🇲🇭','flags',1159);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mk:','qrc:/res/emojis/1f1f2-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f0.png'' />','🇲🇰','flags',1152);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ml:','qrc:/res/emojis/1f1f2-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f1.png'' />','🇲🇱','flags',1157);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mm:','qrc:/res/emojis/1f1f2-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f2.png'' />','🇲🇲','flags',1171);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mn:','qrc:/res/emojis/1f1f2-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f3.png'' />','🇲🇳','flags',1166);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mo:','qrc:/res/emojis/1f1f2-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f4.png'' />','🇲🇴','flags',1151);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mp:','qrc:/res/emojis/1f1f2-1f1f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f5.png'' />','🇲🇵','flags',1290);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mq:','qrc:/res/emojis/1f1f2-1f1f6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f6.png'' />','🇲🇶','flags',1289);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mr:','qrc:/res/emojis/1f1f2-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f7.png'' />','🇲🇷','flags',1160);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ms:','qrc:/res/emojis/1f1f2-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f8.png'' />','🇲🇸','flags',1168);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mt:','qrc:/res/emojis/1f1f2-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1f9.png'' />','🇲🇹','flags',1158);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mu:','qrc:/res/emojis/1f1f2-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1fa.png'' />','🇲🇺','flags',1161);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mv:','qrc:/res/emojis/1f1f2-1f1fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1fb.png'' />','🇲🇻','flags',1156);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mw:','qrc:/res/emojis/1f1f2-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1fc.png'' />','🇲🇼','flags',1154);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mx:','qrc:/res/emojis/1f1f2-1f1fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1fd.png'' />','🇲🇽','flags',1162);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_my:','qrc:/res/emojis/1f1f2-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1fe.png'' />','🇲🇾','flags',1155);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_mz:','qrc:/res/emojis/1f1f2-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2-1f1ff.png'' />','🇲🇿','flags',1170);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_na:','qrc:/res/emojis/1f1f3-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1e6.png'' />','🇳🇦','flags',1172);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_nc:','qrc:/res/emojis/1f1f3-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1e8.png'' />','🇳🇨','flags',1176);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ne:','qrc:/res/emojis/1f1f3-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1ea.png'' />','🇳🇪','flags',1179);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_nf:','qrc:/res/emojis/1f1f3-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1eb.png'' />','🇳🇫','flags',1266);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ng:','qrc:/res/emojis/1f1f3-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1ec.png'' />','🇳🇬','flags',1180);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ni:','qrc:/res/emojis/1f1f3-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1ee.png'' />','🇳🇮','flags',1178);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_nl:','qrc:/res/emojis/1f1f3-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1f1.png'' />','🇳🇱','flags',1175);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_no:','qrc:/res/emojis/1f1f3-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1f4.png'' />','🇳🇴','flags',1183);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_np:','qrc:/res/emojis/1f1f3-1f1f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1f5.png'' />','🇳🇵','flags',1174);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_nr:','qrc:/res/emojis/1f1f3-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1f7.png'' />','🇳🇷','flags',1173);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_nu:','qrc:/res/emojis/1f1f3-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1fa.png'' />','🇳🇺','flags',1181);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_nz:','qrc:/res/emojis/1f1f3-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3-1f1ff.png'' />','🇳🇿','flags',1177);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_om:','qrc:/res/emojis/1f1f4-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f4-1f1f2.png'' />','🇴🇲','flags',1184);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_pa:','qrc:/res/emojis/1f1f5-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1e6.png'' />','🇵🇦','flags',1188);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_pe:','qrc:/res/emojis/1f1f5-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1ea.png'' />','🇵🇪','flags',1191);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_pf:','qrc:/res/emojis/1f1f5-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1eb.png'' />','🇵🇫','flags',1104);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_pg:','qrc:/res/emojis/1f1f5-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1ec.png'' />','🇵🇬','flags',1189);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ph:','qrc:/res/emojis/1f1f5-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1ed.png'' />','🇵🇭','flags',1192);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_pk:','qrc:/res/emojis/1f1f5-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1f0.png'' />','🇵🇰','flags',1185);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_pl:','qrc:/res/emojis/1f1f5-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1f1.png'' />','🇵🇱','flags',1193);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_pm:','qrc:/res/emojis/1f1f5-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1f2.png'' />','🇵🇲','flags',1269);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_pn:','qrc:/res/emojis/1f1f5-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1f3.png'' />','🇵🇳','flags',1267);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_pr:','qrc:/res/emojis/1f1f5-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1f7.png'' />','🇵🇷','flags',1195);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ps:','qrc:/res/emojis/1f1f5-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1f8.png'' />','🇵🇸','flags',1187);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_pt:','qrc:/res/emojis/1f1f5-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1f9.png'' />','🇵🇹','flags',1194);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_pw:','qrc:/res/emojis/1f1f5-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1fc.png'' />','🇵🇼','flags',1186);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_py:','qrc:/res/emojis/1f1f5-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5-1f1fe.png'' />','🇵🇾','flags',1190);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_qa:','qrc:/res/emojis/1f1f6-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f6-1f1e6.png'' />','🇶🇦','flags',1196);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_re:','qrc:/res/emojis/1f1f7-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f7-1f1ea.png'' />','🇷🇪','flags',1256);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ro:','qrc:/res/emojis/1f1f7-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f7-1f1f4.png'' />','🇷🇴','flags',1197);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_rs:','qrc:/res/emojis/1f1f7-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f7-1f1f8.png'' />','🇷🇸','flags',1209);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ru:','qrc:/res/emojis/1f1f7-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f7-1f1fa.png'' />','🇷🇺','flags',1198);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_rw:','qrc:/res/emojis/1f1f7-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f7-1f1fc.png'' />','🇷🇼','flags',1199);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_sa:','qrc:/res/emojis/1f1f8-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1e6.png'' />','🇸🇦','flags',1207);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_sb:','qrc:/res/emojis/1f1f8-1f1e7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1e7.png'' />','🇸🇧','flags',1215);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_sc:','qrc:/res/emojis/1f1f8-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1e8.png'' />','🇸🇨','flags',1210);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_sd:','qrc:/res/emojis/1f1f8-1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1e9.png'' />','🇸🇩','flags',1221);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_se:','qrc:/res/emojis/1f1f8-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1ea.png'' />','🇸🇪','flags',1224);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_sg:','qrc:/res/emojis/1f1f8-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1ec.png'' />','🇸🇬','flags',1212);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_sh:','qrc:/res/emojis/1f1f8-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1ed.png'' />','🇸🇭','flags',1200);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_si:','qrc:/res/emojis/1f1f8-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1ee.png'' />','🇸🇮','flags',1214);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_sj:','qrc:/res/emojis/1f1f8-1f1ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1ef.png'' />','🇸🇯','flags',1274);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_sk:','qrc:/res/emojis/1f1f8-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1f0.png'' />','🇸🇰','flags',1213);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_sl:','qrc:/res/emojis/1f1f8-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1f1.png'' />','🇸🇱','flags',1211);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_sm:','qrc:/res/emojis/1f1f8-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1f2.png'' />','🇸🇲','flags',1205);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_sn:','qrc:/res/emojis/1f1f8-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1f3.png'' />','🇸🇳','flags',1208);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_so:','qrc:/res/emojis/1f1f8-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1f4.png'' />','🇸🇴','flags',1216);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_sr:','qrc:/res/emojis/1f1f8-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1f7.png'' />','🇸🇷','flags',1222);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ss:','qrc:/res/emojis/1f1f8-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1f8.png'' />','🇸🇸','flags',1292);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_st:','qrc:/res/emojis/1f1f8-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1f9.png'' />','🇸🇹','flags',1206);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_sv:','qrc:/res/emojis/1f1f8-1f1fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1fb.png'' />','🇸🇻','flags',1094);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_sx:','qrc:/res/emojis/1f1f8-1f1fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1fd.png'' />','🇸🇽','flags',1291);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_sy:','qrc:/res/emojis/1f1f8-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1fe.png'' />','🇸🇾','flags',1226);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_sz:','qrc:/res/emojis/1f1f8-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8-1f1ff.png'' />','🇸🇿','flags',1223);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ta:','qrc:/res/emojis/1f1f9-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1e6.png'' />','🇹🇦','flags',1258);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_tc:','qrc:/res/emojis/1f1f9-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1e8.png'' />','🇹🇨','flags',1293);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_td:','qrc:/res/emojis/1f1f9-1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1e9.png'' />','🇹🇩','flags',1076);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_tf:','qrc:/res/emojis/1f1f9-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1eb.png'' />','🇹🇫','flags',1287);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_tg:','qrc:/res/emojis/1f1f9-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1ec.png'' />','🇹🇬','flags',1232);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_th:','qrc:/res/emojis/1f1f9-1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1ed.png'' />','🇹🇭','flags',1230);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_tj:','qrc:/res/emojis/1f1f9-1f1ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1ef.png'' />','🇹🇯','flags',1228);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_tk:','qrc:/res/emojis/1f1f9-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1f0.png'' />','🇹🇰','flags',1271);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_tl:','qrc:/res/emojis/1f1f9-1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1f1.png'' />','🇹🇱','flags',1231);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_tm:','qrc:/res/emojis/1f1f9-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1f2.png'' />','🇹🇲','flags',1237);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_tn:','qrc:/res/emojis/1f1f9-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1f3.png'' />','🇹🇳','flags',1235);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_to:','qrc:/res/emojis/1f1f9-1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1f4.png'' />','🇹🇴','flags',1233);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_tr:','qrc:/res/emojis/1f1f9-1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1f7.png'' />','🇹🇷','flags',1236);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_tt:','qrc:/res/emojis/1f1f9-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1f9.png'' />','🇹🇹','flags',1234);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_tv:','qrc:/res/emojis/1f1f9-1f1fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1fb.png'' />','🇹🇻','flags',1238);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_tw:','qrc:/res/emojis/1f1f9-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1fc.png'' />','🇹🇼','flags',1227);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_tz:','qrc:/res/emojis/1f1f9-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9-1f1ff.png'' />','🇹🇿','flags',1229);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ua:','qrc:/res/emojis/1f1fa-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fa-1f1e6.png'' />','🇺🇦','flags',1240);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ug:','qrc:/res/emojis/1f1fa-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fa-1f1ec.png'' />','🇺🇬','flags',1239);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_um:','qrc:/res/emojis/1f1fa-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fa-1f1f2.png'' />','🇺🇲','flags',1275);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_us:','qrc:/res/emojis/1f1fa-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fa-1f1f8.png'' />','🇺🇸','flags',1243);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_uy:','qrc:/res/emojis/1f1fa-1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fa-1f1fe.png'' />','🇺🇾','flags',1245);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_uz:','qrc:/res/emojis/1f1fa-1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fa-1f1ff.png'' />','🇺🇿','flags',1246);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_va:','qrc:/res/emojis/1f1fb-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fb-1f1e6.png'' />','🇻🇦','flags',1248);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_vc:','qrc:/res/emojis/1f1fb-1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fb-1f1e8.png'' />','🇻🇨','flags',1203);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ve:','qrc:/res/emojis/1f1fb-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fb-1f1ea.png'' />','🇻🇪','flags',1249);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_vg:','qrc:/res/emojis/1f1fb-1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fb-1f1ec.png'' />','🇻🇬','flags',1282);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_vi:','qrc:/res/emojis/1f1fb-1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fb-1f1ee.png'' />','🇻🇮','flags',1244);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_vn:','qrc:/res/emojis/1f1fb-1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fb-1f1f3.png'' />','🇻🇳','flags',1250);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_vu:','qrc:/res/emojis/1f1fb-1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fb-1f1fa.png'' />','🇻🇺','flags',1247);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_wf:','qrc:/res/emojis/1f1fc-1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fc-1f1eb.png'' />','🇼🇫','flags',1251);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_white:','qrc:/res/emojis/1f3f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3f3.png'' />','🏳','objects',754);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ws:','qrc:/res/emojis/1f1fc-1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fc-1f1f8.png'' />','🇼🇸','flags',1204);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_xk:','qrc:/res/emojis/1f1fd-1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fd-1f1f0.png'' />','🇽🇰','flags',1139);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_ye:','qrc:/res/emojis/1f1fe-1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fe-1f1ea.png'' />','🇾🇪','flags',1253);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_yt:','qrc:/res/emojis/1f1fe-1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fe-1f1f9.png'' />','🇾🇹','flags',1265);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_za:','qrc:/res/emojis/1f1ff-1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ff-1f1e6.png'' />','🇿🇦','flags',1217);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_zm:','qrc:/res/emojis/1f1ff-1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ff-1f1f2.png'' />','🇿🇲','flags',1254);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flag_zw:','qrc:/res/emojis/1f1ff-1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ff-1f1fc.png'' />','🇿🇼','flags',1255);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flags:','qrc:/res/emojis/1f38f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f38f.png'' />','🎏','objects',692);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flashlight:','qrc:/res/emojis/1f526.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f526.png'' />','🔦','objects',632);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fleur-de-lis:','qrc:/res/emojis/269c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/269c.png'' />','⚜','symbols',860);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':floppy_disk:','qrc:/res/emojis/1f4be.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4be.png'' />','💾','objects',603);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flower_playing_cards:','qrc:/res/emojis/1f3b4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b4.png'' />','🎴','symbols',1009);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':flushed:','qrc:/res/emojis/1f633.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f633.png'' />','😳','people',36);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fog:','qrc:/res/emojis/1f32b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f32b.png'' />','🌫','nature',346);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':foggy:','qrc:/res/emojis/1f301.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f301.png'' />','🌁','travel',536);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':football:','qrc:/res/emojis/1f3c8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c8.png'' />','🏈','activity',421);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':footprints:','qrc:/res/emojis/1f463.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f463.png'' />','👣','people',185);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fork_and_knife:','qrc:/res/emojis/1f374.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f374.png'' />','🍴','food',417);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fork_knife_plate:','qrc:/res/emojis/1f37d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f37d.png'' />','🍽','food',418);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fountain:','qrc:/res/emojis/26f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f2.png'' />','⛲','travel',539);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':four:','qrc:/res/emojis/0034-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0034-20e3.png'' />','⃣','symbols',906);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':four_leaf_clover:','qrc:/res/emojis/1f340.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f340.png'' />','🍀','nature',286);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fox:','qrc:/res/emojis/1f98a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f98a.png'' />','🦊','nature',10130);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':frame_photo:','qrc:/res/emojis/1f5bc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5bc.png'' />','🖼','objects',686);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':free:','qrc:/res/emojis/1f193.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f193.png'' />','🆓','symbols',901);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':french_bread:','qrc:/res/emojis/1f956.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f956.png'' />','🥖','food',10143);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fried_shrimp:','qrc:/res/emojis/1f364.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f364.png'' />','🍤','food',375);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fries:','qrc:/res/emojis/1f35f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f35f.png'' />','🍟','food',378);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':frog:','qrc:/res/emojis/1f438.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f438.png'' />','🐸','nature',218);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':frowning:','qrc:/res/emojis/1f626.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f626.png'' />','😦','people',55);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':frowning2:','qrc:/res/emojis/2639.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2639.png'' />','☹','people',44);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':fuelpump:','qrc:/res/emojis/26fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26fd.png'' />','⛽','travel',526);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':full_moon:','qrc:/res/emojis/1f315.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f315.png'' />','🌕','nature',308);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':full_moon_with_face:','qrc:/res/emojis/1f31d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f31d.png'' />','🌝','nature',317);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':game_die:','qrc:/res/emojis/1f3b2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b2.png'' />','🎲','activity',473);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':gay_pride_flag:','qrc:/res/emojis/1f3f3-1f308.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3f3-1f308.png'' />','🏳🌈','extras',10102);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':gear:','qrc:/res/emojis/2699.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2699.png'' />','âš™','objects',651);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':gem:','qrc:/res/emojis/1f48e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f48e.png'' />','💎','objects',643);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':gemini:','qrc:/res/emojis/264a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/264a.png'' />','♊','symbols',798);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ghost:','qrc:/res/emojis/1f47b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47b.png'' />','👻','people',76);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':gift:','qrc:/res/emojis/1f381.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f381.png'' />','🎁','objects',694);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':gift_heart:','qrc:/res/emojis/1f49d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f49d.png'' />','💝','symbols',782);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':girl:','qrc:/res/emojis/1f467.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f467.png'' />','👧','people',123);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':girl_tone1:','qrc:/res/emojis/1f467-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f467-1f3fb.png'' />','👧🏻','people',1435);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':girl_tone2:','qrc:/res/emojis/1f467-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f467-1f3fc.png'' />','👧🏼','people',1436);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':girl_tone3:','qrc:/res/emojis/1f467-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f467-1f3fd.png'' />','👧🏽','people',1437);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':girl_tone4:','qrc:/res/emojis/1f467-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f467-1f3fe.png'' />','👧🏾','people',1438);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':girl_tone5:','qrc:/res/emojis/1f467-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f467-1f3ff.png'' />','👧🏿','people',1439);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':globe_with_meridians:','qrc:/res/emojis/1f310.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f310.png'' />','🌐','symbols',875);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':goal:','qrc:/res/emojis/1f945.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f945.png'' />','🥅','activity',10162);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':goat:','qrc:/res/emojis/1f410.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f410.png'' />','🐐','nature',260);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':golf:','qrc:/res/emojis/26f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f3.png'' />','⛳','activity',427);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':golfer:','qrc:/res/emojis/1f3cc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cc.png'' />','🏌','activity',428);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':gorilla:','qrc:/res/emojis/1f98d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f98d.png'' />','🦍','nature',10133);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':grapes:','qrc:/res/emojis/1f347.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f347.png'' />','🍇','food',359);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':green_apple:','qrc:/res/emojis/1f34f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f34f.png'' />','🍏','food',352);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':green_book:','qrc:/res/emojis/1f4d7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d7.png'' />','📗','objects',738);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':green_heart:','qrc:/res/emojis/1f49a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f49a.png'' />','💚','symbols',771);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':grey_exclamation:','qrc:/res/emojis/2755.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2755.png'' />','❕','symbols',851);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':grey_question:','qrc:/res/emojis/2754.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2754.png'' />','❔','symbols',853);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':grimacing:','qrc:/res/emojis/1f62c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f62c.png'' />','😬','people',2);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':grin:','qrc:/res/emojis/1f601.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f601.png'' />','😁','people',3);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':grinning:','qrc:/res/emojis/1f600.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f600.png'' />','😀','people',1);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':guardsman:','qrc:/res/emojis/1f482.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f482.png'' />','💂','people',133);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':guardsman_tone1:','qrc:/res/emojis/1f482-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f482-1f3fb.png'' />','💂🏻','people',1485);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':guardsman_tone2:','qrc:/res/emojis/1f482-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f482-1f3fc.png'' />','💂🏼','people',1486);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':guardsman_tone3:','qrc:/res/emojis/1f482-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f482-1f3fd.png'' />','💂🏽','people',1487);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':guardsman_tone4:','qrc:/res/emojis/1f482-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f482-1f3fe.png'' />','💂🏾','people',1488);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':guardsman_tone5:','qrc:/res/emojis/1f482-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f482-1f3ff.png'' />','💂🏿','people',1489);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':guitar:','qrc:/res/emojis/1f3b8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b8.png'' />','🎸','activity',467);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':gun:','qrc:/res/emojis/1f52b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f52b.png'' />','🔫','objects',653);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':haircut:','qrc:/res/emojis/1f487.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f487.png'' />','💇','people',153);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':haircut_tone1:','qrc:/res/emojis/1f487-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f487-1f3fb.png'' />','💇🏻','people',1560);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':haircut_tone2:','qrc:/res/emojis/1f487-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f487-1f3fc.png'' />','💇🏼','people',1561);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':haircut_tone3:','qrc:/res/emojis/1f487-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f487-1f3fd.png'' />','💇🏽','people',1562);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':haircut_tone4:','qrc:/res/emojis/1f487-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f487-1f3fe.png'' />','💇🏾','people',1563);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':haircut_tone5:','qrc:/res/emojis/1f487-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f487-1f3ff.png'' />','💇🏿','people',1564);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hamburger:','qrc:/res/emojis/1f354.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f354.png'' />','🍔','food',377);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hammer:','qrc:/res/emojis/1f528.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f528.png'' />','🔨','objects',646);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hammer_pick:','qrc:/res/emojis/2692.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2692.png'' />','âš’','objects',647);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hamster:','qrc:/res/emojis/1f439.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f439.png'' />','🐹','nature',208);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hand_splayed:','qrc:/res/emojis/1f590.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f590.png'' />','🖐','people',107);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hand_splayed_tone1:','qrc:/res/emojis/1f590-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f590-1f3fb.png'' />','🖐🏻','people',1390);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hand_splayed_tone2:','qrc:/res/emojis/1f590-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f590-1f3fc.png'' />','🖐🏼','people',1391);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hand_splayed_tone3:','qrc:/res/emojis/1f590-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f590-1f3fd.png'' />','🖐🏽','people',1392);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hand_splayed_tone4:','qrc:/res/emojis/1f590-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f590-1f3fe.png'' />','🖐🏾','people',1393);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hand_splayed_tone5:','qrc:/res/emojis/1f590-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f590-1f3ff.png'' />','🖐🏿','people',1394);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':handbag:','qrc:/res/emojis/1f45c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f45c.png'' />','👜','people',199);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':handball:','qrc:/res/emojis/1f93e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93e.png'' />','🤾','activity',10161);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':handball_tone1:','qrc:/res/emojis/1f93e-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93e-1f3fb.png'' />','🤾🏻','activity',10090);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':handball_tone2:','qrc:/res/emojis/1f93e-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93e-1f3fc.png'' />','🤾🏼','activity',10091);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':handball_tone3:','qrc:/res/emojis/1f93e-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93e-1f3fd.png'' />','🤾🏽','activity',10092);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':handball_tone4:','qrc:/res/emojis/1f93e-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93e-1f3fe.png'' />','🤾🏾','activity',10093);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':handball_tone5:','qrc:/res/emojis/1f93e-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93e-1f3ff.png'' />','🤾🏿','activity',10094);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':handshake:','qrc:/res/emojis/1f91d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91d.png'' />','🤝','people',10122);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':handshake_tone1:','qrc:/res/emojis/1f91d-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91d-1f3fb.png'' />','🤝🏻','people',10065);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':handshake_tone2:','qrc:/res/emojis/1f91d-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91d-1f3fc.png'' />','🤝🏼','people',10066);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':handshake_tone3:','qrc:/res/emojis/1f91d-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91d-1f3fd.png'' />','🤝🏽','people',10067);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':handshake_tone4:','qrc:/res/emojis/1f91d-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91d-1f3fe.png'' />','🤝🏾','people',10068);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':handshake_tone5:','qrc:/res/emojis/1f91d-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91d-1f3ff.png'' />','🤝🏿','people',10069);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hash:','qrc:/res/emojis/0023-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0023-20e3.png'' />','⃣','symbols',946);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hatched_chick:','qrc:/res/emojis/1f425.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f425.png'' />','🐥','nature',230);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hatching_chick:','qrc:/res/emojis/1f423.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f423.png'' />','🐣','nature',229);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':head_bandage:','qrc:/res/emojis/1f915.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f915.png'' />','🤕','people',67);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':headphones:','qrc:/res/emojis/1f3a7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a7.png'' />','🎧','activity',462);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hear_no_evil:','qrc:/res/emojis/1f649.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f649.png'' />','🙉','nature',222);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':heart:','qrc:/res/emojis/2764.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2764.png'' />','❤','symbols',769);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':heart_decoration:','qrc:/res/emojis/1f49f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f49f.png'' />','💟','symbols',783);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':heart_exclamation:','qrc:/res/emojis/2763.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2763.png'' />','❣','symbols',775);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':heart_eyes:','qrc:/res/emojis/1f60d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f60d.png'' />','😍','people',17);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':heart_eyes_cat:','qrc:/res/emojis/1f63b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f63b.png'' />','😻','people',82);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':heartbeat:','qrc:/res/emojis/1f493.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f493.png'' />','💓','symbols',778);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':heartpulse:','qrc:/res/emojis/1f497.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f497.png'' />','💗','symbols',779);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hearts:','qrc:/res/emojis/2665.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2665.png'' />','♥','symbols',1007);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':heavy_check_mark:','qrc:/res/emojis/2714.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2714.png'' />','✔','symbols',957);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':heavy_division_sign:','qrc:/res/emojis/2797.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2797.png'' />','âž—','symbols',961);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':heavy_dollar_sign:','qrc:/res/emojis/1f4b2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b2.png'' />','💲','symbols',963);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':heavy_minus_sign:','qrc:/res/emojis/2796.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2796.png'' />','âž–','symbols',960);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':heavy_multiplication_x:','qrc:/res/emojis/2716.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2716.png'' />','✖','symbols',962);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':heavy_plus_sign:','qrc:/res/emojis/2795.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2795.png'' />','âž•','symbols',959);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':helicopter:','qrc:/res/emojis/1f681.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f681.png'' />','🚁','travel',511);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':helmet_with_cross:','qrc:/res/emojis/26d1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26d1.png'' />','⛑','people',193);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':herb:','qrc:/res/emojis/1f33f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f33f.png'' />','🌿','nature',284);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hibiscus:','qrc:/res/emojis/1f33a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f33a.png'' />','🌺','nature',293);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':high_brightness:','qrc:/res/emojis/1f506.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f506.png'' />','🔆','symbols',858);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':high_heel:','qrc:/res/emojis/1f460.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f460.png'' />','👠','people',186);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hockey:','qrc:/res/emojis/1f3d2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d2.png'' />','🏒','activity',431);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hole:','qrc:/res/emojis/1f573.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f573.png'' />','🕳','objects',670);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':homes:','qrc:/res/emojis/1f3d8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d8.png'' />','🏘','travel',566);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':honey_pot:','qrc:/res/emojis/1f36f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f36f.png'' />','🍯','food',370);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':horse:','qrc:/res/emojis/1f434.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f434.png'' />','🐴','nature',233);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':horse_racing:','qrc:/res/emojis/1f3c7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c7.png'' />','🏇','activity',448);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':horse_racing_tone1:','qrc:/res/emojis/1f3c7-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c7-1f3fb.png'' />','🏇🏻','activity',1610);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':horse_racing_tone2:','qrc:/res/emojis/1f3c7-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c7-1f3fc.png'' />','🏇🏼','activity',1611);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':horse_racing_tone3:','qrc:/res/emojis/1f3c7-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c7-1f3fd.png'' />','🏇🏽','activity',1612);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':horse_racing_tone4:','qrc:/res/emojis/1f3c7-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c7-1f3fe.png'' />','🏇🏾','activity',1613);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':horse_racing_tone5:','qrc:/res/emojis/1f3c7-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c7-1f3ff.png'' />','🏇🏿','activity',1614);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hospital:','qrc:/res/emojis/1f3e5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e5.png'' />','🏥','travel',578);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hot_pepper:','qrc:/res/emojis/1f336.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f336.png'' />','🌶','food',367);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hotdog:','qrc:/res/emojis/1f32d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f32d.png'' />','🌭','food',379);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hotel:','qrc:/res/emojis/1f3e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e8.png'' />','🏨','travel',580);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hotsprings:','qrc:/res/emojis/2668.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2668.png'' />','♨','symbols',843);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hourglass:','qrc:/res/emojis/231b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/231b.png'' />','⌛','objects',627);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hourglass_flowing_sand:','qrc:/res/emojis/23f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23f3.png'' />','⏳','objects',626);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':house:','qrc:/res/emojis/1f3e0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e0.png'' />','🏠','travel',571);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':house_abandoned:','qrc:/res/emojis/1f3da.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3da.png'' />','🏚','travel',573);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':house_with_garden:','qrc:/res/emojis/1f3e1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e1.png'' />','🏡','travel',572);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hugging:','qrc:/res/emojis/1f917.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f917.png'' />','🤗','people',28);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':hushed:','qrc:/res/emojis/1f62f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f62f.png'' />','😯','people',54);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ice_cream:','qrc:/res/emojis/1f368.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f368.png'' />','🍨','food',396);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ice_skate:','qrc:/res/emojis/26f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f8.png'' />','⛸','activity',437);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':icecream:','qrc:/res/emojis/1f366.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f366.png'' />','🍦','food',397);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':id:','qrc:/res/emojis/1f194.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f194.png'' />','🆔','symbols',808);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ideograph_advantage:','qrc:/res/emojis/1f250.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f250.png'' />','🉐','symbols',825);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':imp:','qrc:/res/emojis/1f47f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47f.png'' />','👿','people',72);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':inbox_tray:','qrc:/res/emojis/1f4e5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e5.png'' />','📥','objects',713);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':incoming_envelope:','qrc:/res/emojis/1f4e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e8.png'' />','📨','objects',703);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':information_desk_person:','qrc:/res/emojis/1f481.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f481.png'' />','💁','people',147);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':information_desk_person_tone1:','qrc:/res/emojis/1f481-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f481-1f3fb.png'' />','💁🏻','people',1530);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':information_desk_person_tone2:','qrc:/res/emojis/1f481-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f481-1f3fc.png'' />','💁🏼','people',1531);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':information_desk_person_tone3:','qrc:/res/emojis/1f481-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f481-1f3fd.png'' />','💁🏽','people',1532);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':information_desk_person_tone4:','qrc:/res/emojis/1f481-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f481-1f3fe.png'' />','💁🏾','people',1533);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':information_desk_person_tone5:','qrc:/res/emojis/1f481-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f481-1f3ff.png'' />','💁🏿','people',1534);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':information_source:','qrc:/res/emojis/2139.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2139.png'' />','ℹ','symbols',948);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':innocent:','qrc:/res/emojis/1f607.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f607.png'' />','😇','people',9);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':interrobang:','qrc:/res/emojis/2049.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2049.png'' />','⁉','symbols',855);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':iphone:','qrc:/res/emojis/1f4f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f1.png'' />','📱','objects',592);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':island:','qrc:/res/emojis/1f3dd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3dd.png'' />','🏝','travel',555);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':izakaya_lantern:','qrc:/res/emojis/1f3ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ee.png'' />','🏮','objects',700);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':jack_o_lantern:','qrc:/res/emojis/1f383.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f383.png'' />','🎃','nature',302);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':japan:','qrc:/res/emojis/1f5fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5fe.png'' />','🗾','travel',545);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':japanese_castle:','qrc:/res/emojis/1f3ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ef.png'' />','🏯','travel',568);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':japanese_goblin:','qrc:/res/emojis/1f47a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47a.png'' />','👺','people',74);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':japanese_ogre:','qrc:/res/emojis/1f479.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f479.png'' />','👹','people',73);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':jeans:','qrc:/res/emojis/1f456.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f456.png'' />','👖','people',178);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':joy:','qrc:/res/emojis/1f602.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f602.png'' />','😂','people',4);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':joy_cat:','qrc:/res/emojis/1f639.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f639.png'' />','😹','people',81);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':joystick:','qrc:/res/emojis/1f579.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f579.png'' />','🕹','objects',600);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':juggling:','qrc:/res/emojis/1f939.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f939.png'' />','🤹','activity',10156);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':juggling_tone1:','qrc:/res/emojis/1f939-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f939-1f3fb.png'' />','🤹🏻','activity',10095);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':juggling_tone2:','qrc:/res/emojis/1f939-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f939-1f3fc.png'' />','🤹🏼','activity',10096);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':juggling_tone3:','qrc:/res/emojis/1f939-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f939-1f3fd.png'' />','🤹🏽','activity',10097);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':juggling_tone4:','qrc:/res/emojis/1f939-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f939-1f3fe.png'' />','🤹🏾','activity',10098);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':juggling_tone5:','qrc:/res/emojis/1f939-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f939-1f3ff.png'' />','🤹🏿','activity',10099);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':kaaba:','qrc:/res/emojis/1f54b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f54b.png'' />','🕋','travel',589);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':key:','qrc:/res/emojis/1f511.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f511.png'' />','🔑','objects',679);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':key2:','qrc:/res/emojis/1f5dd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5dd.png'' />','🗝','objects',680);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':keyboard:','qrc:/res/emojis/2328.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2328.png'' />','⌨','objects',595);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':keycap_ten:','qrc:/res/emojis/1f51f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f51f.png'' />','🔟','symbols',912);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':kimono:','qrc:/res/emojis/1f458.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f458.png'' />','👘','people',182);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':kiss:','qrc:/res/emojis/1f48b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f48b.png'' />','💋','people',184);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':kiss_mm:','qrc:/res/emojis/1f468-2764-1f48b-1f468.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-2764-1f48b-1f468.png'' />','❤💋👨','people',160);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':kiss_ww:','qrc:/res/emojis/1f469-2764-1f48b-1f469.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-2764-1f48b-1f469.png'' />','❤💋👩','people',159);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':kissing:','qrc:/res/emojis/1f617.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f617.png'' />','😗','people',19);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':kissing_cat:','qrc:/res/emojis/1f63d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f63d.png'' />','😽','people',84);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':kissing_closed_eyes:','qrc:/res/emojis/1f61a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f61a.png'' />','😚','people',21);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':kissing_heart:','qrc:/res/emojis/1f618.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f618.png'' />','😘','people',18);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':kissing_smiling_eyes:','qrc:/res/emojis/1f619.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f619.png'' />','😙','people',20);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':kiwi:','qrc:/res/emojis/1f95d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f95d.png'' />','🥝','food',10173);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':knife:','qrc:/res/emojis/1f52a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f52a.png'' />','🔪','objects',655);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':koala:','qrc:/res/emojis/1f428.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f428.png'' />','🐨','nature',212);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':koko:','qrc:/res/emojis/1f201.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f201.png'' />','🈁','symbols',895);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':label:','qrc:/res/emojis/1f3f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3f7.png'' />','🏷','objects',674);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':large_blue_circle:','qrc:/res/emojis/1f535.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f535.png'' />','🔵','symbols',978);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':large_blue_diamond:','qrc:/res/emojis/1f537.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f537.png'' />','🔷','symbols',982);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':large_orange_diamond:','qrc:/res/emojis/1f536.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f536.png'' />','🔶','symbols',981);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':last_quarter_moon:','qrc:/res/emojis/1f317.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f317.png'' />','🌗','nature',310);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':last_quarter_moon_with_face:','qrc:/res/emojis/1f31c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f31c.png'' />','🌜','nature',319);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':laughing:','qrc:/res/emojis/1f606.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f606.png'' />','😆','people',8);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':leaves:','qrc:/res/emojis/1f343.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f343.png'' />','🍃','nature',289);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ledger:','qrc:/res/emojis/1f4d2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d2.png'' />','📒','objects',742);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':left_facing_fist:','qrc:/res/emojis/1f91b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91b.png'' />','🤛','people',10120);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':left_facing_fist_tone1:','qrc:/res/emojis/1f91b-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91b-1f3fb.png'' />','🤛🏻','people',10050);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':left_facing_fist_tone2:','qrc:/res/emojis/1f91b-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91b-1f3fc.png'' />','🤛🏼','people',10051);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':left_facing_fist_tone3:','qrc:/res/emojis/1f91b-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91b-1f3fd.png'' />','🤛🏽','people',10052);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':left_facing_fist_tone4:','qrc:/res/emojis/1f91b-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91b-1f3fe.png'' />','🤛🏾','people',10053);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':left_facing_fist_tone5:','qrc:/res/emojis/1f91b-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91b-1f3ff.png'' />','🤛🏿','people',10054);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':left_luggage:','qrc:/res/emojis/1f6c5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c5.png'' />','🛅','symbols',882);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':left_right_arrow:','qrc:/res/emojis/2194.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2194.png'' />','↔','symbols',940);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':leftwards_arrow_with_hook:','qrc:/res/emojis/21a9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/21a9.png'' />','↩','symbols',943);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':lemon:','qrc:/res/emojis/1f34b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f34b.png'' />','🍋','food',356);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':leo:','qrc:/res/emojis/264c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/264c.png'' />','♌','symbols',800);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':leopard:','qrc:/res/emojis/1f406.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f406.png'' />','🐆','nature',252);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':level_slider:','qrc:/res/emojis/1f39a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f39a.png'' />','🎚','objects',620);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':levitate:','qrc:/res/emojis/1f574.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f574.png'' />','🕴','activity',449);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':libra:','qrc:/res/emojis/264e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/264e.png'' />','♎','symbols',802);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':lifter:','qrc:/res/emojis/1f3cb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cb.png'' />','🏋','activity',445);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':lifter_tone1:','qrc:/res/emojis/1f3cb-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cb-1f3fb.png'' />','🏋🏻','activity',1595);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':lifter_tone2:','qrc:/res/emojis/1f3cb-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cb-1f3fc.png'' />','🏋🏼','activity',1596);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':lifter_tone3:','qrc:/res/emojis/1f3cb-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cb-1f3fd.png'' />','🏋🏽','activity',1597);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':lifter_tone4:','qrc:/res/emojis/1f3cb-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cb-1f3fe.png'' />','🏋🏾','activity',1598);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':lifter_tone5:','qrc:/res/emojis/1f3cb-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cb-1f3ff.png'' />','🏋🏿','activity',1599);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':light_rail:','qrc:/res/emojis/1f688.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f688.png'' />','🚈','travel',504);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':link:','qrc:/res/emojis/1f517.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f517.png'' />','🔗','objects',745);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':lion_face:','qrc:/res/emojis/1f981.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f981.png'' />','🦁','nature',214);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':lips:','qrc:/res/emojis/1f444.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f444.png'' />','👄','people',112);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':lipstick:','qrc:/res/emojis/1f484.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f484.png'' />','💄','people',183);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':lizard:','qrc:/res/emojis/1f98e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f98e.png'' />','🦎','nature',10134);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':lock:','qrc:/res/emojis/1f512.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f512.png'' />','🔒','objects',757);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':lock_with_ink_pen:','qrc:/res/emojis/1f50f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f50f.png'' />','🔏','objects',759);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':lollipop:','qrc:/res/emojis/1f36d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f36d.png'' />','🍭','food',402);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':loop:','qrc:/res/emojis/27bf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/27bf.png'' />','âž¿','symbols',874);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':loud_sound:','qrc:/res/emojis/1f50a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f50a.png'' />','🔊','symbols',997);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':loudspeaker:','qrc:/res/emojis/1f4e2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e2.png'' />','📢','symbols',1000);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':love_hotel:','qrc:/res/emojis/1f3e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e9.png'' />','🏩','travel',583);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':love_letter:','qrc:/res/emojis/1f48c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f48c.png'' />','💌','objects',705);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':low_brightness:','qrc:/res/emojis/1f505.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f505.png'' />','🔅','symbols',857);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':lying_face:','qrc:/res/emojis/1f925.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f925.png'' />','🤥','people',10108);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':m:','qrc:/res/emojis/24c2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/24c2.png'' />','â“‚','symbols',876);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mag:','qrc:/res/emojis/1f50d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f50d.png'' />','🔍','objects',767);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mag_right:','qrc:/res/emojis/1f50e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f50e.png'' />','🔎','objects',768);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mahjong:','qrc:/res/emojis/1f004.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f004.png'' />','🀄','symbols',1004);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mailbox:','qrc:/res/emojis/1f4eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4eb.png'' />','📫','objects',708);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mailbox_closed:','qrc:/res/emojis/1f4ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ea.png'' />','📪','objects',707);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mailbox_with_mail:','qrc:/res/emojis/1f4ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ec.png'' />','📬','objects',709);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mailbox_with_no_mail:','qrc:/res/emojis/1f4ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ed.png'' />','📭','objects',710);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man:','qrc:/res/emojis/1f468.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468.png'' />','👨','people',124);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_dancing:','qrc:/res/emojis/1f57a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f57a.png'' />','🕺','people',10117);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_dancing_tone1:','qrc:/res/emojis/1f57a-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f57a-1f3fb.png'' />','🕺🏻','activity',10030);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_dancing_tone2:','qrc:/res/emojis/1f57a-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f57a-1f3fc.png'' />','🕺🏼','activity',10031);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_dancing_tone3:','qrc:/res/emojis/1f57a-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f57a-1f3fd.png'' />','🕺🏽','activity',10032);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_dancing_tone4:','qrc:/res/emojis/1f57a-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f57a-1f3fe.png'' />','🕺🏾','activity',10033);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_dancing_tone5:','qrc:/res/emojis/1f57a-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f57a-1f3ff.png'' />','🕺🏿','activity',10034);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_in_tuxedo:','qrc:/res/emojis/1f935.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f935.png'' />','🤵','people',10111);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_in_tuxedo_tone1:','qrc:/res/emojis/1f935-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f935-1f3fb.png'' />','🤵🏻','people',10010);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_in_tuxedo_tone2:','qrc:/res/emojis/1f935-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f935-1f3fc.png'' />','🤵🏼','people',10011);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_in_tuxedo_tone3:','qrc:/res/emojis/1f935-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f935-1f3fd.png'' />','🤵🏽','people',10012);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_in_tuxedo_tone4:','qrc:/res/emojis/1f935-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f935-1f3fe.png'' />','🤵🏾','people',10013);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_in_tuxedo_tone5:','qrc:/res/emojis/1f935-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f935-1f3ff.png'' />','🤵🏿','people',10014);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_tone1:','qrc:/res/emojis/1f468-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f3fb.png'' />','👨🏻','people',1440);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_tone2:','qrc:/res/emojis/1f468-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f3fc.png'' />','👨🏼','people',1441);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_tone3:','qrc:/res/emojis/1f468-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f3fd.png'' />','👨🏽','people',1442);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_tone4:','qrc:/res/emojis/1f468-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f3fe.png'' />','👨🏾','people',1443);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_tone5:','qrc:/res/emojis/1f468-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f468-1f3ff.png'' />','👨🏿','people',1444);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_with_gua_pi_mao:','qrc:/res/emojis/1f472.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f472.png'' />','👲','people',129);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_with_gua_pi_mao_tone1:','qrc:/res/emojis/1f472-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f472-1f3fb.png'' />','👲🏻','people',1465);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_with_gua_pi_mao_tone2:','qrc:/res/emojis/1f472-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f472-1f3fc.png'' />','👲🏼','people',1466);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_with_gua_pi_mao_tone3:','qrc:/res/emojis/1f472-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f472-1f3fd.png'' />','👲🏽','people',1467);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_with_gua_pi_mao_tone4:','qrc:/res/emojis/1f472-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f472-1f3fe.png'' />','👲🏾','people',1468);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_with_gua_pi_mao_tone5:','qrc:/res/emojis/1f472-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f472-1f3ff.png'' />','👲🏿','people',1469);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_with_turban:','qrc:/res/emojis/1f473.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f473.png'' />','👳','people',130);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_with_turban_tone1:','qrc:/res/emojis/1f473-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f473-1f3fb.png'' />','👳🏻','people',1470);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_with_turban_tone2:','qrc:/res/emojis/1f473-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f473-1f3fc.png'' />','👳🏼','people',1471);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_with_turban_tone3:','qrc:/res/emojis/1f473-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f473-1f3fd.png'' />','👳🏽','people',1472);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_with_turban_tone4:','qrc:/res/emojis/1f473-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f473-1f3fe.png'' />','👳🏾','people',1473);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':man_with_turban_tone5:','qrc:/res/emojis/1f473-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f473-1f3ff.png'' />','👳🏿','people',1474);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mans_shoe:','qrc:/res/emojis/1f45e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f45e.png'' />','👞','people',189);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':map:','qrc:/res/emojis/1f5fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5fa.png'' />','🗺','objects',687);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':maple_leaf:','qrc:/res/emojis/1f341.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f341.png'' />','🍁','nature',291);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':martial_arts_uniform:','qrc:/res/emojis/1f94b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f94b.png'' />','🥋','activity',10159);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mask:','qrc:/res/emojis/1f637.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f637.png'' />','😷','people',65);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':massage:','qrc:/res/emojis/1f486.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f486.png'' />','💆','people',154);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':massage_tone1:','qrc:/res/emojis/1f486-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f486-1f3fb.png'' />','💆🏻','people',1565);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':massage_tone2:','qrc:/res/emojis/1f486-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f486-1f3fc.png'' />','💆🏼','people',1566);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':massage_tone3:','qrc:/res/emojis/1f486-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f486-1f3fd.png'' />','💆🏽','people',1567);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':massage_tone4:','qrc:/res/emojis/1f486-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f486-1f3fe.png'' />','💆🏾','people',1568);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':massage_tone5:','qrc:/res/emojis/1f486-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f486-1f3ff.png'' />','💆🏿','people',1569);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':meat_on_bone:','qrc:/res/emojis/1f356.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f356.png'' />','🍖','food',374);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':medal:','qrc:/res/emojis/1f3c5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c5.png'' />','🏅','activity',452);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mega:','qrc:/res/emojis/1f4e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e3.png'' />','📣','symbols',999);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':melon:','qrc:/res/emojis/1f348.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f348.png'' />','🍈','food',361);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':menorah:','qrc:/res/emojis/1f54e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f54e.png'' />','🕎','symbols',791);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mens:','qrc:/res/emojis/1f6b9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b9.png'' />','🚹','symbols',888);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':metal:','qrc:/res/emojis/1f918.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f918.png'' />','🤘','people',108);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':metal_tone1:','qrc:/res/emojis/1f918-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f918-1f3fb.png'' />','🤘🏻','people',1395);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':metal_tone2:','qrc:/res/emojis/1f918-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f918-1f3fc.png'' />','🤘🏼','people',1396);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':metal_tone3:','qrc:/res/emojis/1f918-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f918-1f3fd.png'' />','🤘🏽','people',1397);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':metal_tone4:','qrc:/res/emojis/1f918-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f918-1f3fe.png'' />','🤘🏾','people',1398);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':metal_tone5:','qrc:/res/emojis/1f918-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f918-1f3ff.png'' />','🤘🏿','people',1399);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':metro:','qrc:/res/emojis/1f687.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f687.png'' />','🚇','travel',508);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':microphone:','qrc:/res/emojis/1f3a4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a4.png'' />','🎤','activity',461);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':microphone2:','qrc:/res/emojis/1f399.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f399.png'' />','🎙','objects',619);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':microscope:','qrc:/res/emojis/1f52c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f52c.png'' />','🔬','objects',669);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':middle_finger:','qrc:/res/emojis/1f595.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f595.png'' />','🖕','people',106);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':middle_finger_tone1:','qrc:/res/emojis/1f595-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f595-1f3fb.png'' />','🖕🏻','people',1385);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':middle_finger_tone2:','qrc:/res/emojis/1f595-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f595-1f3fc.png'' />','🖕🏼','people',1386);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':middle_finger_tone3:','qrc:/res/emojis/1f595-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f595-1f3fd.png'' />','🖕🏽','people',1387);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':middle_finger_tone4:','qrc:/res/emojis/1f595-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f595-1f3fe.png'' />','🖕🏾','people',1388);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':middle_finger_tone5:','qrc:/res/emojis/1f595-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f595-1f3ff.png'' />','🖕🏿','people',1389);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':military_medal:','qrc:/res/emojis/1f396.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f396.png'' />','🎖','activity',453);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':milk:','qrc:/res/emojis/1f95b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f95b.png'' />','🥛','food',10171);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':milky_way:','qrc:/res/emojis/1f30c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f30c.png'' />','🌌','travel',561);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':minibus:','qrc:/res/emojis/1f690.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f690.png'' />','🚐','travel',485);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':minidisc:','qrc:/res/emojis/1f4bd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4bd.png'' />','💽','objects',602);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mobile_phone_off:','qrc:/res/emojis/1f4f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f4.png'' />','📴','symbols',814);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':money_mouth:','qrc:/res/emojis/1f911.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f911.png'' />','🤑','people',25);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':money_with_wings:','qrc:/res/emojis/1f4b8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b8.png'' />','💸','objects',636);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':moneybag:','qrc:/res/emojis/1f4b0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b0.png'' />','💰','objects',641);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':monkey:','qrc:/res/emojis/1f412.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f412.png'' />','🐒','nature',224);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':monkey_face:','qrc:/res/emojis/1f435.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f435.png'' />','🐵','nature',220);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':monorail:','qrc:/res/emojis/1f69d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f69d.png'' />','🚝','travel',501);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mortar_board:','qrc:/res/emojis/1f393.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f393.png'' />','🎓','people',194);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mosque:','qrc:/res/emojis/1f54c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f54c.png'' />','🕌','travel',587);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':motor_scooter:','qrc:/res/emojis/1f6f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6f5.png'' />','🛵','travel',10153);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':motorboat:','qrc:/res/emojis/1f6e5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6e5.png'' />','🛥','travel',517);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':motorcycle:','qrc:/res/emojis/1f3cd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3cd.png'' />','🏍','travel',489);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':motorway:','qrc:/res/emojis/1f6e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6e3.png'' />','🛣','travel',549);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mount_fuji:','qrc:/res/emojis/1f5fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5fb.png'' />','🗻','travel',543);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mountain:','qrc:/res/emojis/26f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f0.png'' />','â›°','travel',541);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mountain_bicyclist:','qrc:/res/emojis/1f6b5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b5.png'' />','🚵','activity',447);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mountain_bicyclist_tone1:','qrc:/res/emojis/1f6b5-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b5-1f3fb.png'' />','🚵🏻','activity',1605);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mountain_bicyclist_tone2:','qrc:/res/emojis/1f6b5-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b5-1f3fc.png'' />','🚵🏼','activity',1606);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mountain_bicyclist_tone3:','qrc:/res/emojis/1f6b5-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b5-1f3fd.png'' />','🚵🏽','activity',1607);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mountain_bicyclist_tone4:','qrc:/res/emojis/1f6b5-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b5-1f3fe.png'' />','🚵🏾','activity',1608);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mountain_bicyclist_tone5:','qrc:/res/emojis/1f6b5-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b5-1f3ff.png'' />','🚵🏿','activity',1609);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mountain_cableway:','qrc:/res/emojis/1f6a0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a0.png'' />','🚠','travel',497);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mountain_railway:','qrc:/res/emojis/1f69e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f69e.png'' />','🚞','travel',505);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mountain_snow:','qrc:/res/emojis/1f3d4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d4.png'' />','🏔','travel',542);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mouse:','qrc:/res/emojis/1f42d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f42d.png'' />','🐭','nature',207);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mouse2:','qrc:/res/emojis/1f401.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f401.png'' />','🐁','nature',266);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mouse_three_button:','qrc:/res/emojis/1f5b1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5b1.png'' />','🖱','objects',598);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':movie_camera:','qrc:/res/emojis/1f3a5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a5.png'' />','🎥','objects',610);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':moyai:','qrc:/res/emojis/1f5ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5ff.png'' />','🗿','objects',689);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mrs_claus:','qrc:/res/emojis/1f936.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f936.png'' />','🤶','people',10112);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mrs_claus_tone1:','qrc:/res/emojis/1f936-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f936-1f3fb.png'' />','🤶🏻','people',10005);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mrs_claus_tone2:','qrc:/res/emojis/1f936-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f936-1f3fc.png'' />','🤶🏼','people',10006);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mrs_claus_tone3:','qrc:/res/emojis/1f936-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f936-1f3fd.png'' />','🤶🏽','people',10007);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mrs_claus_tone4:','qrc:/res/emojis/1f936-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f936-1f3fe.png'' />','🤶🏾','people',10008);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mrs_claus_tone5:','qrc:/res/emojis/1f936-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f936-1f3ff.png'' />','🤶🏿','people',10009);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':muscle:','qrc:/res/emojis/1f4aa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4aa.png'' />','💪','people',99);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':muscle_tone1:','qrc:/res/emojis/1f4aa-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4aa-1f3fb.png'' />','💪🏻','people',1350);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':muscle_tone2:','qrc:/res/emojis/1f4aa-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4aa-1f3fc.png'' />','💪🏼','people',1351);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':muscle_tone3:','qrc:/res/emojis/1f4aa-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4aa-1f3fd.png'' />','💪🏽','people',1352);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':muscle_tone4:','qrc:/res/emojis/1f4aa-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4aa-1f3fe.png'' />','💪🏾','people',1353);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':muscle_tone5:','qrc:/res/emojis/1f4aa-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4aa-1f3ff.png'' />','💪🏿','people',1354);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mushroom:','qrc:/res/emojis/1f344.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f344.png'' />','🍄','nature',300);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':musical_keyboard:','qrc:/res/emojis/1f3b9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b9.png'' />','🎹','activity',464);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':musical_note:','qrc:/res/emojis/1f3b5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b5.png'' />','🎵','symbols',953);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':musical_score:','qrc:/res/emojis/1f3bc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3bc.png'' />','🎼','activity',463);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':mute:','qrc:/res/emojis/1f507.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f507.png'' />','🔇','symbols',998);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':nail_care:','qrc:/res/emojis/1f485.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f485.png'' />','💅','people',111);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':nail_care_tone1:','qrc:/res/emojis/1f485-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f485-1f3fb.png'' />','💅🏻','people',1410);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':nail_care_tone2:','qrc:/res/emojis/1f485-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f485-1f3fc.png'' />','💅🏼','people',1411);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':nail_care_tone3:','qrc:/res/emojis/1f485-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f485-1f3fd.png'' />','💅🏽','people',1412);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':nail_care_tone4:','qrc:/res/emojis/1f485-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f485-1f3fe.png'' />','💅🏾','people',1413);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':nail_care_tone5:','qrc:/res/emojis/1f485-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f485-1f3ff.png'' />','💅🏿','people',1414);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':name_badge:','qrc:/res/emojis/1f4db.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4db.png'' />','📛','symbols',838);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':nauseated_face:','qrc:/res/emojis/1f922.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f922.png'' />','🤢','people',10105);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':necktie:','qrc:/res/emojis/1f454.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f454.png'' />','👔','people',179);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':negative_squared_cross_mark:','qrc:/res/emojis/274e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/274e.png'' />','❎','symbols',870);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':nerd:','qrc:/res/emojis/1f913.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f913.png'' />','🤓','people',26);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':neutral_face:','qrc:/res/emojis/1f610.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f610.png'' />','😐','people',31);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':new:','qrc:/res/emojis/1f195.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f195.png'' />','🆕','symbols',900);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':new_moon:','qrc:/res/emojis/1f311.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f311.png'' />','🌑','nature',312);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':new_moon_with_face:','qrc:/res/emojis/1f31a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f31a.png'' />','🌚','nature',316);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':newspaper:','qrc:/res/emojis/1f4f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f0.png'' />','📰','objects',735);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':newspaper2:','qrc:/res/emojis/1f5de.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5de.png'' />','🗞','objects',734);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ng:','qrc:/res/emojis/1f196.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f196.png'' />','🆖','symbols',896);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':night_with_stars:','qrc:/res/emojis/1f303.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f303.png'' />','🌃','travel',559);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':nine:','qrc:/res/emojis/0039-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0039-20e3.png'' />','⃣','symbols',911);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':no_bell:','qrc:/res/emojis/1f515.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f515.png'' />','🔕','symbols',1002);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':no_bicycles:','qrc:/res/emojis/1f6b3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b3.png'' />','🚳','symbols',846);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':no_entry:','qrc:/res/emojis/26d4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26d4.png'' />','â›”','symbols',837);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':no_entry_sign:','qrc:/res/emojis/1f6ab.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6ab.png'' />','🚫','symbols',839);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':no_good:','qrc:/res/emojis/1f645.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f645.png'' />','🙅','people',148);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':no_good_tone1:','qrc:/res/emojis/1f645-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f645-1f3fb.png'' />','🙅🏻','people',1535);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':no_good_tone2:','qrc:/res/emojis/1f645-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f645-1f3fc.png'' />','🙅🏼','people',1536);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':no_good_tone3:','qrc:/res/emojis/1f645-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f645-1f3fd.png'' />','🙅🏽','people',1537);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':no_good_tone4:','qrc:/res/emojis/1f645-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f645-1f3fe.png'' />','🙅🏾','people',1538);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':no_good_tone5:','qrc:/res/emojis/1f645-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f645-1f3ff.png'' />','🙅🏿','people',1539);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':no_mobile_phones:','qrc:/res/emojis/1f4f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f5.png'' />','📵','symbols',849);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':no_mouth:','qrc:/res/emojis/1f636.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f636.png'' />','😶','people',30);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':no_pedestrians:','qrc:/res/emojis/1f6b7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b7.png'' />','🚷','symbols',844);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':no_smoking:','qrc:/res/emojis/1f6ad.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6ad.png'' />','🚭','symbols',884);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':non-potable_water:','qrc:/res/emojis/1f6b1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b1.png'' />','🚱','symbols',847);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':nose:','qrc:/res/emojis/1f443.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f443.png'' />','👃','people',115);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':nose_tone1:','qrc:/res/emojis/1f443-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f443-1f3fb.png'' />','👃🏻','people',1420);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':nose_tone2:','qrc:/res/emojis/1f443-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f443-1f3fc.png'' />','👃🏼','people',1421);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':nose_tone3:','qrc:/res/emojis/1f443-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f443-1f3fd.png'' />','👃🏽','people',1422);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':nose_tone4:','qrc:/res/emojis/1f443-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f443-1f3fe.png'' />','👃🏾','people',1423);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':nose_tone5:','qrc:/res/emojis/1f443-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f443-1f3ff.png'' />','👃🏿','people',1424);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':notebook:','qrc:/res/emojis/1f4d3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d3.png'' />','📓','objects',736);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':notebook_with_decorative_cover:','qrc:/res/emojis/1f4d4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d4.png'' />','📔','objects',741);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':notepad_spiral:','qrc:/res/emojis/1f5d2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5d2.png'' />','🗒','objects',730);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':notes:','qrc:/res/emojis/1f3b6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b6.png'' />','🎶','symbols',954);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':nut_and_bolt:','qrc:/res/emojis/1f529.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f529.png'' />','🔩','objects',650);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':o:','qrc:/res/emojis/2b55.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2b55.png'' />','â­•','symbols',841);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':o2:','qrc:/res/emojis/1f17e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f17e.png'' />','🅾','symbols',835);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ocean:','qrc:/res/emojis/1f30a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f30a.png'' />','🌊','nature',351);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':octagonal_sign:','qrc:/res/emojis/1f6d1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6d1.png'' />','🛑','symbols',10150);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':octopus:','qrc:/res/emojis/1f419.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f419.png'' />','🐙','nature',219);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':oden:','qrc:/res/emojis/1f362.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f362.png'' />','🍢','food',393);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':office:','qrc:/res/emojis/1f3e2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e2.png'' />','🏢','travel',574);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':oil:','qrc:/res/emojis/1f6e2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6e2.png'' />','🛢','objects',635);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ok:','qrc:/res/emojis/1f197.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f197.png'' />','🆗','symbols',897);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ok_hand:','qrc:/res/emojis/1f44c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44c.png'' />','👌','people',96);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ok_hand_tone1:','qrc:/res/emojis/1f44c-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44c-1f3fb.png'' />','👌🏻','people',1335);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ok_hand_tone2:','qrc:/res/emojis/1f44c-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44c-1f3fc.png'' />','👌🏼','people',1336);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ok_hand_tone3:','qrc:/res/emojis/1f44c-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44c-1f3fd.png'' />','👌🏽','people',1337);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ok_hand_tone4:','qrc:/res/emojis/1f44c-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44c-1f3fe.png'' />','👌🏾','people',1338);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ok_hand_tone5:','qrc:/res/emojis/1f44c-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44c-1f3ff.png'' />','👌🏿','people',1339);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ok_woman:','qrc:/res/emojis/1f646.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f646.png'' />','🙆','people',149);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ok_woman_tone1:','qrc:/res/emojis/1f646-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f646-1f3fb.png'' />','🙆🏻','people',1540);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ok_woman_tone2:','qrc:/res/emojis/1f646-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f646-1f3fc.png'' />','🙆🏼','people',1541);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ok_woman_tone3:','qrc:/res/emojis/1f646-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f646-1f3fd.png'' />','🙆🏽','people',1542);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ok_woman_tone4:','qrc:/res/emojis/1f646-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f646-1f3fe.png'' />','🙆🏾','people',1543);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ok_woman_tone5:','qrc:/res/emojis/1f646-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f646-1f3ff.png'' />','🙆🏿','people',1544);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':older_man:','qrc:/res/emojis/1f474.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f474.png'' />','👴','people',127);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':older_man_tone1:','qrc:/res/emojis/1f474-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f474-1f3fb.png'' />','👴🏻','people',1455);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':older_man_tone2:','qrc:/res/emojis/1f474-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f474-1f3fc.png'' />','👴🏼','people',1456);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':older_man_tone3:','qrc:/res/emojis/1f474-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f474-1f3fd.png'' />','👴🏽','people',1457);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':older_man_tone4:','qrc:/res/emojis/1f474-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f474-1f3fe.png'' />','👴🏾','people',1458);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':older_man_tone5:','qrc:/res/emojis/1f474-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f474-1f3ff.png'' />','👴🏿','people',1459);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':older_woman:','qrc:/res/emojis/1f475.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f475.png'' />','👵','people',128);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':older_woman_tone1:','qrc:/res/emojis/1f475-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f475-1f3fb.png'' />','👵🏻','people',1460);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':older_woman_tone2:','qrc:/res/emojis/1f475-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f475-1f3fc.png'' />','👵🏼','people',1461);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':older_woman_tone3:','qrc:/res/emojis/1f475-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f475-1f3fd.png'' />','👵🏽','people',1462);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':older_woman_tone4:','qrc:/res/emojis/1f475-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f475-1f3fe.png'' />','👵🏾','people',1463);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':older_woman_tone5:','qrc:/res/emojis/1f475-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f475-1f3ff.png'' />','👵🏿','people',1464);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':om_symbol:','qrc:/res/emojis/1f549.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f549.png'' />','🕉','symbols',787);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':on:','qrc:/res/emojis/1f51b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f51b.png'' />','🔛','symbols',970);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':oncoming_automobile:','qrc:/res/emojis/1f698.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f698.png'' />','🚘','travel',494);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':oncoming_bus:','qrc:/res/emojis/1f68d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f68d.png'' />','🚍','travel',493);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':oncoming_police_car:','qrc:/res/emojis/1f694.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f694.png'' />','🚔','travel',492);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':oncoming_taxi:','qrc:/res/emojis/1f696.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f696.png'' />','🚖','travel',495);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':one:','qrc:/res/emojis/0031-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0031-20e3.png'' />','⃣','symbols',903);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':open_file_folder:','qrc:/res/emojis/1f4c2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c2.png'' />','📂','objects',732);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':open_hands:','qrc:/res/emojis/1f450.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f450.png'' />','👐','people',98);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':open_hands_tone1:','qrc:/res/emojis/1f450-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f450-1f3fb.png'' />','👐🏻','people',1345);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':open_hands_tone2:','qrc:/res/emojis/1f450-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f450-1f3fc.png'' />','👐🏼','people',1346);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':open_hands_tone3:','qrc:/res/emojis/1f450-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f450-1f3fd.png'' />','👐🏽','people',1347);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':open_hands_tone4:','qrc:/res/emojis/1f450-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f450-1f3fe.png'' />','👐🏾','people',1348);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':open_hands_tone5:','qrc:/res/emojis/1f450-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f450-1f3ff.png'' />','👐🏿','people',1349);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':open_mouth:','qrc:/res/emojis/1f62e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f62e.png'' />','😮','people',50);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ophiuchus:','qrc:/res/emojis/26ce.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26ce.png'' />','⛎','symbols',795);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':orange_book:','qrc:/res/emojis/1f4d9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d9.png'' />','📙','objects',740);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':orthodox_cross:','qrc:/res/emojis/2626.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2626.png'' />','☦','symbols',793);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':outbox_tray:','qrc:/res/emojis/1f4e4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e4.png'' />','📤','objects',714);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':owl:','qrc:/res/emojis/1f989.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f989.png'' />','🦉','nature',10129);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ox:','qrc:/res/emojis/1f402.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f402.png'' />','🐂','nature',255);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':package:','qrc:/res/emojis/1f4e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e6.png'' />','📦','objects',711);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':page_facing_up:','qrc:/res/emojis/1f4c4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c4.png'' />','📄','objects',721);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':page_with_curl:','qrc:/res/emojis/1f4c3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4c3.png'' />','📃','objects',716);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pager:','qrc:/res/emojis/1f4df.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4df.png'' />','📟','objects',615);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':paintbrush:','qrc:/res/emojis/1f58c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f58c.png'' />','🖌','objects',766);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':palm_tree:','qrc:/res/emojis/1f334.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f334.png'' />','🌴','nature',282);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pancakes:','qrc:/res/emojis/1f95e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f95e.png'' />','🥞','food',10174);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':panda_face:','qrc:/res/emojis/1f43c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f43c.png'' />','🐼','nature',211);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':paperclip:','qrc:/res/emojis/1f4ce.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ce.png'' />','📎','objects',746);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':paperclips:','qrc:/res/emojis/1f587.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f587.png'' />','🖇','objects',747);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':park:','qrc:/res/emojis/1f3de.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3de.png'' />','🏞','travel',548);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':parking:','qrc:/res/emojis/1f17f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f17f.png'' />','🅿','symbols',886);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':part_alternation_mark:','qrc:/res/emojis/303d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/303d.png'' />','〽','symbols',861);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':partly_sunny:','qrc:/res/emojis/26c5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26c5.png'' />','â›…','nature',329);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':passport_control:','qrc:/res/emojis/1f6c2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6c2.png'' />','🛂','symbols',879);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pause_button:','qrc:/res/emojis/23f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23f8.png'' />','⏸','symbols',915);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':peace:','qrc:/res/emojis/262e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/262e.png'' />','☮','symbols',784);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':peach:','qrc:/res/emojis/1f351.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f351.png'' />','🍑','food',363);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':peanuts:','qrc:/res/emojis/1f95c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f95c.png'' />','🥜','food',10172);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pear:','qrc:/res/emojis/1f350.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f350.png'' />','🍐','food',354);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pen_ballpoint:','qrc:/res/emojis/1f58a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f58a.png'' />','🖊','objects',760);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pen_fountain:','qrc:/res/emojis/1f58b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f58b.png'' />','🖋','objects',761);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pencil:','qrc:/res/emojis/1f4dd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4dd.png'' />','📝','objects',763);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pencil2:','qrc:/res/emojis/270f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270f.png'' />','✏','objects',764);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':penguin:','qrc:/res/emojis/1f427.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f427.png'' />','🐧','nature',226);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pensive:','qrc:/res/emojis/1f614.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f614.png'' />','😔','people',41);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':performing_arts:','qrc:/res/emojis/1f3ad.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ad.png'' />','🎭','activity',458);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':persevere:','qrc:/res/emojis/1f623.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f623.png'' />','😣','people',45);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_frowning:','qrc:/res/emojis/1f64d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64d.png'' />','🙍','people',152);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_frowning_tone1:','qrc:/res/emojis/1f64d-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64d-1f3fb.png'' />','🙍🏻','people',1555);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_frowning_tone2:','qrc:/res/emojis/1f64d-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64d-1f3fc.png'' />','🙍🏼','people',1556);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_frowning_tone3:','qrc:/res/emojis/1f64d-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64d-1f3fd.png'' />','🙍🏽','people',1557);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_frowning_tone4:','qrc:/res/emojis/1f64d-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64d-1f3fe.png'' />','🙍🏾','people',1558);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_frowning_tone5:','qrc:/res/emojis/1f64d-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64d-1f3ff.png'' />','🙍🏿','people',1559);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_with_blond_hair:','qrc:/res/emojis/1f471.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f471.png'' />','👱','people',126);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_with_blond_hair_tone1:','qrc:/res/emojis/1f471-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f471-1f3fb.png'' />','👱🏻','people',1450);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_with_blond_hair_tone2:','qrc:/res/emojis/1f471-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f471-1f3fc.png'' />','👱🏼','people',1451);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_with_blond_hair_tone3:','qrc:/res/emojis/1f471-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f471-1f3fd.png'' />','👱🏽','people',1452);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_with_blond_hair_tone4:','qrc:/res/emojis/1f471-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f471-1f3fe.png'' />','👱🏾','people',1453);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_with_blond_hair_tone5:','qrc:/res/emojis/1f471-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f471-1f3ff.png'' />','👱🏿','people',1454);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_with_pouting_face:','qrc:/res/emojis/1f64e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64e.png'' />','🙎','people',151);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_with_pouting_face_tone1:','qrc:/res/emojis/1f64e-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64e-1f3fb.png'' />','🙎🏻','people',1550);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_with_pouting_face_tone2:','qrc:/res/emojis/1f64e-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64e-1f3fc.png'' />','🙎🏼','people',1551);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_with_pouting_face_tone3:','qrc:/res/emojis/1f64e-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64e-1f3fd.png'' />','🙎🏽','people',1552);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_with_pouting_face_tone4:','qrc:/res/emojis/1f64e-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64e-1f3fe.png'' />','🙎🏾','people',1553);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':person_with_pouting_face_tone5:','qrc:/res/emojis/1f64e-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64e-1f3ff.png'' />','🙎🏿','people',1554);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pick:','qrc:/res/emojis/26cf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26cf.png'' />','⛏','objects',649);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pig:','qrc:/res/emojis/1f437.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f437.png'' />','🐷','nature',216);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pig2:','qrc:/res/emojis/1f416.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f416.png'' />','🐖','nature',264);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pig_nose:','qrc:/res/emojis/1f43d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f43d.png'' />','🐽','nature',217);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pill:','qrc:/res/emojis/1f48a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f48a.png'' />','💊','objects',671);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pineapple:','qrc:/res/emojis/1f34d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f34d.png'' />','🍍','food',364);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ping_pong:','qrc:/res/emojis/1f3d3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d3.png'' />','🏓','activity',429);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pisces:','qrc:/res/emojis/2653.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2653.png'' />','♓','symbols',807);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pizza:','qrc:/res/emojis/1f355.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f355.png'' />','🍕','food',380);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':place_of_worship:','qrc:/res/emojis/1f6d0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6d0.png'' />','🛐','symbols',794);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':play_pause:','qrc:/res/emojis/23ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23ef.png'' />','⏯','symbols',916);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_down:','qrc:/res/emojis/1f447.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f447.png'' />','👇','people',103);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_down_tone1:','qrc:/res/emojis/1f447-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f447-1f3fb.png'' />','👇🏻','people',1370);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_down_tone2:','qrc:/res/emojis/1f447-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f447-1f3fc.png'' />','👇🏼','people',1371);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_down_tone3:','qrc:/res/emojis/1f447-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f447-1f3fd.png'' />','👇🏽','people',1372);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_down_tone4:','qrc:/res/emojis/1f447-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f447-1f3fe.png'' />','👇🏾','people',1373);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_down_tone5:','qrc:/res/emojis/1f447-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f447-1f3ff.png'' />','👇🏿','people',1374);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_left:','qrc:/res/emojis/1f448.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f448.png'' />','👈','people',104);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_left_tone1:','qrc:/res/emojis/1f448-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f448-1f3fb.png'' />','👈🏻','people',1375);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_left_tone2:','qrc:/res/emojis/1f448-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f448-1f3fc.png'' />','👈🏼','people',1376);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_left_tone3:','qrc:/res/emojis/1f448-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f448-1f3fd.png'' />','👈🏽','people',1377);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_left_tone4:','qrc:/res/emojis/1f448-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f448-1f3fe.png'' />','👈🏾','people',1378);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_left_tone5:','qrc:/res/emojis/1f448-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f448-1f3ff.png'' />','👈🏿','people',1379);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_right:','qrc:/res/emojis/1f449.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f449.png'' />','👉','people',105);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_right_tone1:','qrc:/res/emojis/1f449-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f449-1f3fb.png'' />','👉🏻','people',1380);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_right_tone2:','qrc:/res/emojis/1f449-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f449-1f3fc.png'' />','👉🏼','people',1381);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_right_tone3:','qrc:/res/emojis/1f449-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f449-1f3fd.png'' />','👉🏽','people',1382);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_right_tone4:','qrc:/res/emojis/1f449-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f449-1f3fe.png'' />','👉🏾','people',1383);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_right_tone5:','qrc:/res/emojis/1f449-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f449-1f3ff.png'' />','👉🏿','people',1384);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_up:','qrc:/res/emojis/261d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/261d.png'' />','☝','people',101);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_up_2:','qrc:/res/emojis/1f446.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f446.png'' />','👆','people',102);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_up_2_tone1:','qrc:/res/emojis/1f446-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f446-1f3fb.png'' />','👆🏻','people',1365);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_up_2_tone2:','qrc:/res/emojis/1f446-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f446-1f3fc.png'' />','👆🏼','people',1366);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_up_2_tone3:','qrc:/res/emojis/1f446-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f446-1f3fd.png'' />','👆🏽','people',1367);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_up_2_tone4:','qrc:/res/emojis/1f446-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f446-1f3fe.png'' />','👆🏾','people',1368);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_up_2_tone5:','qrc:/res/emojis/1f446-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f446-1f3ff.png'' />','👆🏿','people',1369);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_up_tone1:','qrc:/res/emojis/261d-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/261d-1f3fb.png'' />','☝🏻','people',1360);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_up_tone2:','qrc:/res/emojis/261d-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/261d-1f3fc.png'' />','☝🏼','people',1361);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_up_tone3:','qrc:/res/emojis/261d-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/261d-1f3fd.png'' />','☝🏽','people',1362);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_up_tone4:','qrc:/res/emojis/261d-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/261d-1f3fe.png'' />','☝🏾','people',1363);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':point_up_tone5:','qrc:/res/emojis/261d-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/261d-1f3ff.png'' />','☝🏿','people',1364);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':police_car:','qrc:/res/emojis/1f693.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f693.png'' />','🚓','travel',482);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':poodle:','qrc:/res/emojis/1f429.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f429.png'' />','🐩','nature',271);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':poop:','qrc:/res/emojis/1f4a9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a9.png'' />','💩','people',70);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':popcorn:','qrc:/res/emojis/1f37f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f37f.png'' />','🍿','food',404);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':post_office:','qrc:/res/emojis/1f3e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3e3.png'' />','🏣','travel',576);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':postal_horn:','qrc:/res/emojis/1f4ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ef.png'' />','📯','objects',712);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':postbox:','qrc:/res/emojis/1f4ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ee.png'' />','📮','objects',706);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':potable_water:','qrc:/res/emojis/1f6b0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b0.png'' />','🚰','symbols',887);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':potato:','qrc:/res/emojis/1f954.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f954.png'' />','🥔','food',10141);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pouch:','qrc:/res/emojis/1f45d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f45d.png'' />','👝','people',197);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':poultry_leg:','qrc:/res/emojis/1f357.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f357.png'' />','🍗','food',373);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pound:','qrc:/res/emojis/1f4b7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b7.png'' />','💷','objects',640);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pouting_cat:','qrc:/res/emojis/1f63e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f63e.png'' />','😾','people',87);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pray:','qrc:/res/emojis/1f64f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64f.png'' />','🙏','people',100);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pray_tone1:','qrc:/res/emojis/1f64f-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64f-1f3fb.png'' />','🙏🏻','people',1355);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pray_tone2:','qrc:/res/emojis/1f64f-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64f-1f3fc.png'' />','🙏🏼','people',1356);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pray_tone3:','qrc:/res/emojis/1f64f-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64f-1f3fd.png'' />','🙏🏽','people',1357);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pray_tone4:','qrc:/res/emojis/1f64f-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64f-1f3fe.png'' />','🙏🏾','people',1358);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pray_tone5:','qrc:/res/emojis/1f64f-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64f-1f3ff.png'' />','🙏🏿','people',1359);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':prayer_beads:','qrc:/res/emojis/1f4ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ff.png'' />','📿','objects',665);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pregnant_woman:','qrc:/res/emojis/1f930.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f930.png'' />','🤰','people',10115);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pregnant_woman_tone1:','qrc:/res/emojis/1f930-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f930-1f3fb.png'' />','🤰🏻','people',10025);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pregnant_woman_tone2:','qrc:/res/emojis/1f930-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f930-1f3fc.png'' />','🤰🏼','people',10026);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pregnant_woman_tone3:','qrc:/res/emojis/1f930-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f930-1f3fd.png'' />','🤰🏽','people',10027);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pregnant_woman_tone4:','qrc:/res/emojis/1f930-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f930-1f3fe.png'' />','🤰🏾','people',10028);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pregnant_woman_tone5:','qrc:/res/emojis/1f930-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f930-1f3ff.png'' />','🤰🏿','people',10029);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':prince:','qrc:/res/emojis/1f934.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f934.png'' />','🤴','people',10110);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':prince_tone1:','qrc:/res/emojis/1f934-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f934-1f3fb.png'' />','🤴🏻','people',10000);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':prince_tone2:','qrc:/res/emojis/1f934-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f934-1f3fc.png'' />','🤴🏼','people',10001);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':prince_tone3:','qrc:/res/emojis/1f934-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f934-1f3fd.png'' />','🤴🏽','people',10002);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':prince_tone4:','qrc:/res/emojis/1f934-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f934-1f3fe.png'' />','🤴🏾','people',10003);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':prince_tone5:','qrc:/res/emojis/1f934-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f934-1f3ff.png'' />','🤴🏿','people',10004);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':princess:','qrc:/res/emojis/1f478.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f478.png'' />','👸','people',137);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':princess_tone1:','qrc:/res/emojis/1f478-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f478-1f3fb.png'' />','👸🏻','people',1500);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':princess_tone2:','qrc:/res/emojis/1f478-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f478-1f3fc.png'' />','👸🏼','people',1501);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':princess_tone3:','qrc:/res/emojis/1f478-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f478-1f3fd.png'' />','👸🏽','people',1502);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':princess_tone4:','qrc:/res/emojis/1f478-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f478-1f3fe.png'' />','👸🏾','people',1503);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':princess_tone5:','qrc:/res/emojis/1f478-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f478-1f3ff.png'' />','👸🏿','people',1504);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':printer:','qrc:/res/emojis/1f5a8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5a8.png'' />','🖨','objects',597);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':projector:','qrc:/res/emojis/1f4fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4fd.png'' />','📽','objects',611);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':punch:','qrc:/res/emojis/1f44a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44a.png'' />','👊','people',93);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':punch_tone1:','qrc:/res/emojis/1f44a-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44a-1f3fb.png'' />','👊🏻','people',1320);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':punch_tone2:','qrc:/res/emojis/1f44a-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44a-1f3fc.png'' />','👊🏼','people',1321);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':punch_tone3:','qrc:/res/emojis/1f44a-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44a-1f3fd.png'' />','👊🏽','people',1322);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':punch_tone4:','qrc:/res/emojis/1f44a-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44a-1f3fe.png'' />','👊🏾','people',1323);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':punch_tone5:','qrc:/res/emojis/1f44a-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44a-1f3ff.png'' />','👊🏿','people',1324);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':purple_heart:','qrc:/res/emojis/1f49c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f49c.png'' />','💜','symbols',773);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':purse:','qrc:/res/emojis/1f45b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f45b.png'' />','👛','people',198);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':pushpin:','qrc:/res/emojis/1f4cc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4cc.png'' />','📌','objects',751);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':put_litter_in_its_place:','qrc:/res/emojis/1f6ae.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6ae.png'' />','🚮','symbols',892);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':question:','qrc:/res/emojis/2753.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2753.png'' />','❓','symbols',852);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rabbit:','qrc:/res/emojis/1f430.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f430.png'' />','🐰','nature',209);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rabbit2:','qrc:/res/emojis/1f407.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f407.png'' />','🐇','nature',273);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':race_car:','qrc:/res/emojis/1f3ce.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ce.png'' />','🏎','travel',481);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':racehorse:','qrc:/res/emojis/1f40e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f40e.png'' />','🐎','nature',263);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':radio:','qrc:/res/emojis/1f4fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4fb.png'' />','📻','objects',618);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':radio_button:','qrc:/res/emojis/1f518.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f518.png'' />','🔘','symbols',974);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':radioactive:','qrc:/res/emojis/2622.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2622.png'' />','☢','symbols',812);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rage:','qrc:/res/emojis/1f621.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f621.png'' />','😡','people',40);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':railway_car:','qrc:/res/emojis/1f683.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f683.png'' />','🚃','travel',499);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':railway_track:','qrc:/res/emojis/1f6e4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6e4.png'' />','🛤','travel',550);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rainbow:','qrc:/res/emojis/1f308.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f308.png'' />','🌈','travel',565);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_back_of_hand:','qrc:/res/emojis/1f91a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91a.png'' />','🤚','people',10119);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_back_of_hand_tone1:','qrc:/res/emojis/1f91a-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91a-1f3fb.png'' />','🤚🏻','people',10060);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_back_of_hand_tone2:','qrc:/res/emojis/1f91a-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91a-1f3fc.png'' />','🤚🏼','people',10061);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_back_of_hand_tone3:','qrc:/res/emojis/1f91a-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91a-1f3fd.png'' />','🤚🏽','people',10062);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_back_of_hand_tone4:','qrc:/res/emojis/1f91a-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91a-1f3fe.png'' />','🤚🏾','people',10063);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_back_of_hand_tone5:','qrc:/res/emojis/1f91a-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91a-1f3ff.png'' />','🤚🏿','people',10064);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_hand:','qrc:/res/emojis/270b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270b.png'' />','✋','people',97);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_hand_tone1:','qrc:/res/emojis/270b-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270b-1f3fb.png'' />','✋🏻','people',1340);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_hand_tone2:','qrc:/res/emojis/270b-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270b-1f3fc.png'' />','✋🏼','people',1341);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_hand_tone3:','qrc:/res/emojis/270b-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270b-1f3fd.png'' />','✋🏽','people',1342);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_hand_tone4:','qrc:/res/emojis/270b-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270b-1f3fe.png'' />','✋🏾','people',1343);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_hand_tone5:','qrc:/res/emojis/270b-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270b-1f3ff.png'' />','✋🏿','people',1344);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_hands:','qrc:/res/emojis/1f64c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64c.png'' />','🙌','people',88);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_hands_tone1:','qrc:/res/emojis/1f64c-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64c-1f3fb.png'' />','🙌🏻','people',1295);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_hands_tone2:','qrc:/res/emojis/1f64c-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64c-1f3fc.png'' />','🙌🏼','people',1296);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_hands_tone3:','qrc:/res/emojis/1f64c-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64c-1f3fd.png'' />','🙌🏽','people',1297);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_hands_tone4:','qrc:/res/emojis/1f64c-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64c-1f3fe.png'' />','🙌🏾','people',1298);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raised_hands_tone5:','qrc:/res/emojis/1f64c-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64c-1f3ff.png'' />','🙌🏿','people',1299);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raising_hand:','qrc:/res/emojis/1f64b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64b.png'' />','🙋','people',150);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raising_hand_tone1:','qrc:/res/emojis/1f64b-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64b-1f3fb.png'' />','🙋🏻','people',1545);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raising_hand_tone2:','qrc:/res/emojis/1f64b-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64b-1f3fc.png'' />','🙋🏼','people',1546);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raising_hand_tone3:','qrc:/res/emojis/1f64b-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64b-1f3fd.png'' />','🙋🏽','people',1547);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raising_hand_tone4:','qrc:/res/emojis/1f64b-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64b-1f3fe.png'' />','🙋🏾','people',1548);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':raising_hand_tone5:','qrc:/res/emojis/1f64b-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64b-1f3ff.png'' />','🙋🏿','people',1549);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ram:','qrc:/res/emojis/1f40f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f40f.png'' />','🐏','nature',261);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ramen:','qrc:/res/emojis/1f35c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f35c.png'' />','🍜','food',384);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rat:','qrc:/res/emojis/1f400.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f400.png'' />','🐀','nature',265);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':record_button:','qrc:/res/emojis/23fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23fa.png'' />','⏺','symbols',918);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':recycle:','qrc:/res/emojis/267b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/267b.png'' />','â™»','symbols',865);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':red_car:','qrc:/res/emojis/1f697.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f697.png'' />','🚗','travel',476);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':red_circle:','qrc:/res/emojis/1f534.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f534.png'' />','🔴','symbols',977);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_a:','qrc:/res/emojis/1f1e6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e6.png'' />','🇦','regional',10202);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_b:','qrc:/res/emojis/1f1e7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e7.png'' />','🇧','regional',10201);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_c:','qrc:/res/emojis/1f1e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e8.png'' />','🇨','regional',10200);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_d:','qrc:/res/emojis/1f1e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1e9.png'' />','🇩','regional',10199);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_e:','qrc:/res/emojis/1f1ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ea.png'' />','🇪','regional',10198);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_f:','qrc:/res/emojis/1f1eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1eb.png'' />','🇫','regional',10197);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_g:','qrc:/res/emojis/1f1ec.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ec.png'' />','🇬','regional',10196);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_h:','qrc:/res/emojis/1f1ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ed.png'' />','🇭','regional',10195);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_i:','qrc:/res/emojis/1f1ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ee.png'' />','🇮','regional',10194);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_j:','qrc:/res/emojis/1f1ef.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ef.png'' />','🇯','regional',10193);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_k:','qrc:/res/emojis/1f1f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f0.png'' />','🇰','regional',10192);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_l:','qrc:/res/emojis/1f1f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f1.png'' />','🇱','regional',10191);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_m:','qrc:/res/emojis/1f1f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f2.png'' />','🇲','regional',10190);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_n:','qrc:/res/emojis/1f1f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f3.png'' />','🇳','regional',10189);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_o:','qrc:/res/emojis/1f1f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f4.png'' />','🇴','regional',10188);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_p:','qrc:/res/emojis/1f1f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f5.png'' />','🇵','regional',10187);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_q:','qrc:/res/emojis/1f1f6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f6.png'' />','🇶','regional',10186);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_r:','qrc:/res/emojis/1f1f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f7.png'' />','🇷','regional',10185);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_s:','qrc:/res/emojis/1f1f8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f8.png'' />','🇸','regional',10184);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_t:','qrc:/res/emojis/1f1f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1f9.png'' />','🇹','regional',10183);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_u:','qrc:/res/emojis/1f1fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fa.png'' />','🇺','regional',10182);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_v:','qrc:/res/emojis/1f1fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fb.png'' />','🇻','regional',10181);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_w:','qrc:/res/emojis/1f1fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fc.png'' />','🇼','regional',10180);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_x:','qrc:/res/emojis/1f1fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fd.png'' />','🇽','regional',10179);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_y:','qrc:/res/emojis/1f1fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1fe.png'' />','🇾','regional',10178);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':regional_indicator_z:','qrc:/res/emojis/1f1ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f1ff.png'' />','🇿','regional',10177);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':registered:','qrc:/res/emojis/00ae.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/00ae.png'' />','®','symbols',966);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':relaxed:','qrc:/res/emojis/263a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/263a.png'' />','☺','people',14);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':relieved:','qrc:/res/emojis/1f60c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f60c.png'' />','😌','people',16);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':reminder_ribbon:','qrc:/res/emojis/1f397.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f397.png'' />','🎗','activity',454);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':repeat:','qrc:/res/emojis/1f501.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f501.png'' />','🔁','symbols',924);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':repeat_one:','qrc:/res/emojis/1f502.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f502.png'' />','🔂','symbols',925);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':restroom:','qrc:/res/emojis/1f6bb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6bb.png'' />','🚻','symbols',891);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':revolving_hearts:','qrc:/res/emojis/1f49e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f49e.png'' />','💞','symbols',777);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rewind:','qrc:/res/emojis/23ea.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23ea.png'' />','⏪','symbols',922);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rhino:','qrc:/res/emojis/1f98f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f98f.png'' />','🦏','nature',10135);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ribbon:','qrc:/res/emojis/1f380.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f380.png'' />','🎀','objects',693);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rice:','qrc:/res/emojis/1f35a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f35a.png'' />','🍚','food',391);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rice_ball:','qrc:/res/emojis/1f359.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f359.png'' />','🍙','food',390);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rice_cracker:','qrc:/res/emojis/1f358.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f358.png'' />','🍘','food',392);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rice_scene:','qrc:/res/emojis/1f391.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f391.png'' />','🎑','travel',540);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':right_facing_fist:','qrc:/res/emojis/1f91c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91c.png'' />','🤜','people',10121);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':right_facing_fist_tone1:','qrc:/res/emojis/1f91c-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91c-1f3fb.png'' />','🤜🏻','people',10055);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':right_facing_fist_tone2:','qrc:/res/emojis/1f91c-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91c-1f3fc.png'' />','🤜🏼','people',10056);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':right_facing_fist_tone3:','qrc:/res/emojis/1f91c-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91c-1f3fd.png'' />','🤜🏽','people',10057);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':right_facing_fist_tone4:','qrc:/res/emojis/1f91c-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91c-1f3fe.png'' />','🤜🏾','people',10058);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':right_facing_fist_tone5:','qrc:/res/emojis/1f91c-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f91c-1f3ff.png'' />','🤜🏿','people',10059);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ring:','qrc:/res/emojis/1f48d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f48d.png'' />','💍','people',203);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':robot:','qrc:/res/emojis/1f916.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f916.png'' />','🤖','people',78);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rocket:','qrc:/res/emojis/1f680.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f680.png'' />','🚀','travel',521);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rofl:','qrc:/res/emojis/1f923.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f923.png'' />','🤣','people',10106);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':roller_coaster:','qrc:/res/emojis/1f3a2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a2.png'' />','🎢','travel',533);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rolling_eyes:','qrc:/res/emojis/1f644.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f644.png'' />','🙄','people',34);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rooster:','qrc:/res/emojis/1f413.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f413.png'' />','🐓','nature',267);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rose:','qrc:/res/emojis/1f339.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f339.png'' />','🌹','nature',295);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rosette:','qrc:/res/emojis/1f3f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3f5.png'' />','🏵','activity',455);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rotating_light:','qrc:/res/emojis/1f6a8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a8.png'' />','🚨','travel',491);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':round_pushpin:','qrc:/res/emojis/1f4cd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4cd.png'' />','📍','objects',752);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rowboat:','qrc:/res/emojis/1f6a3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a3.png'' />','🚣','activity',440);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rowboat_tone1:','qrc:/res/emojis/1f6a3-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a3-1f3fb.png'' />','🚣🏻','activity',1570);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rowboat_tone2:','qrc:/res/emojis/1f6a3-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a3-1f3fc.png'' />','🚣🏼','activity',1571);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rowboat_tone3:','qrc:/res/emojis/1f6a3-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a3-1f3fd.png'' />','🚣🏽','activity',1572);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rowboat_tone4:','qrc:/res/emojis/1f6a3-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a3-1f3fe.png'' />','🚣🏾','activity',1573);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rowboat_tone5:','qrc:/res/emojis/1f6a3-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a3-1f3ff.png'' />','🚣🏿','activity',1574);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':rugby_football:','qrc:/res/emojis/1f3c9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c9.png'' />','🏉','activity',425);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':runner:','qrc:/res/emojis/1f3c3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c3.png'' />','🏃','people',140);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':runner_tone1:','qrc:/res/emojis/1f3c3-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c3-1f3fb.png'' />','🏃🏻','people',1515);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':runner_tone2:','qrc:/res/emojis/1f3c3-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c3-1f3fc.png'' />','🏃🏼','people',1516);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':runner_tone3:','qrc:/res/emojis/1f3c3-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c3-1f3fd.png'' />','🏃🏽','people',1517);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':runner_tone4:','qrc:/res/emojis/1f3c3-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c3-1f3fe.png'' />','🏃🏾','people',1518);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':runner_tone5:','qrc:/res/emojis/1f3c3-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c3-1f3ff.png'' />','🏃🏿','people',1519);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':running_shirt_with_sash:','qrc:/res/emojis/1f3bd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3bd.png'' />','🎽','activity',451);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sa:','qrc:/res/emojis/1f202.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f202.png'' />','🈂','symbols',878);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sagittarius:','qrc:/res/emojis/2650.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2650.png'' />','♐','symbols',804);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sailboat:','qrc:/res/emojis/26f5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f5.png'' />','⛵','travel',516);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sake:','qrc:/res/emojis/1f376.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f376.png'' />','🍶','food',413);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':salad:','qrc:/res/emojis/1f957.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f957.png'' />','🥗','food',10144);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sandal:','qrc:/res/emojis/1f461.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f461.png'' />','👡','people',187);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':santa:','qrc:/res/emojis/1f385.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f385.png'' />','🎅','people',135);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':santa_tone1:','qrc:/res/emojis/1f385-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f385-1f3fb.png'' />','🎅🏻','people',1490);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':santa_tone2:','qrc:/res/emojis/1f385-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f385-1f3fc.png'' />','🎅🏼','people',1491);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':santa_tone3:','qrc:/res/emojis/1f385-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f385-1f3fd.png'' />','🎅🏽','people',1492);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':santa_tone4:','qrc:/res/emojis/1f385-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f385-1f3fe.png'' />','🎅🏾','people',1493);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':santa_tone5:','qrc:/res/emojis/1f385-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f385-1f3ff.png'' />','🎅🏿','people',1494);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':satellite:','qrc:/res/emojis/1f4e1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4e1.png'' />','📡','objects',628);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':satellite_orbital:','qrc:/res/emojis/1f6f0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6f0.png'' />','🛰','travel',522);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':saxophone:','qrc:/res/emojis/1f3b7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b7.png'' />','🎷','activity',465);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':scales:','qrc:/res/emojis/2696.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2696.png'' />','âš–','objects',644);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':school:','qrc:/res/emojis/1f3eb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3eb.png'' />','🏫','travel',582);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':school_satchel:','qrc:/res/emojis/1f392.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f392.png'' />','🎒','people',196);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':scissors:','qrc:/res/emojis/2702.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2702.png'' />','✂','objects',748);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':scooter:','qrc:/res/emojis/1f6f4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6f4.png'' />','🛴','travel',10152);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':scorpion:','qrc:/res/emojis/1f982.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f982.png'' />','🦂','nature',241);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':scorpius:','qrc:/res/emojis/264f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/264f.png'' />','♏','symbols',803);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':scream:','qrc:/res/emojis/1f631.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f631.png'' />','😱','people',51);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':scream_cat:','qrc:/res/emojis/1f640.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f640.png'' />','🙀','people',85);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':scroll:','qrc:/res/emojis/1f4dc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4dc.png'' />','📜','objects',715);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':seat:','qrc:/res/emojis/1f4ba.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ba.png'' />','💺','travel',523);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':second_place:','qrc:/res/emojis/1f948.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f948.png'' />','🥈','activity',10165);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':secret:','qrc:/res/emojis/3299.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/3299.png'' />','㊙','symbols',826);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':see_no_evil:','qrc:/res/emojis/1f648.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f648.png'' />','🙈','nature',221);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':seedling:','qrc:/res/emojis/1f331.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f331.png'' />','🌱','nature',283);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':selfie:','qrc:/res/emojis/1f933.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f933.png'' />','🤳','people',10116);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':selfie_tone1:','qrc:/res/emojis/1f933-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f933-1f3fb.png'' />','🤳🏻','people',10035);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':selfie_tone2:','qrc:/res/emojis/1f933-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f933-1f3fc.png'' />','🤳🏼','people',10036);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':selfie_tone3:','qrc:/res/emojis/1f933-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f933-1f3fd.png'' />','🤳🏽','people',10037);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':selfie_tone4:','qrc:/res/emojis/1f933-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f933-1f3fe.png'' />','🤳🏾','people',10038);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':selfie_tone5:','qrc:/res/emojis/1f933-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f933-1f3ff.png'' />','🤳🏿','people',10039);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':seven:','qrc:/res/emojis/0037-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0037-20e3.png'' />','⃣','symbols',909);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shallow_pan_of_food:','qrc:/res/emojis/1f958.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f958.png'' />','🥘','food',10145);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shamrock:','qrc:/res/emojis/2618.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2618.png'' />','☘','nature',285);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shark:','qrc:/res/emojis/1f988.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f988.png'' />','🦈','nature',10128);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shaved_ice:','qrc:/res/emojis/1f367.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f367.png'' />','🍧','food',395);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sheep:','qrc:/res/emojis/1f411.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f411.png'' />','🐑','nature',262);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shell:','qrc:/res/emojis/1f41a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f41a.png'' />','🐚','nature',303);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shield:','qrc:/res/emojis/1f6e1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6e1.png'' />','🛡','objects',658);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shinto_shrine:','qrc:/res/emojis/26e9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26e9.png'' />','⛩','travel',590);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ship:','qrc:/res/emojis/1f6a2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a2.png'' />','🚢','travel',531);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shirt:','qrc:/res/emojis/1f455.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f455.png'' />','👕','people',177);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shopping_bags:','qrc:/res/emojis/1f6cd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6cd.png'' />','🛍','objects',690);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shopping_cart:','qrc:/res/emojis/1f6d2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6d2.png'' />','🛒','objects',10151);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shower:','qrc:/res/emojis/1f6bf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6bf.png'' />','🚿','objects',677);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shrimp:','qrc:/res/emojis/1f990.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f990.png'' />','🦐','nature',10168);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shrug:','qrc:/res/emojis/1f937.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f937.png'' />','🤷','people',10114);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shrug_tone1:','qrc:/res/emojis/1f937-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f937-1f3fb.png'' />','🤷🏻','people',10015);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shrug_tone2:','qrc:/res/emojis/1f937-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f937-1f3fc.png'' />','🤷🏼','people',10016);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shrug_tone3:','qrc:/res/emojis/1f937-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f937-1f3fd.png'' />','🤷🏽','people',10017);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shrug_tone4:','qrc:/res/emojis/1f937-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f937-1f3fe.png'' />','🤷🏾','people',10018);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':shrug_tone5:','qrc:/res/emojis/1f937-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f937-1f3ff.png'' />','🤷🏿','people',10019);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':signal_strength:','qrc:/res/emojis/1f4f6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f6.png'' />','📶','symbols',894);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':six:','qrc:/res/emojis/0036-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0036-20e3.png'' />','⃣','symbols',908);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':six_pointed_star:','qrc:/res/emojis/1f52f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f52f.png'' />','🔯','symbols',790);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ski:','qrc:/res/emojis/1f3bf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3bf.png'' />','🎿','activity',434);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':skier:','qrc:/res/emojis/26f7.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26f7.png'' />','â›·','activity',435);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':skull:','qrc:/res/emojis/1f480.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f480.png'' />','💀','people',75);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':skull_crossbones:','qrc:/res/emojis/2620.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2620.png'' />','☠','objects',660);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sleeping:','qrc:/res/emojis/1f634.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f634.png'' />','😴','people',68);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sleeping_accommodation:','qrc:/res/emojis/1f6cc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6cc.png'' />','🛌','objects',682);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sleepy:','qrc:/res/emojis/1f62a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f62a.png'' />','😪','people',59);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':slight_frown:','qrc:/res/emojis/1f641.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f641.png'' />','🙁','people',43);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':slight_smile:','qrc:/res/emojis/1f642.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f642.png'' />','🙂','people',12);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':slot_machine:','qrc:/res/emojis/1f3b0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3b0.png'' />','🎰','activity',474);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':small_blue_diamond:','qrc:/res/emojis/1f539.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f539.png'' />','🔹','symbols',980);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':small_orange_diamond:','qrc:/res/emojis/1f538.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f538.png'' />','🔸','symbols',979);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':small_red_triangle:','qrc:/res/emojis/1f53a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f53a.png'' />','🔺','symbols',983);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':small_red_triangle_down:','qrc:/res/emojis/1f53b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f53b.png'' />','🔻','symbols',988);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':smile:','qrc:/res/emojis/1f604.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f604.png'' />','😄','people',6);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':smile_cat:','qrc:/res/emojis/1f638.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f638.png'' />','😸','people',80);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':smiley:','qrc:/res/emojis/1f603.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f603.png'' />','😃','people',5);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':smiley_cat:','qrc:/res/emojis/1f63a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f63a.png'' />','😺','people',79);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':smiling_imp:','qrc:/res/emojis/1f608.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f608.png'' />','😈','people',71);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':smirk:','qrc:/res/emojis/1f60f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f60f.png'' />','😏','people',29);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':smirk_cat:','qrc:/res/emojis/1f63c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f63c.png'' />','😼','people',83);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':smoking:','qrc:/res/emojis/1f6ac.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6ac.png'' />','🚬','objects',659);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':snail:','qrc:/res/emojis/1f40c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f40c.png'' />','🐌','nature',237);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':snake:','qrc:/res/emojis/1f40d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f40d.png'' />','🐍','nature',243);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sneezing_face:','qrc:/res/emojis/1f927.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f927.png'' />','🤧','people',10109);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':snowboarder:','qrc:/res/emojis/1f3c2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c2.png'' />','🏂','activity',436);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':snowflake:','qrc:/res/emojis/2744.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2744.png'' />','❄','nature',339);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':snowman:','qrc:/res/emojis/26c4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26c4.png'' />','⛄','nature',342);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':snowman2:','qrc:/res/emojis/2603.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2603.png'' />','☃','nature',341);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sob:','qrc:/res/emojis/1f62d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f62d.png'' />','😭','people',61);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':soccer:','qrc:/res/emojis/26bd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26bd.png'' />','âš½','activity',419);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':soon:','qrc:/res/emojis/1f51c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f51c.png'' />','🔜','symbols',972);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sos:','qrc:/res/emojis/1f198.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f198.png'' />','🆘','symbols',836);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sound:','qrc:/res/emojis/1f509.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f509.png'' />','🔉','symbols',996);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':space_invader:','qrc:/res/emojis/1f47e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f47e.png'' />','👾','activity',471);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':spades:','qrc:/res/emojis/2660.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2660.png'' />','â™ ','symbols',1005);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':spaghetti:','qrc:/res/emojis/1f35d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f35d.png'' />','🍝','food',381);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sparkle:','qrc:/res/emojis/2747.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2747.png'' />','❇','symbols',868);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sparkler:','qrc:/res/emojis/1f387.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f387.png'' />','🎇','travel',563);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sparkles:','qrc:/res/emojis/2728.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2728.png'' />','✨','nature',325);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sparkling_heart:','qrc:/res/emojis/1f496.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f496.png'' />','💖','symbols',780);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':speak_no_evil:','qrc:/res/emojis/1f64a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f64a.png'' />','🙊','nature',223);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':speaker:','qrc:/res/emojis/1f508.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f508.png'' />','🔈','symbols',995);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':speaking_head:','qrc:/res/emojis/1f5e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5e3.png'' />','🗣','people',120);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':speech_balloon:','qrc:/res/emojis/1f4ac.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ac.png'' />','💬','symbols',1012);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':speech_left:','qrc:/res/emojis/1f5e8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5e8.png'' />','🗨','symbols',10100);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':speedboat:','qrc:/res/emojis/1f6a4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a4.png'' />','🚤','travel',518);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':spider:','qrc:/res/emojis/1f577.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f577.png'' />','🕷','nature',240);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':spider_web:','qrc:/res/emojis/1f578.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f578.png'' />','🕸','nature',304);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':spoon:','qrc:/res/emojis/1f944.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f944.png'' />','🥄','food',10149);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':spy:','qrc:/res/emojis/1f575.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f575.png'' />','🕵','people',134);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':spy_tone1:','qrc:/res/emojis/1f575-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f575-1f3fb.png'' />','🕵🏻','people',1615);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':spy_tone2:','qrc:/res/emojis/1f575-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f575-1f3fc.png'' />','🕵🏼','people',1616);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':spy_tone3:','qrc:/res/emojis/1f575-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f575-1f3fd.png'' />','🕵🏽','people',1617);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':spy_tone4:','qrc:/res/emojis/1f575-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f575-1f3fe.png'' />','🕵🏾','people',1618);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':spy_tone5:','qrc:/res/emojis/1f575-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f575-1f3ff.png'' />','🕵🏿','people',1619);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':squid:','qrc:/res/emojis/1f991.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f991.png'' />','🦑','nature',10169);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':stadium:','qrc:/res/emojis/1f3df.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3df.png'' />','🏟','travel',569);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':star:','qrc:/res/emojis/2b50.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2b50.png'' />','⭐','nature',322);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':star2:','qrc:/res/emojis/1f31f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f31f.png'' />','🌟','nature',323);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':star_and_crescent:','qrc:/res/emojis/262a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/262a.png'' />','☪','symbols',786);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':star_of_david:','qrc:/res/emojis/2721.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2721.png'' />','✡','symbols',789);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':stars:','qrc:/res/emojis/1f320.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f320.png'' />','🌠','travel',562);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':station:','qrc:/res/emojis/1f689.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f689.png'' />','🚉','travel',510);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':statue_of_liberty:','qrc:/res/emojis/1f5fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5fd.png'' />','🗽','travel',570);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':steam_locomotive:','qrc:/res/emojis/1f682.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f682.png'' />','🚂','travel',506);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':stew:','qrc:/res/emojis/1f372.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f372.png'' />','🍲','food',385);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':stop_button:','qrc:/res/emojis/23f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23f9.png'' />','⏹','symbols',917);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':stopwatch:','qrc:/res/emojis/23f1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23f1.png'' />','⏱','objects',622);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':straight_ruler:','qrc:/res/emojis/1f4cf.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4cf.png'' />','📏','objects',750);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':strawberry:','qrc:/res/emojis/1f353.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f353.png'' />','🍓','food',360);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':stuck_out_tongue:','qrc:/res/emojis/1f61b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f61b.png'' />','😛','people',24);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':stuck_out_tongue_closed_eyes:','qrc:/res/emojis/1f61d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f61d.png'' />','😝','people',23);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':stuck_out_tongue_winking_eye:','qrc:/res/emojis/1f61c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f61c.png'' />','😜','people',22);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':stuffed_flatbread:','qrc:/res/emojis/1f959.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f959.png'' />','🥙','food',10146);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sun_with_face:','qrc:/res/emojis/1f31e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f31e.png'' />','🌞','nature',320);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sunflower:','qrc:/res/emojis/1f33b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f33b.png'' />','🌻','nature',294);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sunglasses:','qrc:/res/emojis/1f60e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f60e.png'' />','😎','people',27);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sunny:','qrc:/res/emojis/2600.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2600.png'' />','☀','nature',327);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sunrise:','qrc:/res/emojis/1f305.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f305.png'' />','🌅','travel',551);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sunrise_over_mountains:','qrc:/res/emojis/1f304.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f304.png'' />','🌄','travel',552);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':surfer:','qrc:/res/emojis/1f3c4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c4.png'' />','🏄','activity',442);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':surfer_tone1:','qrc:/res/emojis/1f3c4-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c4-1f3fb.png'' />','🏄🏻','activity',1580);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':surfer_tone2:','qrc:/res/emojis/1f3c4-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c4-1f3fc.png'' />','🏄🏼','activity',1581);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':surfer_tone3:','qrc:/res/emojis/1f3c4-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c4-1f3fd.png'' />','🏄🏽','activity',1582);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':surfer_tone4:','qrc:/res/emojis/1f3c4-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c4-1f3fe.png'' />','🏄🏾','activity',1583);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':surfer_tone5:','qrc:/res/emojis/1f3c4-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c4-1f3ff.png'' />','🏄🏿','activity',1584);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sushi:','qrc:/res/emojis/1f363.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f363.png'' />','🍣','food',387);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':suspension_railway:','qrc:/res/emojis/1f69f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f69f.png'' />','🚟','travel',498);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sweat:','qrc:/res/emojis/1f613.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f613.png'' />','😓','people',60);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sweat_drops:','qrc:/res/emojis/1f4a6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a6.png'' />','💦','nature',350);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sweat_smile:','qrc:/res/emojis/1f605.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f605.png'' />','😅','people',7);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':sweet_potato:','qrc:/res/emojis/1f360.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f360.png'' />','🍠','food',369);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':swimmer:','qrc:/res/emojis/1f3ca.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ca.png'' />','🏊','activity',441);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':swimmer_tone1:','qrc:/res/emojis/1f3ca-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ca-1f3fb.png'' />','🏊🏻','activity',1575);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':swimmer_tone2:','qrc:/res/emojis/1f3ca-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ca-1f3fc.png'' />','🏊🏼','activity',1576);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':swimmer_tone3:','qrc:/res/emojis/1f3ca-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ca-1f3fd.png'' />','🏊🏽','activity',1577);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':swimmer_tone4:','qrc:/res/emojis/1f3ca-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ca-1f3fe.png'' />','🏊🏾','activity',1578);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':swimmer_tone5:','qrc:/res/emojis/1f3ca-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ca-1f3ff.png'' />','🏊🏿','activity',1579);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':symbols:','qrc:/res/emojis/1f523.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f523.png'' />','🔣','symbols',952);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':synagogue:','qrc:/res/emojis/1f54d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f54d.png'' />','🕍','travel',588);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':syringe:','qrc:/res/emojis/1f489.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f489.png'' />','💉','objects',672);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':taco:','qrc:/res/emojis/1f32e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f32e.png'' />','🌮','food',382);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tada:','qrc:/res/emojis/1f389.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f389.png'' />','🎉','objects',696);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tanabata_tree:','qrc:/res/emojis/1f38b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f38b.png'' />','🎋','nature',288);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tangerine:','qrc:/res/emojis/1f34a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f34a.png'' />','🍊','food',355);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':taurus:','qrc:/res/emojis/2649.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2649.png'' />','♉','symbols',797);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':taxi:','qrc:/res/emojis/1f695.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f695.png'' />','🚕','travel',477);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tea:','qrc:/res/emojis/1f375.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f375.png'' />','🍵','food',414);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':telephone:','qrc:/res/emojis/260e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/260e.png'' />','☎','objects',614);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':telephone_receiver:','qrc:/res/emojis/1f4de.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4de.png'' />','📞','objects',613);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':telescope:','qrc:/res/emojis/1f52d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f52d.png'' />','🔭','objects',668);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tennis:','qrc:/res/emojis/1f3be.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3be.png'' />','🎾','activity',423);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tent:','qrc:/res/emojis/26fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26fa.png'' />','⛺','travel',547);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thermometer:','qrc:/res/emojis/1f321.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f321.png'' />','🌡','objects',673);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thermometer_face:','qrc:/res/emojis/1f912.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f912.png'' />','🤒','people',66);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thinking:','qrc:/res/emojis/1f914.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f914.png'' />','🤔','people',35);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':third_place:','qrc:/res/emojis/1f949.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f949.png'' />','🥉','activity',10166);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thought_balloon:','qrc:/res/emojis/1f4ad.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ad.png'' />','💭','symbols',1010);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':three:','qrc:/res/emojis/0033-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0033-20e3.png'' />','⃣','symbols',905);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thumbsdown:','qrc:/res/emojis/1f44e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44e.png'' />','👎','people',92);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thumbsdown_tone1:','qrc:/res/emojis/1f44e-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44e-1f3fb.png'' />','👎🏻','people',1315);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thumbsdown_tone2:','qrc:/res/emojis/1f44e-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44e-1f3fc.png'' />','👎🏼','people',1316);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thumbsdown_tone3:','qrc:/res/emojis/1f44e-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44e-1f3fd.png'' />','👎🏽','people',1317);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thumbsdown_tone4:','qrc:/res/emojis/1f44e-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44e-1f3fe.png'' />','👎🏾','people',1318);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thumbsdown_tone5:','qrc:/res/emojis/1f44e-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44e-1f3ff.png'' />','👎🏿','people',1319);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thumbsup:','qrc:/res/emojis/1f44d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44d.png'' />','👍','people',91);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thumbsup_tone1:','qrc:/res/emojis/1f44d-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44d-1f3fb.png'' />','👍🏻','people',1310);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thumbsup_tone2:','qrc:/res/emojis/1f44d-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44d-1f3fc.png'' />','👍🏼','people',1311);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thumbsup_tone3:','qrc:/res/emojis/1f44d-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44d-1f3fd.png'' />','👍🏽','people',1312);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thumbsup_tone4:','qrc:/res/emojis/1f44d-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44d-1f3fe.png'' />','👍🏾','people',1313);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thumbsup_tone5:','qrc:/res/emojis/1f44d-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44d-1f3ff.png'' />','👍🏿','people',1314);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':thunder_cloud_rain:','qrc:/res/emojis/26c8.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26c8.png'' />','⛈','nature',334);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':ticket:','qrc:/res/emojis/1f3ab.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ab.png'' />','🎫','activity',456);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tickets:','qrc:/res/emojis/1f39f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f39f.png'' />','🎟','activity',457);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tiger:','qrc:/res/emojis/1f42f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f42f.png'' />','🐯','nature',213);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tiger2:','qrc:/res/emojis/1f405.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f405.png'' />','🐅','nature',253);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':timer:','qrc:/res/emojis/23f2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23f2.png'' />','⏲','objects',623);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tired_face:','qrc:/res/emojis/1f62b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f62b.png'' />','😫','people',47);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tm:','qrc:/res/emojis/2122.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2122.png'' />','â„¢','symbols',967);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':toilet:','qrc:/res/emojis/1f6bd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6bd.png'' />','🚽','objects',676);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tokyo_tower:','qrc:/res/emojis/1f5fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5fc.png'' />','🗼','travel',537);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tomato:','qrc:/res/emojis/1f345.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f345.png'' />','🍅','food',365);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tone1:','qrc:/res/emojis/1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3fb.png'' />','🏻','modifier',1620);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tone2:','qrc:/res/emojis/1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3fc.png'' />','🏼','modifier',1621);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tone3:','qrc:/res/emojis/1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3fd.png'' />','🏽','modifier',1622);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tone4:','qrc:/res/emojis/1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3fe.png'' />','🏾','modifier',1623);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tone5:','qrc:/res/emojis/1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ff.png'' />','🏿','modifier',1624);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tongue:','qrc:/res/emojis/1f445.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f445.png'' />','👅','people',113);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tools:','qrc:/res/emojis/1f6e0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6e0.png'' />','🛠','objects',648);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':top:','qrc:/res/emojis/1f51d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f51d.png'' />','🔝','symbols',971);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tophat:','qrc:/res/emojis/1f3a9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3a9.png'' />','🎩','people',192);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':track_next:','qrc:/res/emojis/23ed.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23ed.png'' />','⏭','symbols',919);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':track_previous:','qrc:/res/emojis/23ee.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/23ee.png'' />','⏮','symbols',920);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':trackball:','qrc:/res/emojis/1f5b2.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5b2.png'' />','🖲','objects',599);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tractor:','qrc:/res/emojis/1f69c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f69c.png'' />','🚜','travel',488);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':traffic_light:','qrc:/res/emojis/1f6a5.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a5.png'' />','🚥','travel',529);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':train:','qrc:/res/emojis/1f68b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f68b.png'' />','🚋','travel',500);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':train2:','qrc:/res/emojis/1f686.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f686.png'' />','🚆','travel',507);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tram:','qrc:/res/emojis/1f68a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f68a.png'' />','🚊','travel',509);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':triangular_flag_on_post:','qrc:/res/emojis/1f6a9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a9.png'' />','🚩','objects',753);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':triangular_ruler:','qrc:/res/emojis/1f4d0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4d0.png'' />','📐','objects',749);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':trident:','qrc:/res/emojis/1f531.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f531.png'' />','🔱','symbols',859);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':triumph:','qrc:/res/emojis/1f624.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f624.png'' />','😤','people',49);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':trolleybus:','qrc:/res/emojis/1f68e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f68e.png'' />','🚎','travel',480);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':trophy:','qrc:/res/emojis/1f3c6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3c6.png'' />','🏆','activity',450);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tropical_drink:','qrc:/res/emojis/1f379.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f379.png'' />','🍹','food',411);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tropical_fish:','qrc:/res/emojis/1f420.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f420.png'' />','🐠','nature',245);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':truck:','qrc:/res/emojis/1f69a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f69a.png'' />','🚚','travel',486);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':trumpet:','qrc:/res/emojis/1f3ba.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ba.png'' />','🎺','activity',466);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tulip:','qrc:/res/emojis/1f337.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f337.png'' />','🌷','nature',296);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tumbler_glass:','qrc:/res/emojis/1f943.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f943.png'' />','🥃','food',10148);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':turkey:','qrc:/res/emojis/1f983.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f983.png'' />','🦃','nature',268);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':turtle:','qrc:/res/emojis/1f422.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f422.png'' />','🐢','nature',244);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':tv:','qrc:/res/emojis/1f4fa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4fa.png'' />','📺','objects',617);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':twisted_rightwards_arrows:','qrc:/res/emojis/1f500.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f500.png'' />','🔀','symbols',923);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':two:','qrc:/res/emojis/0032-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0032-20e3.png'' />','⃣','symbols',904);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':two_hearts:','qrc:/res/emojis/1f495.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f495.png'' />','💕','symbols',776);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':two_men_holding_hands:','qrc:/res/emojis/1f46c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46c.png'' />','👬','people',144);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':two_women_holding_hands:','qrc:/res/emojis/1f46d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f46d.png'' />','👭','people',145);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':u5272:','qrc:/res/emojis/1f239.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f239.png'' />','🈹','symbols',811);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':u5408:','qrc:/res/emojis/1f234.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f234.png'' />','🈴','symbols',828);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':u55b6:','qrc:/res/emojis/1f23a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f23a.png'' />','🈺','symbols',819);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':u6307:','qrc:/res/emojis/1f22f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f22f.png'' />','🈯','symbols',866);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':u6708:','qrc:/res/emojis/1f237.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f237.png'' />','🈷','symbols',820);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':u6709:','qrc:/res/emojis/1f236.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f236.png'' />','🈶','symbols',816);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':u6e80:','qrc:/res/emojis/1f235.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f235.png'' />','🈵','symbols',829);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':u7121:','qrc:/res/emojis/1f21a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f21a.png'' />','🈚','symbols',817);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':u7533:','qrc:/res/emojis/1f238.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f238.png'' />','🈸','symbols',818);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':u7981:','qrc:/res/emojis/1f232.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f232.png'' />','🈲','symbols',830);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':u7a7a:','qrc:/res/emojis/1f233.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f233.png'' />','🈳','symbols',810);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':umbrella:','qrc:/res/emojis/2614.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2614.png'' />','☔','nature',348);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':umbrella2:','qrc:/res/emojis/2602.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2602.png'' />','☂','nature',347);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':unamused:','qrc:/res/emojis/1f612.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f612.png'' />','😒','people',33);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':underage:','qrc:/res/emojis/1f51e.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f51e.png'' />','🔞','symbols',848);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':unicorn:','qrc:/res/emojis/1f984.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f984.png'' />','🦄','nature',234);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':unlock:','qrc:/res/emojis/1f513.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f513.png'' />','🔓','objects',758);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':up:','qrc:/res/emojis/1f199.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f199.png'' />','🆙','symbols',898);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':upside_down:','qrc:/res/emojis/1f643.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f643.png'' />','🙃','people',13);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':urn:','qrc:/res/emojis/26b1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26b1.png'' />','âš±','objects',662);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':v:','qrc:/res/emojis/270c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270c.png'' />','✌','people',95);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':v_tone1:','qrc:/res/emojis/270c-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270c-1f3fb.png'' />','✌🏻','people',1330);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':v_tone2:','qrc:/res/emojis/270c-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270c-1f3fc.png'' />','✌🏼','people',1331);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':v_tone3:','qrc:/res/emojis/270c-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270c-1f3fd.png'' />','✌🏽','people',1332);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':v_tone4:','qrc:/res/emojis/270c-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270c-1f3fe.png'' />','✌🏾','people',1333);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':v_tone5:','qrc:/res/emojis/270c-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270c-1f3ff.png'' />','✌🏿','people',1334);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':vertical_traffic_light:','qrc:/res/emojis/1f6a6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6a6.png'' />','🚦','travel',528);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':vhs:','qrc:/res/emojis/1f4fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4fc.png'' />','📼','objects',606);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':vibration_mode:','qrc:/res/emojis/1f4f3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f3.png'' />','📳','symbols',815);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':video_camera:','qrc:/res/emojis/1f4f9.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4f9.png'' />','📹','objects',609);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':video_game:','qrc:/res/emojis/1f3ae.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3ae.png'' />','🎮','activity',470);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':violin:','qrc:/res/emojis/1f3bb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3bb.png'' />','🎻','activity',468);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':virgo:','qrc:/res/emojis/264d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/264d.png'' />','♍','symbols',801);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':volcano:','qrc:/res/emojis/1f30b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f30b.png'' />','🌋','travel',544);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':volleyball:','qrc:/res/emojis/1f3d0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f3d0.png'' />','🏐','activity',424);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':vs:','qrc:/res/emojis/1f19a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f19a.png'' />','🆚','symbols',822);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':vulcan:','qrc:/res/emojis/1f596.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f596.png'' />','🖖','people',109);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':vulcan_tone1:','qrc:/res/emojis/1f596-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f596-1f3fb.png'' />','🖖🏻','people',1400);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':vulcan_tone2:','qrc:/res/emojis/1f596-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f596-1f3fc.png'' />','🖖🏼','people',1401);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':vulcan_tone3:','qrc:/res/emojis/1f596-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f596-1f3fd.png'' />','🖖🏽','people',1402);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':vulcan_tone4:','qrc:/res/emojis/1f596-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f596-1f3fe.png'' />','🖖🏾','people',1403);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':vulcan_tone5:','qrc:/res/emojis/1f596-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f596-1f3ff.png'' />','🖖🏿','people',1404);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':walking:','qrc:/res/emojis/1f6b6.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b6.png'' />','🚶','people',139);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':walking_tone1:','qrc:/res/emojis/1f6b6-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b6-1f3fb.png'' />','🚶🏻','people',1510);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':walking_tone2:','qrc:/res/emojis/1f6b6-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b6-1f3fc.png'' />','🚶🏼','people',1511);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':walking_tone3:','qrc:/res/emojis/1f6b6-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b6-1f3fd.png'' />','🚶🏽','people',1512);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':walking_tone4:','qrc:/res/emojis/1f6b6-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b6-1f3fe.png'' />','🚶🏾','people',1513);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':walking_tone5:','qrc:/res/emojis/1f6b6-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6b6-1f3ff.png'' />','🚶🏿','people',1514);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':waning_crescent_moon:','qrc:/res/emojis/1f318.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f318.png'' />','🌘','nature',311);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':waning_gibbous_moon:','qrc:/res/emojis/1f316.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f316.png'' />','🌖','nature',309);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':warning:','qrc:/res/emojis/26a0.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26a0.png'' />','âš ','symbols',862);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wastebasket:','qrc:/res/emojis/1f5d1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f5d1.png'' />','🗑','objects',634);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':watch:','qrc:/res/emojis/231a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/231a.png'' />','⌚','objects',591);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':water_buffalo:','qrc:/res/emojis/1f403.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f403.png'' />','🐃','nature',254);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':water_polo:','qrc:/res/emojis/1f93d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93d.png'' />','🤽','activity',10160);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':water_polo_tone1:','qrc:/res/emojis/1f93d-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93d-1f3fb.png'' />','🤽🏻','activity',10085);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':water_polo_tone2:','qrc:/res/emojis/1f93d-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93d-1f3fc.png'' />','🤽🏼','activity',10086);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':water_polo_tone3:','qrc:/res/emojis/1f93d-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93d-1f3fd.png'' />','🤽🏽','activity',10087);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':water_polo_tone4:','qrc:/res/emojis/1f93d-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93d-1f3fe.png'' />','🤽🏾','activity',10088);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':water_polo_tone5:','qrc:/res/emojis/1f93d-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93d-1f3ff.png'' />','🤽🏿','activity',10089);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':watermelon:','qrc:/res/emojis/1f349.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f349.png'' />','🍉','food',358);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wave:','qrc:/res/emojis/1f44b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44b.png'' />','👋','people',90);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wave_tone1:','qrc:/res/emojis/1f44b-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44b-1f3fb.png'' />','👋🏻','people',1305);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wave_tone2:','qrc:/res/emojis/1f44b-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44b-1f3fc.png'' />','👋🏼','people',1306);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wave_tone3:','qrc:/res/emojis/1f44b-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44b-1f3fd.png'' />','👋🏽','people',1307);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wave_tone4:','qrc:/res/emojis/1f44b-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44b-1f3fe.png'' />','👋🏾','people',1308);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wave_tone5:','qrc:/res/emojis/1f44b-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f44b-1f3ff.png'' />','👋🏿','people',1309);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wavy_dash:','qrc:/res/emojis/3030.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/3030.png'' />','〰','symbols',955);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':waxing_crescent_moon:','qrc:/res/emojis/1f312.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f312.png'' />','🌒','nature',313);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':waxing_gibbous_moon:','qrc:/res/emojis/1f314.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f314.png'' />','🌔','nature',315);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wc:','qrc:/res/emojis/1f6be.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6be.png'' />','🚾','symbols',885);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':weary:','qrc:/res/emojis/1f629.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f629.png'' />','😩','people',48);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wedding:','qrc:/res/emojis/1f492.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f492.png'' />','💒','travel',584);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':whale:','qrc:/res/emojis/1f433.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f433.png'' />','🐳','nature',249);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':whale2:','qrc:/res/emojis/1f40b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f40b.png'' />','🐋','nature',250);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wheel_of_dharma:','qrc:/res/emojis/2638.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2638.png'' />','☸','symbols',788);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wheelchair:','qrc:/res/emojis/267f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/267f.png'' />','♿','symbols',883);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':white_check_mark:','qrc:/res/emojis/2705.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2705.png'' />','✅','symbols',871);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':white_circle:','qrc:/res/emojis/26aa.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26aa.png'' />','⚪','symbols',975);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':white_flower:','qrc:/res/emojis/1f4ae.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4ae.png'' />','💮','symbols',824);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':white_large_square:','qrc:/res/emojis/2b1c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/2b1c.png'' />','⬜','symbols',987);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':white_medium_small_square:','qrc:/res/emojis/25fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/25fd.png'' />','â—½','symbols',992);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':white_medium_square:','qrc:/res/emojis/25fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/25fb.png'' />','â—»','symbols',990);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':white_small_square:','qrc:/res/emojis/25ab.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/25ab.png'' />','â–«','symbols',985);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':white_square_button:','qrc:/res/emojis/1f533.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f533.png'' />','🔳','symbols',994);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':white_sun_cloud:','qrc:/res/emojis/1f325.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f325.png'' />','🌥','nature',330);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':white_sun_rain_cloud:','qrc:/res/emojis/1f326.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f326.png'' />','🌦','nature',331);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':white_sun_small_cloud:','qrc:/res/emojis/1f324.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f324.png'' />','🌤','nature',328);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wilted_rose:','qrc:/res/emojis/1f940.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f940.png'' />','🥀','nature',10136);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wind_blowing_face:','qrc:/res/emojis/1f32c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f32c.png'' />','🌬','nature',343);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wind_chime:','qrc:/res/emojis/1f390.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f390.png'' />','🎐','objects',698);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wine_glass:','qrc:/res/emojis/1f377.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f377.png'' />','🍷','food',409);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wink:','qrc:/res/emojis/1f609.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f609.png'' />','😉','people',10);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wolf:','qrc:/res/emojis/1f43a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f43a.png'' />','🐺','nature',231);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':woman:','qrc:/res/emojis/1f469.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469.png'' />','👩','people',125);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':woman_tone1:','qrc:/res/emojis/1f469-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f3fb.png'' />','👩🏻','people',1445);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':woman_tone2:','qrc:/res/emojis/1f469-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f3fc.png'' />','👩🏼','people',1446);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':woman_tone3:','qrc:/res/emojis/1f469-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f3fd.png'' />','👩🏽','people',1447);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':woman_tone4:','qrc:/res/emojis/1f469-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f3fe.png'' />','👩🏾','people',1448);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':woman_tone5:','qrc:/res/emojis/1f469-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f469-1f3ff.png'' />','👩🏿','people',1449);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':womans_clothes:','qrc:/res/emojis/1f45a.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f45a.png'' />','👚','people',176);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':womans_hat:','qrc:/res/emojis/1f452.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f452.png'' />','👒','people',191);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':womens:','qrc:/res/emojis/1f6ba.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f6ba.png'' />','🚺','symbols',889);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':worried:','qrc:/res/emojis/1f61f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f61f.png'' />','😟','people',38);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wrench:','qrc:/res/emojis/1f527.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f527.png'' />','🔧','objects',645);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wrestlers:','qrc:/res/emojis/1f93c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93c.png'' />','🤼','activity',10157);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wrestlers_tone1:','qrc:/res/emojis/1f93c-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93c-1f3fb.png'' />','🤼🏻','activity',10080);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wrestlers_tone2:','qrc:/res/emojis/1f93c-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93c-1f3fc.png'' />','🤼🏼','activity',10081);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wrestlers_tone3:','qrc:/res/emojis/1f93c-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93c-1f3fd.png'' />','🤼🏽','activity',10082);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wrestlers_tone4:','qrc:/res/emojis/1f93c-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93c-1f3fe.png'' />','🤼🏾','activity',10083);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':wrestlers_tone5:','qrc:/res/emojis/1f93c-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f93c-1f3ff.png'' />','🤼🏿','activity',10084);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':writing_hand:','qrc:/res/emojis/270d.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270d.png'' />','✍','people',110);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':writing_hand_tone1:','qrc:/res/emojis/270d-1f3fb.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270d-1f3fb.png'' />','✍🏻','people',1405);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':writing_hand_tone2:','qrc:/res/emojis/270d-1f3fc.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270d-1f3fc.png'' />','✍🏼','people',1406);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':writing_hand_tone3:','qrc:/res/emojis/270d-1f3fd.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270d-1f3fd.png'' />','✍🏽','people',1407);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':writing_hand_tone4:','qrc:/res/emojis/270d-1f3fe.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270d-1f3fe.png'' />','✍🏾','people',1408);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':writing_hand_tone5:','qrc:/res/emojis/270d-1f3ff.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/270d-1f3ff.png'' />','✍🏿','people',1409);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':x:','qrc:/res/emojis/274c.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/274c.png'' />','❌','symbols',840);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':yellow_heart:','qrc:/res/emojis/1f49b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f49b.png'' />','💛','symbols',770);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':yen:','qrc:/res/emojis/1f4b4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4b4.png'' />','💴','objects',638);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':yin_yang:','qrc:/res/emojis/262f.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/262f.png'' />','☯','symbols',792);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':yum:','qrc:/res/emojis/1f60b.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f60b.png'' />','😋','people',15);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':zap:','qrc:/res/emojis/26a1.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/26a1.png'' />','âš¡','nature',336);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':zero:','qrc:/res/emojis/0030-20e3.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/0030-20e3.png'' />','⃣','symbols',902);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':zipper_mouth:','qrc:/res/emojis/1f910.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f910.png'' />','🤐','people',64);
+INSERT INTO `custom_emojis` (id,file,html,unicode,category,sort_order) VALUES (':zzz:','qrc:/res/emojis/1f4a4.png','<img height=''20'' width=''20'' src=''qrc:/res/emojis/1f4a4.png'' />','💤','people',69);
diff --git a/translations/assistant_de.ts b/translations/assistant_de.ts
deleted file mode 100755
index 67a38879d8d247fdc0fec9281332ce49247e0ba2..0000000000000000000000000000000000000000
--- a/translations/assistant_de.ts
+++ /dev/null
@@ -1,1039 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<context>
-    <name>BookmarkDialog</name>
-    <message>
-        <source>+</source>
-        <translation>+</translation>
-    </message>
-    <message>
-        <source>Add Bookmark</source>
-        <translation>Lesezeichen hinzufügen</translation>
-    </message>
-    <message>
-        <source>New Folder</source>
-        <translation>Neuer Ordner</translation>
-    </message>
-    <message>
-        <source>Bookmark:</source>
-        <translation>Lesezeichen:</translation>
-    </message>
-    <message>
-        <source>Add in Folder:</source>
-        <translation>Erstellen in:</translation>
-    </message>
-    <message>
-        <source>Rename Folder</source>
-        <translation>Ordner umbenennen</translation>
-    </message>
-</context>
-<context>
-    <name>PreferencesDialogClass</name>
-    <message>
-        <source>1</source>
-        <translation>1</translation>
-    </message>
-    <message>
-        <source>Add</source>
-        <translation>Hinzufügen</translation>
-    </message>
-    <message>
-        <source>Fonts</source>
-        <translation>Schriftart</translation>
-    </message>
-    <message>
-        <source>Current Page</source>
-        <translation>Aktuelle Seite</translation>
-    </message>
-    <message>
-        <source>Show a blank page</source>
-        <translation>Leere Seite zeigen</translation>
-    </message>
-    <message>
-        <source>Show my home page</source>
-        <translation>Startseite zeigen</translation>
-    </message>
-    <message>
-        <source>Add...</source>
-        <translation>Hinzufügen ...</translation>
-    </message>
-    <message>
-        <source>Show tabs for each individual page</source>
-        <translation>Reiter für jede einzelne Seite anzeigen</translation>
-    </message>
-    <message>
-        <source>Blank Page</source>
-        <translation>Leere Seite</translation>
-    </message>
-    <message>
-        <source>Remove</source>
-        <translation>Entfernen</translation>
-    </message>
-    <message>
-        <source>Homepage</source>
-        <translation>Startseite</translation>
-    </message>
-    <message>
-        <source>Options</source>
-        <translation>Einstellungen</translation>
-    </message>
-    <message>
-        <source>Restore to default</source>
-        <translation>Voreinstellung wiederherstellen</translation>
-    </message>
-    <message>
-        <source>On help start:</source>
-        <translation>Zu Beginn:</translation>
-    </message>
-    <message>
-        <source>Browser</source>
-        <translation>Browser</translation>
-    </message>
-    <message>
-        <source>Show my tabs from last session</source>
-        <translation>Reiter aus letzter Sitzung zeigen</translation>
-    </message>
-    <message>
-        <source>Registered Documentation:</source>
-        <translation>Registrierte Dokumentation:</translation>
-    </message>
-    <message>
-        <source>Appearance</source>
-        <translation>Erscheinungsbild</translation>
-    </message>
-    <message>
-        <source>Preferences</source>
-        <translation>Einstellungen</translation>
-    </message>
-    <message>
-        <source>&lt;Filter&gt;</source>
-        <translation>&lt;Filter&gt;</translation>
-    </message>
-    <message>
-        <source>Filter:</source>
-        <translation>Filter:</translation>
-    </message>
-    <message>
-        <source>Filters</source>
-        <translation>Filter</translation>
-    </message>
-    <message>
-        <source>Font settings:</source>
-        <translation>Schriftart:</translation>
-    </message>
-    <message>
-        <source>Documentation</source>
-        <translation>Dokumentation</translation>
-    </message>
-    <message>
-        <source>Application</source>
-        <translation>Anwendung</translation>
-    </message>
-    <message>
-        <source>Attributes:</source>
-        <translation>Attribute:</translation>
-    </message>
-</context>
-<context>
-    <name>AboutLabel</name>
-    <message>
-        <source>OK</source>
-        <translation>OK</translation>
-    </message>
-    <message>
-        <source>Unable to launch external application.
-</source>
-        <translation>Fehler beim Starten der externen Anwendung.
-</translation>
-    </message>
-    <message>
-        <source>Warning</source>
-        <translation>Achtung</translation>
-    </message>
-</context>
-<context>
-    <name>BookmarkManagerWidget</name>
-    <message>
-        <source>OK</source>
-        <translation>OK</translation>
-    </message>
-    <message>
-        <source>Show Bookmark in New Tab</source>
-        <translation>Lesezeichen in neuem Reiter öffnen</translation>
-    </message>
-    <message>
-        <source>Rename Bookmark</source>
-        <translation>Lesezeichen umbenennen</translation>
-    </message>
-    <message>
-        <source>Manage Bookmarks</source>
-        <translation>Lesezeichen verwalten</translation>
-    </message>
-    <message>
-        <source>Remove</source>
-        <translation>Entfernen</translation>
-    </message>
-    <message>
-        <source>Export...</source>
-        <translation>Exportieren...</translation>
-    </message>
-    <message>
-        <source>Import...</source>
-        <translation>Importieren...</translation>
-    </message>
-    <message>
-        <source>Unable to save bookmarks.</source>
-        <translation>Die Lesezeichen konnten nicht gespeichert werden.</translation>
-    </message>
-    <message>
-        <source>Delete Bookmark</source>
-        <translation>Lesezeichen löschen</translation>
-    </message>
-    <message>
-        <source>Search:</source>
-        <translation>Suche:</translation>
-    </message>
-    <message>
-        <source>Open File</source>
-        <translation>Datei öffnen</translation>
-    </message>
-    <message>
-        <source>Rename Folder</source>
-        <translation>Ordner umbenennen</translation>
-    </message>
-    <message>
-        <source>Save File</source>
-        <translation>Datei speichern</translation>
-    </message>
-    <message>
-        <source>Files (*.xbel)</source>
-        <translation>Dateien (*.xbel)</translation>
-    </message>
-    <message>
-        <source>Qt Assistant</source>
-        <translation>Qt Assistant</translation>
-    </message>
-    <message>
-        <source>Import and Backup</source>
-        <translation>Importieren und Sichern</translation>
-    </message>
-    <message>
-        <source>Show Bookmark</source>
-        <translation>Lesezeichen anzeigen</translation>
-    </message>
-    <message>
-        <source>You are goingto delete a Folder, this will also&lt;br&gt; remove it&apos;s content. Are you sure to continue?</source>
-        <translation>Beim Löschen des Ordners wird auch dessen Inhalt entfernt.&lt;br&gt;Möchten Sie fortsetzen?</translation>
-    </message>
-    <message>
-        <source>Delete Folder</source>
-        <translation>Ordner löschen</translation>
-    </message>
-</context>
-<context>
-    <name>PreferencesDialog</name>
-    <message>
-        <source>OK</source>
-        <translation>OK</translation>
-    </message>
-    <message>
-        <source>Remove Documentation</source>
-        <translation>Dokumentation entfernen</translation>
-    </message>
-    <message>
-        <source>The namespace %1 is already registered!</source>
-        <translation>Der Namespace %1 ist bereits registriert.</translation>
-    </message>
-    <message>
-        <source>The specified file is not a valid Qt Help File!</source>
-        <translation>Die angegebene Datei ist keine Qt-Hilfedatei.</translation>
-    </message>
-    <message>
-        <source>Cancel</source>
-        <translation>Abbrechen</translation>
-    </message>
-    <message>
-        <source>Use custom settings</source>
-        <translation>Benutzerdefinierte Einstellungen verwenden</translation>
-    </message>
-    <message>
-        <source>Some documents currently opened in Assistant reference the documentation you are attempting to remove. Removing the documentation will close those documents.</source>
-        <translation>Einige der derzeit geöffneten Dokumente stammen aus der Dokumentation, die Sie gerade zu löschen versuchen. Sie werden beim Löschen geschlossen.</translation>
-    </message>
-    <message>
-        <source>Qt Compressed Help Files (*.qch)</source>
-        <translation>Komprimierte Hilfedateien (*.qch)</translation>
-    </message>
-    <message>
-        <source>Add Documentation</source>
-        <translation>Dokumentation hinzufügen</translation>
-    </message>
-</context>
-<context>
-    <name>MainWindow</name>
-    <message>
-        <source>&amp;Go</source>
-        <translation>&amp;Gehe zu</translation>
-    </message>
-    <message>
-        <source>Sync</source>
-        <translation>Synchronisieren</translation>
-    </message>
-    <message>
-        <source>Zoom</source>
-        <translation>Zoom</translation>
-    </message>
-    <message>
-        <source>&amp;Edit</source>
-        <translation>&amp;Bearbeiten</translation>
-    </message>
-    <message>
-        <source>&amp;File</source>
-        <translation>&amp;Datei</translation>
-    </message>
-    <message>
-        <source>&amp;Help</source>
-        <translation>&amp;Hilfe</translation>
-    </message>
-    <message>
-        <source>&amp;Quit</source>
-        <translation>&amp;Beenden</translation>
-    </message>
-    <message>
-        <source>&amp;View</source>
-        <translation>&amp;Ansicht</translation>
-    </message>
-    <message>
-        <source>ALT+C</source>
-        <translation>ALT+C</translation>
-    </message>
-    <message>
-        <source>ALT+I</source>
-        <translation>ALT+I</translation>
-    </message>
-    <message>
-        <source>ALT+O</source>
-        <translation>ALT+O</translation>
-    </message>
-    <message>
-        <source>ALT+P</source>
-        <translation>ALT+P</translation>
-    </message>
-    <message>
-        <source>ALT+S</source>
-        <translation>ALT+S</translation>
-    </message>
-    <message>
-        <source>E&amp;xit</source>
-        <translation>B&amp;eenden</translation>
-    </message>
-    <message>
-        <source>Minimize</source>
-        <translation>Minimieren</translation>
-    </message>
-    <message>
-        <source>Index</source>
-        <translation>Index</translation>
-    </message>
-    <message>
-        <source>Open Pages</source>
-        <translation>Offene Seiten</translation>
-    </message>
-    <message>
-        <source>Looking for Qt Documentation...</source>
-        <translation>Suche nach Qt-Dokumentation ...</translation>
-    </message>
-    <message>
-        <source>Page Set&amp;up...</source>
-        <translation>S&amp;eite einrichten ...</translation>
-    </message>
-    <message>
-        <source>Address Toolbar</source>
-        <translation>Adressleiste</translation>
-    </message>
-    <message>
-        <source>CTRL+Q</source>
-        <translation>CTRL+Q</translation>
-    </message>
-    <message>
-        <source>Ctrl+0</source>
-        <translation>Ctrl+0</translation>
-    </message>
-    <message>
-        <source>Ctrl+M</source>
-        <translation>Ctrl+M</translation>
-    </message>
-    <message>
-        <source>Could not register file &apos;%1&apos;: %2</source>
-        <translation>Die Datei &apos;%1&apos; konnte nicht registriert werden: %2</translation>
-    </message>
-    <message>
-        <source>Search</source>
-        <translation>Suchen</translation>
-    </message>
-    <message>
-        <source>&amp;Bookmarks</source>
-        <translation>&amp;Lesezeichen</translation>
-    </message>
-    <message>
-        <source>Bookmarks</source>
-        <translation>Lesezeichen</translation>
-    </message>
-    <message>
-        <source>Find &amp;Next</source>
-        <translation>&amp;Weitersuchen</translation>
-    </message>
-    <message>
-        <source>Contents</source>
-        <translation>Inhalt</translation>
-    </message>
-    <message>
-        <source>Toolbars</source>
-        <translation>Werkzeugleisten</translation>
-    </message>
-    <message>
-        <source>&amp;Close Tab</source>
-        <translation>Reiter &amp;schließen</translation>
-    </message>
-    <message>
-        <source>Updating search index</source>
-        <translation>Suchindex wird aufgebaut</translation>
-    </message>
-    <message>
-        <source>Find &amp;Previous</source>
-        <translation>&amp;Vorheriges suchen</translation>
-    </message>
-    <message>
-        <source>Navigation Toolbar</source>
-        <translation>Navigationsleiste</translation>
-    </message>
-    <message>
-        <source>About %1</source>
-        <translation>Ãœber %1</translation>
-    </message>
-    <message>
-        <source>About...</source>
-        <translation>Ãœber ...</translation>
-    </message>
-    <message>
-        <source>Bookmark Toolbar</source>
-        <translation>Lesezeichen-Leiste</translation>
-    </message>
-    <message>
-        <source>Print Preview...</source>
-        <translation>Druckvorschau ...</translation>
-    </message>
-    <message>
-        <source>&lt;center&gt;&lt;h3&gt;%1&lt;/h3&gt;&lt;p&gt;Version %2&lt;/p&gt;&lt;p&gt;Browser: %3&lt;/p&gt;&lt;/center&gt;&lt;p&gt;Copyright (C) %4 The Qt Company Ltd.&lt;/p&gt;</source>
-        <translation>&lt;center&gt;&lt;h3&gt;%1&lt;/h3&gt;&lt;p&gt;Version %2&lt;/p&gt;&lt;p&gt;Browser: %3&lt;/p&gt;&lt;/center&gt;&lt;p&gt;Copyright (C) %4 The Qt Company Ltd.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <source>Ctrl+Alt+Left</source>
-        <translation>Ctrl+Alt+Left</translation>
-    </message>
-    <message>
-        <source>Could not find the associated content item.</source>
-        <translation>Der zugehörige Inhaltseintrag konnte nicht gefunden werden.</translation>
-    </message>
-    <message>
-        <source>Address:</source>
-        <translation>Adresse:</translation>
-    </message>
-    <message>
-        <source>Normal &amp;Size</source>
-        <translation>Standard&amp;größe</translation>
-    </message>
-    <message>
-        <source>Filter Toolbar</source>
-        <translation>Filterleiste</translation>
-    </message>
-    <message>
-        <source>Previous Page</source>
-        <translation>Vorherige Seite</translation>
-    </message>
-    <message>
-        <source>&amp;Window</source>
-        <translation>&amp;Fenster</translation>
-    </message>
-    <message>
-        <source>Preferences...</source>
-        <translation>Einstellungen ...</translation>
-    </message>
-    <message>
-        <source>Filtered by:</source>
-        <translation>Filter:</translation>
-    </message>
-    <message>
-        <source>New &amp;Tab</source>
-        <translation>Neuer &amp;Reiter</translation>
-    </message>
-    <message>
-        <source>Sync with Table of Contents</source>
-        <translation>Seite mit Inhaltsangabe abgleichen</translation>
-    </message>
-    <message>
-        <source>Qt Assistant</source>
-        <translation>Qt Assistant</translation>
-    </message>
-    <message>
-        <source>Ctrl+Alt+Right</source>
-        <translation>Ctrl+Alt+Right</translation>
-    </message>
-    <message>
-        <source>Next Page</source>
-        <translation>Nächste Seite</translation>
-    </message>
-</context>
-<context>
-    <name>BookmarkWidget</name>
-    <message>
-        <source>Add</source>
-        <translation>Hinzufügen</translation>
-    </message>
-    <message>
-        <source>Remove</source>
-        <translation>Entfernen</translation>
-    </message>
-    <message>
-        <source>Bookmarks</source>
-        <translation>Lesezeichen</translation>
-    </message>
-    <message>
-        <source>Filter:</source>
-        <translation>Filter:</translation>
-    </message>
-</context>
-<context>
-    <name>HelpViewer</name>
-    <message>
-        <source>Copy</source>
-        <translation>Kopieren</translation>
-    </message>
-    <message>
-        <source>&lt;title&gt;about:blank&lt;/title&gt;</source>
-        <translation>&lt;title&gt;about:blank&lt;/title&gt;</translation>
-    </message>
-    <message>
-        <source>Please make sure that you have all documentation sets installed.</source>
-        <translation>Bitte stellen Sie sicher, dass alle Dokumentationssätze installiert sind.</translation>
-    </message>
-    <message>
-        <source>Open Link in New Tab	Ctrl+LMB</source>
-        <translation>Link in neuem Reiter öffnen (Strg + linke Maustaste)</translation>
-    </message>
-    <message>
-        <source>Reload</source>
-        <translation>Neu laden</translation>
-    </message>
-    <message>
-        <source>Error 404...</source>
-        <translation>Fehler 404...</translation>
-    </message>
-    <message>
-        <source>The page could not be found!</source>
-        <translation>Die Seite konnte nicht gefunden werden!</translation>
-    </message>
-    <message>
-        <source>Open Link</source>
-        <translation>Link öffnen</translation>
-    </message>
-    <message>
-        <source>Error loading: %1</source>
-        <translation>Fehler beim Laden von %1</translation>
-    </message>
-    <message>
-        <source>Copy &amp;Link Location</source>
-        <translation>&amp;Link-Adresse kopieren</translation>
-    </message>
-    <message>
-        <source>&lt;title&gt;Error 404...&lt;/title&gt;&lt;div align=&quot;center&quot;&gt;&lt;br&gt;&lt;br&gt;&lt;h1&gt;The page could not be found.&lt;/h1&gt;&lt;br&gt;&lt;h3&gt;&apos;%1&apos;&lt;/h3&gt;&lt;/div&gt;</source>
-        <translation>&lt;title&gt;Fehler 404...&lt;/title&gt;&lt;div align=&quot;center&quot;&gt;&lt;br&gt;&lt;br&gt;&lt;h1&gt;Die Seite kann nicht gefunden werden.&lt;/h1&gt;&lt;br&gt;&lt;h3&gt;&apos;%1&apos;&lt;/h3&gt;&lt;/div&gt;</translation>
-    </message>
-    <message>
-        <source>Open Link in New Page</source>
-        <translation>Link in neuer Seite öffnen</translation>
-    </message>
-</context>
-<context>
-    <name>FontPanel</name>
-    <message>
-        <source>Font</source>
-        <translation>Schriftart</translation>
-    </message>
-    <message>
-        <source>&amp;Style</source>
-        <translation>S&amp;chriftschnitt</translation>
-    </message>
-    <message>
-        <source>&amp;Point size</source>
-        <translation>&amp;Schriftgrad</translation>
-    </message>
-    <message>
-        <source>&amp;Family</source>
-        <translation>&amp;Schriftart</translation>
-    </message>
-    <message>
-        <source>&amp;Writing system</source>
-        <translation>S&amp;kript</translation>
-    </message>
-</context>
-<context>
-    <name>BookmarkModel</name>
-    <message>
-        <source>Name</source>
-        <translation>Name</translation>
-    </message>
-    <message>
-        <source>Bookmarks Menu</source>
-        <translation>Lesezeichen-Menü</translation>
-    </message>
-    <message>
-        <source>Address</source>
-        <translation>Adresse</translation>
-    </message>
-    <message>
-        <source>Bookmarks Toolbar</source>
-        <translation>Lesezeichenleiste</translation>
-    </message>
-</context>
-<context>
-    <name>FindWidget</name>
-    <message>
-        <source>Next</source>
-        <translation>Nächstes</translation>
-    </message>
-    <message>
-        <source>&lt;img src=&quot;:/qt-project.org/assistant/images/wrap.png&quot;&gt;&amp;nbsp;Search wrapped</source>
-        <translation>&lt;img src=&quot;:/qt-project.org/assistant/images/wrap.png&quot;&gt;&amp;nbsp;Seitenende erreicht</translation>
-    </message>
-    <message>
-        <source>Previous</source>
-        <translation>Voriges</translation>
-    </message>
-    <message>
-        <source>Case Sensitive</source>
-        <translation>Groß/Kleinschreibung beachten</translation>
-    </message>
-</context>
-<context>
-    <name>BookmarkManager</name>
-    <message>
-        <source>You are going to delete a Folder, this will also&lt;br&gt;remove it&apos;s content. Are you sure to continue?</source>
-        <translation>Wenn Sie diesen Ordner löschen, wird auch&lt;br&gt;dessen kompletter Inhalt gelöscht. Möchten Sie wirklich fortfahren?</translation>
-    </message>
-    <message>
-        <source>Show Bookmark in New Tab</source>
-        <translation>Lesezeichen in neuem Reiter öffnen</translation>
-    </message>
-    <message>
-        <source>Rename Bookmark</source>
-        <translation>Lesezeichen umbenennen</translation>
-    </message>
-    <message>
-        <source>Ctrl+D</source>
-        <translation>Ctrl+D</translation>
-    </message>
-    <message>
-        <source>Remove</source>
-        <translation>Entfernen</translation>
-    </message>
-    <message>
-        <source>Untitled</source>
-        <translation>Ohne Titel</translation>
-    </message>
-    <message>
-        <source>Add Bookmark...</source>
-        <translation>Lesezeichen hinzufügen ...</translation>
-    </message>
-    <message>
-        <source>Delete Bookmark</source>
-        <translation>Lesezeichen löschen</translation>
-    </message>
-    <message>
-        <source>Rename Folder</source>
-        <translation>Ordner umbenennen</translation>
-    </message>
-    <message>
-        <source>Show Bookmark</source>
-        <translation>Lesezeichen öffnen</translation>
-    </message>
-    <message>
-        <source>Delete Folder</source>
-        <translation>Ordner löschen</translation>
-    </message>
-    <message>
-        <source>Manage Bookmarks...</source>
-        <translation>Lesezeichen verwalten...</translation>
-    </message>
-</context>
-<context>
-    <name>TabBar</name>
-    <message>
-        <source>Add Bookmark for this Page...</source>
-        <translation>Lesezeichen für diese Seite hinzufügen ...</translation>
-    </message>
-    <message>
-        <source>Close Other Tabs</source>
-        <translation>Andere Reiter schließen</translation>
-    </message>
-    <message>
-        <source>&amp;Close Tab</source>
-        <translation>Reiter &amp;schließen</translation>
-    </message>
-    <message>
-        <source>(Untitled)</source>
-        <translation>(Ohne Titel)</translation>
-    </message>
-    <message>
-        <source>New &amp;Tab</source>
-        <translation>Neuer &amp;Reiter</translation>
-    </message>
-</context>
-<context>
-    <name>GlobalActions</name>
-    <message>
-        <source>&amp;Back</source>
-        <translation>&amp;Rückwärts</translation>
-    </message>
-    <message>
-        <source>&amp;Find</source>
-        <translation>&amp;Suchen</translation>
-    </message>
-    <message>
-        <source>&amp;Home</source>
-        <translation>&amp;Startseite</translation>
-    </message>
-    <message>
-        <source>ALT+Home</source>
-        <translation>ALT+Home</translation>
-    </message>
-    <message>
-        <source>Zoom &amp;out</source>
-        <translation>Ver&amp;kleinern</translation>
-    </message>
-    <message>
-        <source>Zoom &amp;in</source>
-        <translation>&amp;Vergrößern</translation>
-    </message>
-    <message>
-        <source>&amp;Copy selected Text</source>
-        <translation>Ausgewählten Text &amp;kopieren</translation>
-    </message>
-    <message>
-        <source>&amp;Print...</source>
-        <translation>&amp;Drucken ...</translation>
-    </message>
-    <message>
-        <source>&amp;Forward</source>
-        <translation>&amp;Vorwärts</translation>
-    </message>
-    <message>
-        <source>&amp;Find in Text...</source>
-        <translation>&amp;Textsuche ...</translation>
-    </message>
-</context>
-<context>
-    <name>SearchWidget</name>
-    <message>
-        <source>&amp;Copy</source>
-        <translation>&amp;Kopieren</translation>
-    </message>
-    <message>
-        <source>Open Link in New Tab</source>
-        <translation>Link in neuem Reiter öffnen</translation>
-    </message>
-    <message>
-        <source>Select All</source>
-        <translation>Alles markieren</translation>
-    </message>
-    <message>
-        <source>Copy &amp;Link Location</source>
-        <translation>&amp;Link-Adresse kopieren</translation>
-    </message>
-</context>
-<context>
-    <name>HelpEngineWrapper</name>
-    <message>
-        <source>Unfiltered</source>
-        <translation>Ungefiltert</translation>
-    </message>
-</context>
-<context>
-    <name>CmdLineParser</name>
-    <message>
-        <source>Error</source>
-        <translation>Fehler</translation>
-    </message>
-    <message>
-        <source>Usage: assistant [Options]
-
--collectionFile file       Uses the specified collection
-                           file instead of the default one
--showUrl url               Shows the document with the
-                           url.
--enableRemoteControl       Enables Assistant to be
-                           remotely controlled.
--show widget               Shows the specified dockwidget
-                           which can be &quot;contents&quot;, &quot;index&quot;,
-                           &quot;bookmarks&quot; or &quot;search&quot;.
--activate widget           Activates the specified dockwidget
-                           which can be &quot;contents&quot;, &quot;index&quot;,
-                           &quot;bookmarks&quot; or &quot;search&quot;.
--hide widget               Hides the specified dockwidget
-                           which can be &quot;contents&quot;, &quot;index&quot;
-                           &quot;bookmarks&quot; or &quot;search&quot;.
--register helpFile         Registers the specified help file
-                           (.qch) in the given collection
-                           file.
--unregister helpFile       Unregisters the specified help file
-                           (.qch) from the give collection
-                           file.
--setCurrentFilter filter   Set the filter as the active filter.
--remove-search-index       Removes the full text search index.
--rebuild-search-index      Re-builds the full text search index (potentially slow).
--quiet                     Does not display any error or
-                           status message.
--help                      Displays this help.
-</source>
-        <translation>Usage: assistant [Options]
-
--collectionFile file       Uses the specified collection
-                           file instead of the default one
--showUrl url               Shows the document with the
-                           url.
--enableRemoteControl       Enables Assistant to be
-                           remotely controlled.
--show widget               Shows the specified dockwidget
-                           which can be &quot;contents&quot;, &quot;index&quot;,
-                           &quot;bookmarks&quot; or &quot;search&quot;.
--activate widget           Activates the specified dockwidget
-                           which can be &quot;contents&quot;, &quot;index&quot;,
-                           &quot;bookmarks&quot; or &quot;search&quot;.
--hide widget               Hides the specified dockwidget
-                           which can be &quot;contents&quot;, &quot;index&quot;
-                           &quot;bookmarks&quot; or &quot;search&quot;.
--register helpFile         Registers the specified help file
-                           (.qch) in the given collection
-                           file.
--unregister helpFile       Unregisters the specified help file
-                           (.qch) from the give collection
-                           file.
--setCurrentFilter filter   Set the filter as the active filter.
--remove-search-index       Removes the full text search index.
--rebuild-search-index      Re-builds the full text search index (potentially slow).
--quiet                     Does not display any error or
-                           status message.
--help                      Displays this help.
-</translation>
-    </message>
-    <message>
-        <source>Missing URL.</source>
-        <translation>Fehlende URL.</translation>
-    </message>
-    <message>
-        <source>Missing collection file.</source>
-        <translation>Fehlende Katalogdatei.</translation>
-    </message>
-    <message>
-        <source>The collection file &apos;%1&apos; does not exist.</source>
-        <translation>Die Katalogdatei &apos;%1&apos; existiert nicht.</translation>
-    </message>
-    <message>
-        <source>The Qt help file &apos;%1&apos; does not exist.</source>
-        <translation>Die Hilfedatei &apos;%1&apos; existiert nicht.</translation>
-    </message>
-    <message>
-        <source>Missing help file.</source>
-        <translation>Fehlende Hilfedatei.</translation>
-    </message>
-    <message>
-        <source>Unknown widget: %1</source>
-        <translation>Unbekanntes Widget-Objekt: %1</translation>
-    </message>
-    <message>
-        <source>Notice</source>
-        <translation>Hinweis</translation>
-    </message>
-    <message>
-        <source>Missing filter argument.</source>
-        <translation>Das Filter-Argument fehlt.</translation>
-    </message>
-    <message>
-        <source>Missing widget.</source>
-        <translation>Fehlendes Widget-Objekt.</translation>
-    </message>
-    <message>
-        <source>Unknown option: %1</source>
-        <translation>Unbekannte Option: %1</translation>
-    </message>
-    <message>
-        <source>Invalid URL &apos;%1&apos;.</source>
-        <translation>Ungültige URL &apos;%1&apos;.</translation>
-    </message>
-</context>
-<context>
-    <name>FilterNameDialogClass</name>
-    <message>
-        <source>Filter Name:</source>
-        <translation>Filtername:</translation>
-    </message>
-    <message>
-        <source>Add Filter Name</source>
-        <translation>Filternamen hinzufügen</translation>
-    </message>
-</context>
-<context>
-    <name>TopicChooser</name>
-    <message>
-        <source>Choose a topic for &lt;b&gt;%1&lt;/b&gt;:</source>
-        <translation>Wählen Sie ein Thema für &lt;b&gt;%1&lt;/b&gt;:</translation>
-    </message>
-    <message>
-        <source>&amp;Close</source>
-        <translation>&amp;Schließen</translation>
-    </message>
-    <message>
-        <source>Choose Topic</source>
-        <translation>Thema wählen</translation>
-    </message>
-    <message>
-        <source>Filter</source>
-        <translation>Filter</translation>
-    </message>
-    <message>
-        <source>&amp;Display</source>
-        <translation>&amp;Anzeigen</translation>
-    </message>
-    <message>
-        <source>&amp;Topics</source>
-        <translation>&amp;Themen</translation>
-    </message>
-</context>
-<context>
-    <name>AboutDialog</name>
-    <message>
-        <source>&amp;Close</source>
-        <translation>&amp;Schließen</translation>
-    </message>
-</context>
-<context>
-    <name>OpenPagesWidget</name>
-    <message>
-        <source>Close %1</source>
-        <translation>Schließe %1</translation>
-    </message>
-    <message>
-        <source>Close All Except %1</source>
-        <translation>Alle außer %1 schließen</translation>
-    </message>
-</context>
-<context>
-    <name>Assistant</name>
-    <message>
-        <source>Documentation successfully registered.</source>
-        <translation>Dokumentation erfolgreich registriert.</translation>
-    </message>
-    <message>
-        <source>Documentation successfully unregistered.</source>
-        <translation>Dokumentation erfolgreich entfernt.</translation>
-    </message>
-    <message>
-        <source>Cannot load sqlite database driver!</source>
-        <translation>Der Datenbanktreiber für SQLite kann nicht geladen werden.</translation>
-    </message>
-    <message>
-        <source>Error: %1</source>
-        <translation>Fehler: %1</translation>
-    </message>
-    <message>
-        <source>Could not unregister documentation file
-%1
-
-Reason:
-%2</source>
-        <translation>Registrierung der Dokumentationsdatei %1 kann nicht aufgehoben werden
-
-Grund:
-%2</translation>
-    </message>
-    <message>
-        <source>Could not register documentation file
-%1
-
-Reason:
-%2</source>
-        <translation>Dokumentationsdatei %1 kann nicht registriert werden
-
-Grund:
-%2</translation>
-    </message>
-    <message>
-        <source>Error creating collection file &apos;%1&apos;: %2.</source>
-        <translation>Fehler beim Erstellen der Katalogdatei &apos;%1&apos;: %2.</translation>
-    </message>
-    <message>
-        <source>Error reading collection file &apos;%1&apos;: %2.</source>
-        <translation>Fehler beim Lesen der Katalogdatei &apos;%1&apos;: %2.</translation>
-    </message>
-    <message>
-        <source>Error registering documentation file &apos;%1&apos;: %2</source>
-        <translation>Beim Registrieren der Dokumentationsdatei &apos;%1&apos; trat ein Fehler auf: %2</translation>
-    </message>
-</context>
-<context>
-    <name>BookmarkItem</name>
-    <message>
-        <source>New Folder</source>
-        <translation>Neuer Ordner</translation>
-    </message>
-    <message>
-        <source>Untitled</source>
-        <translation>Ohne Titel</translation>
-    </message>
-</context>
-<context>
-    <name>IndexWindow</name>
-    <message>
-        <source>&amp;Look for:</source>
-        <translation>Suchen &amp;nach:</translation>
-    </message>
-    <message>
-        <source>Open Link in New Tab</source>
-        <translation>Link in neuem Reiter öffnen</translation>
-    </message>
-    <message>
-        <source>Open Link</source>
-        <translation>Link öffnen</translation>
-    </message>
-</context>
-<context>
-    <name>ContentWindow</name>
-    <message>
-        <source>Open Link in New Tab</source>
-        <translation>Link in neuem Reiter öffnen</translation>
-    </message>
-    <message>
-        <source>Open Link</source>
-        <translation>Link öffnen</translation>
-    </message>
-</context>
-<context>
-    <name>RemoteControl</name>
-    <message>
-        <source>Received Command: %1 %2</source>
-        <translation>Empfangenes Kommando: %1 : %2</translation>
-    </message>
-    <message>
-        <source>Debugging Remote Control</source>
-        <translation>Debugging Remote Control</translation>
-    </message>
-</context>
-<context>
-    <name>CentralWidget</name>
-    <message>
-        <source>Print Document</source>
-        <translation>Drucken</translation>
-    </message>
-</context>
-</TS>
diff --git a/translations/designer_de.ts b/translations/designer_de.ts
deleted file mode 100755
index c3fe7ae0890ad9d466d006812d458ab3a1ebbfc3..0000000000000000000000000000000000000000
--- a/translations/designer_de.ts
+++ /dev/null
@@ -1,5691 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<context>
-    <name>QtGradientEditor</name>
-    <message>
-        <source>%</source>
-        <translation>%</translation>
-    </message>
-    <message>
-        <source>1</source>
-        <translation>1</translation>
-    </message>
-    <message>
-        <source>2</source>
-        <translation>2</translation>
-    </message>
-    <message>
-        <source>3</source>
-        <translation>3</translation>
-    </message>
-    <message>
-        <source>4</source>
-        <translation>4</translation>
-    </message>
-    <message>
-        <source>5</source>
-        <translation>5</translation>
-    </message>
-    <message>
-        <source>&gt;</source>
-        <translation>&gt;</translation>
-    </message>
-    <message>
-        <source>A</source>
-        <translation>A</translation>
-    </message>
-    <message>
-        <source>H</source>
-        <translation>H</translation>
-    </message>
-    <message>
-        <source>S</source>
-        <translation>S</translation>
-    </message>
-    <message>
-        <source>V</source>
-        <translation>V</translation>
-    </message>
-    <message>
-        <source>...</source>
-        <translation>...</translation>
-    </message>
-    <message>
-        <source>HSV</source>
-        <translation>HSV</translation>
-    </message>
-    <message>
-        <source>Hue</source>
-        <translation>Farbton</translation>
-    </message>
-    <message>
-        <source>Pad</source>
-        <translation>Auffüllen</translation>
-    </message>
-    <message>
-        <source>RGB</source>
-        <translation>RGB</translation>
-    </message>
-    <message>
-        <source>Sat</source>
-        <translation>Sättigung</translation>
-    </message>
-    <message>
-        <source>Val</source>
-        <translation>Wert</translation>
-    </message>
-    <message>
-        <source>Form</source>
-        <translation>Form</translation>
-    </message>
-    <message>
-        <source>Type</source>
-        <translation>Typ</translation>
-    </message>
-    <message>
-        <source>Zoom</source>
-        <translation>Vergrößern</translation>
-    </message>
-    <message>
-        <source>Alpha</source>
-        <translation>Alpha</translation>
-    </message>
-    <message>
-        <source>Angle</source>
-        <translation>Winkel</translation>
-    </message>
-    <message>
-        <source>Color</source>
-        <translation>Farbe</translation>
-    </message>
-    <message>
-        <source>Value</source>
-        <translation>Wert</translation>
-    </message>
-    <message>
-        <source>Zoom In</source>
-        <translation>Vergrößern</translation>
-    </message>
-    <message>
-        <source>This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient&apos;s type such as start and final point, radius, etc. by drag &amp; drop.</source>
-        <translation>Dieser Bereich zeigt eine Vorschau des in Bearbeitung befindlichen Gradienten. Hier können Gradienttyp-spezifische Parameter, wie Start- und Endpunkt, Radius etc. per Drag &amp; Drop bearbeitet werden.</translation>
-    </message>
-    <message>
-        <source>Gradient Editor</source>
-        <translation>Gradienten bearbeiten</translation>
-    </message>
-    <message>
-        <source>Conical Type</source>
-        <translation>Typ konisch</translation>
-    </message>
-    <message>
-        <source>Toggle details extension</source>
-        <translation>Weiter Optionen einblenden</translation>
-    </message>
-    <message>
-        <source>Linear</source>
-        <translation>Linear</translation>
-    </message>
-    <message>
-        <source>Radial</source>
-        <translation>Radial</translation>
-    </message>
-    <message>
-        <source>Radius</source>
-        <translation>Radius</translation>
-    </message>
-    <message>
-        <source>Repeat</source>
-        <translation>Wiederholen</translation>
-    </message>
-    <message>
-        <source>Pad Spread</source>
-        <translation>Auffüllen</translation>
-    </message>
-    <message>
-        <source>Spread</source>
-        <translation>Ausbreitung</translation>
-    </message>
-    <message>
-        <source>Central X</source>
-        <translation>Mittelpunkt X</translation>
-    </message>
-    <message>
-        <source>Central Y</source>
-        <translation>Mittelpunkt Y</translation>
-    </message>
-    <message>
-        <source>Zoom Out</source>
-        <translation>Verkleinern</translation>
-    </message>
-    <message>
-        <source>Position</source>
-        <translation>Position</translation>
-    </message>
-    <message>
-        <source>Gradient Stops Editor</source>
-        <translation>Bezugspunkte</translation>
-    </message>
-    <message>
-        <source>Radial Type</source>
-        <translation>Typ radial</translation>
-    </message>
-    <message>
-        <source>Linear Type</source>
-        <translation>Typ linear</translation>
-    </message>
-    <message>
-        <source>This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag &amp; drop the handle to reposition it. Use right mouse button to popup context menu with extra actions.</source>
-        <translation>Diese Fläche dient zum Bearbeiten der Bezugspunkte. Doppelklicken Sie auf einen Bezugspunkt, um ihn zu duplizieren. Doppelklicken Sie auf die Fläche, um einen neuen Bezugspunkt zu erzeugen. Benutzen Sie Drag &amp; Drop um einen Punkt zu verschieben. Die rechte Maustaste aktiviert ein Menü mit weiteren Optionen.</translation>
-    </message>
-    <message>
-        <source>Reflect</source>
-        <translation>Spiegeln</translation>
-    </message>
-    <message>
-        <source>Conical</source>
-        <translation>Konisch</translation>
-    </message>
-    <message>
-        <source>Start X</source>
-        <translation>Anfangswert X</translation>
-    </message>
-    <message>
-        <source>Start Y</source>
-        <translation>Anfangswert Y</translation>
-    </message>
-    <message>
-        <source>Reset Zoom</source>
-        <translation>Vergrößerung zurücksetzen</translation>
-    </message>
-    <message>
-        <source>Saturation</source>
-        <translation>Sättigung</translation>
-    </message>
-    <message>
-        <source>Show RGB specification</source>
-        <translation>RGB-Spezifikation anzeigen</translation>
-    </message>
-    <message>
-        <source>Current stop&apos;s position</source>
-        <translation>Position des Bezugspunkts</translation>
-    </message>
-    <message>
-        <source>Show HSV specification</source>
-        <translation>HSV-Spezifikation anzeigen</translation>
-    </message>
-    <message>
-        <source>Final X</source>
-        <translation>Endwert X</translation>
-    </message>
-    <message>
-        <source>Final Y</source>
-        <translation>Endwert Y</translation>
-    </message>
-    <message>
-        <source>Focal X</source>
-        <translation>Fokus X</translation>
-    </message>
-    <message>
-        <source>Focal Y</source>
-        <translation>Fokus Y</translation>
-    </message>
-    <message>
-        <source>Repeat Spread</source>
-        <translation>Wiederholen</translation>
-    </message>
-    <message>
-        <source>Current stop&apos;s color</source>
-        <translation>Farbe des Bezugspunkts</translation>
-    </message>
-    <message>
-        <source>Reflect Spread</source>
-        <translation>Spiegeln</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::NewFormWidget</name>
-    <message>
-        <source>0</source>
-        <translation>0</translation>
-    </message>
-    <message>
-        <source>Choose a template for a preview</source>
-        <translation>Wählen Sie eine Vorlage für die Vorschau</translation>
-    </message>
-    <message>
-        <source>None</source>
-        <translation>Kein</translation>
-    </message>
-    <message>
-        <source>Custom Widgets</source>
-        <translation>Benutzerdefinierte Widgets</translation>
-    </message>
-    <message>
-        <source>Unable to open the form template file &apos;%1&apos;: %2</source>
-        <translation>Die Formularvorlage &apos;%1&apos; konnte nicht geöffnet werden: %2</translation>
-    </message>
-    <message>
-        <source>Screen Size:</source>
-        <translation>Bildschirmgröße:</translation>
-    </message>
-    <message>
-        <source>QVGA portrait (240x320)</source>
-        <translation>QVGA Hochformat (240x320)</translation>
-    </message>
-    <message>
-        <source>Error loading form</source>
-        <translation>Das Formular konnte nicht geladen werden</translation>
-    </message>
-    <message>
-        <source>Default size</source>
-        <translation>Vorgabe</translation>
-    </message>
-    <message>
-        <source>VGA portrait (480x640)</source>
-        <translation>VGA Hochformat (480x640)</translation>
-    </message>
-    <message>
-        <source>QVGA landscape (320x240)</source>
-        <translation>QVGA Querformat (320x240)</translation>
-    </message>
-    <message>
-        <source>Device:</source>
-        <translation>Geräteprofil:</translation>
-    </message>
-    <message>
-        <source>Embedded Design</source>
-        <translation>Embedded-Entwurf</translation>
-    </message>
-    <message>
-        <source>Internal error: No template selected.</source>
-        <translation>Interner Fehler: Es ist keine Vorlage selektiert.</translation>
-    </message>
-    <message>
-        <source>VGA landscape (640x480)</source>
-        <translation>VGA Querformat (640x480)</translation>
-    </message>
-    <message>
-        <source>Widgets</source>
-        <translation>Widgets</translation>
-    </message>
-</context>
-<context>
-    <name>PluginDialog</name>
-    <message>
-        <source>1</source>
-        <translation>1</translation>
-    </message>
-    <message>
-        <source>Plugin Information</source>
-        <translation>Plugins</translation>
-    </message>
-</context>
-<context>
-    <name>QtToolBarDialog</name>
-    <message>
-        <source>1</source>
-        <translation>1</translation>
-    </message>
-    <message>
-        <source>-&gt;</source>
-        <translation>-&gt;</translation>
-    </message>
-    <message>
-        <source>&lt;-</source>
-        <translation>&lt;-</translation>
-    </message>
-    <message>
-        <source>Up</source>
-        <translation>Nach oben</translation>
-    </message>
-    <message>
-        <source>New</source>
-        <translation>Neu</translation>
-    </message>
-    <message>
-        <source>Down</source>
-        <translation>Nach unten</translation>
-    </message>
-    <message>
-        <source>&lt; S E P A R A T O R &gt;</source>
-        <translation>&lt; T R E N N E R &gt;</translation>
-    </message>
-    <message>
-        <source>Move action down</source>
-        <translation>Aktion eins nach unten</translation>
-    </message>
-    <message>
-        <source>Remove</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>Rename</source>
-        <translation>Umbenennen</translation>
-    </message>
-    <message>
-        <source>Toolbars</source>
-        <translation>Werkzeugleisten</translation>
-    </message>
-    <message>
-        <source>Rename toolbar</source>
-        <translation>Werkzeugleiste umbenennen</translation>
-    </message>
-    <message>
-        <source>Actions</source>
-        <translation>Aktionen</translation>
-    </message>
-    <message>
-        <source>Custom Toolbar</source>
-        <translation>Benutzerdefinierte Werkzeugleiste</translation>
-    </message>
-    <message>
-        <source>Remove action from toolbar</source>
-        <translation>Aktion aus Werkzeugleiste entfernen</translation>
-    </message>
-    <message>
-        <source>Move action up</source>
-        <translation>Aktion eins nach oben</translation>
-    </message>
-    <message>
-        <source>Add new toolbar</source>
-        <translation>Neue Werkzeugleiste hinzufügen</translation>
-    </message>
-    <message>
-        <source>Current Toolbar Actions</source>
-        <translation>Aktionen</translation>
-    </message>
-    <message>
-        <source>Remove selected toolbar</source>
-        <translation>Ausgewählte Werkzeugleiste &apos;%1&apos; löschen</translation>
-    </message>
-    <message>
-        <source>Customize Toolbars</source>
-        <translation>Werkzeugleisten anpassen</translation>
-    </message>
-    <message>
-        <source>Add action to toolbar</source>
-        <translation>Aktion zu Werkzeugleiste hinzufügen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::TreeWidgetEditor</name>
-    <message>
-        <source>1</source>
-        <translation>1</translation>
-    </message>
-    <message>
-        <source>D</source>
-        <translation>D</translation>
-    </message>
-    <message>
-        <source>L</source>
-        <translation>L</translation>
-    </message>
-    <message>
-        <source>R</source>
-        <translation>R</translation>
-    </message>
-    <message>
-        <source>U</source>
-        <translation>U</translation>
-    </message>
-    <message>
-        <source>&amp;New</source>
-        <translation>&amp;Neu</translation>
-    </message>
-    <message>
-        <source>Common properties</source>
-        <translation>Gemeinsame Eigenschaften</translation>
-    </message>
-    <message>
-        <source>&amp;Items</source>
-        <translation>&amp;Elemente</translation>
-    </message>
-    <message>
-        <source>Edit Tree Widget</source>
-        <translation>Tree Widget ändern</translation>
-    </message>
-    <message>
-        <source>New Column</source>
-        <translation>Neue Spalte</translation>
-    </message>
-    <message>
-        <source>Move Item Up</source>
-        <translation>Element eins nach oben</translation>
-    </message>
-    <message>
-        <source>Properties &amp;&lt;&lt;</source>
-        <translation>Eigenschaften &amp;&lt;&lt;</translation>
-    </message>
-    <message>
-        <source>Properties &amp;&gt;&gt;</source>
-        <translation>Eigenschaften &amp;&gt;&gt;</translation>
-    </message>
-    <message>
-        <source>Tree Items</source>
-        <translation>Elemente</translation>
-    </message>
-    <message>
-        <source>Delete Item</source>
-        <translation>Element löschen</translation>
-    </message>
-    <message>
-        <source>&amp;Columns</source>
-        <translation>&amp;Spalten</translation>
-    </message>
-    <message>
-        <source>Move Item Right (as a First Subitem of the Next Sibling Item)</source>
-        <translation>Element nach rechts (als untergeordnetes Element des nächsten gleichrangigen Elements)</translation>
-    </message>
-    <message>
-        <source>&amp;Delete</source>
-        <translation>&amp;Löschen</translation>
-    </message>
-    <message>
-        <source>New Subitem</source>
-        <translation>Neues untergeordnetes Element</translation>
-    </message>
-    <message>
-        <source>Move Item Left (before Parent Item)</source>
-        <translation>Element nach links (vor übergeordnetes Element)</translation>
-    </message>
-    <message>
-        <source>New Item</source>
-        <translation>Neues Element</translation>
-    </message>
-    <message>
-        <source>Move Item Down</source>
-        <translation>Element eins nach unten</translation>
-    </message>
-    <message>
-        <source>Per column properties</source>
-        <translation>Spalteneigenschaften</translation>
-    </message>
-    <message>
-        <source>New &amp;Subitem</source>
-        <translation>Neues &amp;untergeordnetes Element</translation>
-    </message>
-</context>
-<context>
-    <name>QtResourceEditorDialog</name>
-    <message>
-        <source>A</source>
-        <translation>A</translation>
-    </message>
-    <message>
-        <source>I</source>
-        <translation>I</translation>
-    </message>
-    <message>
-        <source>N</source>
-        <translation>N</translation>
-    </message>
-    <message>
-        <source>R</source>
-        <translation>L</translation>
-    </message>
-    <message>
-        <source>Change Language</source>
-        <translation>Sprache ändern</translation>
-    </message>
-    <message>
-        <source>Copy</source>
-        <translation>Kopieren</translation>
-    </message>
-    <message>
-        <source>Keep</source>
-        <translation>Beibehalten</translation>
-    </message>
-    <message>
-        <source>Skip</source>
-        <translation>Ãœberspringen</translation>
-    </message>
-    <message>
-        <source>Could not overwrite %1.</source>
-        <translation>%1 konnte nicht überschrieben werden.</translation>
-    </message>
-    <message>
-        <source>Resource files (*.qrc)</source>
-        <translation>Ressourcendateien (*.qrc)</translation>
-    </message>
-    <message>
-        <source>Clone Prefix</source>
-        <translation>Präfix doppeln</translation>
-    </message>
-    <message>
-        <source>New Resource File</source>
-        <translation>Neue Ressourcendatei</translation>
-    </message>
-    <message>
-        <source>%1 [missing]</source>
-        <translation>%1 [fehlt]</translation>
-    </message>
-    <message>
-        <source>Could not copy
-%1
-to
-%2</source>
-        <translation>Der Kopiervorgang schlug fehl:
-%1
-zu:
-%2</translation>
-    </message>
-    <message>
-        <source>A parse error occurred at line %1, column %2 of %3:
-%4</source>
-        <translation>In der Datei %3 wurde bei Zeile %1, Spalte %2 ein Fehler gefunden:
- %4</translation>
-    </message>
-    <message>
-        <source>Edit Resources</source>
-        <translation>Ressourcen bearbeiten</translation>
-    </message>
-    <message>
-        <source>Change Alias</source>
-        <translation>Alias ändern</translation>
-    </message>
-    <message>
-        <source>Save Resource File</source>
-        <translation>Ressourcendatei speichern</translation>
-    </message>
-    <message>
-        <source>Move Up</source>
-        <translation>Nach oben</translation>
-    </message>
-    <message>
-        <source>Enter the suffix which you want to add to the names of the cloned files.
-This could for example be a language extension like &quot;_de&quot;.</source>
-        <translation>Bitte geben Sie den Suffix ein, der an den Namen der gedoppelten Dateien angehängt werden soll.
-Dies kann zum Beispiel eine Sprachkennung wie &quot;_de&quot; sein.</translation>
-    </message>
-    <message>
-        <source>Dialog</source>
-        <translation>Dialog</translation>
-    </message>
-    <message>
-        <source>Open Resource File</source>
-        <translation>Ressourcendatei öffnen</translation>
-    </message>
-    <message>
-        <source>&lt;p&gt;To resolve the issue, press:&lt;/p&gt;&lt;table&gt;&lt;tr&gt;&lt;th align=&quot;left&quot;&gt;Copy&lt;/th&gt;&lt;td&gt;to copy the file to the resource file&apos;s parent directory.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th align=&quot;left&quot;&gt;Copy As...&lt;/th&gt;&lt;td&gt;to copy the file into a subdirectory of the resource file&apos;s parent directory.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th align=&quot;left&quot;&gt;Keep&lt;/th&gt;&lt;td&gt;to use its current location.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
-        <translation>&lt;p&gt;Bitte wählen Sie:&lt;/p&gt;&lt;table&gt;&lt;tr&gt;&lt;th align=&quot;left&quot;&gt;Kopieren&lt;/th&gt;&lt;td&gt;um die Datei in das Verzeichnis der Ressourcendatei zu kopieren.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th align=&quot;left&quot;&gt;Kopieren nach...&lt;/th&gt;&lt;td&gt;um die Datei in ein Unterverzeichnis der Ressourcendatei zu kopieren.&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;th align=&quot;left&quot;&gt;Beibehalten&lt;/th&gt;&lt;td&gt;um die Datei in ihrem gegenwärtigen Verzeichnis zu verwenden.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
-    </message>
-    <message>
-        <source>New...</source>
-        <translation>Neu...</translation>
-    </message>
-    <message>
-        <source>Add Prefix</source>
-        <translation>Präfix hinzufügen</translation>
-    </message>
-    <message>
-        <source>Remove</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>Import Resource File</source>
-        <translation>Ressourcendatei importieren</translation>
-    </message>
-    <message>
-        <source>&lt;p&gt;The selected file:&lt;/p&gt;&lt;p&gt;%1&lt;/p&gt;&lt;p&gt;is outside of the current resource file&apos;s directory:&lt;/p&gt;&lt;p&gt;%2&lt;/p&gt;&lt;p&gt;Please select another path within this directory.&lt;p&gt;</source>
-        <translation>&lt;p&gt;Die gewählte Datei: &lt;/p&gt;&lt;p&gt;%1&lt;/p&gt;&lt;p&gt;befindet sich außerhalb des Verzeichnisses der Ressourcendatei:&lt;/p&gt;&lt;p&gt;%2&lt;/p&gt;&lt;p&gt;Bitte wählen Sie einen anderen Pfad, der im Verzeichnis der Ressourcendatei enthalten ist.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <source>Add Files</source>
-        <translation>Dateien hinzufügen</translation>
-    </message>
-    <message>
-        <source>%1 [read-only]</source>
-        <translation>%1 [schreibgeschützt]</translation>
-    </message>
-    <message>
-        <source>Open...</source>
-        <translation>Öffnen...</translation>
-    </message>
-    <message>
-        <source>Prefix / Path</source>
-        <translation>Präfix / Pfad</translation>
-    </message>
-    <message>
-        <source>Could not write %1: %2</source>
-        <translation>Die Datei %1konnte nicht geschrieben werden: %2</translation>
-    </message>
-    <message>
-        <source>&lt;no prefix&gt;</source>
-        <translation>&lt;kein Präfix&gt;</translation>
-    </message>
-    <message>
-        <source>The file does not appear to be a resource file; element &apos;%1&apos; was found where &apos;%2&apos; was expected.</source>
-        <translation>Die Datei ist offenbar keine Ressourcendatei; an Stelle des erwarteten Elements &apos;%2&apos; wurde das Element &apos;%1&apos; gefunden.</translation>
-    </message>
-    <message>
-        <source>&lt;p&gt;&lt;b&gt;Warning:&lt;/b&gt; The file&lt;/p&gt;&lt;p&gt;%1&lt;/p&gt;&lt;p&gt;is outside of the current resource file&apos;s parent directory.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;&lt;b&gt;Hinweis:&lt;/b&gt;&lt;p&gt;Die gewählte Datei: &lt;/p&gt;&lt;p&gt;%1&lt;/p&gt;&lt;p&gt;befindet sich außerhalb des Verzeichnisses der Ressourcendatei:&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <source>New Resource</source>
-        <translation>Neue Ressource</translation>
-    </message>
-    <message>
-        <source>Copy As</source>
-        <translation>Kopieren nach</translation>
-    </message>
-    <message>
-        <source>Resource Warning</source>
-        <translation>Ressourcen - Warnung</translation>
-    </message>
-    <message>
-        <source>Copy As...</source>
-        <translation>Kopieren nach...</translation>
-    </message>
-    <message>
-        <source>Remove File</source>
-        <translation>Datei löschen</translation>
-    </message>
-    <message>
-        <source>Add Files...</source>
-        <translation>Dateien hinzufügen...</translation>
-    </message>
-    <message>
-        <source>%1 already exists.
-Do you want to replace it?</source>
-        <translation>Die Datei %1 existiert bereits.
-Wollen Sie sie überschreiben?</translation>
-    </message>
-    <message>
-        <source>Move Down</source>
-        <translation>Nach unten</translation>
-    </message>
-    <message>
-        <source>newPrefix</source>
-        <translation>newPrefix</translation>
-    </message>
-    <message>
-        <source>Change Prefix</source>
-        <translation>Präfix ändern</translation>
-    </message>
-    <message>
-        <source>New File</source>
-        <translation>Neue Datei</translation>
-    </message>
-    <message>
-        <source>Remove Resource or File</source>
-        <translation>Datei oder Ressource löschen</translation>
-    </message>
-    <message>
-        <source>&lt;html&gt;&lt;p&gt;&lt;b&gt;Warning:&lt;/b&gt; There have been problems while reloading the resources:&lt;/p&gt;&lt;pre&gt;%1&lt;/pre&gt;&lt;/html&gt;</source>
-        <translation>&lt;html&gt;&lt;p&gt;&lt;b&gt;Warnung:&lt;/b&gt; Beim Neuladen der Ressourcen traten Fehler auf:&lt;/p&gt;&lt;pre&gt;%1&lt;/pre&gt;&lt;/html&gt;</translation>
-    </message>
-    <message>
-        <source>Clone Prefix...</source>
-        <translation>Präfix doppeln...</translation>
-    </message>
-    <message>
-        <source>Incorrect Path</source>
-        <translation>Fehlerhafte Pfadangabe</translation>
-    </message>
-    <message>
-        <source>Language / Alias</source>
-        <translation>Sprache / Alias</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::QtGradientStopsController</name>
-    <message>
-        <source>B</source>
-        <translation>B</translation>
-    </message>
-    <message>
-        <source>G</source>
-        <translation>G</translation>
-    </message>
-    <message>
-        <source>H</source>
-        <translation>H</translation>
-    </message>
-    <message>
-        <source>R</source>
-        <translation>R</translation>
-    </message>
-    <message>
-        <source>S</source>
-        <translation>S</translation>
-    </message>
-    <message>
-        <source>V</source>
-        <translation>V</translation>
-    </message>
-    <message>
-        <source>Hue</source>
-        <translation>Farbton</translation>
-    </message>
-    <message>
-        <source>Red</source>
-        <translation>Rot</translation>
-    </message>
-    <message>
-        <source>Sat</source>
-        <translation>Sättigung</translation>
-    </message>
-    <message>
-        <source>Val</source>
-        <translation>Wert</translation>
-    </message>
-    <message>
-        <source>Blue</source>
-        <translation>Blau</translation>
-    </message>
-    <message>
-        <source>Green</source>
-        <translation>Grün</translation>
-    </message>
-    <message>
-        <source>Value</source>
-        <translation>Wert</translation>
-    </message>
-    <message>
-        <source>Saturation</source>
-        <translation>Sättigung</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::ItemListEditor</name>
-    <message>
-        <source>D</source>
-        <translation>D</translation>
-    </message>
-    <message>
-        <source>U</source>
-        <translation>U</translation>
-    </message>
-    <message>
-        <source>&amp;New</source>
-        <translation>&amp;Neu</translation>
-    </message>
-    <message>
-        <source>Items List</source>
-        <translation>Liste der Elemente</translation>
-    </message>
-    <message>
-        <source>Move Item Up</source>
-        <translation>Element eins nach oben</translation>
-    </message>
-    <message>
-        <source>Properties &amp;&lt;&lt;</source>
-        <translation>Eigenschaften &amp;&lt;&lt;</translation>
-    </message>
-    <message>
-        <source>Properties &amp;&gt;&gt;</source>
-        <translation>Eigenschaften &amp;&gt;&gt;</translation>
-    </message>
-    <message>
-        <source>Delete Item</source>
-        <translation>Element löschen</translation>
-    </message>
-    <message>
-        <source>&amp;Delete</source>
-        <translation>&amp;Löschen</translation>
-    </message>
-    <message>
-        <source>New Item</source>
-        <translation>Neues Element</translation>
-    </message>
-    <message>
-        <source>Move Item Down</source>
-        <translation>Element eins nach unten</translation>
-    </message>
-</context>
-<context>
-    <name>QtPointFPropertyManager</name>
-    <message>
-        <source>X</source>
-        <translation>X</translation>
-    </message>
-    <message>
-        <source>Y</source>
-        <translation>Y</translation>
-    </message>
-    <message>
-        <source>(%1, %2)</source>
-        <translation>(%1, %2)</translation>
-    </message>
-</context>
-<context>
-    <name>QtPointPropertyManager</name>
-    <message>
-        <source>X</source>
-        <translation>X</translation>
-    </message>
-    <message>
-        <source>Y</source>
-        <translation>Y</translation>
-    </message>
-    <message>
-        <source>(%1, %2)</source>
-        <translation>(%1, %2)</translation>
-    </message>
-</context>
-<context>
-    <name>QtRectFPropertyManager</name>
-    <message>
-        <source>X</source>
-        <translation>X</translation>
-    </message>
-    <message>
-        <source>Y</source>
-        <translation>Y</translation>
-    </message>
-    <message>
-        <source>Width</source>
-        <translation>Breite</translation>
-    </message>
-    <message>
-        <source>[(%1, %2), %3 x %4]</source>
-        <translation>[(%1, %2), %3 x %4]</translation>
-    </message>
-    <message>
-        <source>Height</source>
-        <translation>Höhe</translation>
-    </message>
-</context>
-<context>
-    <name>QtRectPropertyManager</name>
-    <message>
-        <source>X</source>
-        <translation>X</translation>
-    </message>
-    <message>
-        <source>Y</source>
-        <translation>Y</translation>
-    </message>
-    <message>
-        <source>Width</source>
-        <translation>Breite</translation>
-    </message>
-    <message>
-        <source>[(%1, %2), %3 x %4]</source>
-        <translation>[(%1, %2), %3 x %4]</translation>
-    </message>
-    <message>
-        <source>Height</source>
-        <translation>Höhe</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::FormWindow</name>
-    <message>
-        <source>F2</source>
-        <translation>F2</translation>
-    </message>
-    <message>
-        <source>Lay out</source>
-        <translation>Layout</translation>
-    </message>
-    <message>
-        <source>Cannot paste widgets. Designer could not find a container without a layout to paste into.</source>
-        <translation>Die Widgets konnten nicht eingefügt werden, da kein Container gefunden werden konnte, der nicht bereits ein Layout hat.</translation>
-    </message>
-    <message>
-        <source>Raise widgets</source>
-        <translation>Widgets nach vorn bringen</translation>
-    </message>
-    <message>
-        <source>Key Resize</source>
-        <translation>Größe ändern mittels Tastatur</translation>
-    </message>
-    <message>
-        <source>Resize</source>
-        <translation>Größe ändern</translation>
-    </message>
-    <message>
-        <source>Select Ancestor</source>
-        <translation>Übergeordnetes Widget auswählen</translation>
-    </message>
-    <message>
-        <source>Paste error</source>
-        <translation>Fehler beim Einfügen</translation>
-    </message>
-    <message>
-        <source>Drop widget</source>
-        <translation>Widget einfügen</translation>
-    </message>
-    <message>
-        <source>Key Move</source>
-        <translation>Verschieben mittels Tastatur</translation>
-    </message>
-    <message>
-        <source>Paste (%1 widgets, %2 actions)</source>
-        <translation>Einfügen (%1 Widgets, %2 Aktionen)</translation>
-    </message>
-    <message>
-        <source>A QMainWindow-based form does not contain a central widget.</source>
-        <translation>Ein auf QMainWindow basierendes Formular enthält kein zentrales Widget.</translation>
-    </message>
-    <message numerus="yes">
-        <source>Paste %n action(s)</source>
-        <translation>
-            <numerusform>Eine Aktion einfügen</numerusform>
-            <numerusform>%n Aktionen einfügen</numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <source>Paste %n widget(s)</source>
-        <translation>
-            <numerusform>Widget einfügen</numerusform>
-            <numerusform>%n Widgets einfügen</numerusform>
-        </translation>
-    </message>
-    <message>
-        <source>Lower widgets</source>
-        <translation>Widgets nach hinten setzen</translation>
-    </message>
-    <message>
-        <source>Break the layout of the container you want to paste into, select this container and then paste again.</source>
-        <translation>Bitte lösen Sie das Layout des gewünschten Containers auf und wählen Sie ihn erneut aus, um die Widgets einzufügen.</translation>
-    </message>
-    <message>
-        <source>Insert widget &apos;%1&apos;</source>
-        <translation>Widget &apos;%1&apos; einfügen</translation>
-    </message>
-    <message>
-        <source>Edit contents</source>
-        <translation>Ändern</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::SignalSlotEditorPlugin</name>
-    <message>
-        <source>F4</source>
-        <translation>F4</translation>
-    </message>
-    <message>
-        <source>Edit Signals/Slots</source>
-        <translation>Signale und Slots bearbeiten</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::Dialog</name>
-    <message>
-        <source>Up</source>
-        <translation>Hoch</translation>
-    </message>
-    <message>
-        <source>&amp;New</source>
-        <translation>&amp;Neu</translation>
-    </message>
-    <message>
-        <source>Down</source>
-        <translation>Runter</translation>
-    </message>
-    <message>
-        <source>StringList</source>
-        <translation>Liste von Zeichenketten</translation>
-    </message>
-    <message>
-        <source>Move String Down</source>
-        <translation>Zeichenkette eins nach unten</translation>
-    </message>
-    <message>
-        <source>Dialog</source>
-        <translation>Dialog</translation>
-    </message>
-    <message>
-        <source>New String</source>
-        <translation>Neue Zeichenkette</translation>
-    </message>
-    <message>
-        <source>&amp;Delete</source>
-        <translation>&amp;Löschen</translation>
-    </message>
-    <message>
-        <source>&amp;Value:</source>
-        <translation>&amp;Wert:</translation>
-    </message>
-    <message>
-        <source>Move String Up</source>
-        <translation>Zeichenkette eins nach oben</translation>
-    </message>
-    <message>
-        <source>Delete String</source>
-        <translation>Zeichenkette löschen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::DPI_Chooser</name>
-    <message>
-        <source> x </source>
-        <translation> x </translation>
-    </message>
-    <message>
-        <source>System (%1 x %2)</source>
-        <translation>System (%1 x %2)</translation>
-    </message>
-    <message>
-        <source>User defined</source>
-        <translation>Benutzerdefiniert</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::RichTextEditorDialog</name>
-    <message>
-        <source>&amp;OK</source>
-        <translation>&amp;OK</translation>
-    </message>
-    <message>
-        <source>Edit text</source>
-        <translation>Text bearbeiten</translation>
-    </message>
-    <message>
-        <source>Source</source>
-        <translation>Quelltext</translation>
-    </message>
-    <message>
-        <source>Rich Text</source>
-        <translation>Text</translation>
-    </message>
-    <message>
-        <source>&amp;Cancel</source>
-        <translation>&amp;Abbrechen</translation>
-    </message>
-</context>
-<context>
-    <name>IconSelector</name>
-    <message>
-        <source>...</source>
-        <translation>...</translation>
-    </message>
-    <message>
-        <source>Reset</source>
-        <translation>Zurücksetzen</translation>
-    </message>
-    <message>
-        <source>Active Off</source>
-        <translation>Aktiv, aus</translation>
-    </message>
-    <message>
-        <source>The pixmap file &apos;%1&apos; cannot be read.</source>
-        <translation>Die Pixmap-Datei &apos;%1&apos; kann nicht gelesen werden.</translation>
-    </message>
-    <message>
-        <source>Choose a Pixmap</source>
-        <translation>Pixmap-Datei auswählen</translation>
-    </message>
-    <message>
-        <source>Normal Off</source>
-        <translation>Normal, aus</translation>
-    </message>
-    <message>
-        <source>Choose File...</source>
-        <translation>Datei auswählen...</translation>
-    </message>
-    <message>
-        <source>Disabled Off</source>
-        <translation>Nicht verfügbar, aus</translation>
-    </message>
-    <message>
-        <source>All Pixmaps (</source>
-        <translation>Alle Pixmap-Dateien (</translation>
-    </message>
-    <message>
-        <source>Normal On</source>
-        <translation>Normal, ein</translation>
-    </message>
-    <message>
-        <source>Disabled On</source>
-        <translation>Verfügbar, ein</translation>
-    </message>
-    <message>
-        <source>Reset All</source>
-        <translation>Alle zurücksetzen</translation>
-    </message>
-    <message>
-        <source>Selected On</source>
-        <translation>Ausgewählt, ein</translation>
-    </message>
-    <message>
-        <source>Active On</source>
-        <translation>Aktiv, ein</translation>
-    </message>
-    <message>
-        <source>The file &apos;%1&apos; could not be read: %2</source>
-        <translation>Die Datei &apos;%1&apos; konnte nicht gelesen werden: %2</translation>
-    </message>
-    <message>
-        <source>Pixmap Read Error</source>
-        <translation>Fehler beim Lesen der Pixmap</translation>
-    </message>
-    <message>
-        <source>The file &apos;%1&apos; does not appear to be a valid pixmap file: %2</source>
-        <translation>Die Datei &apos;%1&apos; ist keine gültige Pixmap-Datei: %2</translation>
-    </message>
-    <message>
-        <source>Selected Off</source>
-        <translation>Ausgewählt, aus</translation>
-    </message>
-    <message>
-        <source>Choose Resource...</source>
-        <translation>Ressource auswählen...</translation>
-    </message>
-</context>
-<context>
-    <name>PreviewConfigurationWidget</name>
-    <message>
-        <source>...</source>
-        <translation>...</translation>
-    </message>
-    <message>
-        <source>Form</source>
-        <translation>Formular</translation>
-    </message>
-    <message>
-        <source>Style</source>
-        <translation>Stil</translation>
-    </message>
-    <message>
-        <source>Style sheet</source>
-        <translation>Style sheet</translation>
-    </message>
-    <message>
-        <source>Device skin</source>
-        <translation>Geräte-Skin</translation>
-    </message>
-    <message>
-        <source>Print/Preview Configuration</source>
-        <translation>Druck/Vorschau</translation>
-    </message>
-</context>
-<context>
-    <name>QtColorEditWidget</name>
-    <message>
-        <source>...</source>
-        <translation>...</translation>
-    </message>
-</context>
-<context>
-    <name>QtFontEditWidget</name>
-    <message>
-        <source>...</source>
-        <translation>...</translation>
-    </message>
-    <message>
-        <source>Select Font</source>
-        <translation>Schriftart auswählen</translation>
-    </message>
-</context>
-<context>
-    <name>SignalSlotDialogClass</name>
-    <message>
-        <source>...</source>
-        <translation>...</translation>
-    </message>
-    <message>
-        <source>Add</source>
-        <translation>Hinzufügen</translation>
-    </message>
-    <message>
-        <source>Slots</source>
-        <translation>Slots</translation>
-    </message>
-    <message>
-        <source>Delete</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>Signals</source>
-        <translation>Signale</translation>
-    </message>
-    <message>
-        <source>Signals and slots</source>
-        <translation>Signale und Slots</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::NewActionDialog</name>
-    <message>
-        <source>...</source>
-        <translation>...</translation>
-    </message>
-    <message>
-        <source>&amp;Icon:</source>
-        <translation>&amp;Icon:</translation>
-    </message>
-    <message>
-        <source>&amp;Text:</source>
-        <translation>&amp;Text:</translation>
-    </message>
-    <message>
-        <source>T&amp;oolTip:</source>
-        <translation>T&amp;oolTip:</translation>
-    </message>
-    <message>
-        <source>&amp;Shortcut:</source>
-        <translation>Tastenk&amp;ürzel</translation>
-    </message>
-    <message>
-        <source>Object &amp;name:</source>
-        <translation>Objekt&amp;name:</translation>
-    </message>
-    <message>
-        <source>&amp;Checkable:</source>
-        <translation>&amp;Ankreuzbar:</translation>
-    </message>
-    <message>
-        <source>New Action...</source>
-        <translation>Neue Aktion...</translation>
-    </message>
-    <message>
-        <source>Icon th&amp;eme:</source>
-        <translation>Icon-Th&amp;ema:</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::PixmapEditor</name>
-    <message>
-        <source>...</source>
-        <translation>...</translation>
-    </message>
-    <message>
-        <source>Choose File...</source>
-        <translation>Datei auswählen...</translation>
-    </message>
-    <message>
-        <source>Set Icon From Theme...</source>
-        <translation>Icon aus Thema setzen...</translation>
-    </message>
-    <message>
-        <source>Copy Path</source>
-        <translation>Pfad kopieren</translation>
-    </message>
-    <message>
-        <source>Paste Path</source>
-        <translation>Pfad einfügen</translation>
-    </message>
-    <message>
-        <source>[Theme] %1</source>
-        <translation>[Thema] %1</translation>
-    </message>
-    <message>
-        <source>Choose Resource...</source>
-        <translation>Ressource auswählen...</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::TemplateOptionsWidget</name>
-    <message>
-        <source>...</source>
-        <translation>...</translation>
-    </message>
-    <message>
-        <source>Form</source>
-        <translation>Form</translation>
-    </message>
-    <message>
-        <source>Pick a directory to save templates in</source>
-        <translation>Wählen Sie ein Verzeichnis zum Abspeichern der Vorlagen aus</translation>
-    </message>
-    <message>
-        <source>Additional Template Paths</source>
-        <translation>Zusätzliche Verzeichnisse für Vorlagen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::TextEditor</name>
-    <message>
-        <source>...</source>
-        <translation>...</translation>
-    </message>
-    <message>
-        <source>Choose File...</source>
-        <translation>Datei auswählen...</translation>
-    </message>
-    <message>
-        <source>Choose Resource...</source>
-        <translation>Ressource auswählen...</translation>
-    </message>
-    <message>
-        <source>Choose a File</source>
-        <translation>Wählen Sie eine Datei</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::NewPromotedClassPanel</name>
-    <message>
-        <source>Add</source>
-        <translation>Hinzufügen</translation>
-    </message>
-    <message>
-        <source>Reset</source>
-        <translation>Rücksetzen</translation>
-    </message>
-    <message>
-        <source>Header file:</source>
-        <translation>Include-Datei:</translation>
-    </message>
-    <message>
-        <source>Base class name:</source>
-        <translation>Basisklasse:</translation>
-    </message>
-    <message>
-        <source>New Promoted Class</source>
-        <translation>Neue Klasse</translation>
-    </message>
-    <message>
-        <source>Promoted class name:</source>
-        <translation>Klassenname:</translation>
-    </message>
-    <message>
-        <source>Global include</source>
-        <translation>Globale Include-Datei</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::ActionEditor</name>
-    <message>
-        <source>Cut</source>
-        <translation>Ausschneiden</translation>
-    </message>
-    <message>
-        <source>Copy</source>
-        <translation>Kopieren</translation>
-    </message>
-    <message>
-        <source>Paste</source>
-        <translation>Einfügen</translation>
-    </message>
-    <message>
-        <source>Detailed View</source>
-        <translation>Detaillierte Ansicht</translation>
-    </message>
-    <message>
-        <source>Delete</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>Filter</source>
-        <translation>Filter</translation>
-    </message>
-    <message>
-        <source>New...</source>
-        <translation>Neu...</translation>
-    </message>
-    <message>
-        <source>Icon View</source>
-        <translation>Icon-Ansicht</translation>
-    </message>
-    <message>
-        <source>Edit action</source>
-        <translation>Aktion ändern</translation>
-    </message>
-    <message>
-        <source>New action</source>
-        <translation>Neue Aktion</translation>
-    </message>
-    <message>
-        <source>Actions</source>
-        <translation>Aktionen</translation>
-    </message>
-    <message>
-        <source>Go to slot...</source>
-        <translation>Slot anzeigen...</translation>
-    </message>
-    <message>
-        <source>Remove action &apos;%1&apos;</source>
-        <translation>Aktion &apos;%1&apos; löschen</translation>
-    </message>
-    <message>
-        <source>Select all</source>
-        <translation>Alles auswählen</translation>
-    </message>
-    <message>
-        <source>Edit...</source>
-        <translation>Ändern...</translation>
-    </message>
-    <message>
-        <source>Remove actions</source>
-        <translation> Aktionen löschen</translation>
-    </message>
-    <message>
-        <source>Used In</source>
-        <translation>Verwendet in</translation>
-    </message>
-    <message>
-        <source>Configure Action Editor</source>
-        <translation>Aktionseditor konfigurieren</translation>
-    </message>
-</context>
-<context>
-    <name>QtColorPropertyManager</name>
-    <message>
-        <source>Red</source>
-        <translation>Rot</translation>
-    </message>
-    <message>
-        <source>Blue</source>
-        <translation>Blau</translation>
-    </message>
-    <message>
-        <source>Alpha</source>
-        <translation>Alpha</translation>
-    </message>
-    <message>
-        <source>Green</source>
-        <translation>Grün</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::QDesignerTaskMenu</name>
-    <message>
-        <source>Top</source>
-        <translation>Oben</translation>
-    </message>
-    <message>
-        <source>Left</source>
-        <translation>Links</translation>
-    </message>
-    <message>
-        <source>Right</source>
-        <translation>Rechts</translation>
-    </message>
-    <message>
-        <source>no signals available</source>
-        <translation>Es sind keine Signale vorhanden</translation>
-    </message>
-    <message>
-        <source>Create Menu Bar</source>
-        <translation>Menüleiste erzeugen</translation>
-    </message>
-    <message>
-        <source>Create Status Bar</source>
-        <translation>Statuszeile hinzufügen</translation>
-    </message>
-    <message>
-        <source>Add Tool Bar</source>
-        <translation>Werkzeugleiste hinzufügen</translation>
-    </message>
-    <message>
-        <source>No Horizontal Alignment</source>
-        <translation>Keine horizontale Ausrichtung</translation>
-    </message>
-    <message>
-        <source>No Vertical Alignment</source>
-        <translation>Keine vertikale Ausrichtung</translation>
-    </message>
-    <message>
-        <source>Edit WhatsThis</source>
-        <translation>What&apos;sThis bearbeiten</translation>
-    </message>
-    <message>
-        <source>Bottom</source>
-        <translation>Unten</translation>
-    </message>
-    <message>
-        <source>Change whatsThis...</source>
-        <translation>WhatsThis ändern...</translation>
-    </message>
-    <message>
-        <source>Center Vertically</source>
-        <translation>Vertikal zentrieren</translation>
-    </message>
-    <message>
-        <source>Remove Status Bar</source>
-        <translation>Statuszeile löschen</translation>
-    </message>
-    <message numerus="yes">
-        <source>Set size constraint on %n widget(s)</source>
-        <translation>
-            <numerusform>Größenbeschränkung eines Widgets festlegen</numerusform>
-            <numerusform>Größenbeschränkung von %n Widgets festlegen</numerusform>
-        </translation>
-    </message>
-    <message>
-        <source>Go to slot...</source>
-        <translation>Slot anzeigen...</translation>
-    </message>
-    <message>
-        <source>Layout Alignment</source>
-        <translation>Ausrichtung des Layouts</translation>
-    </message>
-    <message>
-        <source>Center Horizontally</source>
-        <translation>Horizontal zentrieren</translation>
-    </message>
-    <message>
-        <source>Set Maximum Height</source>
-        <translation>Maximalhöhe festlegen</translation>
-    </message>
-    <message>
-        <source>Change styleSheet...</source>
-        <translation>Stylesheet ändern...</translation>
-    </message>
-    <message>
-        <source>Change signals/slots...</source>
-        <translation>Signale/Slots ändern...</translation>
-    </message>
-    <message>
-        <source>Set Maximum Width</source>
-        <translation>Maximalbreite festlegen</translation>
-    </message>
-    <message>
-        <source>Change toolTip...</source>
-        <translation>ToolTip ändern...</translation>
-    </message>
-    <message>
-        <source>Size Constraints</source>
-        <translation>Größe</translation>
-    </message>
-    <message>
-        <source>Set Minimum Width</source>
-        <translation>Minimalbreite festlegen</translation>
-    </message>
-    <message>
-        <source>Set Maximum Size</source>
-        <translation>Maximalgröße festlegen</translation>
-    </message>
-    <message>
-        <source>Set Minimum Size</source>
-        <translation>Minimalgröße festlegen</translation>
-    </message>
-    <message>
-        <source>Set Minimum Height</source>
-        <translation>Minimalhöhe  festlegen</translation>
-    </message>
-    <message>
-        <source>Change objectName...</source>
-        <translation>Objektnamen ändern...</translation>
-    </message>
-    <message>
-        <source>Edit ToolTip</source>
-        <translation>ToolTip bearbeiten</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::WidgetFactory</name>
-    <message>
-        <source>Attempt to add a layout to a widget &apos;%1&apos; (%2) which already has an unmanaged layout of type %3.
-This indicates an inconsistency in the ui-file.</source>
-        <translation>Es wurde versucht, ein Layout auf das Widget &apos;%1&apos; (%2) zu setzen, welches bereits ein Layout vom Typ %3 hat. Das deutet auf eine Inkonsistenz in der ui-Datei hin.</translation>
-    </message>
-    <message>
-        <source>A class name mismatch occurred when creating a widget using the custom widget factory registered for widgets of class %1. It returned a widget of class %2.</source>
-        <translation>Bei der Erzeugung von Widgets wurden widersprüchliche Klassennamen festgestellt: Die Factory für benutzerdefinierte Widgets der Klasse %1 gab ein Widget der Klasse %2 zurück.</translation>
-    </message>
-    <message>
-        <source>The current page of the container &apos;%1&apos; (%2) could not be determined while creating a layout.This indicates an inconsistency in the ui-file, probably a layout being constructed on a container widget.</source>
-        <translation>Der Container  &apos;%1&apos; (%2) hat keine Seite, auf der ein Layout angelegt werden könnte. Das deutet auf eine inkonsistente ui-Datei hin; wahrscheinlich wurde ein Layout direkt auf dem Container spezifiziert.</translation>
-    </message>
-    <message>
-        <source>The custom widget factory registered for widgets of class %1 returned 0.</source>
-        <translation>Die Factory für benutzerdefinierte Widgets der Klasse %1 gab einen 0-Zeiger zurück.</translation>
-    </message>
-    <message>
-        <source>Cannot create style &apos;%1&apos;.</source>
-        <translation>Der Stil &apos;%1&apos; konnte nicht erzeugt werden.</translation>
-    </message>
-</context>
-<context>
-    <name>FormEditorOptionsPage</name>
-    <message>
-        <source>%1 %</source>
-        <translation>%1 %</translation>
-    </message>
-    <message>
-        <source>Forms</source>
-        <translation>Formulare</translation>
-    </message>
-    <message>
-        <source>Naming convention used for generating action object names from their text</source>
-        <translation>Konvention für die Benennung von Instanzen von QAction nach ihrem Text</translation>
-    </message>
-    <message>
-        <source>Default Grid</source>
-        <translation>Raster für neue Formulare</translation>
-    </message>
-    <message>
-        <source>Default Zoom</source>
-        <translation>Vorgabe für Vergrößerungsfaktor</translation>
-    </message>
-    <message>
-        <source>Preview Zoom</source>
-        <translation>Vergrößerungsfaktor für Vorschau</translation>
-    </message>
-    <message>
-        <source>Object Naming Convention</source>
-        <translation>Namenskonvention für Objekte</translation>
-    </message>
-    <message>
-        <source>Camel Case</source>
-        <translation>Camel Case</translation>
-    </message>
-    <message>
-        <source>Underscore</source>
-        <translation>Trennung durch Unterstrich</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::ZoomMenu</name>
-    <message>
-        <source>%1 %</source>
-        <translation>%1 %</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::WizardContainerWidgetTaskMenu</name>
-    <message>
-        <source>Back</source>
-        <translation>Vorige</translation>
-    </message>
-    <message>
-        <source>Next</source>
-        <translation>Nächste</translation>
-    </message>
-</context>
-<context>
-    <name>QtFontPropertyManager</name>
-    <message>
-        <source>Bold</source>
-        <translation>Fett</translation>
-    </message>
-    <message>
-        <source>Kerning</source>
-        <translation>Kerning</translation>
-    </message>
-    <message>
-        <source>Family</source>
-        <translation>Familie</translation>
-    </message>
-    <message>
-        <source>Italic</source>
-        <translation>Kursiv</translation>
-    </message>
-    <message>
-        <source>Point Size</source>
-        <translation>Punktgröße</translation>
-    </message>
-    <message>
-        <source>Strikeout</source>
-        <translation>Durchgestrichen</translation>
-    </message>
-    <message>
-        <source>Underline</source>
-        <translation>Unterstreichen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::RichTextEditorToolBar</name>
-    <message>
-        <source>Bold</source>
-        <translation>Fett</translation>
-    </message>
-    <message>
-        <source>Justify</source>
-        <translation>Blocksatz</translation>
-    </message>
-    <message>
-        <source>Insert &amp;Image</source>
-        <translation>&amp;Bild einfügen</translation>
-    </message>
-    <message>
-        <source>Insert &amp;Link</source>
-        <translation>&amp;Link einfügen</translation>
-    </message>
-    <message>
-        <source>Simplify Rich Text</source>
-        <translation>Formatierbaren Text vereinfachen</translation>
-    </message>
-    <message>
-        <source>Right to Left</source>
-        <translation>Schreibrichtung rechts nach links</translation>
-    </message>
-    <message>
-        <source>CTRL+B</source>
-        <translation>CTRL+F</translation>
-    </message>
-    <message>
-        <source>CTRL+I</source>
-        <translation>CTRL+K</translation>
-    </message>
-    <message>
-        <source>CTRL+U</source>
-        <translation>CTRL+U</translation>
-    </message>
-    <message>
-        <source>Center</source>
-        <translation>Zentrieren</translation>
-    </message>
-    <message>
-        <source>Italic</source>
-        <translation>Kursiv</translation>
-    </message>
-    <message>
-        <source>Right Align</source>
-        <translation>Rechtsbündig ausrichten</translation>
-    </message>
-    <message>
-        <source>Left Align</source>
-        <translation>Linksbündig ausrichten</translation>
-    </message>
-    <message>
-        <source>Subscript</source>
-        <translation>Tiefstellung</translation>
-    </message>
-    <message>
-        <source>Superscript</source>
-        <translation>Hochstellung</translation>
-    </message>
-    <message>
-        <source>Underline</source>
-        <translation>Unterstreichen</translation>
-    </message>
-</context>
-<context>
-    <name>QtCursorDatabase</name>
-    <message>
-        <source>Busy</source>
-        <translation>Beschäftigt</translation>
-    </message>
-    <message>
-        <source>Wait</source>
-        <translation>Sanduhr</translation>
-    </message>
-    <message>
-        <source>Arrow</source>
-        <translation>Pfeil</translation>
-    </message>
-    <message>
-        <source>Blank</source>
-        <translation>Leer</translation>
-    </message>
-    <message>
-        <source>Cross</source>
-        <translation>Kreuzende Linien</translation>
-    </message>
-    <message>
-        <source>IBeam</source>
-        <translation>IBeam</translation>
-    </message>
-    <message>
-        <source>Size All</source>
-        <translation>Alles vergrößern</translation>
-    </message>
-    <message>
-        <source>Split Horizontal</source>
-        <translation>Horizontal aufteilen</translation>
-    </message>
-    <message>
-        <source>Size Horizontal</source>
-        <translation>Horizontal vergrößern</translation>
-    </message>
-    <message>
-        <source>Up Arrow</source>
-        <translation>Pfeil hoch</translation>
-    </message>
-    <message>
-        <source>Pointing Hand</source>
-        <translation>Hand</translation>
-    </message>
-    <message>
-        <source>Size Vertical</source>
-        <translation>Vertikal vergrößern</translation>
-    </message>
-    <message>
-        <source>Size Slash</source>
-        <translation>Vergrößern/Slash</translation>
-    </message>
-    <message>
-        <source>Forbidden</source>
-        <translation>Verboten</translation>
-    </message>
-    <message>
-        <source>Size Backslash</source>
-        <translation>Vergrößern/Backslash</translation>
-    </message>
-    <message>
-        <source>Closed Hand</source>
-        <translation>Geschlossene Hand</translation>
-    </message>
-    <message>
-        <source>Split Vertical</source>
-        <translation>Vertikal aufteilen</translation>
-    </message>
-    <message>
-        <source>Open Hand</source>
-        <translation>Geöffnete Hand</translation>
-    </message>
-    <message>
-        <source>What&apos;s This</source>
-        <translation>What&apos;s This</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::FormWindowManager</name>
-    <message>
-        <source>Cu&amp;t</source>
-        <translation>&amp;Ausschneiden</translation>
-    </message>
-    <message>
-        <source>&amp;Copy</source>
-        <translation>&amp;Kopieren</translation>
-    </message>
-    <message>
-        <source>Lays out the selected widgets in a grid</source>
-        <translation>Ordnet die ausgewählten Objekte tabellarisch an</translation>
-    </message>
-    <message>
-        <source>Selects all widgets</source>
-        <translation>Wählt alle Widget aus</translation>
-    </message>
-    <message>
-        <source>Break Layout</source>
-        <translation>Layout auflösen</translation>
-    </message>
-    <message>
-        <source>Adjust &amp;Size</source>
-        <translation>&amp;Größe anpassen</translation>
-    </message>
-    <message>
-        <source>&amp;Paste</source>
-        <translation>&amp;Einfügen</translation>
-    </message>
-    <message>
-        <source>Bring to &amp;Front</source>
-        <translation>Nach &amp;vorn</translation>
-    </message>
-    <message>
-        <source>Lay Out Vertically in Sp&amp;litter</source>
-        <translation>Objekte senkrecht um Spl&amp;itter anordnen</translation>
-    </message>
-    <message>
-        <source>Si&amp;mplify Grid Layout</source>
-        <translation>Tabellarisches Layout &amp;vereinfachen</translation>
-    </message>
-    <message>
-        <source>Form Settings - %1</source>
-        <translation>Formulareinstellungen - %1</translation>
-    </message>
-    <message>
-        <source>Lay Out in a &amp;Form Layout</source>
-        <translation>Objekte in &amp;Formularlayout anordnen</translation>
-    </message>
-    <message>
-        <source>Lays out the selected widgets horizontally</source>
-        <translation>Ordnet die ausgewähltenObjekte waagrecht an</translation>
-    </message>
-    <message>
-        <source>Lay Out Horizontally in S&amp;plitter</source>
-        <translation>Objekte waagrecht um Spl&amp;itter anordnen</translation>
-    </message>
-    <message>
-        <source>Deletes the selected widgets</source>
-        <translation>Löscht die ausgewählten Widgets</translation>
-    </message>
-    <message>
-        <source>Adjusts the size of the selected widget</source>
-        <translation>Berechnet die Größe des ausgewählten Widgets aus dem Layout und passt das Widget an</translation>
-    </message>
-    <message>
-        <source>Cuts the selected widgets and puts them on the clipboard</source>
-        <translation>Schneidet die ausgewählten Widgets aus und legt sie in der Zwischenablage ab</translation>
-    </message>
-    <message>
-        <source>Lay Out &amp;Horizontally</source>
-        <translation>Objekte &amp;waagrecht anordnen</translation>
-    </message>
-    <message>
-        <source>Lays out the selected widgets in a form layout</source>
-        <translation>Ordnet die ausgewählten Objekte  in einem zweispaltigen Formularlayout an</translation>
-    </message>
-    <message>
-        <source>Lowers the selected widgets</source>
-        <translation>Stellt das ausgewählte Widget nach hinten</translation>
-    </message>
-    <message>
-        <source>Lays out the selected widgets horizontally in a splitter</source>
-        <translation>Ordnet die ausgewählten Objekte um einen Splitter waagrecht an</translation>
-    </message>
-    <message>
-        <source>Breaks the selected layout</source>
-        <translation>Löst das ausgewählte Layout auf</translation>
-    </message>
-    <message>
-        <source>Lays out the selected widgets vertically in a splitter</source>
-        <translation>Ordnet die ausgewählten Objekte um einen Splitter senkecht an</translation>
-    </message>
-    <message>
-        <source>Copies the selected widgets to the clipboard</source>
-        <translation>Kopiert die ausgewählten Widgets in die Zwischenablage</translation>
-    </message>
-    <message>
-        <source>Raises the selected widgets</source>
-        <translation>Bringt das ausgewählte Widget nach vorn</translation>
-    </message>
-    <message>
-        <source>Send to &amp;Back</source>
-        <translation>Nach &amp;hinten</translation>
-    </message>
-    <message>
-        <source>Pastes the clipboard&apos;s contents</source>
-        <translation>Fügt den Inhalt der Zwischenablage ein</translation>
-    </message>
-    <message>
-        <source>Adjust Size</source>
-        <translation>Größe anpassen</translation>
-    </message>
-    <message>
-        <source>Select &amp;All</source>
-        <translation>&amp;Alles auswählen</translation>
-    </message>
-    <message>
-        <source>Lay Out in a &amp;Grid</source>
-        <translation>Objekte &amp;tabellarisch anordnen</translation>
-    </message>
-    <message>
-        <source>&amp;Delete</source>
-        <translation>&amp;Löschen</translation>
-    </message>
-    <message>
-        <source>Preview current form</source>
-        <translation>Vorschau des Formulars</translation>
-    </message>
-    <message>
-        <source>Lays out the selected widgets vertically</source>
-        <translation>Ordnet die ausgewählten Objekte senkrecht an</translation>
-    </message>
-    <message>
-        <source>&amp;Preview...</source>
-        <translation>&amp;Vorschau...</translation>
-    </message>
-    <message>
-        <source>Could not create form preview</source>
-        <translation>Es konnte keine Vorschau erzeugt werden</translation>
-    </message>
-    <message>
-        <source>Removes empty columns and rows</source>
-        <translation>Entfernt unbesetzte Zeilen und Spalten</translation>
-    </message>
-    <message>
-        <source>Lay Out &amp;Vertically</source>
-        <translation>Objekte &amp;senkrecht anordnen</translation>
-    </message>
-    <message>
-        <source>Form &amp;Settings...</source>
-        <translation>Formular&amp;einstellungen...</translation>
-    </message>
-    <message>
-        <source>&amp;Break Layout</source>
-        <translation>La&amp;yout auflösen</translation>
-    </message>
-</context>
-<context>
-    <name>MainWindowBase</name>
-    <message>
-        <source>Edit</source>
-        <translation>Bearbeiten</translation>
-    </message>
-    <message>
-        <source>File</source>
-        <translation>Datei</translation>
-    </message>
-    <message>
-        <source>Form</source>
-        <translation>Formular</translation>
-    </message>
-    <message>
-        <source>Main</source>
-        <translation>Haupt-Werkzeugleiste</translation>
-    </message>
-    <message>
-        <source>Tools</source>
-        <translation>Werkzeuge</translation>
-    </message>
-    <message>
-        <source>Qt Designer</source>
-        <translation>Qt Designer</translation>
-    </message>
-</context>
-<context>
-    <name>ToolBarManager</name>
-    <message>
-        <source>Edit</source>
-        <translation>Bearbeiten</translation>
-    </message>
-    <message>
-        <source>File</source>
-        <translation>Datei</translation>
-    </message>
-    <message>
-        <source>Form</source>
-        <translation>Formular</translation>
-    </message>
-    <message>
-        <source>Help</source>
-        <translation>Hilfe</translation>
-    </message>
-    <message>
-        <source>Style</source>
-        <translation>Stil</translation>
-    </message>
-    <message>
-        <source>Tools</source>
-        <translation>Werkzeuge</translation>
-    </message>
-    <message>
-        <source>Window</source>
-        <translation>Fenster</translation>
-    </message>
-    <message>
-        <source>Toolbars</source>
-        <translation>Werkzeugleisten</translation>
-    </message>
-    <message>
-        <source>Configure Toolbars...</source>
-        <translation>Werkzeugleiste konfigurieren...</translation>
-    </message>
-    <message>
-        <source>Dock views</source>
-        <translation>Dockfenster</translation>
-    </message>
-</context>
-<context>
-    <name>FontPanel</name>
-    <message>
-        <source>Font</source>
-        <translation>Schriftart</translation>
-    </message>
-    <message>
-        <source>&amp;Style</source>
-        <translation>&amp;Stil</translation>
-    </message>
-    <message>
-        <source>&amp;Point size</source>
-        <translation>&amp;Punktgröße</translation>
-    </message>
-    <message>
-        <source>&amp;Family</source>
-        <translation>Schrift&amp;familie</translation>
-    </message>
-    <message>
-        <source>&amp;Writing system</source>
-        <translation>Schrifts&amp;ystem</translation>
-    </message>
-</context>
-<context>
-    <name>AppearanceOptionsWidget</name>
-    <message>
-        <source>Form</source>
-        <translation>Formular</translation>
-    </message>
-    <message>
-        <source>User Interface Mode</source>
-        <translation>Fenstermodus</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::GridPanel</name>
-    <message>
-        <source>Form</source>
-        <translation>Formular</translation>
-    </message>
-    <message>
-        <source>Grid</source>
-        <translation>Raster</translation>
-    </message>
-    <message>
-        <source>Snap</source>
-        <translation>Einschnappen</translation>
-    </message>
-    <message>
-        <source>Reset</source>
-        <translation>Rücksetzen</translation>
-    </message>
-    <message>
-        <source>Visible</source>
-        <translation>Sichtbar</translation>
-    </message>
-    <message>
-        <source>Grid &amp;X</source>
-        <translation>Raster &amp;X</translation>
-    </message>
-    <message>
-        <source>Grid &amp;Y</source>
-        <translation>Raster &amp;Y</translation>
-    </message>
-</context>
-<context>
-    <name>QtGradientView</name>
-    <message>
-        <source>Grad</source>
-        <translation>Grad</translation>
-    </message>
-    <message>
-        <source>New...</source>
-        <translation>Neu...</translation>
-    </message>
-    <message>
-        <source>Remove</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>Rename</source>
-        <translation>Umbenennen</translation>
-    </message>
-    <message>
-        <source>Edit...</source>
-        <translation>Ändern...</translation>
-    </message>
-    <message>
-        <source>Gradient View</source>
-        <translation>Gradientenanzeige</translation>
-    </message>
-    <message>
-        <source>Remove Gradient</source>
-        <translation>Gradient löschen</translation>
-    </message>
-    <message>
-        <source>Are you sure you want to remove the selected gradient?</source>
-        <translation>Möchten Sie den ausgewählten Gradienten löschen?</translation>
-    </message>
-</context>
-<context>
-    <name>FormWindowSettings</name>
-    <message>
-        <source>Grid</source>
-        <translation>Raster</translation>
-    </message>
-    <message>
-        <source>Form Settings</source>
-        <translation>Formulareinstellungen</translation>
-    </message>
-    <message>
-        <source>&amp;Margin:</source>
-        <translation>&amp;Rand:</translation>
-    </message>
-    <message>
-        <source>Spa&amp;cing:</source>
-        <translation>Abstan&amp;d:</translation>
-    </message>
-    <message>
-        <source>Ma&amp;rgin:</source>
-        <translation>Ra&amp;nd:</translation>
-    </message>
-    <message>
-        <source>&amp;Pixmap Function</source>
-        <translation>&amp;Pixmapfunktion</translation>
-    </message>
-    <message>
-        <source>&amp;Spacing:</source>
-        <translation>A&amp;bstand:</translation>
-    </message>
-    <message>
-        <source>&amp;Include Hints</source>
-        <translation>&amp;Include-Dateien</translation>
-    </message>
-    <message>
-        <source>&amp;Author</source>
-        <translation>&amp;Autor</translation>
-    </message>
-    <message>
-        <source>Layout &amp;Default</source>
-        <translation>&amp;Layout-Standardwerte</translation>
-    </message>
-    <message>
-        <source>Embedded Design</source>
-        <translation>Embedded-Entwurf</translation>
-    </message>
-    <message>
-        <source>&amp;Layout Function</source>
-        <translation>Layout&amp;funktion</translation>
-    </message>
-</context>
-<context>
-    <name>QDesignerMenuBar</name>
-    <message>
-        <source>Menu</source>
-        <translation>Menü</translation>
-    </message>
-    <message>
-        <source>Remove Menu Bar</source>
-        <translation>Menüleiste löschen</translation>
-    </message>
-    <message>
-        <source>Remove Menu &apos;%1&apos;</source>
-        <translation>Menü &apos;%1&apos; öschen</translation>
-    </message>
-    <message>
-        <source>Type Here</source>
-        <translation>Geben Sie Text ein</translation>
-    </message>
-</context>
-<context>
-    <name>DeviceProfileDialog</name>
-    <message>
-        <source>Name</source>
-        <translation>Name</translation>
-    </message>
-    <message>
-        <source>Style</source>
-        <translation>Stil</translation>
-    </message>
-    <message>
-        <source>&amp;Point Size</source>
-        <translation>Punktgröße</translation>
-    </message>
-    <message>
-        <source>&amp;Family</source>
-        <translation>Schrift&amp;familie</translation>
-    </message>
-    <message>
-        <source>Device DPI</source>
-        <translation>Bildschirmauflösung</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::ActionModel</name>
-    <message>
-        <source>Name</source>
-        <translation>Name</translation>
-    </message>
-    <message>
-        <source>Text</source>
-        <translation>Text</translation>
-    </message>
-    <message>
-        <source>Used</source>
-        <translation>Verwendet</translation>
-    </message>
-    <message>
-        <source>ToolTip</source>
-        <translation>ToolTip</translation>
-    </message>
-    <message>
-        <source>Checkable</source>
-        <translation>Ankreuzbar</translation>
-    </message>
-    <message>
-        <source>Shortcut</source>
-        <translation>Tastenkürzel</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::PromotionModel</name>
-    <message>
-        <source>Name</source>
-        <translation>Name</translation>
-    </message>
-    <message>
-        <source>Usage</source>
-        <translation>Verwendet</translation>
-    </message>
-    <message>
-        <source>Header file</source>
-        <translation>Include-Datei</translation>
-    </message>
-    <message>
-        <source>Global include</source>
-        <translation>Globale Include-Datei</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::ButtonTaskMenu</name>
-    <message>
-        <source>None</source>
-        <translation>Keine</translation>
-    </message>
-    <message>
-        <source>Change text...</source>
-        <translation>Text ändern...</translation>
-    </message>
-    <message>
-        <source>Button group</source>
-        <translation>Gruppierung</translation>
-    </message>
-    <message>
-        <source>New button group</source>
-        <translation>Neue Gruppierung</translation>
-    </message>
-    <message>
-        <source>Assign to button group</source>
-        <translation>Gruppierung</translation>
-    </message>
-    <message>
-        <source>Button group &apos;%1&apos;</source>
-        <translation>Gruppierung &apos;%1&apos;</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::EmbeddedOptionsControl</name>
-    <message>
-        <source>None</source>
-        <translation>Vorgabe</translation>
-    </message>
-    <message>
-        <source>Add a profile</source>
-        <translation>Profil hinzufügen</translation>
-    </message>
-    <message>
-        <source>Delete the selected profile</source>
-        <translation>Ausgewähltes Profil löschen</translation>
-    </message>
-    <message>
-        <source>Edit Profile</source>
-        <translation>Profil ändern</translation>
-    </message>
-    <message>
-        <source>Add Profile</source>
-        <translation>Profil hinzufügen</translation>
-    </message>
-    <message>
-        <source>New profile</source>
-        <translation>Neues Profil</translation>
-    </message>
-    <message>
-        <source>Edit the selected profile</source>
-        <translation>Ausgewähltes Profil modifizieren</translation>
-    </message>
-    <message>
-        <source>Default</source>
-        <translation>Vorgabe</translation>
-    </message>
-    <message>
-        <source>Delete Profile</source>
-        <translation>Profil löschen</translation>
-    </message>
-    <message>
-        <source>Would you like to delete the profile &apos;%1&apos;?</source>
-        <translation>Möchten Sie das Profil &apos;%1&apos; löschen?</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::FormWindowSettings</name>
-    <message>
-        <source>None</source>
-        <translation>Kein</translation>
-    </message>
-    <message>
-        <source>Device Profile: %1</source>
-        <translation>Profil: %1</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::PreviewConfigurationWidget</name>
-    <message>
-        <source>None</source>
-        <translation>Kein</translation>
-    </message>
-    <message>
-        <source>Load Custom Device Skin</source>
-        <translation>Benutzerdefinierten Geräte-Skin laden </translation>
-    </message>
-    <message>
-        <source>%1 is not a valid skin directory:
-%2</source>
-        <translation>%1 ist kein gültiges Verzeichnis eines Skins:
-%2</translation>
-    </message>
-    <message>
-        <source>The skin &apos;%1&apos; already exists.</source>
-        <translation>Der Skin &apos;%1&apos; ist bereits vorhanden.</translation>
-    </message>
-    <message>
-        <source>Browse...</source>
-        <translation>Durchsuchen...</translation>
-    </message>
-    <message>
-        <source>All QVFB Skins (*.%1)</source>
-        <translation>Alle QVFB-Skins (*.%1)</translation>
-    </message>
-    <message>
-        <source>Default</source>
-        <translation>Vorgabe</translation>
-    </message>
-    <message>
-        <source>%1 - Duplicate Skin</source>
-        <translation>%1 - Skin bereits vorhanden</translation>
-    </message>
-    <message>
-        <source>%1 - Error</source>
-        <translation>%1 - Fehler</translation>
-    </message>
-</context>
-<context>
-    <name>Command</name>
-    <message>
-        <source>Page</source>
-        <translation>Seite</translation>
-    </message>
-    <message>
-        <source>Simplify Grid Layout</source>
-        <translation>Tabellarisches Layout vereinfachen</translation>
-    </message>
-    <message>
-        <source>Add buttons to group</source>
-        <translation>Buttons zur Gruppierung hinzufügen</translation>
-    </message>
-    <message>
-        <source>Change Tab order</source>
-        <translation>Seite ändern</translation>
-    </message>
-    <message>
-        <source>Change layout of &apos;%1&apos; from %2 to %3</source>
-        <translation>Layout von &apos;%1&apos; von %2 in %3 umwandeln</translation>
-    </message>
-    <message>
-        <source>Demote from custom widget</source>
-        <translation>Platzhalter für benutzerdefinierte Klasse entfernen</translation>
-    </message>
-    <message>
-        <source>Change Tree Contents</source>
-        <translation>Bauminhalt ändern</translation>
-    </message>
-    <message>
-        <source>Create Menu Bar</source>
-        <translation>Menü erzeugen</translation>
-    </message>
-    <message>
-        <source>Change Form Layout Item Geometry</source>
-        <translation>Ändern des Formularlayout-Elements</translation>
-    </message>
-    <message>
-        <source>Delete Status Bar</source>
-        <translation>Statuszeile löschen</translation>
-    </message>
-    <message>
-        <source>Create Status Bar</source>
-        <translation>Statuszeile erzeugen</translation>
-    </message>
-    <message>
-        <source>Create submenu</source>
-        <translation>Untermenü erzeugen</translation>
-    </message>
-    <message>
-        <source>Promote to custom widget</source>
-        <translation>Platzhalter für benutzerdefinierte Klasse erzeugen</translation>
-    </message>
-    <message>
-        <source>Add Tool Bar</source>
-        <translation>Werkzeugleiste hinzufügen</translation>
-    </message>
-    <message>
-        <source>Break button group</source>
-        <translation>Button-Gruppierung aufheben</translation>
-    </message>
-    <message>
-        <source>Reset &apos;%1&apos; of &apos;%2&apos;</source>
-        <translation>&apos;%1&apos; von &apos;%2&apos; zurücksetzen</translation>
-    </message>
-    <message>
-        <source>Change signals/slots</source>
-        <translation>Signale/Slots ändern</translation>
-    </message>
-    <message>
-        <source>Add Dock Window</source>
-        <translation>Dockfenster hinzufügen</translation>
-    </message>
-    <message>
-        <source>Break layout</source>
-        <translation>Layout auflösen</translation>
-    </message>
-    <message>
-        <source>Lay out vertically</source>
-        <translation>Objekte senkrecht anordnen</translation>
-    </message>
-    <message>
-        <source>Change Title</source>
-        <translation>Titel ändern</translation>
-    </message>
-    <message>
-        <source>Change receiver</source>
-        <translation>Empfänger ändern</translation>
-    </message>
-    <message>
-        <source>Remove dynamic property &apos;%1&apos; from &apos;%2&apos;</source>
-        <translation>Dynamische Eigenschaft &apos;%1&apos; von &apos;%2&apos; entfernen</translation>
-    </message>
-    <message>
-        <source>Set action text</source>
-        <translation>Text der Aktion setzen</translation>
-    </message>
-    <message>
-        <source>Remove buttons from group</source>
-        <translation>Buttons aus Gruppierung entfernen</translation>
-    </message>
-    <message>
-        <source>Change layout alignment</source>
-        <translation>Ausrichtung des Layouts ändern</translation>
-    </message>
-    <message>
-        <source>Break button group &apos;%1&apos;</source>
-        <translation>Gruppierung &apos;%1&apos; aufheben</translation>
-    </message>
-    <message>
-        <source>Insert Subwindow</source>
-        <translation>Subfenster einfügen</translation>
-    </message>
-    <message>
-        <source>Delete Subwindow</source>
-        <translation>Subfenster löschen</translation>
-    </message>
-    <message>
-        <source>Insert action</source>
-        <translation>Aktion einfügen</translation>
-    </message>
-    <message>
-        <source>Move action</source>
-        <translation>Aktion verschieben</translation>
-    </message>
-    <message numerus="yes">
-        <source>Remove dynamic property &apos;%1&apos; from %n objects</source>
-        <translation>
-            <numerusform>Dynamische Eigenschaft &apos;%1&apos; des Objektes entfernen</numerusform>
-            <numerusform>Dynamische Eigenschaft &apos;%1&apos; von %n Objekten entfernen</numerusform>
-        </translation>
-    </message>
-    <message>
-        <source>Add action</source>
-        <translation>Aktion hinzufügen</translation>
-    </message>
-    <message numerus="yes">
-        <source>Reset &apos;%1&apos; of %n objects</source>
-        <translation>
-            <numerusform>&apos;%1&apos; eines Objekts zurücksetzen</numerusform>
-            <numerusform>&apos;%1&apos; von %n Objekten zurücksetzen</numerusform>
-        </translation>
-    </message>
-    <message>
-        <source>Adjust Size of &apos;%1&apos;</source>
-        <translation>Größe von &apos;%1&apos; anpassen</translation>
-    </message>
-    <message>
-        <source>Change Z-order of &apos;%1&apos;</source>
-        <translation>Z-Reihenfolge von &apos;%1&apos; ändern</translation>
-    </message>
-    <message>
-        <source>Delete connections</source>
-        <translation>Verbindungen löschen</translation>
-    </message>
-    <message>
-        <source>Delete Tool Bar</source>
-        <translation>Werkzeugleiste löschen</translation>
-    </message>
-    <message>
-        <source>Morph %1/&apos;%2&apos; into %3</source>
-        <translation>%1/&apos;%2&apos; in %3 umwandeln</translation>
-    </message>
-    <message>
-        <source>Insert &apos;%1&apos;</source>
-        <translation>&apos;%1&apos; einfügen</translation>
-    </message>
-    <message>
-        <source>Insert Page</source>
-        <translation>Seite einfügen</translation>
-    </message>
-    <message>
-        <source>Insert Menu</source>
-        <translation>Menü einfügen</translation>
-    </message>
-    <message>
-        <source>Raise &apos;%1&apos;</source>
-        <translation>&apos;%1&apos; nach vorn</translation>
-    </message>
-    <message>
-        <source>Add &apos;%1&apos; to &apos;%2&apos;</source>
-        <translation>&apos;%1&apos; zu &apos;%2&apos; hinzufügen</translation>
-    </message>
-    <message>
-        <source>Changed &apos;%1&apos; of &apos;%2&apos;</source>
-        <translation>&apos;%1&apos; von &apos;%2&apos; geändert</translation>
-    </message>
-    <message>
-        <source>Remove &apos;%1&apos; from &apos;%2&apos;</source>
-        <translation> &apos;%1&apos; aus &apos;%2&apos; entfernen</translation>
-    </message>
-    <message>
-        <source>Subwindow</source>
-        <translation>Subwindow</translation>
-    </message>
-    <message numerus="yes">
-        <source>Add dynamic property &apos;%1&apos; to %n objects</source>
-        <translation>
-            <numerusform>Dynamische Eigenschaft &apos;%1&apos; zu einem Objekt hinzufügen</numerusform>
-            <numerusform>Dynamische Eigenschaft &apos;%1&apos; zu %n Objekten hinzufügen</numerusform>
-        </translation>
-    </message>
-    <message>
-        <source>Delete &apos;%1&apos;</source>
-        <translation> &apos;%1&apos; löschen</translation>
-    </message>
-    <message>
-        <source>Delete Page</source>
-        <translation>Seite löschen</translation>
-    </message>
-    <message>
-        <source>Add menu</source>
-        <translation>Menü hinzufügen</translation>
-    </message>
-    <message>
-        <source>Delete Menu Bar</source>
-        <translation>Menüleiste löschen</translation>
-    </message>
-    <message>
-        <source>Change Table Contents</source>
-        <translation>Tabelleninhalt ändern</translation>
-    </message>
-    <message>
-        <source>Change signal-slot connection</source>
-        <translation>Signale-Slotverbindung ändern</translation>
-    </message>
-    <message numerus="yes">
-        <source>Changed &apos;%1&apos; of %n objects</source>
-        <translation>
-            <numerusform>Eigenschaft &apos;%1&apos; eines Objekts geändert</numerusform>
-            <numerusform>Eigenschaft &apos;%1&apos; von %n Objekten geändert</numerusform>
-        </translation>
-    </message>
-    <message>
-        <source>Remove menu</source>
-        <translation>Menü löschen</translation>
-    </message>
-    <message>
-        <source>Lay out horizontally</source>
-        <translation>Objekte waagrecht anordnen</translation>
-    </message>
-    <message>
-        <source>Change Layout Item Geometry</source>
-        <translation>Geometrie des Layoutelements ändern</translation>
-    </message>
-    <message>
-        <source>Lower &apos;%1&apos;</source>
-        <translation>&apos;%1&apos; nach hinten</translation>
-    </message>
-    <message>
-        <source>Move Page</source>
-        <translation>Seite verschieben</translation>
-    </message>
-    <message>
-        <source>Add dynamic property &apos;%1&apos; to &apos;%2&apos;</source>
-        <translation>Dynamische Eigenschaft &apos;%1&apos; zu &apos;%2&apos; hinzufügen</translation>
-    </message>
-    <message>
-        <source>Create button group</source>
-        <translation>Buttons gruppieren</translation>
-    </message>
-    <message>
-        <source>Change slot</source>
-        <translation>Slot ändern</translation>
-    </message>
-    <message>
-        <source>Reparent &apos;%1&apos;</source>
-        <translation> &apos;%1&apos; einem anderen Widget zuordnen</translation>
-    </message>
-    <message>
-        <source>Lay out using grid</source>
-        <translation>Objekte tabellarisch anordnen</translation>
-    </message>
-    <message>
-        <source>Change target</source>
-        <translation>Endpunkt ändern</translation>
-    </message>
-    <message>
-        <source>Change sender</source>
-        <translation>Sender ändern</translation>
-    </message>
-    <message>
-        <source>Change signal</source>
-        <translation>Signal ändern</translation>
-    </message>
-    <message>
-        <source>Change source</source>
-        <translation>Startpunkt ändern</translation>
-    </message>
-    <message>
-        <source>Adjust connection</source>
-        <translation>Verbindung anpassen</translation>
-    </message>
-    <message>
-        <source>Remove action</source>
-        <translation> Aktion löschen</translation>
-    </message>
-    <message>
-        <source>Add connection</source>
-        <translation>Verbindung hinzufügen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::ContainerWidgetTaskMenu</name>
-    <message>
-        <source>Page</source>
-        <translation>Seite</translation>
-    </message>
-    <message>
-        <source>Delete</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>Insert</source>
-        <translation>Einfügen</translation>
-    </message>
-    <message>
-        <source>Page %1 of %2</source>
-        <translation>Seite %1 von %2</translation>
-    </message>
-    <message>
-        <source>Insert Page After Current Page</source>
-        <translation>Seite danach einfügen</translation>
-    </message>
-    <message>
-        <source>Subwindow</source>
-        <translation>Subwindow</translation>
-    </message>
-    <message>
-        <source>Insert Page Before Current Page</source>
-        <translation>Seite davor einfügen</translation>
-    </message>
-    <message>
-        <source>Add Subwindow</source>
-        <translation>Subfenster hinzufügen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::ConnectionModel</name>
-    <message>
-        <source>Slot</source>
-        <translation>Slot</translation>
-    </message>
-    <message>
-        <source>The connection already exists!&lt;br&gt;%1</source>
-        <translation>Diese Verbindung existiert bereits!&lt;br&gt;%1&lt;/br&gt;</translation>
-    </message>
-    <message>
-        <source>&lt;slot&gt;</source>
-        <translation>&lt;Slot&gt;</translation>
-    </message>
-    <message>
-        <source>Sender</source>
-        <translation>Sender</translation>
-    </message>
-    <message>
-        <source>Signal</source>
-        <translation>Signal</translation>
-    </message>
-    <message>
-        <source>Signal and Slot Editor</source>
-        <translation>Signal/Slot editor</translation>
-    </message>
-    <message>
-        <source>&lt;sender&gt;</source>
-        <translation>&lt;Sender&gt;</translation>
-    </message>
-    <message>
-        <source>&lt;receiver&gt;</source>
-        <translation>&lt;Receiver&gt;</translation>
-    </message>
-    <message>
-        <source>&lt;signal&gt;</source>
-        <translation>&lt;Signal&gt;</translation>
-    </message>
-    <message>
-        <source>Receiver</source>
-        <translation>Empfänger</translation>
-    </message>
-</context>
-<context>
-    <name>AddLinkDialog</name>
-    <message>
-        <source>URL:</source>
-        <translation>URL:</translation>
-    </message>
-    <message>
-        <source>Title:</source>
-        <translation>Titel:</translation>
-    </message>
-    <message>
-        <source>Insert Link</source>
-        <translation>Link einfügen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::MdiContainerWidgetTaskMenu</name>
-    <message>
-        <source>Tile</source>
-        <translation>Nebeneinander anordnen</translation>
-    </message>
-    <message>
-        <source>Next Subwindow</source>
-        <translation>Nächste Unterfenster</translation>
-    </message>
-    <message>
-        <source>Cascade</source>
-        <translation>Stapeln</translation>
-    </message>
-    <message>
-        <source>Previous Subwindow</source>
-        <translation>Voriges Unterfenster</translation>
-    </message>
-</context>
-<context>
-    <name>QtBoolEdit</name>
-    <message>
-        <source>True</source>
-        <translation>Wahr</translation>
-    </message>
-    <message>
-        <source>False</source>
-        <translation>Falsch</translation>
-    </message>
-</context>
-<context>
-    <name>QtBoolPropertyManager</name>
-    <message>
-        <source>True</source>
-        <translation>Wahr</translation>
-    </message>
-    <message>
-        <source>False</source>
-        <translation>Falsch</translation>
-    </message>
-</context>
-<context>
-    <name>QDesignerPluginManager</name>
-    <message>
-        <source>The class attribute for the class %1 is missing.</source>
-        <translation>Das Klassenattribut der Klasse %1 fehlt.</translation>
-    </message>
-    <message>
-        <source>The XML of the custom widget %1 does not contain any of the elements &lt;widget&gt; or &lt;ui&gt;.</source>
-        <translation>Der XML-Code für das Widget %1 enthält kein gültiges Wurzelelement (&lt;widget&gt;, &lt;ui&gt;).</translation>
-    </message>
-    <message>
-        <source>The class attribute for the class %1 does not match the class name %2.</source>
-        <translation>Das Klassenattribut der Klasse %1 entspricht nicht dem Klassennamen (%2).</translation>
-    </message>
-    <message>
-        <source>A required attribute (&apos;%1&apos;) is missing.</source>
-        <translation>Bei dem Element fehlt ein erforderliches Attribut (&apos;%1&apos;).</translation>
-    </message>
-    <message>
-        <source>&apos;%1&apos; is not a valid string property specification.</source>
-        <translation>&apos;%1&apos; ist keine gültige Spezifikation einer Zeichenketten-Eigenschaft.</translation>
-    </message>
-    <message>
-        <source>An XML error was encountered when parsing the XML of the custom widget %1: %2</source>
-        <translation>Fehler beim Auswerten des XML des benutzerdefinierten Widgets %1: %2</translation>
-    </message>
-    <message>
-        <source>An invalid property specification (&apos;%1&apos;) was encountered. Supported types: %2</source>
-        <translation>&apos;%1&apos; ist keine gültige Spezifikation einer Eigenschaft. Die folgenden Typen werden unterstützt: %2</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::OrderDialog</name>
-    <message>
-        <source>%1 %2</source>
-        <translation>%1 %2</translation>
-    </message>
-    <message>
-        <source>Move page up</source>
-        <translation>Seite eins nach oben</translation>
-    </message>
-    <message>
-        <source>Page Order</source>
-        <translation>Reihenfolge</translation>
-    </message>
-    <message>
-        <source>Index %1 (%2)</source>
-        <translation>Position %1 (%2)</translation>
-    </message>
-    <message>
-        <source>Change Page Order</source>
-        <translation>Seiten umordnen</translation>
-    </message>
-    <message>
-        <source>Move page down</source>
-        <translation>Seite eins nach unten</translation>
-    </message>
-</context>
-<context>
-    <name>QDesignerWorkbench</name>
-    <message>
-        <source>&amp;Edit</source>
-        <translation>&amp;Bearbeiten</translation>
-    </message>
-    <message>
-        <source>&amp;File</source>
-        <translation>&amp;Datei</translation>
-    </message>
-    <message>
-        <source>&amp;Help</source>
-        <translation>&amp;Hilfe</translation>
-    </message>
-    <message>
-        <source>&amp;View</source>
-        <translation>&amp;Ansicht</translation>
-    </message>
-    <message>
-        <source>F&amp;orm</source>
-        <translation>F&amp;ormular</translation>
-    </message>
-    <message>
-        <source>Discard Changes</source>
-        <translation>Änderungen verwerfen</translation>
-    </message>
-    <message numerus="yes">
-        <source>There are %n forms with unsaved changes. Do you want to review these changes before quitting?</source>
-        <translation>
-            <numerusform>Das Formular wurde geändert. Möchten Sie sich die Änderungen ansehen, bevor Sie das Programm beenden?</numerusform>
-            <numerusform>%n Formulare  wurden geändert. Möchten Sie sich die Änderungen ansehen, bevor Sie das Programm beenden?</numerusform>
-        </translation>
-    </message>
-    <message>
-        <source>The file &lt;b&gt;%1&lt;/b&gt; could not be opened: %2</source>
-        <translation>Die Datei &lt;b&gt;%1&lt;/b&gt; konnte nicht geöffnet werden: %2</translation>
-    </message>
-    <message>
-        <source>Save Forms?</source>
-        <translation>Formulare speichern?</translation>
-    </message>
-    <message>
-        <source>Review Changes</source>
-        <translation>Änderungen ansehen</translation>
-    </message>
-    <message>
-        <source>Toolbars</source>
-        <translation>Werkzeugleisten</translation>
-    </message>
-    <message>
-        <source>The last session of Designer was not terminated correctly. Backup files were left behind. Do you want to load them?</source>
-        <translation>Designer wurde offenbar nicht ordnungsgemäß beendet; es existieren noch Dateien von der Hintergrundsicherung. Möchten Sie sie laden?</translation>
-    </message>
-    <message>
-        <source>&amp;Window</source>
-        <translation>&amp;Fenster</translation>
-    </message>
-    <message>
-        <source>&amp;Settings</source>
-        <translation>&amp;Einstellungen</translation>
-    </message>
-    <message>
-        <source>Preview in</source>
-        <translation>Vorschau im</translation>
-    </message>
-    <message>
-        <source>Widget Box</source>
-        <translation>Widgetbox</translation>
-    </message>
-    <message>
-        <source>If you do not review your documents, all your changes will be lost.</source>
-        <translation>Die Änderungen gehen verloren, wenn Sie sich die Formulare nicht noch einmal ansehen.</translation>
-    </message>
-    <message>
-        <source>Backup Information</source>
-        <translation>Information zur Hintergrundsicherung</translation>
-    </message>
-</context>
-<context>
-    <name>AbstractFindWidget</name>
-    <message>
-        <source>&amp;Next</source>
-        <translation>&amp;Nächste</translation>
-    </message>
-    <message>
-        <source>&lt;img src=&quot;:/qt-project.org/shared/images/wrap.png&quot;&gt;&amp;nbsp;Search wrapped</source>
-        <translation>&lt;img src=&quot;:/qt-project.org/shared/images/wrap.png&quot;&gt;&amp;nbsp;Die Suche hat das Ende erreicht</translation>
-    </message>
-    <message>
-        <source>Whole &amp;words</source>
-        <translation>Nur ganze &amp;Worte</translation>
-    </message>
-    <message>
-        <source>&amp;Previous</source>
-        <translation>&amp;Vorige</translation>
-    </message>
-    <message>
-        <source>&amp;Case sensitive</source>
-        <translation>&amp;Groß/Kleinschreibung</translation>
-    </message>
-</context>
-<context>
-    <name>QDesignerActions</name>
-    <message>
-        <source>&amp;Quit</source>
-        <translation>&amp;Beenden</translation>
-    </message>
-    <message>
-        <source>&amp;Save</source>
-        <translation>&amp;Speichern</translation>
-    </message>
-    <message>
-        <source>&amp;Minimize</source>
-        <translation>&amp;Minimieren</translation>
-    </message>
-    <message>
-        <source>Current Widget Help</source>
-        <translation>Hilfe zum ausgewählten Widget</translation>
-    </message>
-    <message>
-        <source>The backup file %1 could not be written.</source>
-        <translation>Hintergrundsicherung: Die Datei %1 konnte nicht geschrieben werden.</translation>
-    </message>
-    <message>
-        <source>Image files (*.%1)</source>
-        <translation>Bilddateien (*.%1)</translation>
-    </message>
-    <message>
-        <source>Bring All to Front</source>
-        <translation>Alle Formulare anzeigen</translation>
-    </message>
-    <message>
-        <source>The temporary backup directory %1 could not be created.</source>
-        <translation>Hintergrundsicherung: Das temporäre Verzeichnis %1 konnte nicht angelegt werden.</translation>
-    </message>
-    <message>
-        <source>The file %1 could not be written.</source>
-        <translation>Die Datei %1 konnte nicht geschrieben werden.</translation>
-    </message>
-    <message>
-        <source>&amp;Close</source>
-        <translation>&amp;Schließen</translation>
-    </message>
-    <message>
-        <source>About Plugins</source>
-        <translation>Plugins</translation>
-    </message>
-    <message>
-        <source>Save &amp;As...</source>
-        <translation>Speichern &amp;unter...</translation>
-    </message>
-    <message>
-        <source>CTRL+SHIFT+S</source>
-        <translation>CTRL+SHIFT+S</translation>
-    </message>
-    <message>
-        <source>Feature not implemented yet!</source>
-        <translation>Diese Funktionalität ist noch nicht implementiert.</translation>
-    </message>
-    <message>
-        <source>Clear &amp;Menu</source>
-        <translation>Menü &amp;löschen</translation>
-    </message>
-    <message>
-        <source>CTRL+M</source>
-        <translation>CTRL+M</translation>
-    </message>
-    <message>
-        <source>CTRL+R</source>
-        <translation>CTRL+R</translation>
-    </message>
-    <message>
-        <source>The backup directory %1 could not be created.</source>
-        <translation>Hintergrundsicherung: Das Verzeichnis %1 konnte nicht angelegt werden.</translation>
-    </message>
-    <message>
-        <source>Could not open file</source>
-        <translation>Die Datei konnte nicht geöffnet werden</translation>
-    </message>
-    <message>
-        <source>Read error</source>
-        <translation>Lesefehler</translation>
-    </message>
-    <message>
-        <source>&amp;Open...</source>
-        <translation>&amp;Öffnen...</translation>
-    </message>
-    <message>
-        <source>Please close all forms to enable the loading of additional fonts.</source>
-        <translation>Bitte schließen Sie alle Formulare, um zusätzliche Schriftarten zu laden.</translation>
-    </message>
-    <message>
-        <source>View &amp;Code...</source>
-        <translation>&amp;Code anzeigen...</translation>
-    </message>
-    <message>
-        <source>Save Form?</source>
-        <translation>Formular speichern?</translation>
-    </message>
-    <message>
-        <source>Save Image</source>
-        <translation>Bild speichern</translation>
-    </message>
-    <message>
-        <source>Additional Fonts...</source>
-        <translation>&amp;Zusätzliche Schriftarten...</translation>
-    </message>
-    <message>
-        <source>Designer UI files (*.%1);;All Files (*)</source>
-        <translation>Designer-UI-Dateien (*.%1);;Alle Dateien (*)</translation>
-    </message>
-    <message>
-        <source>Qt Designer &amp;Help</source>
-        <translation>&amp;Hilfe zum Qt Designer</translation>
-    </message>
-    <message>
-        <source>Save As &amp;Template...</source>
-        <translation>Als Vor&amp;lage abspeichern...</translation>
-    </message>
-    <message>
-        <source>&amp;Print...</source>
-        <translation>&amp;Drucken...</translation>
-    </message>
-    <message>
-        <source>Code generation failed</source>
-        <translation>Es konnte kein Code generiert werden</translation>
-    </message>
-    <message>
-        <source>Edit Widgets</source>
-        <translation>Widgets bearbeiten</translation>
-    </message>
-    <message>
-        <source>About Qt</source>
-        <translation>Ãœber Qt</translation>
-    </message>
-    <message>
-        <source>The file %1 could not be opened.
-Reason: %2
-Would you like to retry or select a different file?</source>
-        <translation>Die Datei %1 konnte nicht geöffnet werden:
-%2
-Möchten Sie es noch einmal versuchen oder eine andere Datei auswählen?</translation>
-    </message>
-    <message>
-        <source>Assistant</source>
-        <translation>Assistant</translation>
-    </message>
-    <message>
-        <source>About Qt Designer</source>
-        <translation>Ãœber Qt Designer</translation>
-    </message>
-    <message>
-        <source>Could not write file</source>
-        <translation>Die Datei konnte nicht geschrieben werden</translation>
-    </message>
-    <message>
-        <source>Printed %1.</source>
-        <translation>%1 wurde gedruckt.</translation>
-    </message>
-    <message>
-        <source>Save Form As</source>
-        <translation>Formular unter einem anderen Namen speichern</translation>
-    </message>
-    <message>
-        <source>&amp;New...</source>
-        <translation>&amp;Neu...</translation>
-    </message>
-    <message>
-        <source>Saved image %1.</source>
-        <translation>Das Vorschaubild wurde unter %1 gespeichert.</translation>
-    </message>
-    <message>
-        <source>Save &amp;Image...</source>
-        <translation>&amp;Vorschaubild speichern...</translation>
-    </message>
-    <message>
-        <source>&amp;Update</source>
-        <translation>&amp;Anderer Name</translation>
-    </message>
-    <message>
-        <source>Open Form</source>
-        <translation>Formular öffnen</translation>
-    </message>
-    <message>
-        <source>Preferences...</source>
-        <translation>Einstellungen...</translation>
-    </message>
-    <message>
-        <source>%1
-Do you want to update the file location or generate a new form?</source>
-        <translation>%1
-Möchten Sie einen anderen Namen eingeben oder ein neues Formular erzeugen?</translation>
-    </message>
-    <message>
-        <source>%1 already exists.
-Do you want to replace it?</source>
-        <translation>Die Datei %1 existiert bereits.
-Möchten Sie sie überschreiben?</translation>
-    </message>
-    <message>
-        <source>Save A&amp;ll</source>
-        <translation>&amp;Alles speichern</translation>
-    </message>
-    <message>
-        <source>&amp;New Form</source>
-        <translation>&amp;Neues Formular</translation>
-    </message>
-    <message>
-        <source>Designer</source>
-        <translation>Designer</translation>
-    </message>
-    <message>
-        <source>Saved %1.</source>
-        <translation>Das Formular %1 wurde gespeichert...</translation>
-    </message>
-    <message>
-        <source>Qt Designer</source>
-        <translation>Qt Designer</translation>
-    </message>
-    <message>
-        <source>&amp;Close Preview</source>
-        <translation>Vorschau &amp;schließen</translation>
-    </message>
-    <message>
-        <source>&amp;Recent Forms</source>
-        <translation>&amp;Zuletzt bearbeitete Formulare</translation>
-    </message>
-    <message>
-        <source>Preview failed</source>
-        <translation>Es konnte keine Vorschau erzeugt werden</translation>
-    </message>
-    <message>
-        <source>Select New File</source>
-        <translation>Andere Datei</translation>
-    </message>
-    <message>
-        <source>It was not possible to write the entire file %1 to disk.
-Reason:%2
-Would you like to retry?</source>
-        <translation>Die Datei %1 konnte nicht vollständig geschrieben werden:
-%2
-Möchten Sie es noch einmal versuchen?</translation>
-    </message>
-    <message>
-        <source>ALT+CTRL+S</source>
-        <translation>ALT+CTRL+S</translation>
-    </message>
-</context>
-<context>
-    <name>FormLayoutRowDialog</name>
-    <message>
-        <source>&amp;Row:</source>
-        <translation>&amp;Zeile:</translation>
-    </message>
-    <message>
-        <source>&amp;Field name:</source>
-        <translation>&amp;Feldname:</translation>
-    </message>
-    <message>
-        <source>Field &amp;type:</source>
-        <translation>&amp;Datentyp:</translation>
-    </message>
-    <message>
-        <source>Label &amp;name:</source>
-        <translation>&amp;Label-Name:</translation>
-    </message>
-    <message>
-        <source>Add Form Layout Row</source>
-        <translation>Formularlayoutzeile hinzufügen</translation>
-    </message>
-    <message>
-        <source>&amp;Buddy:</source>
-        <translation>&amp;Buddy:</translation>
-    </message>
-    <message>
-        <source>&amp;Label text:</source>
-        <translation>Be&amp;schriftung:</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::TableWidgetEditor</name>
-    <message>
-        <source>&amp;Rows</source>
-        <translation>&amp;Zeilen</translation>
-    </message>
-    <message>
-        <source>Edit Table Widget</source>
-        <translation>Table Widget ändern</translation>
-    </message>
-    <message>
-        <source>&amp;Items</source>
-        <translation>&amp;Inhalt</translation>
-    </message>
-    <message>
-        <source>New Column</source>
-        <translation>Neue Spalte</translation>
-    </message>
-    <message>
-        <source>New Row</source>
-        <translation>Neue Zeile</translation>
-    </message>
-    <message>
-        <source>Properties &amp;&lt;&lt;</source>
-        <translation>Eigenschaften &amp;&lt;&lt;</translation>
-    </message>
-    <message>
-        <source>Properties &amp;&gt;&gt;</source>
-        <translation>Eigenschaften &amp;&gt;&gt;</translation>
-    </message>
-    <message>
-        <source>Table Items</source>
-        <translation>Tabellenelemente</translation>
-    </message>
-    <message>
-        <source>&amp;Columns</source>
-        <translation>&amp;Spalten</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::ZoomablePreviewDeviceSkin</name>
-    <message>
-        <source>&amp;Zoom</source>
-        <translation>&amp;Vergrößern</translation>
-    </message>
-</context>
-<context>
-    <name>QCoreApplication</name>
-    <message>
-        <source>There is already a class named %1.</source>
-        <translation>Es existiert bereits eine Klasse namens %1.</translation>
-    </message>
-    <message>
-        <source>The class %1 already exists.</source>
-        <translation>Es existiert bereits eine Klasse namens %1.</translation>
-    </message>
-    <message>
-        <source>%1 is not a promoted class.</source>
-        <translation>%1 ist kein Platzhalter für eine benutzerdefinierte Klasse.</translation>
-    </message>
-    <message>
-        <source>The class %1 cannot be removed because it is still referenced.</source>
-        <translation>Die Klasse %1 kann nicht gelöscht werden, da sie gegenwärtig verwendet wird.</translation>
-    </message>
-    <message>
-        <source>The class %1 cannot be renamed to an empty name.</source>
-        <translation>Der Klassennamen darf nicht leer sein (%1).</translation>
-    </message>
-    <message>
-        <source>Promoted Widgets</source>
-        <translation>Platzhalter für benutzerdefinierte Klassen</translation>
-    </message>
-    <message>
-        <source>Cannot set an empty include file.</source>
-        <translation>Der Name der Include-Datei darf nicht leer sein.</translation>
-    </message>
-    <message>
-        <source>The class %1 cannot be removed</source>
-        <translation>Die Klasse %1 kann nicht gelöscht werden</translation>
-    </message>
-    <message>
-        <source>The class %1 cannot be renamed</source>
-        <translation>Die Klasse %1 kann nicht umbenannt werden</translation>
-    </message>
-    <message>
-        <source>The base class %1 is invalid.</source>
-        <translation>%1 ist keine gültige Basisklasse.</translation>
-    </message>
-</context>
-<context>
-    <name>QtSizePolicyPropertyManager</name>
-    <message>
-        <source>Vertical Stretch</source>
-        <translation>Vertikaler Dehnungsfaktor</translation>
-    </message>
-    <message>
-        <source>Horizontal Policy</source>
-        <translation>Horizontale Einstellung</translation>
-    </message>
-    <message>
-        <source>&lt;Invalid&gt;</source>
-        <translation>&lt;Ungültig&gt;</translation>
-    </message>
-    <message>
-        <source>[%1, %2, %3, %4]</source>
-        <translation>[%1, %2, %3, %4]</translation>
-    </message>
-    <message>
-        <source>Horizontal Stretch</source>
-        <translation>Horizontaler Dehnungsfaktor</translation>
-    </message>
-    <message>
-        <source>Vertical Policy</source>
-        <translation>Vertikale Einstellung</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::ButtonGroupMenu</name>
-    <message>
-        <source>Break</source>
-        <translation>Aufheben</translation>
-    </message>
-    <message>
-        <source>Select members</source>
-        <translation>Mitglieder auswählen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::PreviewWidget</name>
-    <message>
-        <source>LineEdit</source>
-        <translation>LineEdit</translation>
-    </message>
-    <message>
-        <source>ComboBox</source>
-        <translation>ComboBox</translation>
-    </message>
-    <message>
-        <source>ButtonGroup</source>
-        <translation>ButtonGroup</translation>
-    </message>
-    <message>
-        <source>ButtonGroup2</source>
-        <translation>ButtonGroup2</translation>
-    </message>
-    <message>
-        <source>CheckBox1</source>
-        <translation>CheckBox1</translation>
-    </message>
-    <message>
-        <source>CheckBox2</source>
-        <translation>CheckBox2</translation>
-    </message>
-    <message>
-        <source>RadioButton1</source>
-        <translation>RadioButton1</translation>
-    </message>
-    <message>
-        <source>RadioButton2</source>
-        <translation>RadioButton2</translation>
-    </message>
-    <message>
-        <source>RadioButton3</source>
-        <translation>RadioButton3</translation>
-    </message>
-    <message>
-        <source>PushButton</source>
-        <translation>PushButton</translation>
-    </message>
-    <message>
-        <source>Preview Window</source>
-        <translation>Vorschaufenster</translation>
-    </message>
-</context>
-<context>
-    <name>SaveFormAsTemplate</name>
-    <message>
-        <source>Open Error</source>
-        <translation>Fehler beim Öffnen</translation>
-    </message>
-    <message>
-        <source>There was an error writing the template %1 to disk. Reason: %2</source>
-        <translation>Die Vorlage %1 konnte nicht in eine Datei geschrieben werden: %2</translation>
-    </message>
-    <message>
-        <source>Template Exists</source>
-        <translation>Die Vorlage existiert  bereits</translation>
-    </message>
-    <message>
-        <source>&amp;Name:</source>
-        <translation>&amp;Name:</translation>
-    </message>
-    <message>
-        <source>Pick a directory to save templates in</source>
-        <translation>Wählen Sie ein Verzeichnis zum Abspeichern der Vorlagen aus</translation>
-    </message>
-    <message>
-        <source>Overwrite Template</source>
-        <translation>Vorlage überschreiben</translation>
-    </message>
-    <message>
-        <source>Add path...</source>
-        <translation>Verzeichnis anlegen...</translation>
-    </message>
-    <message>
-        <source>Write Error</source>
-        <translation>Schreibfehler</translation>
-    </message>
-    <message>
-        <source>Save Form As Template</source>
-        <translation>Formular als Vorlage abspeichern</translation>
-    </message>
-    <message>
-        <source>&amp;Category:</source>
-        <translation>&amp;Kategorie:</translation>
-    </message>
-    <message>
-        <source>A template with the name %1 already exists.
-Do you want overwrite the template?</source>
-        <translation>Es existiert bereits eine Vorlage mit dem Namen %1.
-Möchten Sie sie überschreiben?</translation>
-    </message>
-    <message>
-        <source>There was an error opening template %1 for writing. Reason: %2</source>
-        <translation>Die Vorlage %1 konnte nicht in eine Datei geschrieben werden: %2</translation>
-    </message>
-</context>
-<context>
-    <name>ObjectInspectorModel</name>
-    <message>
-        <source>Class</source>
-        <translation>Klasse</translation>
-    </message>
-    <message>
-        <source>Object</source>
-        <translation>Objekt</translation>
-    </message>
-    <message>
-        <source>&lt;noname&gt;</source>
-        <translation>&lt;unbenannt&gt;</translation>
-    </message>
-    <message>
-        <source>separator</source>
-        <translation>Trenner</translation>
-    </message>
-</context>
-<context>
-    <name>BrushPropertyManager</name>
-    <message>
-        <source>Color</source>
-        <translation>Farbe</translation>
-    </message>
-    <message>
-        <source>Cross</source>
-        <translation>Kreuzende Linien</translation>
-    </message>
-    <message>
-        <source>Solid</source>
-        <translation>Voll</translation>
-    </message>
-    <message>
-        <source>Style</source>
-        <translation>Stil</translation>
-    </message>
-    <message>
-        <source>Horizontal</source>
-        <translation>Horizontal</translation>
-    </message>
-    <message>
-        <source>No brush</source>
-        <translation>Kein Muster</translation>
-    </message>
-    <message>
-        <source>Backward diagonal</source>
-        <translation>Rückwärtslehnende Diagonalen</translation>
-    </message>
-    <message>
-        <source>Forward diagonal</source>
-        <translation>Vorwärtslehnende Diagonalen</translation>
-    </message>
-    <message>
-        <source>Crossing diagonal</source>
-        <translation>Kreuzende Diagonalen</translation>
-    </message>
-    <message>
-        <source>[%1, %2]</source>
-        <translation>[%1, %2]</translation>
-    </message>
-    <message>
-        <source>Dense 1</source>
-        <translation>Dichte 1</translation>
-    </message>
-    <message>
-        <source>Dense 2</source>
-        <translation>Dichte 2</translation>
-    </message>
-    <message>
-        <source>Dense 3</source>
-        <translation>Dichte 3</translation>
-    </message>
-    <message>
-        <source>Dense 4</source>
-        <translation>Dichte 4</translation>
-    </message>
-    <message>
-        <source>Dense 5</source>
-        <translation>Dichte 5</translation>
-    </message>
-    <message>
-        <source>Dense 6</source>
-        <translation>Dichte 6</translation>
-    </message>
-    <message>
-        <source>Dense 7</source>
-        <translation>Dichte 7</translation>
-    </message>
-    <message>
-        <source>Vertical</source>
-        <translation>Vertikal</translation>
-    </message>
-</context>
-<context>
-    <name>QDesignerMenu</name>
-    <message>
-        <source>Remove separator</source>
-        <translation>Trenner löschen</translation>
-    </message>
-    <message>
-        <source>Add Separator</source>
-        <translation>Trenner hinzufügen</translation>
-    </message>
-    <message>
-        <source>Add separator</source>
-        <translation>Trenner hinzufügen</translation>
-    </message>
-    <message>
-        <source>Insert action</source>
-        <translation>Aktion einfügen</translation>
-    </message>
-    <message>
-        <source>Type Here</source>
-        <translation>Geben Sie Text ein</translation>
-    </message>
-    <message>
-        <source>Remove action &apos;%1&apos;</source>
-        <translation>Aktion &apos;%1&apos; löschen</translation>
-    </message>
-    <message>
-        <source>Insert separator</source>
-        <translation>Trenner einfügen</translation>
-    </message>
-</context>
-<context>
-    <name>AppFontWidget</name>
-    <message>
-        <source>Fonts</source>
-        <translation>Schriftarten</translation>
-    </message>
-    <message>
-        <source>Remove all font files</source>
-        <translation>Alle Schriftarten entfernen</translation>
-    </message>
-    <message>
-        <source>Remove Fonts</source>
-        <translation>Schriftarten entfernen</translation>
-    </message>
-    <message>
-        <source>Font files (*.ttf)</source>
-        <translation>Schriftarten (*.ttf)</translation>
-    </message>
-    <message>
-        <source>Error Adding Fonts</source>
-        <translation>Fehler beim Hinzufügen einer Schriftart</translation>
-    </message>
-    <message>
-        <source>Error Removing Fonts</source>
-        <translation>Fehler beim Entfernen von Schriftarten</translation>
-    </message>
-    <message>
-        <source>Add font files</source>
-        <translation>Schriftarten hinzufügen</translation>
-    </message>
-    <message>
-        <source>Add Font Files</source>
-        <translation>Schriftarten hinzufügen</translation>
-    </message>
-    <message>
-        <source>Would you like to remove all fonts?</source>
-        <translation>Möchten Sie alle Schriftarten entfernen?</translation>
-    </message>
-    <message>
-        <source>Remove current font file</source>
-        <translation>Schriftart entfernen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::PropertyEditor</name>
-    <message>
-        <source>Color Groups</source>
-        <translation>Farbige Hervorhebung</translation>
-    </message>
-    <message>
-        <source>Add Dynamic Property...</source>
-        <translation>Dynamische Eigenschaft hinzufügen...</translation>
-    </message>
-    <message>
-        <source>Object: %1
-Class: %2</source>
-        <translation>Objekt: %1
-Klasse: %2</translation>
-    </message>
-    <message>
-        <source>Configure Property Editor</source>
-        <translation>Anzeige der Eigenschaften konfigurieren</translation>
-    </message>
-    <message>
-        <source>Drop Down Button View</source>
-        <translation>Detailansicht</translation>
-    </message>
-    <message>
-        <source>Filter</source>
-        <translation>Filter</translation>
-    </message>
-    <message>
-        <source>Remove Dynamic Property</source>
-        <translation>Dynamische Eigenschaft löschen</translation>
-    </message>
-    <message>
-        <source>String...</source>
-        <translation>Zeichenkette...</translation>
-    </message>
-    <message>
-        <source>Bool...</source>
-        <translation>Boolescher Wert...</translation>
-    </message>
-    <message>
-        <source>Sorting</source>
-        <translation>Sortiert</translation>
-    </message>
-    <message>
-        <source>Other...</source>
-        <translation>Anderer Typ...</translation>
-    </message>
-    <message>
-        <source>Tree View</source>
-        <translation>Baumansicht</translation>
-    </message>
-</context>
-<context>
-    <name>QStackedWidgetEventFilter</name>
-    <message>
-        <source>Change Page Order...</source>
-        <translation>Seiten umordnen....</translation>
-    </message>
-    <message>
-        <source>Delete</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>Page %1 of %2</source>
-        <translation>Seite %1 von %2</translation>
-    </message>
-    <message>
-        <source>After Current Page</source>
-        <translation>Danach</translation>
-    </message>
-    <message>
-        <source>Insert Page</source>
-        <translation>Seite einfügen</translation>
-    </message>
-    <message>
-        <source>Before Current Page</source>
-        <translation>Davor</translation>
-    </message>
-    <message>
-        <source>Change Page Order</source>
-        <translation>Seiten umordnen</translation>
-    </message>
-    <message>
-        <source>Previous Page</source>
-        <translation>Vorige Seite</translation>
-    </message>
-    <message>
-        <source>Next Page</source>
-        <translation>Nächste Seite</translation>
-    </message>
-</context>
-<context>
-    <name>QToolBoxHelper</name>
-    <message>
-        <source>Change Page Order...</source>
-        <translation>Seiten umordnen....</translation>
-    </message>
-    <message>
-        <source>Page %1 of %2</source>
-        <translation>Seite %1 von %2</translation>
-    </message>
-    <message>
-        <source>After Current Page</source>
-        <translation>Danach</translation>
-    </message>
-    <message>
-        <source>Insert Page</source>
-        <translation>Seite einfügen</translation>
-    </message>
-    <message>
-        <source>Before Current Page</source>
-        <translation>Davor</translation>
-    </message>
-    <message>
-        <source>Delete Page</source>
-        <translation>Seite löschen</translation>
-    </message>
-    <message>
-        <source>Change Page Order</source>
-        <translation>Seiten umordnen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::PaletteEditor</name>
-    <message>
-        <source>Quick</source>
-        <translation>Einfach</translation>
-    </message>
-    <message>
-        <source>Disabled</source>
-        <translation>Ausgegraut</translation>
-    </message>
-    <message>
-        <source>Edit Palette</source>
-        <translation>Palette ändern</translation>
-    </message>
-    <message>
-        <source>Tune Palette</source>
-        <translation>Palette</translation>
-    </message>
-    <message>
-        <source>Active</source>
-        <translation>Aktiv</translation>
-    </message>
-    <message>
-        <source>Inactive</source>
-        <translation>Inaktiv</translation>
-    </message>
-    <message>
-        <source>Preview</source>
-        <translation>Vorschau</translation>
-    </message>
-    <message>
-        <source>Compute Details</source>
-        <translation>Details berechnen</translation>
-    </message>
-    <message>
-        <source>Show Details</source>
-        <translation>Details einblenden</translation>
-    </message>
-</context>
-<context>
-    <name>QDesignerResource</name>
-    <message>
-        <source>Error while pasting clipboard contents: The root element &lt;ui&gt; is missing.</source>
-        <translation>Fehler beim Einfügen der Zwischenablage: Das Wurzelelement &lt;ui&gt; fehlt.</translation>
-    </message>
-    <message>
-        <source>The container extension of the widget &apos;%1&apos; (%2) returned a widget not managed by Designer &apos;%3&apos; (%4) when queried for page #%5.
-Container pages should only be added by specifying them in XML returned by the domXml() method of the custom widget.</source>
-        <translation>Die Container-Extension des Widgets &apos;%1&apos; (%2) gab für Seite %5 ein Widget &apos;%3&apos; (%4) zurück, was nicht von Designer verwaltet wird.
-Container-Seiten sollten ausschließlich im XML der domXML()-Methode spezifiziert werden.</translation>
-    </message>
-    <message>
-        <source>Unexpected element &lt;%1&gt;</source>
-        <translation>Ungültiges Element &lt;%1&gt;</translation>
-    </message>
-    <message>
-        <source>Error while pasting clipboard contents at line %1, column %2: %3</source>
-        <translation>Fehler beim Einfügen der Zwischenablage, Zeile %1, Spalte %2: %3</translation>
-    </message>
-    <message>
-        <source>The layout type &apos;%1&apos; is not supported, defaulting to grid.</source>
-        <translation>Der Layout-Typ &apos;%1&apos; wird nicht unterstützt; es wurde ein Grid-Layout erzeugt.</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::DesignerPropertyManager</name>
-    <message>
-        <source>Theme</source>
-        <translation>Thema</translation>
-    </message>
-    <message>
-        <source>Active Off</source>
-        <translation>Aktiv, aus</translation>
-    </message>
-    <message>
-        <source>Horizontal</source>
-        <translation>Horizontal</translation>
-    </message>
-    <message>
-        <source>%1, %2</source>
-        <translation>%1, %2</translation>
-    </message>
-    <message>
-        <source>AlignBottom</source>
-        <translation>Am unteren Rand zentrieren</translation>
-    </message>
-    <message>
-        <source>AlignTop</source>
-        <translation>Am oberen Rand ausrichten</translation>
-    </message>
-    <message>
-        <source>Normal Off</source>
-        <translation>Normal, aus</translation>
-    </message>
-    <message>
-        <source>translatable</source>
-        <translation>Ãœbersetzung</translation>
-    </message>
-    <message>
-        <source>AlignJustify</source>
-        <translation>Blocksatz</translation>
-    </message>
-    <message>
-        <source>Disabled Off</source>
-        <translation>Nicht verfügbar, aus</translation>
-    </message>
-    <message numerus="yes">
-        <source>Customized (%n roles)</source>
-        <translation>
-            <numerusform>Angepasst (eine Rolle)</numerusform>
-            <numerusform>Angepasst (%n Rollen)</numerusform>
-        </translation>
-    </message>
-    <message>
-        <source>AlignHCenter</source>
-        <translation>Horizontal zentrieren</translation>
-    </message>
-    <message>
-        <source>Normal On</source>
-        <translation>Normal, ein</translation>
-    </message>
-    <message>
-        <source>Disabled On</source>
-        <translation>Verfügbar, ein</translation>
-    </message>
-    <message>
-        <source>comment</source>
-        <translation>Kommentar</translation>
-    </message>
-    <message>
-        <source>Selected On</source>
-        <translation>Ausgewählt, ein</translation>
-    </message>
-    <message>
-        <source>Active On</source>
-        <translation>Aktiv, ein</translation>
-    </message>
-    <message>
-        <source>[Theme] %1</source>
-        <translation>[Thema] %1</translation>
-    </message>
-    <message>
-        <source>Vertical</source>
-        <translation>Vertikal</translation>
-    </message>
-    <message>
-        <source>AlignVCenter</source>
-        <translation>Vertikal zentrieren</translation>
-    </message>
-    <message>
-        <source>disambiguation</source>
-        <translation>Kennung</translation>
-    </message>
-    <message>
-        <source>AlignRight</source>
-        <translation>Rechtsbündig ausrichten</translation>
-    </message>
-    <message>
-        <source>Inherited</source>
-        <translation>Geerbt</translation>
-    </message>
-    <message>
-        <source>Selected Off</source>
-        <translation>Ausgewählt, aus</translation>
-    </message>
-    <message>
-        <source>AlignLeft</source>
-        <translation>Linksbündig ausrichten</translation>
-    </message>
-</context>
-<context>
-    <name>QtTreePropertyBrowser</name>
-    <message>
-        <source>Value</source>
-        <translation>Wert</translation>
-    </message>
-    <message>
-        <source>Property</source>
-        <translation>Eigenschaft</translation>
-    </message>
-</context>
-<context>
-    <name>QtSizeFPropertyManager</name>
-    <message>
-        <source>Width</source>
-        <translation>Breite</translation>
-    </message>
-    <message>
-        <source>Height</source>
-        <translation>Höhe</translation>
-    </message>
-    <message>
-        <source>%1 x %2</source>
-        <translation>%1 x %2</translation>
-    </message>
-</context>
-<context>
-    <name>QtSizePropertyManager</name>
-    <message>
-        <source>Width</source>
-        <translation>Breite</translation>
-    </message>
-    <message>
-        <source>Height</source>
-        <translation>Höhe</translation>
-    </message>
-    <message>
-        <source>%1 x %2</source>
-        <translation>%1 x %2</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::TextEditTaskMenu</name>
-    <message>
-        <source>Edit HTML</source>
-        <translation>HTML bearbeiten</translation>
-    </message>
-    <message>
-        <source>Edit Text</source>
-        <translation>Text bearbeiten</translation>
-    </message>
-    <message>
-        <source>Change HTML...</source>
-        <translation>HTML ändern...</translation>
-    </message>
-    <message>
-        <source>Change Plain Text...</source>
-        <translation>Text ändern...</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::WidgetBoxTreeWidget</name>
-    <message>
-        <source>Edit name</source>
-        <translation>Namen ändern</translation>
-    </message>
-    <message>
-        <source>Custom Widgets</source>
-        <translation>Benutzerdefinierte Widgets</translation>
-    </message>
-    <message>
-        <source>Collapse all</source>
-        <translation>Alles zuklappen</translation>
-    </message>
-    <message>
-        <source>Remove</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>Icon View</source>
-        <translation>Icon-Ansicht</translation>
-    </message>
-    <message>
-        <source>Expand all</source>
-        <translation>Alles aufklappen</translation>
-    </message>
-    <message>
-        <source>Scratchpad</source>
-        <translation>Ablage</translation>
-    </message>
-    <message>
-        <source>List View</source>
-        <translation>Listenansicht</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::PlainTextEditorDialog</name>
-    <message>
-        <source>Edit text</source>
-        <translation>Text bearbeiten</translation>
-    </message>
-</context>
-<context>
-    <name>SelectSignalDialog</name>
-    <message>
-        <source>class</source>
-        <translation>Klasse</translation>
-    </message>
-    <message>
-        <source>signal</source>
-        <translation>Signal</translation>
-    </message>
-    <message>
-        <source>Go to slot</source>
-        <translation>Slot anzeigen</translation>
-    </message>
-    <message>
-        <source>Select signal</source>
-        <translation>Signal auswählen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::FormEditor</name>
-    <message>
-        <source>The file &quot;%1&quot; has changed outside Designer. Do you want to reload it?</source>
-        <translation>Die Ressourcendatei &quot;%1&quot; wurde außerhalb Designer geändert. Möchten Sie sie neu laden?</translation>
-    </message>
-    <message>
-        <source>Resource File Changed</source>
-        <translation>Änderung einer Ressourcendatei</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::PaletteModel</name>
-    <message>
-        <source>Disabled</source>
-        <translation>Ausgegraut</translation>
-    </message>
-    <message>
-        <source>Active</source>
-        <translation>Aktiv</translation>
-    </message>
-    <message>
-        <source>Inactive</source>
-        <translation>Inaktiv</translation>
-    </message>
-    <message>
-        <source>Color Role</source>
-        <translation>Farbrolle</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::QDesignerResource</name>
-    <message>
-        <source>Resource files (*.qrc)</source>
-        <translation>Ressourcendateien (*.qrc)</translation>
-    </message>
-    <message>
-        <source>Loading qrc file</source>
-        <translation>Laden der Ressourcendatei</translation>
-    </message>
-    <message>
-        <source>The specified qrc file &lt;p&gt;&lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;could not be found. Do you want to update the file location?&lt;/p&gt;</source>
-        <translation>Die Ressourcendatei  &lt;p&gt;&lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt; konnte nicht gefunden werden. Möchten Sie einen neuen Pfad eingeben?&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <source>New location for %1</source>
-        <translation>Neuer Pfad für %1</translation>
-    </message>
-</context>
-<context>
-    <name>QDesignerAppearanceOptionsWidget</name>
-    <message>
-        <source>Toolwindow Font</source>
-        <translation>Font für Dockfenster</translation>
-    </message>
-    <message>
-        <source>Multiple Top-Level Windows</source>
-        <translation>Multifenster-Modus</translation>
-    </message>
-    <message>
-        <source>Docked Window</source>
-        <translation>Dockfenster-Modus</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::NewDynamicPropertyDialog</name>
-    <message>
-        <source>horizontalSpacer</source>
-        <translation>horizontalSpacer</translation>
-    </message>
-    <message>
-        <source>The &apos;_q_&apos; prefix is reserved for the Qt library.
-Please select another name.</source>
-        <translation>Der Präfix  &apos;_q_&apos; wird von der Qt-Bibliothek für interne Zwecke verwendet.Bitte wählen Sie einen anderen Namen.</translation>
-    </message>
-    <message>
-        <source>Create Dynamic Property</source>
-        <translation>Dynamische Eigenschaft erzeugen</translation>
-    </message>
-    <message>
-        <source>The current object already has a property named &apos;%1&apos;.
-Please select another, unique one.</source>
-        <translation>Das Objekt besitzt eine bereits eine Eigenschaft namens &apos;%1&apos;.
-Bitte wählen Sie einen anderen, eindeutigen Namen.</translation>
-    </message>
-    <message>
-        <source>Property Name</source>
-        <translation>Name der Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Property Type</source>
-        <translation>Typ der Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Set Property Name</source>
-        <translation>Namen der Eigenschaft setzen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::QDesignerWidgetBox</name>
-    <message>
-        <source>The XML code specified for the widget %1 does not contain any widget elements.
-%2</source>
-        <translation>Der XML-Code für das Widget %1 enthält keine Widgets.%2</translation>
-    </message>
-    <message>
-        <source>An error has been encountered at line %1 of %2: %3</source>
-        <translation>Fehler bei Zeile %1 von %2: %3</translation>
-    </message>
-    <message>
-        <source>A parse error occurred at line %1, column %2 of the XML code specified for the widget %3: %4
-%5</source>
-        <translation>Der XML-Code für das Widget %3 enthält einen Fehler bei Zeile %1, Spalte %2:%4:
-%5</translation>
-    </message>
-    <message>
-        <source>Unexpected end of file encountered when parsing widgets.</source>
-        <translation>Vorzeitiges Dateiende beim Lesen der Widget-Box-Konfiguration.</translation>
-    </message>
-    <message>
-        <source>Unexpected element &lt;%1&gt;</source>
-        <translation>Ungültiges Element &lt;%1&gt;</translation>
-    </message>
-    <message>
-        <source>Unexpected element &lt;%1&gt; encountered when parsing for &lt;widget&gt; or &lt;ui&gt;</source>
-        <translation>An Stelle des erwarteten &lt;widget&gt;- oder &lt;ui&gt;-Elementes wurde &lt;%1&gt; gefunden</translation>
-    </message>
-    <message>
-        <source>A widget element could not be found.</source>
-        <translation>Es fehlt das Widget-Element.</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::PreviewMdiArea</name>
-    <message>
-        <source>The moose in the noose
-ate the goose who was loose.</source>
-        <translation>The moose in the noose
-ate the goose who was loose.</translation>
-    </message>
-</context>
-<context>
-    <name>EmbeddedOptionsControl</name>
-    <message>
-        <source>&lt;html&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Font&lt;/b&gt;&lt;/td&gt;&lt;td&gt;%1, %2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Style&lt;/b&gt;&lt;/td&gt;&lt;td&gt;%3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Resolution&lt;/b&gt;&lt;/td&gt;&lt;td&gt;%4 x %5&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/html&gt;</source>
-        <translation>&lt;html&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Font&lt;/b&gt;&lt;/td&gt;&lt;td&gt;%1, %2&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Stil&lt;/b&gt;&lt;/td&gt;&lt;td&gt;%3&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Auflösung&lt;/b&gt;&lt;/td&gt;&lt;td&gt;%4 x %5&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/html&gt;</translation>
-    </message>
-</context>
-<context>
-    <name>NewForm</name>
-    <message>
-        <source>The temporary form file %1 could not be written.</source>
-        <translation>Die temporäre Formulardatei %1 konnte nicht geschrieben werden.</translation>
-    </message>
-    <message>
-        <source>&amp;Close</source>
-        <translation>&amp;Schließen</translation>
-    </message>
-    <message>
-        <source>Recent</source>
-        <translation>Zuletzt bearbeitet</translation>
-    </message>
-    <message>
-        <source>C&amp;reate</source>
-        <translation>&amp;Neu von Vorlage</translation>
-    </message>
-    <message>
-        <source>Read error</source>
-        <translation>Lesefehler</translation>
-    </message>
-    <message>
-        <source>&amp;Open...</source>
-        <translation>&amp;Öffnen...</translation>
-    </message>
-    <message>
-        <source>A temporary form file could not be created in %1.</source>
-        <translation>In dem Verzeichnis %1 konnte keine temporäre Formulardatei angelegt werden.</translation>
-    </message>
-    <message>
-        <source>New Form</source>
-        <translation>Neues Formular</translation>
-    </message>
-    <message>
-        <source>Show this Dialog on Startup</source>
-        <translation>Diesen Dialog zu Beginn anzeigen</translation>
-    </message>
-    <message>
-        <source>&amp;Recent Forms</source>
-        <translation>&amp;Zuletzt bearbeitete Formulare</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::CodeDialog</name>
-    <message>
-        <source>The temporary form file %1 could not be written.</source>
-        <translation>Die temporäre Formulardatei %1 konnte nicht geschrieben werden.</translation>
-    </message>
-    <message>
-        <source>The file %1 could not be written: %2</source>
-        <translation>Die Datei %1 konnte nicht geschrieben werden: %2</translation>
-    </message>
-    <message>
-        <source>The file %1 could not be opened: %2</source>
-        <translation>Die Datei %1 konnte nicht geöffnet werden: %2</translation>
-    </message>
-    <message>
-        <source>%1 - [Code]</source>
-        <translation>%1 - [Code]</translation>
-    </message>
-    <message>
-        <source>Copy All</source>
-        <translation>Alles kopieren</translation>
-    </message>
-    <message>
-        <source>A temporary form file could not be created in %1.</source>
-        <translation>In dem Verzeichnis %1 konnte keine temporäre Formulardatei angelegt werden.</translation>
-    </message>
-    <message>
-        <source>Header Files (*.%1)</source>
-        <translation>Include-Dateien  (*.%1)</translation>
-    </message>
-    <message>
-        <source>Save...</source>
-        <translation>Speichern...</translation>
-    </message>
-    <message>
-        <source>Save Code</source>
-        <translation>Code speichern</translation>
-    </message>
-    <message>
-        <source>&amp;Find in Text...</source>
-        <translation>&amp;Suchen...</translation>
-    </message>
-    <message>
-        <source>%1 - Error</source>
-        <translation>%1 - Fehler</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::StyleSheetEditorDialog</name>
-    <message>
-        <source>Edit Style Sheet</source>
-        <translation>Stylesheet bearbeiten</translation>
-    </message>
-    <message>
-        <source>Valid Style Sheet</source>
-        <translation>Stylesheet gültig</translation>
-    </message>
-    <message>
-        <source>Invalid Style Sheet</source>
-        <translation>Stylesheet ungültig</translation>
-    </message>
-    <message>
-        <source>Add Color...</source>
-        <translation>Farbe hinzufügen...</translation>
-    </message>
-    <message>
-        <source>Add Gradient...</source>
-        <translation>Gradient hinzufügen...</translation>
-    </message>
-    <message>
-        <source>Add Resource...</source>
-        <translation>Ressource hinzufügen...</translation>
-    </message>
-    <message>
-        <source>Add Font...</source>
-        <translation>Font hinzufügen...</translation>
-    </message>
-</context>
-<context>
-    <name>QAbstractFormBuilder</name>
-    <message>
-        <source>The creation of a widget of the class &apos;%1&apos; failed.</source>
-        <translation>Es konnte kein Widget der Klasse &apos;%1&apos; erzeugt werden.</translation>
-    </message>
-    <message>
-        <source>An error has occurred while reading the UI file at line %1, column %2: %3</source>
-        <translation>Fehler beim Lesen der ui-Datei bei Zeile %1, Spalte %2: %3</translation>
-    </message>
-    <message>
-        <source>Invalid UI file</source>
-        <translation>Ungültige UI-Datei</translation>
-    </message>
-    <message>
-        <source>Invalid UI file: The root element &lt;ui&gt; is missing.</source>
-        <translation>Fehler beim Lesen der ui-Datei: Das Wurzelelement &lt;ui&gt; fehlt.</translation>
-    </message>
-    <message>
-        <source>This file cannot be read because it was created using %1.</source>
-        <translation>Die Datei kann nicht gelesen werden, da sie mit %1 erzeugt wurde.</translation>
-    </message>
-    <message>
-        <source>Invalid QButtonGroup reference &apos;%1&apos; referenced by &apos;%2&apos;.</source>
-        <translation>Ungültige Referenz der Buttongruppe &apos;%1&apos;, referenziert von &apos;%2&apos;.</translation>
-    </message>
-    <message>
-        <source>Attempt to add a layout to a widget &apos;%1&apos; (%2) which already has a layout of non-box type %3.
-This indicates an inconsistency in the ui-file.</source>
-        <translation>Es wurde versucht, ein Layout auf das Widget &apos;%1&apos; (%2) zu setzen, welches bereits ein Layout vom Typ %3 hat. Das deutet auf eine Inkonsistenz in der ui-Datei hin.</translation>
-    </message>
-    <message>
-        <source>This file was created using Designer from Qt-%1 and cannot be read.</source>
-        <translation>Diese Datei wurde mit Designer Version %1 erstellt und kann nicht gelesen werden.</translation>
-    </message>
-    <message>
-        <source>Empty widget item in %1 &apos;%2&apos;.</source>
-        <translation>Leeres Widget-Item in %1 &apos;%2&apos;.</translation>
-    </message>
-    <message>
-        <source>Attempt to add child that is not of class QWizardPage to QWizard.</source>
-        <translation>Es wurde versucht, einem Objekt der Klasse  QWizard eine Seite hinzuzufügen, die nicht vom Typ QWizardPage ist.</translation>
-    </message>
-    <message>
-        <source>While applying tab stops: The widget &apos;%1&apos; could not be found.</source>
-        <translation>Fehler beim Setzen der Tabulatorreihenfolge: Es konnte kein Widget mit dem Namen &apos;%1&apos; gefunden werden.</translation>
-    </message>
-    <message>
-        <source>Flags property are not supported yet.</source>
-        <translation>Eigenschaften des Typs &quot;Flag&quot; werden nicht unterstützt.</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::ComboBoxTaskMenu</name>
-    <message>
-        <source>Edit Items...</source>
-        <translation>Einträge ändern...</translation>
-    </message>
-    <message>
-        <source>Change Combobox Contents</source>
-        <translation>Inhalt der  Combobox  ändern</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::ListWidgetTaskMenu</name>
-    <message>
-        <source>Edit Items...</source>
-        <translation> Elemente ändern...</translation>
-    </message>
-    <message>
-        <source>Change List Contents</source>
-        <translation>Inhalt der Liste ändern</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::TableWidgetTaskMenu</name>
-    <message>
-        <source>Edit Items...</source>
-        <translation>Elemente ändern...</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::TreeWidgetTaskMenu</name>
-    <message>
-        <source>Edit Items...</source>
-        <translation>Elemente ändern...</translation>
-    </message>
-</context>
-<context>
-    <name>AppFontManager</name>
-    <message>
-        <source>There is no loaded font matching the id &apos;%1&apos;.</source>
-        <translation>Es ist keine Schriftart mit der Id &apos;%1&apos; geladen.</translation>
-    </message>
-    <message>
-        <source>The font file &apos;%1&apos; is already loaded.</source>
-        <translation>Die Fontdatei ist bereits geladen.</translation>
-    </message>
-    <message>
-        <source>The font &apos;%1&apos; (%2) could not be unloaded.</source>
-        <translation>Die Schriftart &apos;%1&apos; (%2) konnte nicht entladen werden.</translation>
-    </message>
-    <message>
-        <source>The font file &apos;%1&apos; could not be loaded.</source>
-        <translation>Die Fontdatei &apos;%1&apos; konnte nicht geladen werden.</translation>
-    </message>
-    <message>
-        <source>The font file &apos;%1&apos; does not have read permissions.</source>
-        <translation>Die Fontdatei &apos;%1&apos; hat keinen Lesezugriff.</translation>
-    </message>
-    <message>
-        <source>&apos;%1&apos; is not a valid font id.</source>
-        <translation>&apos;%1&apos; ist keine gültige Id einer Schriftart.</translation>
-    </message>
-    <message>
-        <source>&apos;%1&apos; is not a file.</source>
-        <translation>&apos;%1&apos; ist keine Datei.</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::PromotionTaskMenu</name>
-    <message>
-        <source>Promoted widgets...</source>
-        <translation>Benutzerdefinierte Klassen...</translation>
-    </message>
-    <message>
-        <source>Demote to %1</source>
-        <translation>Platzhalter für benutzerdefinierte Klasse entfernen und in %1 wandeln</translation>
-    </message>
-    <message>
-        <source>Promote to</source>
-        <translation>Als Platzhalter für benutzerdefinierte Klasse festlegen</translation>
-    </message>
-    <message>
-        <source>Change signals/slots...</source>
-        <translation>Signale/Slots ändern...</translation>
-    </message>
-    <message>
-        <source>Promote to ...</source>
-        <translation>Als Platzhalter für benutzerdefinierte Klasse festlegen...</translation>
-    </message>
-</context>
-<context>
-    <name>FontPropertyManager</name>
-    <message>
-        <source>PreferAntialias</source>
-        <translation>Kantenglättung bevorzugen</translation>
-    </message>
-    <message>
-        <source>Antialiasing</source>
-        <translation>Kantenglättung</translation>
-    </message>
-    <message>
-        <source>NoAntialias</source>
-        <translation>Keine Kantenglättung</translation>
-    </message>
-    <message>
-        <source>PreferDefault</source>
-        <translation>Voreinstellung bevorzugt</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::WidgetBox</name>
-    <message>
-        <source>Warning: Widget creation failed in the widget box. This could be caused by invalid custom widget XML.</source>
-        <translation>Warnung: Die Erzeugung des Widgets in der Widget-Box schlug fehl. Das könnte durch fehlerhaften XML-Code benutzerdefinierter Widgets verursacht worden sein.</translation>
-    </message>
-    <message>
-        <source>Filter</source>
-        <translation>Filter</translation>
-    </message>
-</context>
-<context>
-    <name>QAxWidgetPlugin</name>
-    <message>
-        <source>ActiveX control widget</source>
-        <translation>ActiveX-Widget</translation>
-    </message>
-    <message>
-        <source>ActiveX control</source>
-        <translation>ActiveX-Steuerelement</translation>
-    </message>
-</context>
-<context>
-    <name>Designer</name>
-    <message>
-        <source>Custom Widgets</source>
-        <translation>Benutzerdefinierte Widgets</translation>
-    </message>
-    <message>
-        <source>%1 timed out.</source>
-        <translation>Zeitüberschreitung bei der Ausführung von %1.</translation>
-    </message>
-    <message>
-        <source>This file cannot be read because the extra info extension failed to load.</source>
-        <translation>Die Datei kann nicht gelesen werden (Fehler beim Laden der Daten der ExtraInfoExtension).</translation>
-    </message>
-    <message>
-        <source>Promoted Widgets</source>
-        <translation>Platzhalter für benutzerdefinierte Klassen</translation>
-    </message>
-    <message>
-        <source>Unable to launch %1.</source>
-        <translation>%1 konnte nicht gestartet werden.</translation>
-    </message>
-    <message>
-        <source>Qt Designer</source>
-        <translation>Qt Designer</translation>
-    </message>
-</context>
-<context>
-    <name>ConnectDialog</name>
-    <message>
-        <source>Show signals and slots inherited from QWidget</source>
-        <translation>Signale und Slots von QWidget anzeigen</translation>
-    </message>
-    <message>
-        <source>GroupBox</source>
-        <translation>GroupBox</translation>
-    </message>
-    <message>
-        <source>Configure Connection</source>
-        <translation>Verbindung bearbeiten</translation>
-    </message>
-    <message>
-        <source>Edit...</source>
-        <translation>Ändern...</translation>
-    </message>
-</context>
-<context>
-    <name>DeviceSkin</name>
-    <message>
-        <source>The skin &quot;down&quot; image file &apos;%1&apos; does not exist.</source>
-        <translation>Die Skin-Konfigurationsdatei &apos;%1&apos; (unten) existiert nicht.</translation>
-    </message>
-    <message>
-        <source>The skin configuration file &apos;%1&apos; could not be opened.</source>
-        <translation>Die Skin-Konfigurationsdatei &apos;%1&apos; konnte nicht geöffnet werden.</translation>
-    </message>
-    <message>
-        <source>Mismatch in number of areas, expected %1, got %2.</source>
-        <translation>Die angegebene Anzahl der Bereiche (%1) stimmt nicht; es wurden %2 Bereiche gefunden.</translation>
-    </message>
-    <message>
-        <source>Syntax error in area definition: %1</source>
-        <translation>Die Bereichsdefinition enthält einen Syntaxfehler: %1</translation>
-    </message>
-    <message>
-        <source>Syntax error: %1</source>
-        <translation>Syntaxfehler: %1</translation>
-    </message>
-    <message>
-        <source>The skin cursor image file &apos;%1&apos; does not exist.</source>
-        <translation>Die Skin-Bilddatei  &apos;%1&apos; für den Cursor existiert nicht.</translation>
-    </message>
-    <message>
-        <source>The skin &quot;up&quot; image file &apos;%1&apos; does not exist.</source>
-        <translation>Die Skin-Konfigurationsdatei &apos;%1&apos; (oben) existiert nicht.</translation>
-    </message>
-    <message>
-        <source>The skin configuration file &apos;%1&apos; could not be read: %2</source>
-        <translation>Die Skin-Konfigurationsdatei &apos;%1&apos; konnte nicht gelesen werden: %2</translation>
-    </message>
-    <message>
-        <source>The image file &apos;%1&apos; could not be loaded.</source>
-        <translation>Die Pixmap-Datei &apos;%1&apos; konnte nicht geladen werden.</translation>
-    </message>
-    <message>
-        <source>The skin directory &apos;%1&apos; does not contain a configuration file.</source>
-        <translation>Das Skin-Verzeichnis &apos;%1&apos; enthält keine Konfigurationsdatei.</translation>
-    </message>
-    <message>
-        <source>The skin &quot;closed&quot; image file &apos;%1&apos; does not exist.</source>
-        <translation>Die Skin-Konfigurationsdatei &apos;%1&apos; (geschlossen) existiert nicht.</translation>
-    </message>
-</context>
-<context>
-    <name>QtGradientStopsWidget</name>
-    <message>
-        <source>Zoom In</source>
-        <translation>Vergrößern</translation>
-    </message>
-    <message>
-        <source>Flip All</source>
-        <translation>Alles umkehren</translation>
-    </message>
-    <message>
-        <source>Delete</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>Zoom Out</source>
-        <translation>Verkleinern</translation>
-    </message>
-    <message>
-        <source>Select All</source>
-        <translation>Alles auswählen</translation>
-    </message>
-    <message>
-        <source>Reset Zoom</source>
-        <translation>Vergrößerung zurücksetzen</translation>
-    </message>
-    <message>
-        <source>New Stop</source>
-        <translation>Neuer Bezugspunkt</translation>
-    </message>
-</context>
-<context>
-    <name>QDesignerAxWidget</name>
-    <message>
-        <source>Control loaded</source>
-        <translation>Steuerelement geladen</translation>
-    </message>
-    <message>
-        <source>Reset control</source>
-        <translation>Steuerelement zurücksetzen</translation>
-    </message>
-    <message>
-        <source>Set control</source>
-        <translation>Steuerelement setzen</translation>
-    </message>
-    <message>
-        <source>A COM exception occurred when executing a meta call of type %1, index %2 of &quot;%3&quot;.</source>
-        <translation>Beim Ausführen eines Meta-Aufrufs des Typs %1, Index %2 von &quot;%3&quot; trat eine eine COM-Ausnahme auf.</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::SignalSlotDialog</name>
-    <message>
-        <source>There is already a signal with the signature &apos;%1&apos;.</source>
-        <translation>Es existiert bereits ein Signal mit der Signatur &apos;%1&apos;.</translation>
-    </message>
-    <message>
-        <source>There is already a slot with the signature &apos;%1&apos;.</source>
-        <translation>Es existiert bereits ein Slot mit der Signatur &apos;%1&apos;.</translation>
-    </message>
-    <message>
-        <source>Signals/Slots of %1</source>
-        <translation>Signale/Slots von %1</translation>
-    </message>
-    <message>
-        <source>%1 - Duplicate Signature</source>
-        <translation>%1 - Doppelte Signatur</translation>
-    </message>
-</context>
-<context>
-    <name>QDesignerToolWindow</name>
-    <message>
-        <source>Object Inspector</source>
-        <translation>Objektanzeige</translation>
-    </message>
-    <message>
-        <source>Property Editor</source>
-        <translation>Eigenschaften</translation>
-    </message>
-    <message>
-        <source>Action Editor</source>
-        <translation>Aktionseditor</translation>
-    </message>
-    <message>
-        <source>Signal/Slot Editor</source>
-        <translation>Signale und Slots</translation>
-    </message>
-    <message>
-        <source>Widget Box</source>
-        <translation>Widget-Box</translation>
-    </message>
-    <message>
-        <source>Resource Browser</source>
-        <translation>Ressourcen</translation>
-    </message>
-</context>
-<context>
-    <name>QStackedWidgetPreviewEventFilter</name>
-    <message>
-        <source>Go to next page of %1 &apos;%2&apos; (%3/%4).</source>
-        <translation>Gehe zur nächste Seite von %1 &apos;%2&apos; (%3/%4).</translation>
-    </message>
-    <message>
-        <source>Go to previous page of %1 &apos;%2&apos; (%3/%4).</source>
-        <translation>Gehe zur vorigen Seite von %1 &apos;%2&apos; (%3/%4).</translation>
-    </message>
-</context>
-<context>
-    <name>QAxWidgetTaskMenu</name>
-    <message>
-        <source>The control requires a design-time license</source>
-        <translation>Dieses Steuerelement erfordert eine Lizenz zur Entwurfszeit</translation>
-    </message>
-    <message>
-        <source>Reset Control</source>
-        <translation>Steuerelement zurücksetzen</translation>
-    </message>
-    <message>
-        <source>Licensed Control</source>
-        <translation>Steuerelement erfordert Lizenz</translation>
-    </message>
-    <message>
-        <source>Set Control</source>
-        <translation>Steuerelement setzen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::DeviceProfileDialog</name>
-    <message>
-        <source>Save Profile</source>
-        <translation>Profil speichern</translation>
-    </message>
-    <message>
-        <source>Save Profile - Error</source>
-        <translation>Fehler beim Speichern des Profils</translation>
-    </message>
-    <message>
-        <source>Open profile</source>
-        <translation>Profil öffnen</translation>
-    </message>
-    <message>
-        <source>&apos;%1&apos; is not a valid profile: %2</source>
-        <translation>&apos;%1&apos; ist kein gültiges Profil: %2</translation>
-    </message>
-    <message>
-        <source>Unable to open the file &apos;%1&apos; for reading: %2</source>
-        <translation>Die Datei &apos;%1&apos; konnte nicht zum Lesen geöffnet werden: %2</translation>
-    </message>
-    <message>
-        <source>Unable to open the file &apos;%1&apos; for writing: %2</source>
-        <translation>Die Datei &apos;%1&apos; konnte nicht zum Schreiben geöffnet werden: %2</translation>
-    </message>
-    <message>
-        <source>Device Profiles (*.%1)</source>
-        <translation>Profile</translation>
-    </message>
-    <message>
-        <source>Default</source>
-        <translation>Vorgabe</translation>
-    </message>
-    <message>
-        <source>Open Profile - Error</source>
-        <translation>Fehler beim Öffnen des Profils</translation>
-    </message>
-</context>
-<context>
-    <name>QFormBuilder</name>
-    <message>
-        <source>QFormBuilder was unable to create a custom widget of the class &apos;%1&apos;; defaulting to base class &apos;%2&apos;.</source>
-        <translation>QFormBuilder konnte kein benutzerdefiniertes Widget der Klasse &apos;%1&apos; erzeugen; es wurde ein Widget der Basisklasse &apos;%2&apos; erzeugt.</translation>
-    </message>
-    <message>
-        <source>The flag-value &apos;%1&apos; is invalid. Zero will be used instead.</source>
-        <translation>Der Flag-Wert &apos;%1&apos; ist ungültig. Es wird der Wert 0 verwendet.</translation>
-    </message>
-    <message>
-        <source>The property %1 could not be written. The type %2 is not supported yet.</source>
-        <translation>Die Eigenschaft %1 konnte nicht geschrieben werden, da der Typ %2 nicht unterstützt wird.</translation>
-    </message>
-    <message>
-        <source>The enumeration-type property %1 could not be read.</source>
-        <translation>Die Eigenschaft %1 konnte nicht gelesen werden (Typ: Aufzählung).</translation>
-    </message>
-    <message>
-        <source>The set-type property %1 could not be read.</source>
-        <translation>Die Eigenschaft %1 konnte nicht gelesen werden (Typ: Menge).</translation>
-    </message>
-    <message>
-        <source>Reading properties of the type %1 is not supported yet.</source>
-        <translation>Das Lesen von Eigenschaften des Typs %1 wird nicht unterstützt.</translation>
-    </message>
-    <message>
-        <source>The layout type `%1&apos; is not supported.</source>
-        <translation>Layouts des Typs `%1&apos; werden nicht unterstützt.</translation>
-    </message>
-    <message>
-        <source>The enumeration-value &apos;%1&apos; is invalid. The default value &apos;%2&apos; will be used instead.</source>
-        <translation>Der Aufzählungswert &apos;%1&apos; ist ungültig. Es wird der Vorgabewert &apos;%2&apos; verwendet.</translation>
-    </message>
-    <message>
-        <source>An empty class name was passed on to %1 (object name: &apos;%2&apos;).</source>
-        <translation>Der Methode %1 wurde ein leerer Klassennamen übergeben (Name &apos;%2&apos;).</translation>
-    </message>
-    <message>
-        <source>QFormBuilder was unable to create a widget of the class &apos;%1&apos;.</source>
-        <translation>QFormBuilder konnte kein Objekt der Klasse &apos;%1&apos; erzeugen.</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::BuddyEditor</name>
-    <message>
-        <source>Set automatically</source>
-        <translation>Automatisch setzen</translation>
-    </message>
-    <message numerus="yes">
-        <source>Add %n buddies</source>
-        <translation>
-            <numerusform>Buddy hinzufügen</numerusform>
-            <numerusform>%n Buddies hinzufügen</numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <source>Remove %n buddies</source>
-        <translation>
-            <numerusform>Buddy  löschen</numerusform>
-            <numerusform>%n Buddies löschen</numerusform>
-        </translation>
-    </message>
-    <message>
-        <source>Remove buddies</source>
-        <translation>Buddies löschen</translation>
-    </message>
-    <message>
-        <source>Add buddy</source>
-        <translation>Buddy hinzufügen</translation>
-    </message>
-</context>
-<context>
-    <name>QtLocalePropertyManager</name>
-    <message>
-        <source>%1, %2</source>
-        <translation>%1, %2</translation>
-    </message>
-    <message>
-        <source>&lt;Invalid&gt;</source>
-        <translation>&lt;Ungültig&gt;</translation>
-    </message>
-    <message>
-        <source>Language</source>
-        <translation>Sprache</translation>
-    </message>
-    <message>
-        <source>Country</source>
-        <translation>Land</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::PluginDialog</name>
-    <message>
-        <source>Qt Designer couldn&apos;t find any plugins</source>
-        <translation>Qt Designer kann keine Plugins finden</translation>
-    </message>
-    <message>
-        <source>Loaded Plugins</source>
-        <translation>Geladene Plugins</translation>
-    </message>
-    <message>
-        <source>Scan for newly installed custom widget plugins.</source>
-        <translation>Nach neu installierten Plugins mit benutzerdefinierten Widgets suchen.</translation>
-    </message>
-    <message>
-        <source>Components</source>
-        <translation>Komponenten</translation>
-    </message>
-    <message>
-        <source>New custom widget plugins have been found.</source>
-        <translation>Es wurden neu installierte Plugins mit benutzerdefinierten Widgets gefunden.</translation>
-    </message>
-    <message>
-        <source>Refresh</source>
-        <translation>Neu laden</translation>
-    </message>
-    <message>
-        <source>Qt Designer found the following plugins</source>
-        <translation>Qt Designer hat die folgenden Plugins gefunden</translation>
-    </message>
-    <message>
-        <source>Plugin Information</source>
-        <translation>Plugins</translation>
-    </message>
-    <message>
-        <source>Failed Plugins</source>
-        <translation>Fehlgeschlagene Plugins</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::IconThemeDialog</name>
-    <message>
-        <source>Set Icon From Theme</source>
-        <translation>Icon aus Thema setzen</translation>
-    </message>
-    <message>
-        <source>Input icon name from the current theme:</source>
-        <translation>Icon-Name vom aktuellen Thema eingeben:</translation>
-    </message>
-</context>
-<context>
-    <name>DesignerMetaEnum</name>
-    <message>
-        <source>&apos;%1&apos; could not be converted to an enumeration value of type &apos;%2&apos;.</source>
-        <translation>&apos;%1&apos; konnte nicht  in einen Wert der Aufzählung &apos;%2&apos; konvertiert werden.</translation>
-    </message>
-    <message>
-        <source>%1 is not a valid enumeration value of &apos;%2&apos;.</source>
-        <translation>%1 ist kein gültiger Wert der Aufzählung &apos;%2&apos;.</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::PreviewDeviceSkin</name>
-    <message>
-        <source>&amp;Close</source>
-        <translation>&amp;Schließen</translation>
-    </message>
-    <message>
-        <source>&amp;Portrait</source>
-        <translation>&amp;Hochformat</translation>
-    </message>
-    <message>
-        <source>Landscape (&amp;CCW)</source>
-        <translation>Querformat (&amp;entgegen Uhrzeigersinn)</translation>
-    </message>
-    <message>
-        <source>&amp;Landscape (CW)</source>
-        <translation>Querformat (im &amp;Uhrzeigersinn)</translation>
-    </message>
-</context>
-<context>
-    <name>QDesignerFormWindow</name>
-    <message>
-        <source>If you don&apos;t save, your changes will be lost.</source>
-        <translation>Die Änderungen gehen verloren, wenn Sie nicht speichern. </translation>
-    </message>
-    <message>
-        <source>Do you want to save the changes to this document before closing?</source>
-        <translation>Möchten Sie die Änderungen an diesem Formular speichern?</translation>
-    </message>
-    <message>
-        <source>Save Form?</source>
-        <translation>Formular speichern?</translation>
-    </message>
-    <message>
-        <source>%1 - %2[*]</source>
-        <translation>%1 - %2[*]</translation>
-    </message>
-</context>
-<context>
-    <name>QtResourceView</name>
-    <message>
-        <source>Size: %1 x %2
-%3</source>
-        <translation>Größe: %1 x %2
-%3</translation>
-    </message>
-    <message>
-        <source>Filter</source>
-        <translation>Filter</translation>
-    </message>
-    <message>
-        <source>Reload</source>
-        <translation>Neu laden</translation>
-    </message>
-    <message>
-        <source>Copy Path</source>
-        <translation>Pfad kopieren</translation>
-    </message>
-    <message>
-        <source>Edit Resources...</source>
-        <translation>Ressourcen bearbeiten...</translation>
-    </message>
-</context>
-<context>
-    <name>AbstractItemEditor</name>
-    <message>
-        <source>PartiallyChecked</source>
-        <translation>PartiallyChecked</translation>
-    </message>
-    <message>
-        <source>UserCheckable</source>
-        <translation>UserCheckable</translation>
-    </message>
-    <message>
-        <source>Tristate</source>
-        <translation>Tristate</translation>
-    </message>
-    <message>
-        <source>Checked</source>
-        <translation>Checked</translation>
-    </message>
-    <message>
-        <source>Unchecked</source>
-        <translation>Unchecked</translation>
-    </message>
-    <message>
-        <source>Editable</source>
-        <translation>Editable</translation>
-    </message>
-    <message>
-        <source>Selectable</source>
-        <translation>Selectable</translation>
-    </message>
-    <message>
-        <source>DragEnabled</source>
-        <translation>DragEnabled</translation>
-    </message>
-    <message>
-        <source>DropEnabled</source>
-        <translation>DropEnabled</translation>
-    </message>
-    <message>
-        <source>Enabled</source>
-        <translation>Enabled</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::PreviewActionGroup</name>
-    <message>
-        <source>%1 Style</source>
-        <translation>%1-Stil</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::LabelTaskMenu</name>
-    <message>
-        <source>Change plain text...</source>
-        <translation>Text ändern...</translation>
-    </message>
-    <message>
-        <source>Change rich text...</source>
-        <translation>Formatierbaren Text ändern...</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::ListWidgetEditor</name>
-    <message>
-        <source>Edit List Widget</source>
-        <translation>List-Widget ändern</translation>
-    </message>
-    <message>
-        <source>New Item</source>
-        <translation>Neues Element</translation>
-    </message>
-    <message>
-        <source>Edit Combobox</source>
-        <translation>Combobox ändern</translation>
-    </message>
-</context>
-<context>
-    <name>QtGradientDialog</name>
-    <message>
-        <source>Edit Gradient</source>
-        <translation>Gradienten bearbeiten</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::FormLayoutMenu</name>
-    <message>
-        <source>Add form layout row...</source>
-        <translation>Zeile hinzufügen...</translation>
-    </message>
-</context>
-<context>
-    <name>ConnectionDelegate</name>
-    <message>
-        <source>&lt;slot&gt;</source>
-        <translation>&lt;Slot&gt;</translation>
-    </message>
-    <message>
-        <source>&lt;object&gt;</source>
-        <translation>&lt;Objekt&gt;</translation>
-    </message>
-    <message>
-        <source>&lt;signal&gt;</source>
-        <translation>&lt;Signal&gt;</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::LineEditTaskMenu</name>
-    <message>
-        <source>Change text...</source>
-        <translation>Text ändern...</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::TabOrderEditor</name>
-    <message>
-        <source>Tab Order</source>
-        <translation>Tabulatorreihenfolge</translation>
-    </message>
-    <message>
-        <source>Tab Order List...</source>
-        <translation>Tabulatorreihenfolge...</translation>
-    </message>
-    <message>
-        <source>Restart</source>
-        <translation>Neu beginnen</translation>
-    </message>
-    <message>
-        <source>Tab Order List</source>
-        <translation>Tabulatorreihenfolge</translation>
-    </message>
-    <message>
-        <source>Start from Here</source>
-        <translation>Hier neu beginnen</translation>
-    </message>
-</context>
-<context>
-    <name>QTabWidgetEventFilter</name>
-    <message>
-        <source>Delete</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>Page %1 of %2</source>
-        <translation>Seite %1 von %2</translation>
-    </message>
-    <message>
-        <source>After Current Page</source>
-        <translation>Danach</translation>
-    </message>
-    <message>
-        <source>Insert Page</source>
-        <translation>Seite einfügen</translation>
-    </message>
-    <message>
-        <source>Before Current Page</source>
-        <translation>Davor</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::ConnectionEdit</name>
-    <message>
-        <source>Delete</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>Select All</source>
-        <translation>Alles auswählen</translation>
-    </message>
-    <message>
-        <source>Deselect All</source>
-        <translation>Auswahl rücksetzen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::FormWindowBase</name>
-    <message>
-        <source>Delete</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>&lt;p&gt;This file contains top level spacers.&lt;br/&gt;They will &lt;b&gt;not&lt;/b&gt; be saved.&lt;/p&gt;&lt;p&gt;Perhaps you forgot to create a layout?&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Das Formular enthält freistehende Layoutelemente.&lt;br/&gt;Sie werden &lt;b&gt;nicht&lt;/b&gt; gespeichert.&lt;/p&gt;&lt;p&gt;Haben Sie möglicherweise vergessen, ein Layout zu erstellen?&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <source>Delete &apos;%1&apos;</source>
-        <translation> &apos;%1&apos; löschen</translation>
-    </message>
-    <message>
-        <source>Invalid form</source>
-        <translation>Ungültiges Formular</translation>
-    </message>
-</context>
-<context>
-    <name>WidgetDataBase</name>
-    <message>
-        <source>A custom widget plugin whose class name (%1) matches that of an existing class has been found.</source>
-        <translation>Es wurde ein Plugin gefunden, das ein benutzerdefiniertes Widget enthält, dessen Klassenname (%1) einer existierenden Klasse entspricht.</translation>
-    </message>
-    <message>
-        <source>The file contains a custom widget &apos;%1&apos; whose base class (%2) differs from the current entry in the widget database (%3). The widget database is left unchanged.</source>
-        <translation>Die Datei enthält ein benutzerdefiniertes Widget &apos;%1&apos; dessen Basisklasse (%2) nicht mit dem Eintrag in der Widget-Datenbank übereinstimmt. Die Widget-Datenbank wird nicht geändert.</translation>
-    </message>
-</context>
-<context>
-    <name>FormWindow</name>
-    <message>
-        <source>Unexpected element &lt;%1&gt;</source>
-        <translation>Ungültiges Element &lt;%1&gt;</translation>
-    </message>
-    <message>
-        <source>Error while pasting clipboard contents at line %1, column %2: %3</source>
-        <translation>Fehler beim Einfügen der Zwischenablage, Zeile %1, Spalte %2: %3</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::ToolBarEventFilter</name>
-    <message>
-        <source>Remove Toolbar &apos;%1&apos;</source>
-        <translation>Werkzeugleiste &apos;%1&apos; löschen</translation>
-    </message>
-    <message>
-        <source>Insert Separator before &apos;%1&apos;</source>
-        <translation>Trenner vor &apos;%1&apos; einfügen</translation>
-    </message>
-    <message>
-        <source>Remove action &apos;%1&apos;</source>
-        <translation>Aktion &apos;%1&apos; löschen</translation>
-    </message>
-    <message>
-        <source>Insert Separator</source>
-        <translation>Trenner einfügen</translation>
-    </message>
-    <message>
-        <source>Append Separator</source>
-        <translation>Trenner hinzufügen</translation>
-    </message>
-</context>
-<context>
-    <name>DPI_Chooser</name>
-    <message>
-        <source>Standard (96 x 96)</source>
-        <translation>Standardauflösung (96 x 96)</translation>
-    </message>
-    <message>
-        <source>Greenphone (179 x 185)</source>
-        <translation>Greenphone (179 x 185)</translation>
-    </message>
-    <message>
-        <source>High (192 x 192)</source>
-        <translation>Hohe Auflösung (192 x 192)</translation>
-    </message>
-</context>
-<context>
-    <name>ItemPropertyBrowser</name>
-    <message>
-        <source>XX Icon Selected off</source>
-        <translation>Ausgewähltes Icon, aus</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::MenuTaskMenu</name>
-    <message>
-        <source>Remove</source>
-        <translation>Löschen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::StatusBarTaskMenu</name>
-    <message>
-        <source>Remove</source>
-        <translation>Löschen</translation>
-    </message>
-</context>
-<context>
-    <name>EmbeddedOptionsPage</name>
-    <message>
-        <source>Device Profiles</source>
-        <translation>Profile</translation>
-    </message>
-    <message>
-        <source>Embedded Design</source>
-        <translation>Embedded-Entwurf</translation>
-    </message>
-</context>
-<context>
-    <name>VersionDialog</name>
-    <message>
-        <source>&lt;br/&gt;Qt Designer is a graphical user interface designer for Qt applications.&lt;br/&gt;</source>
-        <translation>&lt;br/&gt;Qt Designer is a graphical user interface designer for Qt applications.&lt;br/&gt;</translation>
-    </message>
-    <message>
-        <source>&lt;h3&gt;%1&lt;/h3&gt;&lt;br/&gt;&lt;br/&gt;Version %2</source>
-        <translation>&lt;h3&gt;%1&lt;/h3&gt;&lt;br/&gt;&lt;br/&gt;Version %2</translation>
-    </message>
-    <message>
-        <source>%1&lt;br/&gt;Copyright (C) %2 The Qt Company Ltd.</source>
-        <translation>%1&lt;br/&gt;Copyright (C) %2 The Qt Company Ltd.</translation>
-    </message>
-    <message>
-        <source>Qt Designer</source>
-        <translation>Qt Designer</translation>
-    </message>
-</context>
-<context>
-    <name>AssistantClient</name>
-    <message>
-        <source>Unable to launch assistant (%1).</source>
-        <translation>Das Programm Assistant kann nicht gestartet werden (%1).</translation>
-    </message>
-    <message>
-        <source>Unable to send request: Assistant is not responding.</source>
-        <translation>Fehler beim Senden einer Anforderung: Das Programm Assistant antwortet nicht.</translation>
-    </message>
-    <message>
-        <source>The binary &apos;%1&apos; does not exist.</source>
-        <translation>Die ausführbare Datei &apos;%1&apos; existiert nicht.</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal</name>
-    <message>
-        <source>%1 Widget</source>
-        <translation>%1 Widget</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::HtmlTextEdit</name>
-    <message>
-        <source>Insert HTML entity</source>
-        <translation>HTML-Sonderzeichen einfügen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::ColorAction</name>
-    <message>
-        <source>Text Color</source>
-        <translation>Schriftfarbe</translation>
-    </message>
-</context>
-<context>
-    <name>PromotionModel</name>
-    <message>
-        <source>Not used</source>
-        <translation>Nicht verwendet</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::MorphMenu</name>
-    <message>
-        <source>Morph into</source>
-        <translation>Widget umwandeln in</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::StringListEditorButton</name>
-    <message>
-        <source>Change String List</source>
-        <translation>Zeichenkettenliste ändern</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::QDesignerPromotionDialog</name>
-    <message>
-        <source>Promote</source>
-        <translation>Anwenden</translation>
-    </message>
-    <message>
-        <source>Promoted Widgets</source>
-        <translation>Platzhalter für benutzerdefinierte Widgets</translation>
-    </message>
-    <message>
-        <source>Change signals/slots...</source>
-        <translation>Signale/Slots ändern...</translation>
-    </message>
-    <message>
-        <source>Promoted Classes</source>
-        <translation>Platzhalter für benutzerdefinierte Klassen</translation>
-    </message>
-    <message>
-        <source>%1 - Error</source>
-        <translation>%1 - Fehler</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::ObjectInspector</name>
-    <message>
-        <source>Change Current Page</source>
-        <translation>Seite wechseln</translation>
-    </message>
-    <message>
-        <source>&amp;Find in Text...</source>
-        <translation>&amp;Suchen...</translation>
-    </message>
-</context>
-<context>
-    <name>QtPropertyBrowserUtils</name>
-    <message>
-        <source>[%1, %2]</source>
-        <translation>[%1, %2]</translation>
-    </message>
-    <message>
-        <source>[%1, %2, %3] (%4)</source>
-        <translation>[%1, %2, %3] (%4)</translation>
-    </message>
-</context>
-<context>
-    <name>QtCharEdit</name>
-    <message>
-        <source>Clear Char</source>
-        <translation>Zeichen löschen</translation>
-    </message>
-</context>
-<context>
-    <name>Spacer</name>
-    <message>
-        <source>Vertical Spacer &apos;%1&apos;, %2 x %3</source>
-        <translation>Vertikales Füllelement &apos;%1&apos;, %2 x %3</translation>
-    </message>
-    <message>
-        <source>Horizontal Spacer &apos;%1&apos;, %2 x %3</source>
-        <translation>Horizontales Füllelement &apos;%1&apos;, %2 x %3</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::GroupBoxTaskMenu</name>
-    <message>
-        <source>Change title...</source>
-        <translation>Titel ändern...</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::PaletteEditorButton</name>
-    <message>
-        <source>Change Palette</source>
-        <translation>Palette ändern</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::SignalSlotEditorTool</name>
-    <message>
-        <source>Edit Signals/Slots</source>
-        <translation>Signale und Slots bearbeiten</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::WidgetEditorTool</name>
-    <message>
-        <source>Edit Widgets</source>
-        <translation>Widgets bearbeiten</translation>
-    </message>
-</context>
-<context>
-    <name>ObjectNameDialog</name>
-    <message>
-        <source>Change Object Name</source>
-        <translation>Objektnamen bearbeiten</translation>
-    </message>
-    <message>
-        <source>Object Name</source>
-        <translation>Objektname</translation>
-    </message>
-</context>
-<context>
-    <name>QDesignerSharedSettings</name>
-    <message>
-        <source>An error has been encountered while parsing device profile XML: %1</source>
-        <translation>Beim Lesen des Profils trat ein Fehler auf: %1</translation>
-    </message>
-    <message>
-        <source>The template path %1 could not be created.</source>
-        <translation>Das Vorlagenverzeichnis %1 konnte nicht angelegt werden.</translation>
-    </message>
-</context>
-<context>
-    <name>QtGradientViewDialog</name>
-    <message>
-        <source>Select Gradient</source>
-        <translation>Gradienten auswählen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::LanguageResourceDialog</name>
-    <message>
-        <source>Choose Resource</source>
-        <translation>Ressource auswählen</translation>
-    </message>
-</context>
-<context>
-    <name>TemplateOptionsPage</name>
-    <message>
-        <source>Template Paths</source>
-        <translation>Verzeichnisse für Vorlagen</translation>
-    </message>
-</context>
-<context>
-    <name>DeviceProfile</name>
-    <message>
-        <source>An invalid tag &lt;%1&gt; was encountered.</source>
-        <translation>Ein ungültiges Element &apos;%1&apos; wurde festgestellt.</translation>
-    </message>
-    <message>
-        <source>&apos;%1&apos; is not a number.</source>
-        <translation>&apos;%1&apos; ist keine gültige Zahl.</translation>
-    </message>
-</context>
-<context>
-    <name>QDesignerAppearanceOptionsPage</name>
-    <message>
-        <source>Appearance</source>
-        <translation>Ansicht</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::PreviewManager</name>
-    <message>
-        <source>%1 - [Preview]</source>
-        <translation>%1 - [Vorschau]</translation>
-    </message>
-</context>
-<context>
-    <name>SignalSlotConnection</name>
-    <message>
-        <source>SENDER(%1), SIGNAL(%2), RECEIVER(%3), SLOT(%4)</source>
-        <translation>SENDER(%1), SIGNAL(%2), EMPFÄNGER(%3), SLOT(%4)</translation>
-    </message>
-</context>
-<context>
-    <name>QDesignerFormBuilder</name>
-    <message>
-        <source>Designer</source>
-        <translation>Designer</translation>
-    </message>
-    <message>
-        <source>The preview failed to build.</source>
-        <translation>Es konnte keine Vorschau erzeugt werden.</translation>
-    </message>
-</context>
-<context>
-    <name>PreferencesDialog</name>
-    <message>
-        <source>Preferences</source>
-        <translation>Einstellungen</translation>
-    </message>
-</context>
-<context>
-    <name>DesignerMetaFlags</name>
-    <message>
-        <source>&apos;%1&apos; could not be converted to a flag value of type &apos;%2&apos;.</source>
-        <translation>&apos;%1&apos; konnte nicht  in einen Wert des Maskentyps &apos;%2&apos; konvertiert werden.</translation>
-    </message>
-</context>
-<context>
-    <name>FormBuilder</name>
-    <message>
-        <source>Invalid minimum size for &apos;%1&apos;: &apos;%2&apos;</source>
-        <translation>Ungültige Minimalgröße für &apos;%1&apos;: &apos;%2&apos;</translation>
-    </message>
-    <message>
-        <source>Invalid stretch value for &apos;%1&apos;: &apos;%2&apos;</source>
-        <translation>Ungültiger Stretch-Wert für &apos;%1&apos;: &apos;%2&apos;</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::BuddyEditorPlugin</name>
-    <message>
-        <source>Edit Buddies</source>
-        <translation>Buddies bearbeiten</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::BuddyEditorTool</name>
-    <message>
-        <source>Edit Buddies</source>
-        <translation>Buddies bearbeiten</translation>
-    </message>
-</context>
-<context>
-    <name>QDesignerPropertySheet</name>
-    <message>
-        <source>Dynamic Properties</source>
-        <translation>Dynamische Eigenschaften</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::CommandLinkButtonTaskMenu</name>
-    <message>
-        <source>Change description...</source>
-        <translation>Beschreibung ändern...</translation>
-    </message>
-</context>
-<context>
-    <name>QtResourceViewDialog</name>
-    <message>
-        <source>Select Resource</source>
-        <translation>Ressource auswählen</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::PropertyLineEdit</name>
-    <message>
-        <source>Insert line break</source>
-        <translation>Zeilenumbruch einfügen</translation>
-    </message>
-</context>
-<context>
-    <name>AppFontDialog</name>
-    <message>
-        <source>Additional Fonts</source>
-        <translation>Zusätzliche Schriftarten</translation>
-    </message>
-</context>
-<context>
-    <name>QDesigner</name>
-    <message>
-        <source>%1 - warning</source>
-        <translation>%1 - Warnung</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::TabOrderEditorPlugin</name>
-    <message>
-        <source>Edit Tab Order</source>
-        <translation>Tabulatorreihenfolge bearbeiten</translation>
-    </message>
-</context>
-<context>
-    <name>qdesigner_internal::TabOrderEditorTool</name>
-    <message>
-        <source>Edit Tab Order</source>
-        <translation>Tabulatorreihenfolge bearbeiten</translation>
-    </message>
-</context>
-</TS>
diff --git a/translations/linguist_de.ts b/translations/linguist_de.ts
deleted file mode 100755
index f2b8ba59bfca723efff5626b195d6bf4a009930e..0000000000000000000000000000000000000000
--- a/translations/linguist_de.ts
+++ /dev/null
@@ -1,1666 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<context>
-    <name>FindDialog</name>
-    <message>
-        <source></source>
-        <translation></translation>
-    </message>
-    <message>
-        <source>Find</source>
-        <translation>Suchen</translation>
-    </message>
-    <message>
-        <source>Obsoleted messages are skipped when checked.</source>
-        <translation>Bewirkt, dass als &apos;obsolet&apos; gekennzeichnete Texte übersprungen werden.</translation>
-    </message>
-    <message>
-        <source>Click here to close this window.</source>
-        <translation>Klicken Sie hier, um das Fenster zu schließen.</translation>
-    </message>
-    <message>
-        <source>This window allows you to search for some text in the translation source file.</source>
-        <translation>Dieses Fenster erlaubt die Suche in der Ãœbersetzungsdatei.</translation>
-    </message>
-    <message>
-        <source>Source texts are searched when checked.</source>
-        <translation>Wenn aktiviert, wird in den Ursprungstexten gesucht.</translation>
-    </message>
-    <message>
-        <source>Find Next</source>
-        <translation>Weitersuchen</translation>
-    </message>
-    <message>
-        <source>Click here to find the next occurrence of the text you typed in.</source>
-        <translation>Klicken Sie hier, um zum nächsten Vorkommen des Suchtextes zu springen.</translation>
-    </message>
-    <message>
-        <source>Cancel</source>
-        <translation>Abbrechen</translation>
-    </message>
-    <message>
-        <source>Texts such as &apos;TeX&apos; and &apos;tex&apos; are considered as different when checked.</source>
-        <translation>Wenn aktiviert, werden Texte wie &apos;TeX&apos; und &apos;tex&apos; als unterschiedlich betrachtet.</translation>
-    </message>
-    <message>
-        <source>&amp;Comments</source>
-        <translation>&amp;Kommentare</translation>
-    </message>
-    <message>
-        <source>&amp;Find what:</source>
-        <translation>&amp;Suchmuster:</translation>
-    </message>
-    <message>
-        <source>Options</source>
-        <translation>Optionen</translation>
-    </message>
-    <message>
-        <source>Comments and contexts are searched when checked.</source>
-        <translation>Wenn ausgewählt, werden Kommentare und Kontextnamen durchsucht.</translation>
-    </message>
-    <message>
-        <source>&amp;Translations</source>
-        <translation>&amp;Ãœbersetzungen</translation>
-    </message>
-    <message>
-        <source>&amp;Match case</source>
-        <translation>&amp;Groß-/Kleinschreibung beachten</translation>
-    </message>
-    <message>
-        <source>Skip &amp;obsolete</source>
-        <translation>&apos;&amp;obsolet&apos; überspringen</translation>
-    </message>
-    <message>
-        <source>Translations are searched when checked.</source>
-        <translation>Wenn ausgewählt, wird in den Übersetzungen gesucht.</translation>
-    </message>
-    <message>
-        <source>&amp;Source texts</source>
-        <translation>&amp;Ursprungstexte</translation>
-    </message>
-    <message>
-        <source>Type in the text to search for.</source>
-        <translation>Geben Sie den Text ein, nach dem gesucht werden soll.</translation>
-    </message>
-    <message>
-        <source>Ignore &amp;accelerators</source>
-        <translation>Tastenkürzel &amp;ignorieren</translation>
-    </message>
-</context>
-<context>
-    <name>MainWindow</name>
-    <message>
-        <source></source>
-        <translation></translation>
-    </message>
-    <message>
-        <source>F1</source>
-        <translation>F1</translation>
-    </message>
-    <message>
-        <source>F3</source>
-        <translation>F3</translation>
-    </message>
-    <message>
-        <source>F5</source>
-        <translation>F5</translation>
-    </message>
-    <message>
-        <source>All</source>
-        <translation>Alle</translation>
-    </message>
-    <message>
-        <source>Cu&amp;t</source>
-        <translation>&amp;Ausschneiden</translation>
-    </message>
-    <message>
-        <source>Edit</source>
-        <translation>Bearbeiten</translation>
-    </message>
-    <message>
-        <source>File</source>
-        <translation>Datei</translation>
-    </message>
-    <message>
-        <source>Help</source>
-        <translation>Hilfe</translation>
-    </message>
-    <message>
-        <source>Save</source>
-        <translation>Speichern</translation>
-    </message>
-    <message>
-        <source>Search wrapped.</source>
-        <translation>Suche beginnt von oben.</translation>
-    </message>
-    <message>
-        <source>Qt Linguist</source>
-        <translation>Qt Linguist</translation>
-    </message>
-    <message>
-        <source> MOD </source>
-        <translation>Geändert</translation>
-    </message>
-    <message>
-        <source>&amp;Copy</source>
-        <translation>&amp;Kopieren</translation>
-    </message>
-    <message>
-        <source>&amp;Edit</source>
-        <translation>&amp;Bearbeiten</translation>
-    </message>
-    <message>
-        <source>&amp;File</source>
-        <translation>&amp;Datei</translation>
-    </message>
-    <message>
-        <source>&amp;Help</source>
-        <translation>&amp;Hilfe</translation>
-    </message>
-    <message>
-        <source>&amp;Redo</source>
-        <translation>&amp;Wiederherstellen</translation>
-    </message>
-    <message>
-        <source>&amp;Save</source>
-        <translation>&amp;Speichern</translation>
-    </message>
-    <message>
-        <source>&amp;Undo</source>
-        <translation>&amp;Rückgängig</translation>
-    </message>
-    <message>
-        <source>&amp;View</source>
-        <translation>&amp;Ansicht</translation>
-    </message>
-    <message>
-        <source>&amp;Zoom</source>
-        <translation>&amp;Vergrößerung</translation>
-    </message>
-    <message>
-        <source>E&amp;xit</source>
-        <translation>&amp;Beenden</translation>
-    </message>
-    <message>
-        <source>Close</source>
-        <translation>Schließen</translation>
-    </message>
-    <message>
-        <source>Minimize</source>
-        <translation>Minimieren</translation>
-    </message>
-    <message>
-        <source>Index</source>
-        <translation>Index</translation>
-    </message>
-    <message>
-        <source>finished</source>
-        <translation>erledigt</translation>
-    </message>
-    <message>
-        <source>Items</source>
-        <translation>Einträge</translation>
-    </message>
-    <message>
-        <source>P&amp;rev</source>
-        <translation>V&amp;orheriger</translation>
-    </message>
-    <message>
-        <source>Ne&amp;xt</source>
-        <translation>Nä&amp;chster</translation>
-    </message>
-    <message>
-        <source>Phrase book created.</source>
-        <translation>Wörterbuch erzeugt.</translation>
-    </message>
-    <message>
-        <source>What&apos;s This?</source>
-        <translation>Direkthilfe</translation>
-    </message>
-    <message>
-        <source>Search for some text in the translation source file.</source>
-        <translation>In der Ãœbersetzungsdatei nach Text suchen.</translation>
-    </message>
-    <message>
-        <source>Enables you to add, modify, or delete entries in this phrase book.</source>
-        <translation>Erlaubt das Hinzufügen, Ändern und Entfernen von Wörterbuch-Einträgen.</translation>
-    </message>
-    <message>
-        <source>Do you want to save &apos;%1&apos;?</source>
-        <translation>Möchten Sie &apos;%1&apos; speichern?</translation>
-    </message>
-    <message>
-        <source>Display information about the Qt toolkit by Digia.</source>
-        <translation>Information über das Qt-Toolkit von Digia anzeigen.</translation>
-    </message>
-    <message>
-        <source>Select phrase book to add to</source>
-        <translation>Zu welchem Wörterbuch soll der Eintrag hinzugefügt werden?</translation>
-    </message>
-    <message>
-        <source>Do you want to save the modified files?</source>
-        <translation>Möchten Sie die geänderten Dateien speichern?</translation>
-    </message>
-    <message>
-        <source>&amp;Next Unfinished</source>
-        <translation>&amp;Nächster Unerledigter</translation>
-    </message>
-    <message>
-        <source>Toggle the validity check of place markers, i.e. whether %1, %2, ... are used consistently in the source text and translation text. If the check fails, a message is shown in the warnings window.</source>
-        <translation>Die Prüfung der Platzhalter, das heißt, ob %1, %2 usw. in Ursprungstext und Übersetzung übereinstimmend verwendet werden, ein- bzw. ausschalten. Bei Fehlschlag wird eine Warnung im Hinweis-Fenster angezeigt.</translation>
-    </message>
-    <message>
-        <source>Copy from source text</source>
-        <translation>Ursprungstext übernehmen</translation>
-    </message>
-    <message>
-        <source>Move to the next unfinished item.</source>
-        <translation>Zum nächsten unerledigten Eintrag gehen.</translation>
-    </message>
-    <message>
-        <source>Batch translate all entries using the information in the phrase books.</source>
-        <translation>Alle Einträge automatisch mit Hilfe des Wörterbuchs übersetzen.</translation>
-    </message>
-    <message>
-        <source>Qt phrase books (*.qph);;All files (*)</source>
-        <translation>Qt-Wörterbücher (*.qph);;Alle Dateien (*)</translation>
-    </message>
-    <message>
-        <source>Printing aborted</source>
-        <translation>Drucken abgebrochen</translation>
-    </message>
-    <message>
-        <source>&amp;Add to Phrase Book</source>
-        <translation>Zum Wörterbuch &amp;hinzufügen</translation>
-    </message>
-    <message>
-        <source>Mark this item as done and move to the next unfinished item.</source>
-        <translation>Diesen Eintrag als erledigt markieren und zum nächsten unerledigten Eintrag gehen.</translation>
-    </message>
-    <message>
-        <source>&amp;Reset Sorting</source>
-        <translation>&amp;Sortierung zurücksetzen</translation>
-    </message>
-    <message>
-        <source>Open Read-O&amp;nly...</source>
-        <translation>Schr&amp;eibgeschützt öffnen ...</translation>
-    </message>
-    <message>
-        <source>Loading File - Qt Linguist</source>
-        <translation>Laden - Qt Linguist</translation>
-    </message>
-    <message>
-        <source>&amp;Close</source>
-        <translation>&amp;Schließen</translation>
-    </message>
-    <message>
-        <source>&amp;Paste</source>
-        <translation>&amp;Einfügen</translation>
-    </message>
-    <message>
-        <source>&amp;Open Phrase Book...</source>
-        <translation>&amp;Wörterbuch öffnen ...</translation>
-    </message>
-    <message>
-        <source>Save &amp;As...</source>
-        <translation>Speichern &amp;unter...</translation>
-    </message>
-    <message>
-        <source>Mark item as done and move to the next unfinished item</source>
-        <translation>Eintrag als erledigt markieren und zum nächsten unerledigten Eintrag gehen</translation>
-    </message>
-    <message>
-        <source>Save changes made to this Qt translation source file into a new file.</source>
-        <translation>Änderungen an dieser Qt-Übersetzungsdatei in einer neuen Datei speichern.</translation>
-    </message>
-    <message>
-        <source>&amp;Batch Translation of &apos;%1&apos;...</source>
-        <translation>&amp;Automatische Ãœbersetzung von &apos;%1&apos; ...</translation>
-    </message>
-    <message>
-        <source>MainWindow</source>
-        <translation>Hauptfenster</translation>
-    </message>
-    <message>
-        <source>Select the whole translation text.</source>
-        <translation>Den gesamten Übersetzungstext auswählen.</translation>
-    </message>
-    <message>
-        <source>Copies the source text into the translation field.</source>
-        <translation>Kopiert den Ursprungstext in das Ãœbersetzungsfeld.</translation>
-    </message>
-    <message>
-        <source>Toggle the validity check of accelerators</source>
-        <translation>Prüfung der Tastenkürzel ein- bzw. ausschalten</translation>
-    </message>
-    <message>
-        <source>Previous unfinished item</source>
-        <translation>Vorheriger unerledigter Eintrag</translation>
-    </message>
-    <message>
-        <source>Set whether or not to display translation guesses.</source>
-        <translation>Darstellung von Übersetzungsvorschlägen aktivieren/deaktivieren.</translation>
-    </message>
-    <message>
-        <source>Increase</source>
-        <translation>Vergrößern</translation>
-    </message>
-    <message>
-        <source>Ctrl++</source>
-        <translation>Ctrl++</translation>
-    </message>
-    <message>
-        <source>Ctrl+-</source>
-        <translation>Ctrl+-</translation>
-    </message>
-    <message>
-        <source>Ctrl+0</source>
-        <translation>Ctrl+0</translation>
-    </message>
-    <message>
-        <source>Ctrl+A</source>
-        <translation>Ctrl+A</translation>
-    </message>
-    <message>
-        <source>Ctrl+B</source>
-        <translation>Ctrl+B</translation>
-    </message>
-    <message>
-        <source>Ctrl+C</source>
-        <translation>Ctrl+C</translation>
-    </message>
-    <message>
-        <source>Ctrl+F</source>
-        <translation>Ctrl+F</translation>
-    </message>
-    <message>
-        <source>Ctrl+H</source>
-        <translation>Ctrl+H</translation>
-    </message>
-    <message>
-        <source>Ctrl+J</source>
-        <translation>Ctrl+J</translation>
-    </message>
-    <message>
-        <source>Ctrl+K</source>
-        <translation>Ctrl+K</translation>
-    </message>
-    <message>
-        <source>Ctrl+M</source>
-        <translation>Ctrl+M</translation>
-    </message>
-    <message>
-        <source>Ctrl+N</source>
-        <translation>Ctrl+N</translation>
-    </message>
-    <message>
-        <source>Ctrl+O</source>
-        <translation>Ctrl+O</translation>
-    </message>
-    <message>
-        <source>Ctrl+P</source>
-        <translation>Ctrl+P</translation>
-    </message>
-    <message>
-        <source>Ctrl+Q</source>
-        <translation>Ctrl+Q</translation>
-    </message>
-    <message>
-        <source>Ctrl+S</source>
-        <translation>Ctrl+S</translation>
-    </message>
-    <message>
-        <source>Ctrl+T</source>
-        <translation>Ctrl+T</translation>
-    </message>
-    <message>
-        <source>Ctrl+V</source>
-        <translation>Ctrl+V</translation>
-    </message>
-    <message>
-        <source>Ctrl+W</source>
-        <translation>Ctrl+W</translation>
-    </message>
-    <message>
-        <source>Ctrl+X</source>
-        <translation>Ctrl+X</translation>
-    </message>
-    <message>
-        <source>Ctrl+Y</source>
-        <translation>Ctrl+Y</translation>
-    </message>
-    <message>
-        <source>Ctrl+Z</source>
-        <translation>Ctrl+Z</translation>
-    </message>
-    <message>
-        <source>Sort the items back in the same order as in the message file.</source>
-        <translation>Die Einträge in der gleichen Reihenfolge wie in der ursprünglichen Übersetzungsdatei sortieren.</translation>
-    </message>
-    <message>
-        <source>Copy the selected translation text to the clipboard.</source>
-        <translation>Den ausgewählten Übersetzungstext in die Zwischenablage kopieren.</translation>
-    </message>
-    <message>
-        <source>&amp;Display guesses</source>
-        <translation>&amp;Vorschläge anzeigen</translation>
-    </message>
-    <message>
-        <source>Display information about %1.</source>
-        <translation>Informationen über %1 anzeigen.</translation>
-    </message>
-    <message>
-        <source>&amp;Prev Unfinished</source>
-        <translation>&amp;Vorheriger Unerledigter</translation>
-    </message>
-    <message>
-        <source>Adding entry to phrasebook %1</source>
-        <translation>Eintrag zu Wörterbuch %1 hinzufügen</translation>
-    </message>
-    <message>
-        <source>Do you want to save phrase book &apos;%1&apos;?</source>
-        <translation>Möchten Sie das Wörterbuch &apos;%1&apos; speichern?</translation>
-    </message>
-    <message>
-        <source>Move to the previous unfinished item.</source>
-        <translation>Zum vorherigen unerledigten Eintrag gehen.</translation>
-    </message>
-    <message>
-        <source>Enter What&apos;s This? mode.</source>
-        <translation>Direkthilfe-Modus aktivieren.</translation>
-    </message>
-    <message>
-        <source>Save &apos;%1&apos; &amp;As...</source>
-        <translation>&apos;%1&apos; speichern &amp;unter ...</translation>
-    </message>
-    <message>
-        <source>Paste the clipboard text into the translation.</source>
-        <translation>Text aus der Zwischenablage in die Übersetzung einfügen.</translation>
-    </message>
-    <message>
-        <source>Unable to launch Qt Assistant (%1)</source>
-        <translation>Qt Assistant kann nicht gestartet werden (%1)</translation>
-    </message>
-    <message>
-        <source>Release &apos;%1&apos; As...</source>
-        <translation>&apos;%1&apos; freigeben unter ...</translation>
-    </message>
-    <message>
-        <source>File created.</source>
-        <translation>Datei erzeugt.</translation>
-    </message>
-    <message>
-        <source>Vie&amp;ws</source>
-        <translation>&amp;Ansichten</translation>
-    </message>
-    <message>
-        <source>Create a Qt message file suitable for released applications from the current message file. The filename will automatically be determined from the name of the TS file.</source>
-        <translation>Eine Qt-Nachrichtendatei aus der aktuellen Ãœbersetzungsdatei erzeugen. Der Dateiname wird automatisch aus dem Namen der TS-Datei abgeleitet.</translation>
-    </message>
-    <message>
-        <source>Find &amp;Next</source>
-        <translation>&amp;Weitersuchen</translation>
-    </message>
-    <message numerus="yes">
-        <source>Translated %n entry(s)</source>
-        <translation>
-            <numerusform>Ein Eintrag übersetzt</numerusform>
-            <numerusform>%n Einträge übersetzt</numerusform>
-        </translation>
-    </message>
-    <message>
-        <source>Search And &amp;Translate in &apos;%1&apos;...</source>
-        <translation>Suchen und &amp;übersetzen in &apos;%1&apos; ...</translation>
-    </message>
-    <message>
-        <source>&amp;Toolbars</source>
-        <translation>&amp;Werkzeugleisten</translation>
-    </message>
-    <message>
-        <source>&amp;Open...</source>
-        <translation>Ö&amp;ffnen ...</translation>
-    </message>
-    <message>
-        <source>Toggle checking that phrase suggestions are used. If the check fails, a message is shown in the warnings window.</source>
-        <translation>Die Prüfung der Verwendung der Wörterbuchvorschläge ein- bzw. ausschalten. Bei Fehlschlag wird eine Warnung im Hinweis-Fenster angezeigt.</translation>
-    </message>
-    <message>
-        <source>&amp;Close All</source>
-        <translation>A&amp;lle schließen</translation>
-    </message>
-    <message>
-        <source>Close All</source>
-        <translation>Alle schließen</translation>
-    </message>
-    <message>
-        <source>Open a phrase book to assist translation.</source>
-        <translation>Ein Wörterbuch zur Unterstützung bei der Übersetzung öffnen.</translation>
-    </message>
-    <message>
-        <source>Printing... (page %1)</source>
-        <translation>Drucke ... (Seite %1)</translation>
-    </message>
-    <message>
-        <source>Reset to default</source>
-        <translation>Standardgröße</translation>
-    </message>
-    <message>
-        <source>Search And &amp;Translate...</source>
-        <translation>Suchen und &amp;übersetzen ...</translation>
-    </message>
-    <message>
-        <source>&amp;Accelerators</source>
-        <translation>&amp;Kurzbefehle</translation>
-    </message>
-    <message>
-        <source>&amp;Phrases</source>
-        <translation>&amp;Wörterbuch</translation>
-    </message>
-    <message>
-        <source>Close this phrase book.</source>
-        <translation>Dieses Wörterbuch schließen.</translation>
-    </message>
-    <message>
-        <source>Save As...</source>
-        <translation>Speichern unter ...</translation>
-    </message>
-    <message>
-        <source>No more occurrences of &apos;%1&apos;. Start over?</source>
-        <translation>Keine weiteren Vorkommen von &apos;%1&apos;. Von vorne beginnen?</translation>
-    </message>
-    <message>
-        <source>Toggle the validity check of accelerators, i.e. whether the number of ampersands in the source and translation text is the same. If the check fails, a message is shown in the warnings window.</source>
-        <translation>Die Prüfung der Tastenkürzel, das heißt, die Übereinstimmung der kaufmännischen Und-Zeichen in Quelle und Übersetzung ein- bzw. ausschalten. Bei Fehlschlag wird eine Warnung im Hinweis-Fenster angezeigt.</translation>
-    </message>
-    <message>
-        <source>Create a Qt message file suitable for released applications from the current message file.</source>
-        <translation>Qt-Nachrichtendatei (QM-Datei) aus der aktuellen Ãœbersetzungsdatei erzeugen.</translation>
-    </message>
-    <message>
-        <source>Move to previous item</source>
-        <translation>Zum vorigen Eintrag gehen</translation>
-    </message>
-    <message>
-        <source>Qt phrase books (*.qph)
-All files (*)</source>
-        <translation>Qt-Wörterbücher (*.qph)
-Alle Dateien (*)</translation>
-    </message>
-    <message>
-        <source>Print a list of all the translation units in the current translation source file.</source>
-        <translation>Liste aller Ãœbersetzungseinheiten in der aktuellen Ãœbersetzungsdatei drucken.</translation>
-    </message>
-    <message>
-        <source>File saved.</source>
-        <translation>Datei gespeichert.</translation>
-    </message>
-    <message>
-        <source>Toggle the validity check of place markers</source>
-        <translation>Prüfung der Platzhalter ein- bzw. ausschalten&apos;</translation>
-    </message>
-    <message>
-        <source>&amp;Ending Punctuation</source>
-        <translation>&amp;Punktierung am Ende</translation>
-    </message>
-    <message>
-        <source>Related files (%1);;</source>
-        <translation>Verwandte Dateien (%1);;</translation>
-    </message>
-    <message>
-        <source>The file &apos;%1&apos; does not seem to be related to the file &apos;%2&apos; which is being loaded as well.
-
-Skip loading the first named file?</source>
-        <translation>Die Datei &apos;%1&apos; scheint nicht zu der Datei &apos;%2&apos; zu passen, die ebenfalls geladen wird.
-
-Soll die erstgenannte Datei übersprungen werden?</translation>
-    </message>
-    <message>
-        <source>Create New Phrase Book</source>
-        <translation>Erzeugen eines neuen Wörterbuchs</translation>
-    </message>
-    <message>
-        <source>Warnings</source>
-        <translation>Hinweise</translation>
-    </message>
-    <message>
-        <source>Recently Opened &amp;Files</source>
-        <translation>Zu&amp;letzt bearbeitete Dateien</translation>
-    </message>
-    <message>
-        <source>Release</source>
-        <translation>Freigeben</translation>
-    </message>
-    <message>
-        <source>&amp;Release</source>
-        <translation>&amp;Freigeben</translation>
-    </message>
-    <message>
-        <source>Save All</source>
-        <translation>Alles speichern</translation>
-    </message>
-    <message>
-        <source>&amp;Save All</source>
-        <translation>&amp;Alle speichern</translation>
-    </message>
-    <message>
-        <source>Translation File &amp;Settings...</source>
-        <translation>E&amp;instellungen ...</translation>
-    </message>
-    <message>
-        <source>Qt message files for released applications (*.qm)
-All files (*)</source>
-        <translation>Qt-Nachrichtendateien (*.qm)
-Alle Dateien (*)</translation>
-    </message>
-    <message>
-        <source>&amp;Print...</source>
-        <translation>&amp;Drucken ...</translation>
-    </message>
-    <message>
-        <source>Open Phrase Book</source>
-        <translation>Wörterbuch öffnen</translation>
-    </message>
-    <message>
-        <source>Source text</source>
-        <translation>Ursprungstext</translation>
-    </message>
-    <message>
-        <source>Cannot read from phrase book &apos;%1&apos;.</source>
-        <translation>Wörterbuch &apos;%1&apos; kann nicht gelesen werden.</translation>
-    </message>
-    <message>
-        <source>&amp;Close &apos;%1&apos;</source>
-        <translation>&apos;%1&apos; &amp;schließen</translation>
-    </message>
-    <message>
-        <source>About Qt</source>
-        <translation>Ãœber Qt</translation>
-    </message>
-    <message>
-        <source>%1[*] - Qt Linguist</source>
-        <translation>%1[*] - Qt Linguist</translation>
-    </message>
-    <message>
-        <source>Form Preview Tool</source>
-        <translation>Vorschau für Eingabemasken</translation>
-    </message>
-    <message>
-        <source>obsolete</source>
-        <translation>veraltet</translation>
-    </message>
-    <message>
-        <source>Toggle visualize whitespace in editors</source>
-        <translation>Schaltet die Darstellung der Leerzeichen in den Editoren um</translation>
-    </message>
-    <message numerus="yes">
-        <source>%n translation unit(s) loaded.</source>
-        <translation>
-            <numerusform>Eine Ãœbersetzungseinheit geladen.</numerusform>
-            <numerusform>%n Ãœbersetzungseinheiten geladen.</numerusform>
-        </translation>
-    </message>
-    <message>
-        <source>Version %1</source>
-        <translation>Version %1</translation>
-    </message>
-    <message>
-        <source>Visualize whitespace</source>
-        <translation>Leerzeichen darstellen</translation>
-    </message>
-    <message>
-        <source>&amp;Batch Translation...</source>
-        <translation>&amp;Automatische Ãœbersetzung ...</translation>
-    </message>
-    <message>
-        <source>&amp;Release All</source>
-        <translation>Alles f&amp;reigeben</translation>
-    </message>
-    <message>
-        <source>Open Translation Files</source>
-        <translation>Übersetzungsdateien öffnen</translation>
-    </message>
-    <message>
-        <source>Select &amp;All</source>
-        <translation>Alles &amp;markieren</translation>
-    </message>
-    <message>
-        <source>Toggle the validity check of ending punctuation</source>
-        <translation>Prüfung der Satzendezeichen am Ende des Textes ein- bzw. ausschalten</translation>
-    </message>
-    <message>
-        <source>About Qt Linguist</source>
-        <translation>Ãœber Qt Linguist</translation>
-    </message>
-    <message>
-        <source>Context</source>
-        <translation>Kontext</translation>
-    </message>
-    <message>
-        <source>Translation</source>
-        <translation>Ãœbersetzung</translation>
-    </message>
-    <message>
-        <source>Display translation statistics.</source>
-        <translation>Zeige Ãœbersetzungsstatistik an.</translation>
-    </message>
-    <message>
-        <source>Printing...</source>
-        <translation>Drucke ...</translation>
-    </message>
-    <message>
-        <source>Toggle checking that phrase suggestions are used</source>
-        <translation>Überprüfung, ob Wörterbucheinträge benutzt werden, aktivieren/deaktivieren</translation>
-    </message>
-    <message>
-        <source>Strings</source>
-        <translation>Zeichenketten</translation>
-    </message>
-    <message>
-        <source>Loading...</source>
-        <translation>Lade ...</translation>
-    </message>
-    <message>
-        <source>The file &apos;%1&apos; does not seem to be related to the currently open file(s) &apos;%2&apos;.
-
-Close the open file(s) first?</source>
-        <translation>Die Datei &apos;%1&apos; scheint nicht zu den bereits geöffneten Dateien &apos;%2&apos; zu passen.
-
-Sollen die bereits geöffneten Dateien vorher geschlossen werden?</translation>
-    </message>
-    <message>
-        <source>&amp;Statistics</source>
-        <translation>S&amp;tatistik</translation>
-    </message>
-    <message>
-        <source>&amp;Manual</source>
-        <translation>&amp;Handbuch</translation>
-    </message>
-    <message>
-        <source>Copy the selected translation text to the clipboard and deletes it.</source>
-        <translation>Den ausgewählten Übersetzungstext in die Zwischenablage kopieren und löschen.</translation>
-    </message>
-    <message>
-        <source>Copies the source text into the translation field</source>
-        <translation>Kopiert den Ursprungstext in das Ãœbersetzungsfeld</translation>
-    </message>
-    <message>
-        <source>No untranslated translation units left.</source>
-        <translation>Es wurden alle Ãœbersetzungseinheiten abgearbeitet.</translation>
-    </message>
-    <message>
-        <source>Translate - Qt Linguist</source>
-        <translation>Ãœbersetzung - Qt Linguist</translation>
-    </message>
-    <message>
-        <source>Next unfinished item</source>
-        <translation>Nächster unerledigter Eintrag</translation>
-    </message>
-    <message>
-        <source>Decrease</source>
-        <translation>Verkleinern</translation>
-    </message>
-    <message>
-        <source>Close this window and exit.</source>
-        <translation>Dieses Fenster schließen und das Programm beenden.</translation>
-    </message>
-    <message>
-        <source>&amp;Window</source>
-        <translation>&amp;Fenster</translation>
-    </message>
-    <message>
-        <source>&amp;Phrase matches</source>
-        <translation>&amp;Wörterbuch</translation>
-    </message>
-    <message>
-        <source>Cannot create phrase book &apos;%1&apos;.</source>
-        <translation>Wörterbuch &apos;%1&apos; kann nicht erzeugt werden.</translation>
-    </message>
-    <message>
-        <source>&amp;Search And Translate...</source>
-        <translation>Suchen und &amp;übersetzen ...</translation>
-    </message>
-    <message numerus="yes">
-        <source>%n phrase(s) loaded.</source>
-        <translation>
-            <numerusform>Ein Wörterbucheintrag geladen.</numerusform>
-            <numerusform>%n Wörterbucheinträge geladen.</numerusform>
-        </translation>
-    </message>
-    <message>
-        <source>Length Variants</source>
-        <translation>Längenvarianten</translation>
-    </message>
-    <message>
-        <source>Toggle the validity check of ending punctuation. If the check fails, a message is shown in the warnings window.</source>
-        <translation>Die Prüfung der Satzendezeichen am Ende des Textes ein- bzw. ausschalten. Bei Fehlschlag wird eine Warnung im Hinweis-Fenster angezeigt.</translation>
-    </message>
-    <message>
-        <source>&amp;Save &apos;%1&apos;</source>
-        <translation>&apos;%1&apos; &amp;speichern</translation>
-    </message>
-    <message>
-        <source>Add to phrase book</source>
-        <translation>Hinzufügen zum Wörterbuch</translation>
-    </message>
-    <message>
-        <source>&amp;Close Phrase Book</source>
-        <translation>Wörterbuch &amp;Schließen</translation>
-    </message>
-    <message>
-        <source>&amp;Translation</source>
-        <translation>&amp;Ãœbersetzung</translation>
-    </message>
-    <message>
-        <source>unresolved</source>
-        <translation>ungelöst</translation>
-    </message>
-    <message>
-        <source>Place &amp;Marker Matches</source>
-        <translation>Platz&amp;halter</translation>
-    </message>
-    <message>
-        <source>Create a new phrase book.</source>
-        <translation>Ein neues Wörterbuch erzeugen.</translation>
-    </message>
-    <message>
-        <source>Context: %1</source>
-        <translation>Kontext: %1</translation>
-    </message>
-    <message>
-        <source>Move to the previous item.</source>
-        <translation>Zum vorigen Eintrag gehen.</translation>
-    </message>
-    <message>
-        <source>Release &apos;%1&apos;</source>
-        <translation>&apos;%1&apos; freigeben</translation>
-    </message>
-    <message>
-        <source>&amp;Find...</source>
-        <translation>&amp;Suchen ...</translation>
-    </message>
-    <message>
-        <source>Open a Qt translation source file (TS file) for editing</source>
-        <translation>Qt-Übersetzungsdatei (TS-Datei) zum Bearbeiten öffnen</translation>
-    </message>
-    <message>
-        <source>Phrases and guesses</source>
-        <translation>Wörterbuch und Vorschläge</translation>
-    </message>
-    <message>
-        <source>Ctrl+Shift+J</source>
-        <translation>Ctrl+Shift+J</translation>
-    </message>
-    <message>
-        <source>Ctrl+Shift+K</source>
-        <translation>Ctrl+Shift+K</translation>
-    </message>
-    <message>
-        <source>This panel lists the source contexts.</source>
-        <translation>Dieser Bereich zeigt die Kontexte an.</translation>
-    </message>
-    <message>
-        <source>&amp;Print Phrase Book</source>
-        <translation>Wörterbuch &amp;drucken</translation>
-    </message>
-    <message>
-        <source>&amp;New Phrase Book...</source>
-        <translation>&amp;Neues Wörterbuch ...</translation>
-    </message>
-    <message>
-        <source>Display the manual for %1.</source>
-        <translation>Handbuch zu %1 anzeigen.</translation>
-    </message>
-    <message>
-        <source>Qt Linguist[*]</source>
-        <translation>Qt Linguist[*]</translation>
-    </message>
-    <message>
-        <source>Redo an undone editing operation performed on the translation.</source>
-        <translation>Die letzte rückgängig gemachte Änderung wieder herstellen.</translation>
-    </message>
-    <message>
-        <source>&amp;What&apos;s This?</source>
-        <translation>&amp;Direkthilfe</translation>
-    </message>
-    <message>
-        <source>Translation File &amp;Settings for &apos;%1&apos;...</source>
-        <translation>Einstellungen der Übersetzungs&amp;datei für &apos;%1&apos; ...</translation>
-    </message>
-    <message>
-        <source>Replace the translation on all entries that matches the search source text.</source>
-        <translation>Die Übersetzung aller Einträge ersetzen, die dem Suchtext entsprechen.</translation>
-    </message>
-    <message>
-        <source>Shift+F1</source>
-        <translation>Shift+F1</translation>
-    </message>
-    <message>
-        <source>&amp;Done and Next</source>
-        <translation>&amp;Fertig und Nächster</translation>
-    </message>
-    <message>
-        <source>&amp;Edit Phrase Book</source>
-        <translation>Wörterbuch &amp;bearbeiten</translation>
-    </message>
-    <message>
-        <source>Undo the last editing operation performed on the current translation.</source>
-        <translation>Die letzte Änderung an der Übersetzung rückgängig machen.</translation>
-    </message>
-    <message>
-        <source>Save changes made to this Qt translation source file</source>
-        <translation>Änderungen an der Qt-Übersetzungsdatei speichern</translation>
-    </message>
-    <message>
-        <source>No appropriate phrasebook found.</source>
-        <translation>Es kann kein geeignetes Wörterbuch gefunden werden.</translation>
-    </message>
-    <message>
-        <source>Continue the search where it was left.</source>
-        <translation>Die Suche fortsetzen.</translation>
-    </message>
-    <message>
-        <source>Printing completed</source>
-        <translation>Drucken beendet</translation>
-    </message>
-    <message>
-        <source>Next item</source>
-        <translation>Nächster Eintrag</translation>
-    </message>
-    <message>
-        <source>Search And Translate in &apos;%1&apos; - Qt Linguist</source>
-        <translation>Suchen und übersetzen in &apos;%1&apos; - Qt Linguist</translation>
-    </message>
-    <message>
-        <source>Cannot find the string &apos;%1&apos;.</source>
-        <translation>Kann Zeichenkette &apos;%1&apos; nicht finden.</translation>
-    </message>
-    <message>
-        <source>Release As...</source>
-        <translation>Freigeben unter ...</translation>
-    </message>
-    <message>
-        <source>Move to the next item.</source>
-        <translation>Zum nächsten Eintrag gehen.</translation>
-    </message>
-    <message>
-        <source>Open/Refresh Form &amp;Preview</source>
-        <translation>&amp;Vorschau öffnen/aktualisieren</translation>
-    </message>
-    <message>
-        <source>Validation</source>
-        <translation>Validierung</translation>
-    </message>
-    <message>
-        <source>Sources and Forms</source>
-        <translation>Quelldateien und Formulare</translation>
-    </message>
-    <message>
-        <source>V&amp;alidation</source>
-        <translation>V&amp;alidierung</translation>
-    </message>
-    <message>
-        <source>Print the entries in this phrase book.</source>
-        <translation>Die Einträge des Wörterbuchs drucken.</translation>
-    </message>
-    <message>
-        <source>&lt;center&gt;&lt;img src=&quot;:/images/splash.png&quot;/&gt;&lt;/img&gt;&lt;p&gt;%1&lt;/p&gt;&lt;/center&gt;&lt;p&gt;Qt Linguist is a tool for adding translations to Qt applications.&lt;/p&gt;&lt;p&gt;Copyright (C) %2 The Qt Company Ltd.</source>
-        <translation>&lt;center&gt;&lt;img src=&quot;:/images/splash.png&quot;/&gt;&lt;/img&gt;&lt;p&gt;%1&lt;/p&gt;&lt;/center&gt;&lt;p&gt;Qt Linguist is a tool for adding translations to Qt applications.&lt;/p&gt;&lt;p&gt;Copyright (C) %2 The Qt Company Ltd.</translation>
-    </message>
-</context>
-<context>
-    <name>MessageEditor</name>
-    <message>
-        <source></source>
-        <translation></translation>
-    </message>
-    <message>
-        <source>This area shows the plural form of the source text.</source>
-        <translation>Dieser Bereich zeigt die Pluralform des Ursprungstexts.</translation>
-    </message>
-    <message>
-        <source>French</source>
-        <translation>Französisch</translation>
-    </message>
-    <message>
-        <source>German</source>
-        <translation>Deutsch</translation>
-    </message>
-    <message>
-        <source>This is where you can enter or modify the translation of the above source text.</source>
-        <translation>Hier können Sie die Übersetzung des Ursprungstextes eingeben bzw. ändern.</translation>
-    </message>
-    <message>
-        <source>Polish</source>
-        <translation>Polnisch</translation>
-    </message>
-    <message>
-        <source>%1 translator comments</source>
-        <translation>%1 Hinweise des Ãœbersetzers</translation>
-    </message>
-    <message>
-        <source>&apos;%1&apos;
-Line: %2</source>
-        <translation>&apos;%1&apos;
-Zeile: %2</translation>
-    </message>
-    <message>
-        <source>Japanese</source>
-        <translation>Japanisch</translation>
-    </message>
-    <message>
-        <source>Developer comments</source>
-        <translation>Hinweise des Entwicklers</translation>
-    </message>
-    <message>
-        <source>Source text</source>
-        <translation>Ursprungstext</translation>
-    </message>
-    <message>
-        <source>This area shows the source text.</source>
-        <translation>Dieser Bereich zeigt den Ursprungstext.</translation>
-    </message>
-    <message>
-        <source>%1 translation (%2)</source>
-        <translation>Ãœbersetzung %1 (%2)</translation>
-    </message>
-    <message>
-        <source>Here you can enter comments for your own use. They have no effect on the translated applications.</source>
-        <translation>Hier können Sie Hinweise für den eigenen Gebrauch eintragen. Diese haben keinen Einflusse auf die Übersetzung.</translation>
-    </message>
-    <message>
-        <source>Russian</source>
-        <translation>Russisch</translation>
-    </message>
-    <message>
-        <source>Chinese</source>
-        <translation>Chinesisch</translation>
-    </message>
-    <message>
-        <source>This area shows a comment that may guide you, and the context in which the text occurs.</source>
-        <translation>Dieser Bereich zeigt eventuelle Kommentare und den Kontext, in dem der Text auftritt.</translation>
-    </message>
-    <message>
-        <source>Source text (Plural)</source>
-        <translation>Ursprungstext (Plural)</translation>
-    </message>
-    <message>
-        <source>%1 translation</source>
-        <translation>Ãœbersetzung %1</translation>
-    </message>
-    <message>
-        <source>This whole panel allows you to view and edit the translation of some source text.</source>
-        <translation>Dieser Bereich erlaubt die Darstellung und Änderung der Übersetzung eines Textes.</translation>
-    </message>
-</context>
-<context>
-    <name>MsgEdit</name>
-    <message>
-        <source></source>
-        <translation></translation>
-    </message>
-</context>
-<context>
-    <name>PhraseBookBox</name>
-    <message>
-        <source></source>
-        <translation></translation>
-    </message>
-    <message>
-        <source>Qt Linguist</source>
-        <translation>Qt Linguist</translation>
-    </message>
-    <message>
-        <source>&amp;Save</source>
-        <translation>&amp;Speichern</translation>
-    </message>
-    <message>
-        <source>S&amp;ource phrase:</source>
-        <translation>&amp;Ursprungstext:</translation>
-    </message>
-    <message>
-        <source>Close</source>
-        <translation>Schließen</translation>
-    </message>
-    <message>
-        <source>This is a definition for the source phrase.</source>
-        <translation>Dies ist die Definition des Ursprungstextes.</translation>
-    </message>
-    <message>
-        <source>Click here to remove the entry from the phrase book.</source>
-        <translation>Den Eintrag aus dem Wörterbuch entfernen.</translation>
-    </message>
-    <message>
-        <source>Click here to close this window.</source>
-        <translation>Klicken Sie hier, um das Fenster zu schließen.</translation>
-    </message>
-    <message>
-        <source>Click here to save the changes made.</source>
-        <translation>Änderungen speichern.</translation>
-    </message>
-    <message>
-        <source>(New Entry)</source>
-        <translation>(Neuer Eintrag)</translation>
-    </message>
-    <message>
-        <source>Cannot save phrase book &apos;%1&apos;.</source>
-        <translation>Wörterbuch &apos;%1&apos; kann nicht gespeichert werden.</translation>
-    </message>
-    <message>
-        <source>Settin&amp;gs...</source>
-        <translation>&amp;Einstellungen ...</translation>
-    </message>
-    <message>
-        <source>&amp;Definition:</source>
-        <translation>&amp;Definition:</translation>
-    </message>
-    <message>
-        <source>This is the phrase in the source language.</source>
-        <translation>Dies ist der Text der Ursprungssprache.</translation>
-    </message>
-    <message>
-        <source>&amp;Translation:</source>
-        <translation>&amp;Ãœbersetzung:</translation>
-    </message>
-    <message>
-        <source>&amp;New Entry</source>
-        <translation>&amp;Neuer Eintrag</translation>
-    </message>
-    <message>
-        <source>%1[*] - Qt Linguist</source>
-        <translation>%1[*] - Qt Linguist</translation>
-    </message>
-    <message>
-        <source>Click here to add the phrase to the phrase book.</source>
-        <translation>Einen neuen Eintrag ins Wörterbuch einfügen.</translation>
-    </message>
-    <message>
-        <source>&amp;Remove Entry</source>
-        <translation>&amp;Eintrag entfernen</translation>
-    </message>
-    <message>
-        <source>This is the phrase in the target language corresponding to the source phrase.</source>
-        <translation>Dies ist der Text, der in der Zielsprache dem Ursprungstext entspricht.</translation>
-    </message>
-    <message>
-        <source>Edit Phrase Book</source>
-        <translation>Wörterbuch bearbeiten</translation>
-    </message>
-    <message>
-        <source>This window allows you to add, modify, or delete entries in a phrase book.</source>
-        <translation>Dieses Fenster erlaubt das Hinzufügen, Ändern und Entfernen von Wörterbuch-Einträgen.</translation>
-    </message>
-</context>
-<context>
-    <name>Statistics</name>
-    <message>
-        <source>0</source>
-        <translation>0</translation>
-    </message>
-    <message>
-        <source>Close</source>
-        <translation>Schließen</translation>
-    </message>
-    <message>
-        <source>Source</source>
-        <translation>Quelle</translation>
-    </message>
-    <message>
-        <source>Words:</source>
-        <translation>Wörter:</translation>
-    </message>
-    <message>
-        <source>Characters:</source>
-        <translation>Zeichen:</translation>
-    </message>
-    <message>
-        <source>Characters (with spaces):</source>
-        <translation>Zeichen (mit Leerzeichen):</translation>
-    </message>
-    <message>
-        <source>Translation</source>
-        <translation>Ãœbersetzung</translation>
-    </message>
-    <message>
-        <source>Statistics</source>
-        <translation>Statistiken</translation>
-    </message>
-</context>
-<context>
-    <name>FormMultiWidget</name>
-    <message>
-        <source>Alt+Insert</source>
-        <translation>Alt+Insert</translation>
-    </message>
-    <message>
-        <source>Delete non-empty length variant?</source>
-        <translation>Soll die ausgefüllte Längenvariante gelöscht werden?</translation>
-    </message>
-    <message>
-        <source>Shift+Alt+Insert</source>
-        <translation>Shift+Alt+Insert</translation>
-    </message>
-    <message>
-        <source>Alt+Delete</source>
-        <translation>Alt+Delete</translation>
-    </message>
-    <message>
-        <source>Confirmation - Qt Linguist</source>
-        <translation>Bestätigung - Qt Linguist</translation>
-    </message>
-</context>
-<context>
-    <name>BatchTranslationDialog</name>
-    <message>
-        <source>&amp;Run</source>
-        <translation>&amp;Ausführen</translation>
-    </message>
-    <message>
-        <source>Batch Translation of &apos;%1&apos; - Qt Linguist</source>
-        <translation>Automatische Ãœbersetzung von &apos;%1&apos; - Qt Linguist</translation>
-    </message>
-    <message>
-        <source>Phrase book preference</source>
-        <translation>Wörterbücher</translation>
-    </message>
-    <message>
-        <source>Translate also finished entries</source>
-        <translation>Erledigte Einträge übersetzen</translation>
-    </message>
-    <message>
-        <source>Move up</source>
-        <translation>Nach oben</translation>
-    </message>
-    <message>
-        <source>Cancel</source>
-        <translation>Abbrechen</translation>
-    </message>
-    <message>
-        <source>Linguist batch translator</source>
-        <translation>Automatischer Ãœbersetzer (Linguist)</translation>
-    </message>
-    <message>
-        <source>Set translated entries to finished</source>
-        <translation>Ãœbersetzung als erledigt markieren</translation>
-    </message>
-    <message>
-        <source>Options</source>
-        <translation>Optionen</translation>
-    </message>
-    <message>
-        <source>Searching, please wait...</source>
-        <translation>Suche, bitte warten ...</translation>
-    </message>
-    <message>
-        <source>&amp;Cancel</source>
-        <translation>&amp;Abbrechen</translation>
-    </message>
-    <message>
-        <source>Retranslate entries with existing translation</source>
-        <translation>Einträge mit bereits existierender Übersetzung neu übersetzen</translation>
-    </message>
-    <message>
-        <source>Qt Linguist - Batch Translation</source>
-        <translation>Qt Linguist - Automatische Ãœbersetzung</translation>
-    </message>
-    <message>
-        <source>Move down</source>
-        <translation>Nach unten</translation>
-    </message>
-    <message>
-        <source>Note that the modified entries will be reset to unfinished if &apos;Set translated entries to finished&apos; above is unchecked</source>
-        <translation>Geänderte Einträge werden als unerledigt gekennzeichnet, wenn die obige Einstellung &apos;Übersetzung als erledigt markieren&apos; nicht aktiviert ist</translation>
-    </message>
-    <message>
-        <source>The batch translator will search through the selected phrase books in the order given above</source>
-        <translation>Der automatische Übersetzer wird in der angegebenen Reihenfolge durch die ausgewählten Wörterbücher gehen</translation>
-    </message>
-    <message numerus="yes">
-        <source>Batch translated %n entries</source>
-        <translation>
-            <numerusform>1 Eintrag wurde automatisch übersetzt</numerusform>
-            <numerusform>%n Einträge wurden automatisch übersetzt</numerusform>
-        </translation>
-    </message>
-</context>
-<context>
-    <name>PhraseView</name>
-    <message>
-        <source>Edit</source>
-        <translation>Bearbeiten</translation>
-    </message>
-    <message>
-        <source>Guess</source>
-        <translation>Vorschlag</translation>
-    </message>
-    <message>
-        <source>Insert</source>
-        <translation>Einfügen</translation>
-    </message>
-    <message>
-        <source>Guess (%1)</source>
-        <translation>Vorschlag (%1)</translation>
-    </message>
-</context>
-<context>
-    <name>FMT</name>
-    <message>
-        <source>GNU Gettext localization files</source>
-        <translation>GNU-Gettext-Ãœbersetzungsdateien</translation>
-    </message>
-    <message>
-        <source>GNU Gettext localization template files</source>
-        <translation>Vorlagen für GNU-Gettext-Übersetzungsdateien</translation>
-    </message>
-    <message>
-        <source>Compiled Qt translations</source>
-        <translation>Kompilierte Qt-Ãœbersetzungen</translation>
-    </message>
-    <message>
-        <source>XLIFF localization files</source>
-        <translation>XLIFF-Ãœbersetzungsdateien</translation>
-    </message>
-    <message>
-        <source>Qt translation sources</source>
-        <translation>Qt-Ãœbersetzungsdateien</translation>
-    </message>
-    <message>
-        <source>Qt Linguist &apos;Phrase Book&apos;</source>
-        <translation>Qt-Linguist-Wörterbuch</translation>
-    </message>
-</context>
-<context>
-    <name>Linguist</name>
-    <message>
-        <source>GNU Gettext localization files</source>
-        <translation>GNU-Gettext-Ãœbersetzungsdateien</translation>
-    </message>
-    <message>
-        <source>GNU Gettext localization template files</source>
-        <translation>Vorlagen für GNU-Gettext-Übersetzungsdateien</translation>
-    </message>
-    <message>
-        <source>Compiled Qt translations</source>
-        <translation>Kompilierte Qt-Ãœbersetzungen</translation>
-    </message>
-    <message>
-        <source>XLIFF localization files</source>
-        <translation>XLIFF-Ãœbersetzungsdateien</translation>
-    </message>
-    <message>
-        <source>Qt translation sources</source>
-        <translation>Qt-Ãœbersetzungsdateien</translation>
-    </message>
-    <message>
-        <source>Qt Linguist &apos;Phrase Book&apos;</source>
-        <translation>Qt-Linguist-Wörterbuch</translation>
-    </message>
-</context>
-<context>
-    <name>AboutDialog</name>
-    <message>
-        <source>Qt Linguist</source>
-        <translation>Qt Linguist</translation>
-    </message>
-</context>
-<context>
-    <name>QObject</name>
-    <message>
-        <source>Qt Linguist</source>
-        <translation>Qt Linguist</translation>
-    </message>
-    <message>
-        <source>Translation files (%1);;</source>
-        <translation>Ãœbersetzungsdateien (%1);;</translation>
-    </message>
-    <message>
-        <source>All files (*)</source>
-        <translation>Alle Dateien (*)</translation>
-    </message>
-</context>
-<context>
-    <name>PhraseModel</name>
-    <message>
-        <source>Definition</source>
-        <translation>Definition</translation>
-    </message>
-    <message>
-        <source>Translation</source>
-        <translation>Ãœbersetzung</translation>
-    </message>
-    <message>
-        <source>Source phrase</source>
-        <translation>Ursprungstext</translation>
-    </message>
-</context>
-<context>
-    <name>TranslationSettingsDialog</name>
-    <message>
-        <source>Target language</source>
-        <translation>Zielsprache</translation>
-    </message>
-    <message>
-        <source>Country/Region</source>
-        <translation>Land/Region</translation>
-    </message>
-    <message>
-        <source>Settings for &apos;%1&apos; - Qt Linguist</source>
-        <translation>Einstellungen für &apos;%1&apos; - Qt Linguist</translation>
-    </message>
-    <message>
-        <source>Language</source>
-        <translation>Sprache</translation>
-    </message>
-    <message>
-        <source>Any Country</source>
-        <translation>Land</translation>
-    </message>
-    <message>
-        <source>Source language</source>
-        <translation>Ursprungssprache</translation>
-    </message>
-</context>
-<context>
-    <name>MessageModel</name>
-    <message>
-        <source>&lt;context comment&gt;</source>
-        <translation>&lt;Kontexthinweis&gt;</translation>
-    </message>
-    <message>
-        <source>Completion status for %1</source>
-        <translation>Bearbeitungsstand von %1</translation>
-    </message>
-    <message>
-        <source>&lt;file header&gt;</source>
-        <translation>&lt;Dateikopf&gt;</translation>
-    </message>
-    <message>
-        <source>&lt;unnamed context&gt;</source>
-        <translation>&lt;unbenannter Kontext&gt;</translation>
-    </message>
-</context>
-<context>
-    <name>DataModel</name>
-    <message>
-        <source>&lt;qt&gt;Duplicate messages found in &apos;%1&apos;:</source>
-        <translation>&lt;qt&gt;Mehrfach vorhandene Meldungen in &apos;%1&apos;:</translation>
-    </message>
-    <message>
-        <source>Universal Form</source>
-        <translation>Universalform</translation>
-    </message>
-    <message>
-        <source>&lt;p&gt;[more duplicates omitted]</source>
-        <translation>&lt;p&gt;[weitere mehrfach vorhandene Nachrichten weggelassen]</translation>
-    </message>
-    <message>
-        <source>&lt;p&gt;* ID: %1</source>
-        <translation>&lt;p&gt;* ID: %1</translation>
-    </message>
-    <message>
-        <source>Cannot create &apos;%2&apos;: %1</source>
-        <translation>&apos;%2&apos; kann nicht erzeugt werden: %1</translation>
-    </message>
-    <message>
-        <source>&lt;br&gt;* Comment: %3</source>
-        <translation>&lt;br&gt;* Kommentar: %3</translation>
-    </message>
-    <message>
-        <source>&lt;p&gt;* Context: %1&lt;br&gt;* Source: %2</source>
-        <translation>&lt;p&gt;* Kontext: %1&lt;br&gt;* Quelle: %2</translation>
-    </message>
-    <message>
-        <source>Linguist does not know the plural rules for &apos;%1&apos;.
-Will assume a single universal form.</source>
-        <translation>Die Regeln zur Pluralbildung der Sprache &apos;%1&apos; sind in Linguist nicht definiert.
-Es wird mit einer einfachen Universalform gearbeitet.</translation>
-    </message>
-    <message>
-        <source>The translation file &apos;%1&apos; will not be loaded because it is empty.</source>
-        <translation>Die Ãœbersetzungsdatei &apos;%1&apos; ist leer und wird daher nicht geladen.</translation>
-    </message>
-</context>
-<context>
-    <name>ErrorsView</name>
-    <message>
-        <source>Accelerator possibly missing in translation.</source>
-        <translation>Kurzbefehl fehlt im Ãœbersetzungstext.</translation>
-    </message>
-    <message>
-        <source>A phrase book suggestion for &apos;%1&apos; was ignored.</source>
-        <translation>Ein Vorschlag aus dem Wörterbuch für &apos;%1&apos; wurde nicht berücksichtigt.</translation>
-    </message>
-    <message>
-        <source>Translation does not refer to the same place markers as in the source text.</source>
-        <translation>Platzhalter im Ãœbersetzungstext und Ursprungstext unterscheiden sich.</translation>
-    </message>
-    <message>
-        <source>Translation does not end with the same punctuation as the source text.</source>
-        <translation>Interpunktion am Ende des Ãœbersetzungstextes unterscheidet sich von Interpunktion des Ursprungstextes.</translation>
-    </message>
-    <message>
-        <source>Translation does not contain the necessary %n/%Ln place marker.</source>
-        <translation>Der erforderliche Platzhalter (%n/%Ln) fehlt in der Ãœbersetzung.</translation>
-    </message>
-    <message>
-        <source>Unknown error</source>
-        <translation>Unbekannter Fehler</translation>
-    </message>
-    <message>
-        <source>Accelerator possibly superfluous in translation.</source>
-        <translation>Möglicherweise überflüssiger Kurzbefehl im Übersetzungstext.</translation>
-    </message>
-</context>
-<context>
-    <name>TranslateDialog</name>
-    <message>
-        <source>Click here to close this window.</source>
-        <translation>Klicken Sie hier, um das Fenster zu schließen.</translation>
-    </message>
-    <message>
-        <source>This window allows you to search for some text in the translation source file.</source>
-        <translation>Dieses Fenster erlaubt die Suche in der Ãœbersetzungsdatei.</translation>
-    </message>
-    <message>
-        <source>Translate All</source>
-        <translation>Alle übersetzen</translation>
-    </message>
-    <message>
-        <source>&amp;Translate to:</source>
-        <translation>&amp;Ãœbersetzung:</translation>
-    </message>
-    <message>
-        <source>Find Next</source>
-        <translation>Weitersuchen</translation>
-    </message>
-    <message>
-        <source>Click here to find the next occurrence of the text you typed in.</source>
-        <translation>Klicken Sie hier, um zum nächsten Vorkommen des Suchtextes zu springen.</translation>
-    </message>
-    <message>
-        <source>Cancel</source>
-        <translation>Abbrechen</translation>
-    </message>
-    <message>
-        <source>Mark new translation as &amp;finished</source>
-        <translation>Neue Ãœbersetzung als &amp;erledigt markieren</translation>
-    </message>
-    <message>
-        <source>Texts such as &apos;TeX&apos; and &apos;tex&apos; are considered as different when checked.</source>
-        <translation>Wenn aktiviert, werden Texte wie &apos;TeX&apos; und &apos;tex&apos; als unterschiedlich betrachtet.</translation>
-    </message>
-    <message>
-        <source>Translate</source>
-        <translation>Ãœbersetzen</translation>
-    </message>
-    <message>
-        <source>Match &amp;case</source>
-        <translation>&amp;Groß-/Kleinschreibung beachten</translation>
-    </message>
-    <message>
-        <source>Search options</source>
-        <translation>Sucheinstellungen</translation>
-    </message>
-    <message>
-        <source>Find &amp;source text:</source>
-        <translation>&amp;Ursprungstext:</translation>
-    </message>
-    <message>
-        <source>Type in the text to search for.</source>
-        <translation>Geben Sie den Text ein, nach dem gesucht werden soll.</translation>
-    </message>
-</context>
-<context>
-    <name>SourceCodeView</name>
-    <message>
-        <source>&lt;i&gt;Source code not available&lt;/i&gt;</source>
-        <translation>&lt;i&gt;Quelltext nicht verfügbar&lt;/i&gt;</translation>
-    </message>
-    <message>
-        <source>&lt;i&gt;File %1 not readable&lt;/i&gt;</source>
-        <translation>&lt;i&gt;Datei %1 nicht lesbar&lt;/i&gt;</translation>
-    </message>
-    <message>
-        <source>&lt;i&gt;File %1 not available&lt;/i&gt;</source>
-        <translation>&lt;i&gt;Datei %1 nicht vorhanden&lt;/i&gt;</translation>
-    </message>
-</context>
-<context>
-    <name>LRelease</name>
-    <message numerus="yes">
-        <source>    Generated %n translation(s) (%1 finished and %2 unfinished)</source>
-        <translation>
-            <numerusform>    Eine Ãœbersetzung wurde erzeugt (%1 abgeschlossen und %2 nicht abgeschlossen)</numerusform>
-            <numerusform>    %n Ãœbersetzungen wurden erzeugt (%1 abgeschlossen und %2 nicht abgeschlossen)</numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <source>Dropped %n message(s) which had no ID.</source>
-        <translation>
-            <numerusform>Es wurde ein Eintrag ohne Bezeichner gelöscht.</numerusform>
-            <numerusform>Es wurde %n Einträge ohne Bezeichner gelöscht.</numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <source>Excess context/disambiguation dropped from %n message(s).</source>
-        <translation>
-            <numerusform>Es wurde überflüssiger Kontext beziehungsweise überflüssige Infomation zur Unterscheidung bei einem Eintrag entfernt.</numerusform>
-            <numerusform>Es wurde überflüssiger Kontext beziehungsweise überflüssige Infomation zur Unterscheidung bei %n Einträgen entfernt.</numerusform>
-        </translation>
-    </message>
-    <message numerus="yes">
-        <source>    Ignored %n untranslated source text(s)</source>
-        <translation>
-            <numerusform>    Ein nicht übersetzter Text wurde ignoriert</numerusform>
-            <numerusform>    %n nicht übersetzte Texte wurden ignoriert</numerusform>
-        </translation>
-    </message>
-</context>
-<context>
-    <name>PhraseBook</name>
-    <message>
-        <source>Parse error at line %1, column %2 (%3).</source>
-        <translation>Parse-Fehler bei Zeile %1, Spalte %2 (%3).</translation>
-    </message>
-</context>
-</TS>
diff --git a/translations/qt_de.qm b/translations/qt_de.qm
deleted file mode 100644
index 3650eec59763d0d6ac35bae8f490621c6a37d518..0000000000000000000000000000000000000000
Binary files a/translations/qt_de.qm and /dev/null differ
diff --git a/translations/qt_de.ts b/translations/qt_de.ts
deleted file mode 100755
index 31193583f9f733c049dada9473c0ce95f4087926..0000000000000000000000000000000000000000
--- a/translations/qt_de.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<dependencies>
-<dependency catalog="qtbase_de"/>
-<dependency catalog="qtscript_de"/>
-<dependency catalog="qtquick1_de"/>
-<dependency catalog="qtmultimedia_de"/>
-<dependency catalog="qtxmlpatterns_de"/>
-</dependencies>
-</TS>
diff --git a/translations/qt_help_de.qm b/translations/qt_help_de.qm
deleted file mode 100644
index d76f710d443508c9674719f6d481f6a485c2a84a..0000000000000000000000000000000000000000
Binary files a/translations/qt_help_de.qm and /dev/null differ
diff --git a/translations/qt_help_de.ts b/translations/qt_help_de.ts
deleted file mode 100755
index 603e7deab28993bb3a85c518e0113b262e9e5f2d..0000000000000000000000000000000000000000
--- a/translations/qt_help_de.ts
+++ /dev/null
@@ -1,310 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<context>
-    <name>QHelpCollectionHandler</name>
-    <message>
-        <source>Cannot register namespace &apos;%1&apos;.</source>
-        <translation>Der Namensraum &apos;%1&apos; kann nicht registriert werden.</translation>
-    </message>
-    <message>
-        <source>Cannot create tables in file %1.</source>
-        <translation>In Datei %1 können keine Tabellen angelegt werden.</translation>
-    </message>
-    <message>
-        <source>Cannot open collection file: %1</source>
-        <translation>Katalogdatei kann nicht geöffnet werden: %1</translation>
-    </message>
-    <message>
-        <source>Cannot open documentation file %1.</source>
-        <translation>Die Dokumentationsdatei %1 kann nicht geöffnet werden.</translation>
-    </message>
-    <message>
-        <source>Cannot copy collection file: %1</source>
-        <translation>Die Katalogdatei kann nicht kopiert werden: %1</translation>
-    </message>
-    <message>
-        <source>Cannot load sqlite database driver.</source>
-        <translation>Der Datenbanktreiber für SQLite kann nicht geladen werden.</translation>
-    </message>
-    <message>
-        <source>Cannot register filter %1.</source>
-        <translation>Der Filter %1 kann nicht registriert werden.</translation>
-    </message>
-    <message>
-        <source>The collection file &apos;%1&apos; is not set up yet.</source>
-        <translation>Die Katalogdatei &apos;%1&apos; ist noch nicht eingerichtet.</translation>
-    </message>
-    <message>
-        <source>Unknown filter &apos;%1&apos;.</source>
-        <translation>Unbekannter Filter &apos;%1&apos;.</translation>
-    </message>
-    <message>
-        <source>Invalid documentation file &apos;%1&apos;.</source>
-        <translation>Ungültige Dokumentationsdatei &apos;%1&apos;.</translation>
-    </message>
-    <message>
-        <source>Namespace %1 already exists.</source>
-        <translation>Der Namensraum %1 existiert bereits.</translation>
-    </message>
-    <message>
-        <source>The namespace %1 was not registered.</source>
-        <translation>Der Namensraum %1 wurde nicht registriert.</translation>
-    </message>
-    <message>
-        <source>Cannot open database &apos;%1&apos; to optimize.</source>
-        <translation>Die Datenbank &apos;%1&apos; kann nicht zur Optimierung geöffnet werden.</translation>
-    </message>
-    <message>
-        <source>The collection file &apos;%1&apos; already exists.</source>
-        <translation>Die Katalogdatei &apos;%1&apos; existiert bereits.</translation>
-    </message>
-    <message>
-        <source>Cannot create directory: %1</source>
-        <translation>Das Verzeichnis kann nicht angelegt werden: %1</translation>
-    </message>
-</context>
-<context>
-    <name>QHelpProject</name>
-    <message>
-        <source>Unknown token in file &quot;%1&quot;.</source>
-        <translation>Unbekanntes Token in der Datei &quot;%1&quot;.</translation>
-    </message>
-    <message>
-        <source>The input file %1 could not be opened.</source>
-        <translation>Die Eingabe-Datei %1 konnte nicht geöffnet werden.</translation>
-    </message>
-    <message>
-        <source>Missing virtual folder in QtHelpProject file: &quot;%1&quot;</source>
-        <translation>Fehlender virtueller Ordner in der QtHelpProject-Datei: &quot;%1&quot;</translation>
-    </message>
-    <message>
-        <source>Error in line %1: %2</source>
-        <translation>Fehler in Zeile %1: %2</translation>
-    </message>
-    <message>
-        <source>Namespace &quot;%1&quot; has invalid syntax in file: &quot;%2&quot;</source>
-        <translation>Der Namensraum &quot;%1&quot; hat in der Datei &quot;%2&quot; eine ungültige Syntax</translation>
-    </message>
-    <message>
-        <source>Missing namespace in QtHelpProject file: &quot;%1&quot;</source>
-        <translation>Fehlender Namensraum in der QtHelpProject-Datei: &quot;%1&quot;</translation>
-    </message>
-    <message>
-        <source>Unknown token. Expected &quot;QtHelpProject&quot;.</source>
-        <translation>Unbekanntes Token. &quot;QtHelpProject&quot; erwartet.</translation>
-    </message>
-    <message>
-        <source>Virtual folder has invalid syntax in file: &quot;%1&quot;</source>
-        <translation>Der virtuelle Ordner hat in der Datei &quot;%1&quot; eine ungültige Syntax</translation>
-    </message>
-</context>
-<context>
-    <name>QCLuceneResultWidget</name>
-    <message>
-        <source>Note:</source>
-        <translation>Achtung:</translation>
-    </message>
-    <message>
-        <source>Search Results</source>
-        <translation>Suchergebnisse</translation>
-    </message>
-    <message>
-        <source>(The reason for this might be that the documentation is still being indexed.)</source>
-        <translation>(Ein Grund dafür könnte sein, das die Dokumentation noch nicht vollständig indiziert ist.)</translation>
-    </message>
-    <message>
-        <source>The search results may not be complete since the documentation is still being indexed.</source>
-        <translation>Es können nicht alle möglichen Ergebnisse angezeigt werden, da die Dokumentation noch indiziert wird.</translation>
-    </message>
-    <message>
-        <source>Your search did not match any documents.</source>
-        <translation>Es wurden keine mit Ihrer Suche übereinstimmenden Dokumente gefunden.</translation>
-    </message>
-</context>
-<context>
-    <name>QHelpGenerator</name>
-    <message>
-        <source>Cannot register contents.</source>
-        <translation>Inhalt kann nicht registriert werden.</translation>
-    </message>
-    <message>
-        <source>Insert help data for filter section (%1 of %2)...</source>
-        <translation>Hilfe-Daten für Filter-Sektion (%1 von %2) einfügen...</translation>
-    </message>
-    <message>
-        <source>Cannot register virtual folder.</source>
-        <translation>Virtueller Order kann nicht registriert werden.</translation>
-    </message>
-    <message>
-        <source>Cannot open data base file %1.</source>
-        <translation>Die Datenbank-Datei %1 kann nicht geöffnet werden.</translation>
-    </message>
-    <message>
-        <source>The filter %1 is already registered.</source>
-        <translation>Der Filter %1 ist bereits registriert.</translation>
-    </message>
-    <message>
-        <source>Cannot register namespace %1.</source>
-        <translation>Der Namensraum %1 kann nicht registriert werden.</translation>
-    </message>
-    <message>
-        <source>Building up file structure...</source>
-        <translation>Dateistruktur wird erzeugt...</translation>
-    </message>
-    <message>
-        <source>Cannot register filter %1.</source>
-        <translation>Der Filter %1 kann nicht registriert werden.</translation>
-    </message>
-    <message>
-        <source>Insert indices...</source>
-        <translation>Indizes einfügen...</translation>
-    </message>
-    <message>
-        <source>Cannot create tables.</source>
-        <translation>Es können keine Tabellen erstellt werden.</translation>
-    </message>
-    <message>
-        <source>File &apos;%1&apos; contains an invalid link to file &apos;%2&apos;</source>
-        <translation>Die Datei &apos;%1&apos; enthält einen ungültigen Verweis auf die Datei &apos;%2&apos;</translation>
-    </message>
-    <message>
-        <source>Insert files...</source>
-        <translation>Dateien einfügen...</translation>
-    </message>
-    <message>
-        <source>The file %1 cannot be overwritten.</source>
-        <translation>Die Datei %1 kann nicht überschrieben werden.</translation>
-    </message>
-    <message>
-        <source>Invalid help data.</source>
-        <translation>Ungültige Hilfe-Daten.</translation>
-    </message>
-    <message>
-        <source>No output file name specified.</source>
-        <translation>Kein Name für die Ausgabe-Datei angegeben.</translation>
-    </message>
-    <message>
-        <source>Insert contents...</source>
-        <translation>Inhalt einfügen...</translation>
-    </message>
-    <message>
-        <source>Some tables already exist.</source>
-        <translation>Einige Tabellen existieren bereits.</translation>
-    </message>
-    <message>
-        <source>File &apos;%1&apos; cannot be opened.</source>
-        <translation>Die Datei &apos;%1&apos; kann nicht geöffnet werden.</translation>
-    </message>
-    <message>
-        <source>Insert custom filters...</source>
-        <translation>Benutzerdefinierte Filter einfügen...</translation>
-    </message>
-    <message>
-        <source>Cannot open file %1! Skipping it.</source>
-        <translation>Die Datei %1 kann nicht geöffnet werden. Wird übersprungen.</translation>
-    </message>
-    <message>
-        <source>Documentation successfully generated.</source>
-        <translation>Dokumentation erfolgreich generiert.</translation>
-    </message>
-    <message>
-        <source>The file %1 does not exist! Skipping it.</source>
-        <translation>Die Datei %1 existiert nicht. Wird übersprungen.</translation>
-    </message>
-    <message>
-        <source>Invalid links in HTML files.</source>
-        <translation>Es wurden ungültige Verweise in HTML-Dateien gefunden.</translation>
-    </message>
-    <message>
-        <source>Cannot insert contents.</source>
-        <translation>Inhalt kann nicht eingefügt werden.</translation>
-    </message>
-    <message>
-        <source>File &apos;%1&apos; does not exist.</source>
-        <translation>Die Datei &apos;%1&apos; existiert nicht.</translation>
-    </message>
-</context>
-<context>
-    <name>QHelpEngineCore</name>
-    <message>
-        <source>The specified namespace does not exist.</source>
-        <translation>Der angegebene Namensraum existiert nicht.</translation>
-    </message>
-    <message>
-        <source>Cannot open documentation file %1: %2.</source>
-        <translation>Die Dokumentationsdatei %1 kann nicht geöffnet werden: %2.</translation>
-    </message>
-</context>
-<context>
-    <name>QHelpSearchResultWidget</name>
-    <message numerus="yes">
-        <source>%1 - %2 of %n Hits</source>
-        <translation>
-            <numerusform>%1 - %2 - Ein Treffer</numerusform>
-            <numerusform>%1 - %2 von %n Treffern</numerusform>
-        </translation>
-    </message>
-    <message>
-        <source>0 - 0 of 0 Hits</source>
-        <translation>0 - 0 von 0 Treffern</translation>
-    </message>
-</context>
-<context>
-    <name>QHelpSearchQueryWidget</name>
-    <message>
-        <source>with &lt;B&gt;exact phrase&lt;/B&gt;:</source>
-        <translation>mit der &lt;B&gt;genauen Wortgruppe&lt;/B&gt;:</translation>
-    </message>
-    <message>
-        <source>words &lt;B&gt;similar&lt;/B&gt; to:</source>
-        <translation>Worte &lt;B&gt;ähnlich&lt;/B&gt; zu:</translation>
-    </message>
-    <message>
-        <source>Search</source>
-        <translation>Suche</translation>
-    </message>
-    <message>
-        <source>with &lt;B&gt;at least one&lt;/B&gt; of the words:</source>
-        <translation>mit &lt;B&gt;irgendeinem&lt;/B&gt; der Wörter:</translation>
-    </message>
-    <message>
-        <source>Next search</source>
-        <translation>Nächste Suche</translation>
-    </message>
-    <message>
-        <source>Search for:</source>
-        <translation>Suche nach:</translation>
-    </message>
-    <message>
-        <source>with &lt;B&gt;all&lt;/B&gt; of the words:</source>
-        <translation>mit &lt;B&gt;allen&lt;/B&gt; Wörtern:</translation>
-    </message>
-    <message>
-        <source>Advanced search</source>
-        <translation>Erweiterte Suche</translation>
-    </message>
-    <message>
-        <source>Previous search</source>
-        <translation>Vorige Suche</translation>
-    </message>
-    <message>
-        <source>&lt;B&gt;without&lt;/B&gt; the words:</source>
-        <translation>&lt;B&gt;ohne&lt;/B&gt; die Wörter:</translation>
-    </message>
-</context>
-<context>
-    <name>QHelp</name>
-    <message>
-        <source>Untitled</source>
-        <translation>Ohne Titel</translation>
-    </message>
-</context>
-<context>
-    <name>QHelpDBReader</name>
-    <message>
-        <source>Cannot open database &apos;%1&apos; &apos;%2&apos;: %3</source>
-        <translation>Kann Datenbank nicht öffnen: &apos;%1&apos; &apos;%2&apos;: %3</translation>
-    </message>
-</context>
-</TS>
diff --git a/translations/qtbase_de.qm b/translations/qtbase_de.qm
deleted file mode 100644
index ce6ca2149d7f41931de6f0d588f9332fd96f0e40..0000000000000000000000000000000000000000
Binary files a/translations/qtbase_de.qm and /dev/null differ
diff --git a/translations/qtbase_de.ts b/translations/qtbase_de.ts
deleted file mode 100755
index 075dc380980cb04c306498f543307bd26dbc254c..0000000000000000000000000000000000000000
--- a/translations/qtbase_de.ts
+++ /dev/null
@@ -1,6545 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<context>
-    <name>QWidget</name>
-    <message>
-        <source>*</source>
-        <translation>*</translation>
-    </message>
-</context>
-<context>
-    <name>QShortcut</name>
-    <message>
-        <source>+</source>
-        <translation>+</translation>
-    </message>
-    <message>
-        <source>CD</source>
-        <translation>CD</translation>
-    </message>
-    <message>
-        <source>Go</source>
-        <translation>Los</translation>
-    </message>
-    <message>
-        <source>No</source>
-        <translation>Nein</translation>
-    </message>
-    <message>
-        <source>Up</source>
-        <translation>Hoch</translation>
-    </message>
-    <message>
-        <source>Alt</source>
-        <translation>Alt</translation>
-    </message>
-    <message>
-        <source>F%1</source>
-        <translation>F%1</translation>
-    </message>
-    <message>
-        <source>DOS</source>
-        <translation>DOS</translation>
-    </message>
-    <message>
-        <source>Del</source>
-        <translation>Entf</translation>
-    </message>
-    <message>
-        <source>Cut</source>
-        <translation>Ausschneiden</translation>
-    </message>
-    <message>
-        <source>End</source>
-        <translation>Ende</translation>
-    </message>
-    <message>
-        <source>Esc</source>
-        <translation>Esc</translation>
-    </message>
-    <message>
-        <source>Ins</source>
-        <translation>Einfg</translation>
-    </message>
-    <message>
-        <source>New</source>
-        <translation>Neu</translation>
-    </message>
-    <message>
-        <source>Num</source>
-        <translation>Zahlenblock</translation>
-    </message>
-    <message>
-        <source>Red</source>
-        <translation>Rot</translation>
-    </message>
-    <message>
-        <source>Tab</source>
-        <translation>Tab</translation>
-    </message>
-    <message>
-        <source>WWW</source>
-        <translation>Internet</translation>
-    </message>
-    <message>
-        <source>Yes</source>
-        <translation>Ja</translation>
-    </message>
-    <message>
-        <source>Back</source>
-        <translation>Zurück</translation>
-    </message>
-    <message>
-        <source>Away</source>
-        <translation>Abwesend</translation>
-    </message>
-    <message>
-        <source>Blue</source>
-        <translation>Blau</translation>
-    </message>
-    <message>
-        <source>Book</source>
-        <translation>Buch</translation>
-    </message>
-    <message>
-        <source>Call</source>
-        <translation>Anruf</translation>
-    </message>
-    <message>
-        <source>Copy</source>
-        <translation>Kopieren</translation>
-    </message>
-    <message>
-        <source>Ctrl</source>
-        <translation>Strg</translation>
-    </message>
-    <message>
-        <source>Down</source>
-        <translation>Herunter</translation>
-    </message>
-    <message>
-        <source>Exit</source>
-        <translation>Verlassen</translation>
-    </message>
-    <message>
-        <source>Find</source>
-        <translation>Suchen</translation>
-    </message>
-    <message>
-        <source>Flip</source>
-        <translation>Umdrehen</translation>
-    </message>
-    <message>
-        <source>Game</source>
-        <translation>Spiel</translation>
-    </message>
-    <message>
-        <source>Help</source>
-        <translation>Hilfe</translation>
-    </message>
-    <message>
-        <source>Home</source>
-        <translation>Pos1</translation>
-    </message>
-    <message>
-        <source>Info</source>
-        <translation>Information</translation>
-    </message>
-    <message>
-        <source>Left</source>
-        <translation>Links</translation>
-    </message>
-    <message>
-        <source>Menu</source>
-        <translation>Menü</translation>
-    </message>
-    <message>
-        <source>Meta</source>
-        <translation>Meta</translation>
-    </message>
-    <message>
-        <source>News</source>
-        <translation>Nachrichten</translation>
-    </message>
-    <message>
-        <source>Open</source>
-        <translation>Öffnen</translation>
-    </message>
-    <message>
-        <source>PgUp</source>
-        <translation>Bild aufwärts</translation>
-    </message>
-    <message>
-        <source>Play</source>
-        <translation>Abspielen</translation>
-    </message>
-    <message>
-        <source>Redo</source>
-        <translation>Wiederherstellen</translation>
-    </message>
-    <message>
-        <source>Save</source>
-        <translation>Speichern</translation>
-    </message>
-    <message>
-        <source>Send</source>
-        <translation>Senden</translation>
-    </message>
-    <message>
-        <source>Shop</source>
-        <translation>Shop</translation>
-    </message>
-    <message>
-        <source>Stop</source>
-        <translation>Abbrechen</translation>
-    </message>
-    <message>
-        <source>Time</source>
-        <translation>Zeit</translation>
-    </message>
-    <message>
-        <source>Undo</source>
-        <translation>Rückgängig</translation>
-    </message>
-    <message>
-        <source>XFer</source>
-        <translation>XFer</translation>
-    </message>
-    <message>
-        <source>View</source>
-        <translation>Ansicht</translation>
-    </message>
-    <message>
-        <source>Zoom</source>
-        <translation>Vergrößern</translation>
-    </message>
-    <message>
-        <source>Split Screen</source>
-        <translation>Bildschirm teilen</translation>
-    </message>
-    <message>
-        <source>Clear</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>Close</source>
-        <translation>Schließen</translation>
-    </message>
-    <message>
-        <source>Eject</source>
-        <translation>Auswerfen</translation>
-    </message>
-    <message>
-        <source>Enter</source>
-        <translation>Enter</translation>
-    </message>
-    <message>
-        <source>Green</source>
-        <translation>Grün</translation>
-    </message>
-    <message>
-        <source>Guide</source>
-        <translation>Anleitung</translation>
-    </message>
-    <message>
-        <source>Kanji</source>
-        <translation>Kanji</translation>
-    </message>
-    <message>
-        <source>Music</source>
-        <translation>Musik</translation>
-    </message>
-    <message>
-        <source>Paste</source>
-        <translation>Einfügen</translation>
-    </message>
-    <message>
-        <source>Pause</source>
-        <translation>Pause</translation>
-    </message>
-    <message>
-        <source>Phone</source>
-        <translation>Telefon</translation>
-    </message>
-    <message>
-        <source>Print</source>
-        <translation>Druck</translation>
-    </message>
-    <message>
-        <source>Reply</source>
-        <translation>Antworten</translation>
-    </message>
-    <message>
-        <source>Right</source>
-        <translation>Rechts</translation>
-    </message>
-    <message>
-        <source>Shift</source>
-        <translation>Umschalt</translation>
-    </message>
-    <message>
-        <source>Sleep</source>
-        <translation>Schlafmodus</translation>
-    </message>
-    <message>
-        <source>Space</source>
-        <translation>Leertaste</translation>
-    </message>
-    <message>
-        <source>Tools</source>
-        <translation>Werkzeuge</translation>
-    </message>
-    <message>
-        <source>Video</source>
-        <translation>Video</translation>
-    </message>
-    <message>
-        <source>Hiragana</source>
-        <translation>Hiragana</translation>
-    </message>
-    <message>
-        <source>Wireless</source>
-        <translation>Drahtlos</translation>
-    </message>
-    <message>
-        <source>Media Record</source>
-        <translation>Aufzeichnen</translation>
-    </message>
-    <message>
-        <source>Media Rewind</source>
-        <translation>Medium zurückspulen</translation>
-    </message>
-    <message>
-        <source>Multiple Candidate</source>
-        <translation>Mehrere Vorschläge</translation>
-    </message>
-    <message>
-        <source>Zenkaku</source>
-        <translation>Zenkaku</translation>
-    </message>
-    <message>
-        <source>Print Screen</source>
-        <translation>Bildschirm drucken</translation>
-    </message>
-    <message>
-        <source>Audio Repeat</source>
-        <translation>Audio wiederholen</translation>
-    </message>
-    <message>
-        <source>Toggle Call/Hangup</source>
-        <translation>Anrufen/Aufhängen</translation>
-    </message>
-    <message>
-        <source>Zoom In</source>
-        <translation>Vergrößern</translation>
-    </message>
-    <message>
-        <source>Camera Shutter</source>
-        <translation>Auslöser</translation>
-    </message>
-    <message>
-        <source>Ultra Wide Band</source>
-        <translation>Ultra Wide Band</translation>
-    </message>
-    <message>
-        <source>Hangul Special</source>
-        <translation>Hangeul Special</translation>
-    </message>
-    <message>
-        <source>Treble Down</source>
-        <translation>Höhen -</translation>
-    </message>
-    <message>
-        <source>Scroll Lock</source>
-        <translation>Rollen-Feststelltaste</translation>
-    </message>
-    <message>
-        <source>Media Pause</source>
-        <translation>Pause</translation>
-    </message>
-    <message>
-        <source>Word Processor</source>
-        <translation>Textverarbeitung</translation>
-    </message>
-    <message>
-        <source>Volume Down</source>
-        <translation>Lautstärke -</translation>
-    </message>
-    <message>
-        <source>Volume Mute</source>
-        <translation>Ton aus</translation>
-    </message>
-    <message>
-        <source>Kana Shift</source>
-        <translation>Kana Shift</translation>
-    </message>
-    <message>
-        <source>Media Previous</source>
-        <translation>Vorheriger</translation>
-    </message>
-    <message>
-        <source>Home Page</source>
-        <translation>Startseite</translation>
-    </message>
-    <message>
-        <source>Meeting</source>
-        <translation>Meeting</translation>
-    </message>
-    <message>
-        <source>Touchpad Off</source>
-        <translation>Touchpad aus</translation>
-    </message>
-    <message>
-        <source>Volume Up</source>
-        <translation>Lautstärke +</translation>
-    </message>
-    <message>
-        <source>Menu PB</source>
-        <translation>Menü PB</translation>
-    </message>
-    <message>
-        <source>Keyboard Brightness Up</source>
-        <translation>Tastaturbeleuchtung heller</translation>
-    </message>
-    <message>
-        <source>Hangul PostHanja</source>
-        <translation>Hangeul-PostHanja</translation>
-    </message>
-    <message>
-        <source>Kana Lock</source>
-        <translation>Kana Lock</translation>
-    </message>
-    <message>
-        <source>Community</source>
-        <translation>Community</translation>
-    </message>
-    <message>
-        <source>Cancel</source>
-        <translation>Abbrechen</translation>
-    </message>
-    <message>
-        <source>Launch (6)</source>
-        <translation>(6) starten</translation>
-    </message>
-    <message>
-        <source>Launch (7)</source>
-        <translation>(7) starten</translation>
-    </message>
-    <message>
-        <source>Launch (8)</source>
-        <translation>(8) starten</translation>
-    </message>
-    <message>
-        <source>Launch (9)</source>
-        <translation>(9) starten</translation>
-    </message>
-    <message>
-        <source>Launch (2)</source>
-        <translation>(2) starten</translation>
-    </message>
-    <message>
-        <source>Launch (3)</source>
-        <translation>(3) starten</translation>
-    </message>
-    <message>
-        <source>Launch (4)</source>
-        <translation>(4) starten</translation>
-    </message>
-    <message>
-        <source>Launch (5)</source>
-        <translation>(5) starten</translation>
-    </message>
-    <message>
-        <source>Launch (0)</source>
-        <translation>(0) starten</translation>
-    </message>
-    <message>
-        <source>Launch (1)</source>
-        <translation>(1) starten</translation>
-    </message>
-    <message>
-        <source>Launch (F)</source>
-        <translation>(F) starten</translation>
-    </message>
-    <message>
-        <source>Launch (B)</source>
-        <translation>(B) starten</translation>
-    </message>
-    <message>
-        <source>Launch (C)</source>
-        <translation>(C) starten</translation>
-    </message>
-    <message>
-        <source>Launch (D)</source>
-        <translation>(D) starten</translation>
-    </message>
-    <message>
-        <source>Launch (E)</source>
-        <translation>(E) starten</translation>
-    </message>
-    <message>
-        <source>Launch (A)</source>
-        <translation>(A) starten</translation>
-    </message>
-    <message>
-        <source>Delete</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>Escape</source>
-        <translation>Escape</translation>
-    </message>
-    <message>
-        <source>Audio Random Play</source>
-        <translation>Audio zufällige Auswahl spielen</translation>
-    </message>
-    <message>
-        <source>Hangul</source>
-        <translation>Hangeul</translation>
-    </message>
-    <message>
-        <source>Hangup</source>
-        <translation>Auflegen</translation>
-    </message>
-    <message>
-        <source>Henkan</source>
-        <translation>Henkan</translation>
-    </message>
-    <message>
-        <source>Insert</source>
-        <translation>Einfügen</translation>
-    </message>
-    <message>
-        <source>Home Office</source>
-        <translation>Home Office</translation>
-    </message>
-    <message>
-        <source>Last Number Redial</source>
-        <translation>Wahlwiederholung</translation>
-    </message>
-    <message>
-        <source>Logoff</source>
-        <translation>Logoff</translation>
-    </message>
-    <message>
-        <source>Market</source>
-        <translation>Markt</translation>
-    </message>
-    <message>
-        <source>Massyo</source>
-        <translation>Massyo</translation>
-    </message>
-    <message>
-        <source>Bass Boost</source>
-        <translation>Bass-Boost</translation>
-    </message>
-    <message>
-        <source>Channel Up</source>
-        <translation>nächster Kanal</translation>
-    </message>
-    <message>
-        <source>Option</source>
-        <translation>Option</translation>
-    </message>
-    <message>
-        <source>PgDown</source>
-        <translation>Bild abwärts</translation>
-    </message>
-    <message>
-        <source>Reload</source>
-        <translation>Neu laden</translation>
-    </message>
-    <message>
-        <source>Return</source>
-        <translation>Return</translation>
-    </message>
-    <message>
-        <source>Romaji</source>
-        <translation>Romaji</translation>
-    </message>
-    <message>
-        <source>Search</source>
-        <translation>Suchen</translation>
-    </message>
-    <message>
-        <source>Select</source>
-        <translation>Auswählen</translation>
-    </message>
-    <message>
-        <source>SysReq</source>
-        <translation>SysReq</translation>
-    </message>
-    <message>
-        <source>Travel</source>
-        <translation>Reise</translation>
-    </message>
-    <message>
-        <source>NumLock</source>
-        <translation>Zahlen-Feststelltaste</translation>
-    </message>
-    <message>
-        <source>WebCam</source>
-        <translation>WebCam</translation>
-    </message>
-    <message>
-        <source>Hiragana Katakana</source>
-        <translation>Hiragana Katakana</translation>
-    </message>
-    <message>
-        <source>Yellow</source>
-        <translation>Gelb</translation>
-    </message>
-    <message>
-        <source>Top Menu</source>
-        <translation>Hauptmenü</translation>
-    </message>
-    <message>
-        <source>ScrollLock</source>
-        <translation>Rollen-Feststelltaste</translation>
-    </message>
-    <message>
-        <source>Hot Links</source>
-        <translation>Empfohlene Verweise</translation>
-    </message>
-    <message>
-        <source>Audio Cycle Track</source>
-        <translation>Audiotitel wiederholen</translation>
-    </message>
-    <message>
-        <source>Context1</source>
-        <translation>Kontext1</translation>
-    </message>
-    <message>
-        <source>Context2</source>
-        <translation>Kontext2</translation>
-    </message>
-    <message>
-        <source>Context3</source>
-        <translation>Kontext3</translation>
-    </message>
-    <message>
-        <source>Context4</source>
-        <translation>Kontext4</translation>
-    </message>
-    <message>
-        <source>Zoom Out</source>
-        <translation>Verkleinern</translation>
-    </message>
-    <message>
-        <source>Page Up</source>
-        <translation>Bild aufwärts</translation>
-    </message>
-    <message>
-        <source>Open URL</source>
-        <translation>URL öffnen</translation>
-    </message>
-    <message>
-        <source>iTouch</source>
-        <translation>iTouch</translation>
-    </message>
-    <message>
-        <source>Previous Candidate</source>
-        <translation>Vorheriger Vorschlag</translation>
-    </message>
-    <message>
-        <source>Toggle Media Play/Pause</source>
-        <translation>Wiedergabe/Pause</translation>
-    </message>
-    <message>
-        <source>Caps Lock</source>
-        <translation>Feststelltaste</translation>
-    </message>
-    <message>
-        <source>Eisu Shift</source>
-        <translation>Eisu Shift</translation>
-    </message>
-    <message>
-        <source>Code input</source>
-        <translation>Code-Eingabe</translation>
-    </message>
-    <message>
-        <source>Printer</source>
-        <translation>Drucker</translation>
-    </message>
-    <message>
-        <source>Camera Focus</source>
-        <translation>Scharfstellen</translation>
-    </message>
-    <message>
-        <source>Adjust Brightness</source>
-        <translation>Helligkeit einstellen</translation>
-    </message>
-    <message>
-        <source>Spreadsheet</source>
-        <translation>Tabellenkalkulation</translation>
-    </message>
-    <message>
-        <source>Eisu toggle</source>
-        <translation>Eisu toggle</translation>
-    </message>
-    <message>
-        <source>Keyboard Brightness Down</source>
-        <translation>Tastaturbeleuchtung dunkler</translation>
-    </message>
-    <message>
-        <source>Clear Grab</source>
-        <translation>Zugriff löschen</translation>
-    </message>
-    <message>
-        <source>Monitor Brightness Up</source>
-        <translation>Monitor heller</translation>
-    </message>
-    <message>
-        <source>System Request</source>
-        <translation>System Request</translation>
-    </message>
-    <message>
-        <source>Microphone Volume Up</source>
-        <translation>Mikrofon lauter</translation>
-    </message>
-    <message>
-        <source>CapsLock</source>
-        <translation>Feststelltaste</translation>
-    </message>
-    <message>
-        <source>Backtab</source>
-        <translation>Rück-Tab</translation>
-    </message>
-    <message>
-        <source>Bass Up</source>
-        <translation>Bass +</translation>
-    </message>
-    <message>
-        <source>Battery</source>
-        <translation>Batterie</translation>
-    </message>
-    <message>
-        <source>Katakana</source>
-        <translation>Katakana</translation>
-    </message>
-    <message>
-        <source>Refresh</source>
-        <translation>Aktualisieren</translation>
-    </message>
-    <message>
-        <source>Hibernate</source>
-        <translation>Hibernate</translation>
-    </message>
-    <message>
-        <source>Application Left</source>
-        <translation>Anwendung links</translation>
-    </message>
-    <message>
-        <source>Voice Dial</source>
-        <translation>Sprachwahl</translation>
-    </message>
-    <message>
-        <source>Browser</source>
-        <translation>Browser</translation>
-    </message>
-    <message>
-        <source>Keyboard Menu</source>
-        <translation>Tastaturmenü</translation>
-    </message>
-    <message>
-        <source>Back Forward</source>
-        <translation>Hinterstes nach vorn</translation>
-    </message>
-    <message>
-        <source>Launch Mail</source>
-        <translation>Mail starten</translation>
-    </message>
-    <message>
-        <source>Keyboard Light On/Off</source>
-        <translation>Tastaturbeleuchtung Ein/Aus</translation>
-    </message>
-    <message>
-        <source>Backspace</source>
-        <translation>Rücktaste</translation>
-    </message>
-    <message>
-        <source>Bass Down</source>
-        <translation>Bass -</translation>
-    </message>
-    <message>
-        <source>Mail Forward</source>
-        <translation>Weiterleitung</translation>
-    </message>
-    <message>
-        <source>Messenger</source>
-        <translation>Messenger</translation>
-    </message>
-    <message>
-        <source>Hangul Banja</source>
-        <translation>Hangeul-Banja</translation>
-    </message>
-    <message>
-        <source>Hangul Hanja</source>
-        <translation>Hangeul-Hanja</translation>
-    </message>
-    <message>
-        <source>Standby</source>
-        <translation>Standby</translation>
-    </message>
-    <message>
-        <source>Hangul Start</source>
-        <translation>Hangeul Anfang</translation>
-    </message>
-    <message>
-        <source>Rotation KB</source>
-        <translation>Rotation KB</translation>
-    </message>
-    <message>
-        <source>Rotation PB</source>
-        <translation>Rotation PB</translation>
-    </message>
-    <message>
-        <source>Documents</source>
-        <translation>Dokumente</translation>
-    </message>
-    <message>
-        <source>Calculator</source>
-        <translation>Rechner</translation>
-    </message>
-    <message>
-        <source>Support</source>
-        <translation>Hilfe</translation>
-    </message>
-    <message>
-        <source>Suspend</source>
-        <translation>Pause</translation>
-    </message>
-    <message>
-        <source>Display</source>
-        <translation>Anzeigen</translation>
-    </message>
-    <message>
-        <source>Hangul Romaja</source>
-        <translation>Hangeul-Romaja</translation>
-    </message>
-    <message>
-        <source>My Sites</source>
-        <translation>Meine Orte</translation>
-    </message>
-    <message>
-        <source>Rotate Windows</source>
-        <translation>Fenster rotieren</translation>
-    </message>
-    <message>
-        <source>Touroku</source>
-        <translation>Touroku</translation>
-    </message>
-    <message>
-        <source>Zenkaku Hankaku</source>
-        <translation>Zenkaku Hankaku</translation>
-    </message>
-    <message>
-        <source>Hangul Jeonja</source>
-        <translation>Hangeul-Jeonja</translation>
-    </message>
-    <message>
-        <source>Treble Up</source>
-        <translation>Höhen +</translation>
-    </message>
-    <message>
-        <source>Subtitle</source>
-        <translation>Untertitel</translation>
-    </message>
-    <message>
-        <source>Hangul Jamo</source>
-        <translation>Hangeul-Jamo</translation>
-    </message>
-    <message>
-        <source>Bluetooth</source>
-        <translation>Bluetooth</translation>
-    </message>
-    <message>
-        <source>Muhenkan</source>
-        <translation>Muhenkan</translation>
-    </message>
-    <message>
-        <source>Num Lock</source>
-        <translation>Zahlen-Feststelltaste</translation>
-    </message>
-    <message>
-        <source>Screensaver</source>
-        <translation>Bildschirmschoner</translation>
-    </message>
-    <message>
-        <source>Number Lock</source>
-        <translation>Zahlen-Feststelltaste</translation>
-    </message>
-    <message>
-        <source>Power Down</source>
-        <translation>Ausschalten</translation>
-    </message>
-    <message>
-        <source>Spellchecker</source>
-        <translation>Rechtschreibprüfung</translation>
-    </message>
-    <message>
-        <source>Hangul PreHanja</source>
-        <translation>Hangeul-PreHanja</translation>
-    </message>
-    <message>
-        <source>Terminal</source>
-        <translation>Terminal</translation>
-    </message>
-    <message>
-        <source>Settings</source>
-        <translation>Einstellungen</translation>
-    </message>
-    <message>
-        <source>Add Favorite</source>
-        <translation>Lesezeichen hinzufügen</translation>
-    </message>
-    <message>
-        <source>Execute</source>
-        <translation>Ausführen</translation>
-    </message>
-    <message>
-        <source>Finance</source>
-        <translation>Finanzen</translation>
-    </message>
-    <message>
-        <source>Microphone Volume Down</source>
-        <translation>Mikrofon leiser</translation>
-    </message>
-    <message>
-        <source>Task Panel</source>
-        <translation>Task-Leiste</translation>
-    </message>
-    <message>
-        <source>Favorites</source>
-        <translation>Favoriten</translation>
-    </message>
-    <message>
-        <source>Forward</source>
-        <translation>Vorwärts</translation>
-    </message>
-    <message>
-        <source>Page Down</source>
-        <translation>Bild abwärts</translation>
-    </message>
-    <message>
-        <source>Wake Up</source>
-        <translation>Aufwecken</translation>
-    </message>
-    <message>
-        <source>Power Off</source>
-        <translation>Ausschalten</translation>
-    </message>
-    <message>
-        <source>LightBulb</source>
-        <translation>Beleuchtung</translation>
-    </message>
-    <message>
-        <source>Touchpad Toggle</source>
-        <translation>Touchpad-Umschalter</translation>
-    </message>
-    <message>
-        <source>Hankaku</source>
-        <translation>Hankaku</translation>
-    </message>
-    <message>
-        <source>Media Fast Forward</source>
-        <translation>Medium vorspulen</translation>
-    </message>
-    <message>
-        <source>Hangul End</source>
-        <translation>Hangeul Ende</translation>
-    </message>
-    <message>
-        <source>Monitor Brightness Down</source>
-        <translation>Monitor dunkler</translation>
-    </message>
-    <message>
-        <source>Microphone Mute</source>
-        <translation>Mikrofon stummschalten</translation>
-    </message>
-    <message>
-        <source>History</source>
-        <translation>Verlauf</translation>
-    </message>
-    <message>
-        <source>Media Play</source>
-        <translation>Wiedergabe</translation>
-    </message>
-    <message>
-        <source>Media Stop</source>
-        <translation>Stopp</translation>
-    </message>
-    <message>
-        <source>Media Next</source>
-        <translation>Nächster</translation>
-    </message>
-    <message>
-        <source>Touchpad On</source>
-        <translation>Touchpad an</translation>
-    </message>
-    <message>
-        <source>Channel Down</source>
-        <translation>vorangehender Kanal</translation>
-    </message>
-    <message>
-        <source>Launch Media</source>
-        <translation>Medienspieler starten</translation>
-    </message>
-    <message>
-        <source>Application Right</source>
-        <translation>Anwendung rechts</translation>
-    </message>
-    <message>
-        <source>Pictures</source>
-        <translation>Bilder</translation>
-    </message>
-</context>
-<context>
-    <name>QPageSize</name>
-    <message>
-        <source>A0</source>
-        <translation>A0</translation>
-    </message>
-    <message>
-        <source>A1</source>
-        <translation>A1</translation>
-    </message>
-    <message>
-        <source>A2</source>
-        <translation>A2</translation>
-    </message>
-    <message>
-        <source>A3</source>
-        <translation>A3</translation>
-    </message>
-    <message>
-        <source>A4</source>
-        <translation>A4</translation>
-    </message>
-    <message>
-        <source>A5</source>
-        <translation>A5</translation>
-    </message>
-    <message>
-        <source>A6</source>
-        <translation>A6</translation>
-    </message>
-    <message>
-        <source>A7</source>
-        <translation>A7</translation>
-    </message>
-    <message>
-        <source>A8</source>
-        <translation>A8</translation>
-    </message>
-    <message>
-        <source>A9</source>
-        <translation>A9</translation>
-    </message>
-    <message>
-        <source>B0</source>
-        <translation>B0</translation>
-    </message>
-    <message>
-        <source>B1</source>
-        <translation>B1</translation>
-    </message>
-    <message>
-        <source>B2</source>
-        <translation>B2</translation>
-    </message>
-    <message>
-        <source>B3</source>
-        <translation>B3</translation>
-    </message>
-    <message>
-        <source>B4</source>
-        <translation>B4</translation>
-    </message>
-    <message>
-        <source>B5</source>
-        <translation>B5</translation>
-    </message>
-    <message>
-        <source>B6</source>
-        <translation>B6</translation>
-    </message>
-    <message>
-        <source>B7</source>
-        <translation>B7</translation>
-    </message>
-    <message>
-        <source>B8</source>
-        <translation>B8</translation>
-    </message>
-    <message>
-        <source>B9</source>
-        <translation>B9</translation>
-    </message>
-    <message>
-        <source>A10</source>
-        <translation>A10</translation>
-    </message>
-    <message>
-        <source>B10</source>
-        <translation>B10</translation>
-    </message>
-    <message>
-        <source>Note</source>
-        <translation>Note</translation>
-    </message>
-    <message>
-        <source>Letter / ANSI A</source>
-        <translation>Letter / ANSI A</translation>
-    </message>
-    <message>
-        <source>Legal</source>
-        <translation>Legal</translation>
-    </message>
-    <message>
-        <source>Envelope Monarch</source>
-        <translation>Umschlag Monarch</translation>
-    </message>
-    <message>
-        <source>Architect A</source>
-        <translation>Architect A</translation>
-    </message>
-    <message>
-        <source>Architect B</source>
-        <translation>Architect B</translation>
-    </message>
-    <message>
-        <source>Architect C</source>
-        <translation>Architect C</translation>
-    </message>
-    <message>
-        <source>Architect D</source>
-        <translation>Architect D</translation>
-    </message>
-    <message>
-        <source>Architect E</source>
-        <translation>Architect E</translation>
-    </message>
-    <message>
-        <source>Letter Extra</source>
-        <translation>Letter Extra</translation>
-    </message>
-    <message>
-        <source>Letter Small</source>
-        <translation>Letter Klein</translation>
-    </message>
-    <message>
-        <source>Envelope You 4</source>
-        <translation>Umschlag You 4</translation>
-    </message>
-    <message>
-        <source>Envelope US 10</source>
-        <translation>Umschlag US 10</translation>
-    </message>
-    <message>
-        <source>Envelope US 11</source>
-        <translation>Umschlag US 11</translation>
-    </message>
-    <message>
-        <source>Envelope US 12</source>
-        <translation>Umschlag US 12</translation>
-    </message>
-    <message>
-        <source>Envelope US 14</source>
-        <translation>Umschlag US 14</translation>
-    </message>
-    <message>
-        <source>Envelope PRC 1</source>
-        <translation>Umschlag PRC 1</translation>
-    </message>
-    <message>
-        <source>Envelope PRC 2</source>
-        <translation>Umschlag PRC 2</translation>
-    </message>
-    <message>
-        <source>Envelope PRC 3</source>
-        <translation>Umschlag PRC 3</translation>
-    </message>
-    <message>
-        <source>Envelope PRC 4</source>
-        <translation>Umschlag PRC 4</translation>
-    </message>
-    <message>
-        <source>Envelope PRC 5</source>
-        <translation>Umschlag PRC 5</translation>
-    </message>
-    <message>
-        <source>Envelope PRC 6</source>
-        <translation>Umschlag PRC 6</translation>
-    </message>
-    <message>
-        <source>Envelope PRC 7</source>
-        <translation>Umschlag PRC 7</translation>
-    </message>
-    <message>
-        <source>Envelope PRC 8</source>
-        <translation>Umschlag PRC 8</translation>
-    </message>
-    <message>
-        <source>Envelope PRC 9</source>
-        <translation>Umschlag PRC 9</translation>
-    </message>
-    <message>
-        <source>Envelope C65</source>
-        <translation>Umschlag C65</translation>
-    </message>
-    <message>
-        <source>Envelope DL</source>
-        <translation>Umschlag DL</translation>
-    </message>
-    <message>
-        <source>Envelope B4</source>
-        <translation>Umschlag B4</translation>
-    </message>
-    <message>
-        <source>Envelope B5</source>
-        <translation>Umschlag B5</translation>
-    </message>
-    <message>
-        <source>Envelope B6</source>
-        <translation>Umschlag B6</translation>
-    </message>
-    <message>
-        <source>Envelope C0</source>
-        <translation>Umschlag C0</translation>
-    </message>
-    <message>
-        <source>Envelope C1</source>
-        <translation>Umschlag C1</translation>
-    </message>
-    <message>
-        <source>Envelope C2</source>
-        <translation>Umschlag C2</translation>
-    </message>
-    <message>
-        <source>Envelope C3</source>
-        <translation>Umschlag C3</translation>
-    </message>
-    <message>
-        <source>Envelope C4</source>
-        <translation>Umschlag C4</translation>
-    </message>
-    <message>
-        <source>Envelope C5</source>
-        <translation>Umschlag C5</translation>
-    </message>
-    <message>
-        <source>Envelope C6</source>
-        <translation>Umschlag C6</translation>
-    </message>
-    <message>
-        <source>Envelope C7</source>
-        <translation>Umschlag C7</translation>
-    </message>
-    <message>
-        <source>Executive (7.5 x 10 in)</source>
-        <translation>Executive (7,5 x 10 Zoll)</translation>
-    </message>
-    <message>
-        <source>ANSI C</source>
-        <translation>ANSI C</translation>
-    </message>
-    <message>
-        <source>ANSI D</source>
-        <translation>ANSI D</translation>
-    </message>
-    <message>
-        <source>ANSI E</source>
-        <translation>ANSI E</translation>
-    </message>
-    <message>
-        <source>A4 Plus</source>
-        <translation>A4 Plus</translation>
-    </message>
-    <message>
-        <source>Custom</source>
-        <translation>Benutzerdefiniert</translation>
-    </message>
-    <message>
-        <source>JIS B0</source>
-        <translation>JIS B0</translation>
-    </message>
-    <message>
-        <source>JIS B1</source>
-        <translation>JIS B1</translation>
-    </message>
-    <message>
-        <source>JIS B2</source>
-        <translation>JIS B2</translation>
-    </message>
-    <message>
-        <source>JIS B3</source>
-        <translation>JIS B3</translation>
-    </message>
-    <message>
-        <source>JIS B4</source>
-        <translation>JIS B4</translation>
-    </message>
-    <message>
-        <source>JIS B5</source>
-        <translation>JIS B5</translation>
-    </message>
-    <message>
-        <source>JIS B6</source>
-        <translation>JIS B6</translation>
-    </message>
-    <message>
-        <source>JIS B7</source>
-        <translation>JIS B7</translation>
-    </message>
-    <message>
-        <source>JIS B8</source>
-        <translation>JIS B8</translation>
-    </message>
-    <message>
-        <source>JIS B9</source>
-        <translation>JIS B9</translation>
-    </message>
-    <message>
-        <source>A3 Extra</source>
-        <translation>A3 Extra</translation>
-    </message>
-    <message>
-        <source>PRC 16K</source>
-        <translation>PRC 16K</translation>
-    </message>
-    <message>
-        <source>PRC 32K</source>
-        <translation>PRC 32K</translation>
-    </message>
-    <message>
-        <source>Quarto</source>
-        <translation>Quarto</translation>
-    </message>
-    <message>
-        <source>PRC 32K Big</source>
-        <translation>PRC 32K Groß</translation>
-    </message>
-    <message>
-        <source>A4 Extra</source>
-        <translation>A4 Extra</translation>
-    </message>
-    <message>
-        <source>A4 Small</source>
-        <translation>A4 Klein</translation>
-    </message>
-    <message>
-        <source>Executive (7.25 x 10.5 in)</source>
-        <translation>Executive (7,25 x 10,5 Zoll)</translation>
-    </message>
-    <message>
-        <source>Postcard</source>
-        <translation>Postkarte</translation>
-    </message>
-    <message>
-        <source>Tabloid / ANSI B</source>
-        <translation>Tabloid / ANSI B</translation>
-    </message>
-    <message>
-        <source>A5 Extra</source>
-        <translation>A5 Extra</translation>
-    </message>
-    <message>
-        <source>B5 Extra</source>
-        <translation>B5 Extra</translation>
-    </message>
-    <message>
-        <source>Envelope Invite</source>
-        <translation>Umschlag Einladung</translation>
-    </message>
-    <message>
-        <source>Envelope Chou 3</source>
-        <translation>Umschlag Chou 3</translation>
-    </message>
-    <message>
-        <source>Envelope Chou 4</source>
-        <translation>Umschlag Chou 4</translation>
-    </message>
-    <message>
-        <source>Statement</source>
-        <translation>Statement</translation>
-    </message>
-    <message>
-        <source>Fan-fold German (8.5 x 12 in)</source>
-        <translation>Endlosdruckpapier Deutsch (8,5 x 12 Zoll)</translation>
-    </message>
-    <message>
-        <source>Envelope PRC 10</source>
-        <translation>Umschlag PRC 10</translation>
-    </message>
-    <message>
-        <source>Envelope Kaku 2</source>
-        <translation>Umschlag Kaku 2</translation>
-    </message>
-    <message>
-        <source>Envelope Kaku 3</source>
-        <translation>Umschlag Kaku 3</translation>
-    </message>
-    <message>
-        <source>Envelope US 9</source>
-        <translation>Umschlag US 9</translation>
-    </message>
-    <message>
-        <source>%1 x %2 in</source>
-        <translation>%1 x %2 Zoll</translation>
-    </message>
-    <message>
-        <source>Super A</source>
-        <translation>Super A</translation>
-    </message>
-    <message>
-        <source>Super B</source>
-        <translation>Super B</translation>
-    </message>
-    <message>
-        <source>Fan-fold US (14.875 x 11 in)</source>
-        <translation>Endlosdruckpapier US (14,875 x 11 Zoll)</translation>
-    </message>
-    <message>
-        <source>Fan-fold German Legal (8.5 x 13 in)</source>
-        <translation>Endlosdruckpapier Deutsch Legal (8,5 x 13 Zoll)</translation>
-    </message>
-    <message>
-        <source>Custom (%1in x %2in)</source>
-        <translation>Benutzerdefiniert (%1 Zoll x %2 Zoll)</translation>
-    </message>
-    <message>
-        <source>Custom (%1mm x %2mm)</source>
-        <translation>Benutzerdefiniert (%1mm x %2mm)</translation>
-    </message>
-    <message>
-        <source>Custom (%1CC x %2CC)</source>
-        <translation>Benutzerdefiniert (%1CC x %2CC)</translation>
-    </message>
-    <message>
-        <source>Custom (%1DD x %2DD)</source>
-        <translation>Benutzerdefiniert (%1DD x %2DD)</translation>
-    </message>
-    <message>
-        <source>Custom (%1pc x %2pc)</source>
-        <translation>Benutzerdefiniert (%1pc x %2pc)</translation>
-    </message>
-    <message>
-        <source>Custom (%1pt x %2pt)</source>
-        <translation>Benutzerdefiniert (%1pt x %2pt)</translation>
-    </message>
-    <message>
-        <source>Letter Plus</source>
-        <translation>Letter Plus</translation>
-    </message>
-    <message>
-        <source>Tabloid Extra</source>
-        <translation>Tabloid Extra</translation>
-    </message>
-    <message>
-        <source>Envelope Italian</source>
-        <translation>Umschlag Italienisch</translation>
-    </message>
-    <message>
-        <source>Double Postcard</source>
-        <translation>Doppelpostkarte</translation>
-    </message>
-    <message>
-        <source>Legal Extra</source>
-        <translation>Legal Extra</translation>
-    </message>
-    <message>
-        <source>Folio (8.27 x 13 in)</source>
-        <translation>Folio (8,27 x 13 Zoll)</translation>
-    </message>
-    <message>
-        <source>Ledger / ANSI B</source>
-        <translation>Ledger / ANSI B</translation>
-    </message>
-    <message>
-        <source>JIS B10</source>
-        <translation>JIS B10</translation>
-    </message>
-    <message>
-        <source>Envelope Personal</source>
-        <translation>Umschlag Personal</translation>
-    </message>
-</context>
-<context>
-    <name>QDateTimeParser</name>
-    <message>
-        <source>AM</source>
-        <translation>AM</translation>
-    </message>
-    <message>
-        <source>PM</source>
-        <translation>PM</translation>
-    </message>
-    <message>
-        <source>am</source>
-        <translation>am</translation>
-    </message>
-    <message>
-        <source>pm</source>
-        <translation>pm</translation>
-    </message>
-</context>
-<context>
-    <name>QPageSetupWidget</name>
-    <message>
-        <source>CC</source>
-        <translation>CC</translation>
-    </message>
-    <message>
-        <source>DD</source>
-        <translation>DD</translation>
-    </message>
-    <message>
-        <source>in</source>
-        <translation>Zoll</translation>
-    </message>
-    <message>
-        <source>mm</source>
-        <translation>mm</translation>
-    </message>
-    <message>
-        <source>pt</source>
-        <translation>pt</translation>
-    </message>
-    <message>
-        <source>P̸</source>
-        <translation>P̸</translation>
-    </message>
-    <message>
-        <source>Form</source>
-        <translation>Formular</translation>
-    </message>
-    <message>
-        <source>bottom margin</source>
-        <translation>Unterer Rand</translation>
-    </message>
-    <message>
-        <source>Paper</source>
-        <translation>Papier</translation>
-    </message>
-    <message>
-        <source>Paper source:</source>
-        <translation>Papierquelle:</translation>
-    </message>
-    <message>
-        <source>right margin</source>
-        <translation>Rechter Rand</translation>
-    </message>
-    <message>
-        <source>Pica (P̸)</source>
-        <translation>Pica (P̸)</translation>
-    </message>
-    <message>
-        <source>Margins</source>
-        <translation>Ränder</translation>
-    </message>
-    <message>
-        <source>Custom</source>
-        <translation>Benutzerdefiniert</translation>
-    </message>
-    <message>
-        <source>Landscape</source>
-        <translation>Querformat</translation>
-    </message>
-    <message>
-        <source>Page Layout</source>
-        <translation>Seitenaufbau</translation>
-    </message>
-    <message>
-        <source>Width:</source>
-        <translation>Breite:</translation>
-    </message>
-    <message>
-        <source>Orientation</source>
-        <translation>Ausrichtung</translation>
-    </message>
-    <message>
-        <source>Didot (DD)</source>
-        <translation>Didot (DD)</translation>
-    </message>
-    <message>
-        <source>Portrait</source>
-        <translation>Hochformat</translation>
-    </message>
-    <message>
-        <source>Page order:</source>
-        <translation>Reihenfolge der Seiten:</translation>
-    </message>
-    <message>
-        <source>top margin</source>
-        <translation>Oberer Rand</translation>
-    </message>
-    <message>
-        <source>left margin</source>
-        <translation>Linker Rand</translation>
-    </message>
-    <message>
-        <source>Page size:</source>
-        <translation>Seitengröße:</translation>
-    </message>
-    <message>
-        <source>Cicero (CC)</source>
-        <translation>Cicero (CC)</translation>
-    </message>
-    <message>
-        <source>Reverse portrait</source>
-        <translation>Umgekehrtes Hochformat</translation>
-    </message>
-    <message>
-        <source>Millimeters (mm)</source>
-        <translation>Millimeter (mm)</translation>
-    </message>
-    <message>
-        <source>Points (pt)</source>
-        <translation>Punkte (pt)</translation>
-    </message>
-    <message>
-        <source>Pages per sheet:</source>
-        <translation>Seiten pro Blatt:</translation>
-    </message>
-    <message>
-        <source>Inches (in)</source>
-        <translation>Zoll (in)</translation>
-    </message>
-    <message>
-        <source>Reverse landscape</source>
-        <translation>Umgekehrtes Querformat</translation>
-    </message>
-    <message>
-        <source>Height:</source>
-        <translation>Höhe:</translation>
-    </message>
-</context>
-<context>
-    <name>QDBusTrayIcon</name>
-    <message>
-        <source>OK</source>
-        <translation>OK</translation>
-    </message>
-</context>
-<context>
-    <name>QDialogButtonBox</name>
-    <message>
-        <source>OK</source>
-        <translation>OK</translation>
-    </message>
-</context>
-<context>
-    <name>QPlatformTheme</name>
-    <message>
-        <source>OK</source>
-        <translation>OK</translation>
-    </message>
-    <message>
-        <source>&amp;No</source>
-        <translation>&amp;Nein</translation>
-    </message>
-    <message>
-        <source>&amp;Yes</source>
-        <translation>&amp;Ja</translation>
-    </message>
-    <message>
-        <source>Help</source>
-        <translation>Hilfe</translation>
-    </message>
-    <message>
-        <source>Open</source>
-        <translation>Öffnen</translation>
-    </message>
-    <message>
-        <source>Save</source>
-        <translation>Speichern</translation>
-    </message>
-    <message>
-        <source>Abort</source>
-        <translation>Abbrechen</translation>
-    </message>
-    <message>
-        <source>Apply</source>
-        <translation>Anwenden</translation>
-    </message>
-    <message>
-        <source>Close</source>
-        <translation>Schließen</translation>
-    </message>
-    <message>
-        <source>Reset</source>
-        <translation>Zurücksetzen</translation>
-    </message>
-    <message>
-        <source>Retry</source>
-        <translation>Wiederholen</translation>
-    </message>
-    <message>
-        <source>Restore Defaults</source>
-        <translation>Voreinstellungen</translation>
-    </message>
-    <message>
-        <source>Cancel</source>
-        <translation>Abbrechen</translation>
-    </message>
-    <message>
-        <source>Ignore</source>
-        <translation>Ignorieren</translation>
-    </message>
-    <message>
-        <source>N&amp;o to All</source>
-        <translation>N&amp;ein, keine</translation>
-    </message>
-    <message>
-        <source>Save All</source>
-        <translation>Alles speichern</translation>
-    </message>
-    <message>
-        <source>Discard</source>
-        <translation>Verwerfen</translation>
-    </message>
-    <message>
-        <source>Yes to &amp;All</source>
-        <translation>Ja, &amp;alle</translation>
-    </message>
-</context>
-<context>
-    <name>QPrintDialog</name>
-    <message>
-        <source>OK</source>
-        <translation>OK</translation>
-    </message>
-    <message>
-        <source>Even Pages</source>
-        <translation>Gerade Seiten</translation>
-    </message>
-    <message>
-        <source>Print</source>
-        <translation>Drucken</translation>
-    </message>
-    <message>
-        <source>&amp;Options &lt;&lt;</source>
-        <translation>&amp;Einstellungen &lt;&lt; </translation>
-    </message>
-    <message>
-        <source>&amp;Options &gt;&gt;</source>
-        <translation>&amp;Einstellungen &gt;&gt;</translation>
-    </message>
-    <message>
-        <source>Left to Right, Top to Bottom</source>
-        <translation>Von links nach rechts, von oben nach unten</translation>
-    </message>
-    <message>
-        <source>Right to Left, Bottom to Top</source>
-        <translation>Von rechts nach links, von unten nach oben</translation>
-    </message>
-    <message>
-        <source>Write PDF file</source>
-        <translation>PDF-Datei schreiben</translation>
-    </message>
-    <message>
-        <source>&amp;Print</source>
-        <translation>&amp;Drucken</translation>
-    </message>
-    <message>
-        <source>1 (1x1)</source>
-        <translation>1 (1x1)</translation>
-    </message>
-    <message>
-        <source>Options &apos;Pages Per Sheet&apos; and &apos;Page Set&apos; cannot be used together.
-Please turn one of those options off.</source>
-        <translation>Die Einstellungen &quot;Seiten pro Blatt&quot; und &quot;Seiten-Satz&quot; können nicht zusammen verwendet werden.
-Bitte deaktivieren Sie eine der beiden.</translation>
-    </message>
-    <message>
-        <source>%1 already exists.
-Do you want to overwrite it?</source>
-        <translation>Die Datei %1 existiert bereits.
-Soll sie überschrieben werden?</translation>
-    </message>
-    <message>
-        <source>2 (2x1)</source>
-        <translation>2 (2x1)</translation>
-    </message>
-    <message>
-        <source>Left to Right, Bottom to Top</source>
-        <translation>Von links nach rechts, von unten nach oben</translation>
-    </message>
-    <message>
-        <source>4 (2x2)</source>
-        <translation>4 (2x2)</translation>
-    </message>
-    <message>
-        <source>Odd Pages</source>
-        <translation>Ungerade Seiten</translation>
-    </message>
-    <message>
-        <source>Local file</source>
-        <translation>Lokale Datei</translation>
-    </message>
-    <message>
-        <source>6 (2x3)</source>
-        <translation>6 (2x3)</translation>
-    </message>
-    <message>
-        <source>16 (4x4)</source>
-        <translation>16 (4x4)</translation>
-    </message>
-    <message>
-        <source>Print to File (PDF)</source>
-        <translation>In PDF-Datei drucken</translation>
-    </message>
-    <message>
-        <source>Print To File ...</source>
-        <translation>In Datei drucken ...</translation>
-    </message>
-    <message>
-        <source>9 (3x3)</source>
-        <translation>9 (3x3)</translation>
-    </message>
-    <message>
-        <source>Automatic</source>
-        <translation>Automatisch</translation>
-    </message>
-    <message>
-        <source>Right to Left, Top to Bottom</source>
-        <translation>Von rechts nach links, von oben nach unten</translation>
-    </message>
-    <message>
-        <source>Bottom to Top, Left to Right</source>
-        <translation>Von unten nach oben, von links nach rechts</translation>
-    </message>
-    <message>
-        <source>The &apos;From&apos; value cannot be greater than the &apos;To&apos; value.</source>
-        <translation>Die Angabe für die erste Seite darf nicht größer sein als die für die letzte Seite.</translation>
-    </message>
-    <message>
-        <source>All Pages</source>
-        <translation>Alle Seiten</translation>
-    </message>
-    <message>
-        <source>%1 is a directory.
-Please choose a different file name.</source>
-        <translation>%1 ist ein Verzeichnis.
-Bitte wählen Sie einen anderen Dateinamen.</translation>
-    </message>
-    <message>
-        <source>File %1 is not writable.
-Please choose a different file name.</source>
-        <translation>Die Datei %1 ist schreibgeschützt.
-Bitte wählen Sie einen anderen Dateinamen.</translation>
-    </message>
-    <message>
-        <source>Bottom to Top, Right to Left</source>
-        <translation>Von unten nach oben, von rechts nach links</translation>
-    </message>
-    <message>
-        <source>Top to Bottom, Left to Right</source>
-        <translation>Von oben nach unten, von links nach rechts</translation>
-    </message>
-    <message>
-        <source>Top to Bottom, Right to Left</source>
-        <translation>Von oben nach unten, von rechts nach links</translation>
-    </message>
-</context>
-<context>
-    <name>QAndroidPlatformTheme</name>
-    <message>
-        <source>No</source>
-        <translation>Nein</translation>
-    </message>
-    <message>
-        <source>Yes</source>
-        <translation>Ja</translation>
-    </message>
-    <message>
-        <source>No to All</source>
-        <translation>Nein, keine</translation>
-    </message>
-    <message>
-        <source>Yes to All</source>
-        <translation>Ja, alle</translation>
-    </message>
-</context>
-<context>
-    <name>QPrintSettingsOutput</name>
-    <message>
-        <source>to</source>
-        <translation>bis</translation>
-    </message>
-    <message>
-        <source>Form</source>
-        <translation>Formular</translation>
-    </message>
-    <message>
-        <source>None</source>
-        <translation>Kein</translation>
-    </message>
-    <message>
-        <source>Color</source>
-        <translation>Farbe</translation>
-    </message>
-    <message>
-        <source>Print all</source>
-        <translation>Alles drucken</translation>
-    </message>
-    <message>
-        <source>Current Page</source>
-        <translation>Aktuelle Seite</translation>
-    </message>
-    <message>
-        <source>Selection</source>
-        <translation>Auswahl</translation>
-    </message>
-    <message>
-        <source>Long side</source>
-        <translation>Lange Seite</translation>
-    </message>
-    <message>
-        <source>Copies</source>
-        <translation>Anzahl Exemplare</translation>
-    </message>
-    <message>
-        <source>Print range</source>
-        <translation>Bereich drucken</translation>
-    </message>
-    <message>
-        <source>Color Mode</source>
-        <translation>Farbmodus</translation>
-    </message>
-    <message>
-        <source>Options</source>
-        <translation>Optionen</translation>
-    </message>
-    <message>
-        <source>Output Settings</source>
-        <translation>Ausgabeeinstellungen</translation>
-    </message>
-    <message>
-        <source>Reverse</source>
-        <translation>Umgekehrt</translation>
-    </message>
-    <message>
-        <source>Grayscale</source>
-        <translation>Graustufen</translation>
-    </message>
-    <message>
-        <source>Short side</source>
-        <translation>Kurze Seite</translation>
-    </message>
-    <message>
-        <source>Collate</source>
-        <translation>Sortieren</translation>
-    </message>
-    <message>
-        <source>Copies:</source>
-        <translation>Anzahl Exemplare:</translation>
-    </message>
-    <message>
-        <source>Pages from</source>
-        <translation>Seiten von</translation>
-    </message>
-    <message>
-        <source>Page Set:</source>
-        <translation>Seiten-Satz:</translation>
-    </message>
-    <message>
-        <source>Duplex Printing</source>
-        <translation>Duplexdruck</translation>
-    </message>
-</context>
-<context>
-    <name>QPrintPreviewDialog</name>
-    <message>
-        <source>%1%</source>
-        <translation>%1%</translation>
-    </message>
-    <message>
-        <source>Print Preview</source>
-        <translation>Druckvorschau</translation>
-    </message>
-    <message>
-        <source>Print</source>
-        <translation>Drucken</translation>
-    </message>
-    <message>
-        <source>Fit page</source>
-        <translation>Seite anpassen</translation>
-    </message>
-    <message>
-        <source>Zoom in</source>
-        <translation>Vergrößern</translation>
-    </message>
-    <message>
-        <source>Landscape</source>
-        <translation>Querformat</translation>
-    </message>
-    <message>
-        <source>Zoom out</source>
-        <translation>Verkleinern</translation>
-    </message>
-    <message>
-        <source>Fit width</source>
-        <translation>Breite anpassen</translation>
-    </message>
-    <message>
-        <source>Portrait</source>
-        <translation>Hochformat</translation>
-    </message>
-    <message>
-        <source>Page Setup</source>
-        <translation>Seite einrichten</translation>
-    </message>
-    <message>
-        <source>Page setup</source>
-        <translation>Seite einrichten</translation>
-    </message>
-    <message>
-        <source>Show overview of all pages</source>
-        <translation>Ãœbersicht aller Seiten</translation>
-    </message>
-    <message>
-        <source>First page</source>
-        <translation>Erste Seite</translation>
-    </message>
-    <message>
-        <source>Last page</source>
-        <translation>Letzte Seite</translation>
-    </message>
-    <message>
-        <source>Show single page</source>
-        <translation>Einzelne Seite anzeigen</translation>
-    </message>
-    <message>
-        <source>Export to PDF</source>
-        <translation>PDF exportieren</translation>
-    </message>
-    <message>
-        <source>Previous page</source>
-        <translation>Vorige Seite</translation>
-    </message>
-    <message>
-        <source>Next page</source>
-        <translation>Nächste Seite</translation>
-    </message>
-    <message>
-        <source>Show facing pages</source>
-        <translation>Gegenüberliegende Seiten anzeigen</translation>
-    </message>
-</context>
-<context>
-    <name>QErrorMessage</name>
-    <message>
-        <source>&amp;OK</source>
-        <translation>&amp;OK</translation>
-    </message>
-    <message>
-        <source>Fatal Error:</source>
-        <translation>Fehler:</translation>
-    </message>
-    <message>
-        <source>&amp;Show this message again</source>
-        <translation>Diese Meldung wieder an&amp;zeigen</translation>
-    </message>
-    <message>
-        <source>Debug Message:</source>
-        <translation>Debug-Ausgabe:</translation>
-    </message>
-    <message>
-        <source>Warning:</source>
-        <translation>Warnung:</translation>
-    </message>
-</context>
-<context>
-    <name>QGnomeTheme</name>
-    <message>
-        <source>&amp;OK</source>
-        <translation>&amp;OK</translation>
-    </message>
-    <message>
-        <source>&amp;Save</source>
-        <translation>S&amp;peichern</translation>
-    </message>
-    <message>
-        <source>&amp;Close</source>
-        <translation>Schl&amp;ießen</translation>
-    </message>
-    <message>
-        <source>Close without Saving</source>
-        <translation>Schließen ohne zu Speichern</translation>
-    </message>
-    <message>
-        <source>&amp;Cancel</source>
-        <translation>&amp;Abbrechen</translation>
-    </message>
-</context>
-<context>
-    <name>QPrintWidget</name>
-    <message>
-        <source>...</source>
-        <translation>...</translation>
-    </message>
-    <message>
-        <source>Form</source>
-        <translation>Formular</translation>
-    </message>
-    <message>
-        <source>Type:</source>
-        <translation>Typ:</translation>
-    </message>
-    <message>
-        <source>&amp;Name:</source>
-        <translation>&amp;Name:</translation>
-    </message>
-    <message>
-        <source>Output &amp;file:</source>
-        <translation>Ausgabe&amp;datei:</translation>
-    </message>
-    <message>
-        <source>P&amp;roperties</source>
-        <translation>&amp;Eigenschaften</translation>
-    </message>
-    <message>
-        <source>Preview</source>
-        <translation>Vorschau</translation>
-    </message>
-    <message>
-        <source>Printer</source>
-        <translation>Drucker</translation>
-    </message>
-    <message>
-        <source>Location:</source>
-        <translation>Standort:</translation>
-    </message>
-</context>
-<context>
-    <name>QFontDatabase</name>
-    <message>
-        <source>Any</source>
-        <translation>Alle</translation>
-    </message>
-    <message>
-        <source>Lao</source>
-        <translation>Laotisch</translation>
-    </message>
-    <message>
-        <source>Bold</source>
-        <translation>Fett</translation>
-    </message>
-    <message>
-        <source>Demi</source>
-        <translation>Halb</translation>
-    </message>
-    <message>
-        <source>N&apos;Ko</source>
-        <translation>N&apos;Ko</translation>
-    </message>
-    <message>
-        <source>Thai</source>
-        <translation>Thailändisch</translation>
-    </message>
-    <message>
-        <source>Thin</source>
-        <translation>Dünn</translation>
-    </message>
-    <message>
-        <source>Black</source>
-        <translation>Schwarz</translation>
-    </message>
-    <message>
-        <source>Extra</source>
-        <translation>Sehr</translation>
-    </message>
-    <message>
-        <source>Greek</source>
-        <translation>Griechisch</translation>
-    </message>
-    <message>
-        <source>Khmer</source>
-        <translation>Khmer</translation>
-    </message>
-    <message>
-        <source>Latin</source>
-        <translation>Lateinisch</translation>
-    </message>
-    <message>
-        <source>Light</source>
-        <translation>Leicht</translation>
-    </message>
-    <message>
-        <source>Ogham</source>
-        <translation>Ogham</translation>
-    </message>
-    <message>
-        <source>Oriya</source>
-        <translation>Oriya</translation>
-    </message>
-    <message>
-        <source>Runic</source>
-        <translation>Runen</translation>
-    </message>
-    <message>
-        <source>Tamil</source>
-        <translation>Tamilisch</translation>
-    </message>
-    <message>
-        <source>Cyrillic</source>
-        <translation>Kyrillisch</translation>
-    </message>
-    <message>
-        <source>Kannada</source>
-        <translation>Kannada</translation>
-    </message>
-    <message>
-        <source>Malayalam</source>
-        <translation>Malayalam</translation>
-    </message>
-    <message>
-        <source>Extra Light</source>
-        <translation>Sehr dünn</translation>
-    </message>
-    <message>
-        <source>Simplified Chinese</source>
-        <translation>Chinesisch (Kurzzeichen)</translation>
-    </message>
-    <message>
-        <source>Demi Bold</source>
-        <translation>Halbfett</translation>
-    </message>
-    <message>
-        <source>Arabic</source>
-        <translation>Arabisch</translation>
-    </message>
-    <message>
-        <source>Hebrew</source>
-        <translation>Hebräisch</translation>
-    </message>
-    <message>
-        <source>Myanmar</source>
-        <translation>Myanmar</translation>
-    </message>
-    <message>
-        <source>Italic</source>
-        <translation>Kursiv</translation>
-    </message>
-    <message>
-        <source>Korean</source>
-        <translation>Koreanisch</translation>
-    </message>
-    <message>
-        <source>Medium</source>
-        <translation>Mittel</translation>
-    </message>
-    <message>
-        <source>Normal</source>
-        <translation>Normal</translation>
-    </message>
-    <message>
-        <source>Oblique</source>
-        <translation>Schräggestellt</translation>
-    </message>
-    <message>
-        <source>Telugu</source>
-        <translation>Telugu</translation>
-    </message>
-    <message>
-        <source>Thaana</source>
-        <translation>Thaana</translation>
-    </message>
-    <message>
-        <source>Symbol</source>
-        <translation>Symbol</translation>
-    </message>
-    <message>
-        <source>Syriac</source>
-        <translation>Syrisch</translation>
-    </message>
-    <message>
-        <source>Extra Bold</source>
-        <translation>Sehr fett</translation>
-    </message>
-    <message>
-        <source>Devanagari</source>
-        <translation>Devanagari</translation>
-    </message>
-    <message>
-        <source>Japanese</source>
-        <translation>Japanisch</translation>
-    </message>
-    <message>
-        <source>Bengali</source>
-        <translation>Bengalisch</translation>
-    </message>
-    <message>
-        <source>Armenian</source>
-        <translation>Armenisch</translation>
-    </message>
-    <message>
-        <source>Sinhala</source>
-        <translation>Sinhala</translation>
-    </message>
-    <message>
-        <source>Tibetan</source>
-        <translation>Tibetisch</translation>
-    </message>
-    <message>
-        <source>Vietnamese</source>
-        <translation>Vietnamesisch</translation>
-    </message>
-    <message>
-        <source>Gujarati</source>
-        <translation>Gujarati</translation>
-    </message>
-    <message>
-        <source>Traditional Chinese</source>
-        <translation>Chinesisch (Langzeichen)</translation>
-    </message>
-    <message>
-        <source>Georgian</source>
-        <translation>Georgisch</translation>
-    </message>
-    <message>
-        <source>Gurmukhi</source>
-        <translation>Gurmukhi</translation>
-    </message>
-</context>
-<context>
-    <name>QCocoaMenuItem</name>
-    <message>
-        <source>Cut</source>
-        <translation>Ausschneiden</translation>
-    </message>
-    <message>
-        <source>Copy</source>
-        <translation>Kopieren</translation>
-    </message>
-    <message>
-        <source>Exit</source>
-        <translation>Verlassen</translation>
-    </message>
-    <message>
-        <source>Quit</source>
-        <translation>Beenden</translation>
-    </message>
-    <message>
-        <source>About</source>
-        <translation>Ãœber</translation>
-    </message>
-    <message>
-        <source>Paste</source>
-        <translation>Einfügen</translation>
-    </message>
-    <message>
-        <source>Setup</source>
-        <translation>Einrichten</translation>
-    </message>
-    <message>
-        <source>Config</source>
-        <translation>Konfiguration</translation>
-    </message>
-    <message>
-        <source>Options</source>
-        <translation>Optionen</translation>
-    </message>
-    <message>
-        <source>About Qt</source>
-        <translation>Ãœber Qt</translation>
-    </message>
-    <message>
-        <source>Setting</source>
-        <translation>Einstellung</translation>
-    </message>
-    <message>
-        <source>Select All</source>
-        <translation>Alles auswählen</translation>
-    </message>
-    <message>
-        <source>Preference</source>
-        <translation>Einstellung</translation>
-    </message>
-</context>
-<context>
-    <name>QCupsJobWidget</name>
-    <message>
-        <source>Job</source>
-        <translation>Druckauftrag</translation>
-    </message>
-    <message>
-        <source>End:</source>
-        <translation>Ende:</translation>
-    </message>
-    <message>
-        <source>None</source>
-        <translation>Keine</translation>
-    </message>
-    <message>
-        <source>Banner Pages</source>
-        <translation>Kopfseiten</translation>
-    </message>
-    <message>
-        <source>Night (18:00 to 05:59)</source>
-        <translation>Nachts (18:00 bis 05:59)</translation>
-    </message>
-    <message>
-        <source>Specific Time</source>
-        <translation>Zu festgelegter Zeit</translation>
-    </message>
-    <message>
-        <source>Billing information:</source>
-        <translation>Rechnungsinformation:</translation>
-    </message>
-    <message>
-        <source>Scheduled printing:</source>
-        <translation>Zum Drucken vorgesehen:</translation>
-    </message>
-    <message>
-        <source>Secret</source>
-        <translation>Geheim</translation>
-    </message>
-    <message>
-        <source>Top Secret</source>
-        <translation>Streng geheim</translation>
-    </message>
-    <message>
-        <source>Start:</source>
-        <translation>Anfang:</translation>
-    </message>
-    <message>
-        <source>Day (06:00 to 17:59)</source>
-        <translation>Tagsüber (06:00 bis 17:59)</translation>
-    </message>
-    <message>
-        <source>Second Shift (16:00 to 23:59)</source>
-        <translation>Zweite Schicht (16:00 bis 23:59)</translation>
-    </message>
-    <message>
-        <source>Job Control</source>
-        <translation>Einstellungen zum Druckauftrag</translation>
-    </message>
-    <message>
-        <source>Weekend (Saturday to Sunday)</source>
-        <translation>Wochenende (Samstag bis Sonntag)</translation>
-    </message>
-    <message>
-        <source>Standard</source>
-        <translation>Vorgabe</translation>
-    </message>
-    <message>
-        <source>Classified</source>
-        <translation>Nicht öffentlich</translation>
-    </message>
-    <message>
-        <source>Third Shift (00:00 to 07:59)</source>
-        <translation>Dritte Schicht (00:00 bis 07:59)</translation>
-    </message>
-    <message>
-        <source>Hold Indefinitely</source>
-        <translation>Unbegrenzt vorhalten</translation>
-    </message>
-    <message>
-        <source>Print Immediately</source>
-        <translation>Sofort ausdrucken</translation>
-    </message>
-    <message>
-        <source>Confidential</source>
-        <translation>Vertraulich</translation>
-    </message>
-    <message>
-        <source>Job priority:</source>
-        <translation>Priorität des Druckauftrags:</translation>
-    </message>
-    <message>
-        <source>Unclassified</source>
-        <translation>Öffentlich</translation>
-    </message>
-</context>
-<context>
-    <name>QScrollBar</name>
-    <message>
-        <source>Top</source>
-        <translation>Anfang</translation>
-    </message>
-    <message>
-        <source>Scroll down</source>
-        <translation>Nach unten scrollen</translation>
-    </message>
-    <message>
-        <source>Scroll here</source>
-        <translation>Hierher scrollen</translation>
-    </message>
-    <message>
-        <source>Scroll left</source>
-        <translation>Nach links scrollen</translation>
-    </message>
-    <message>
-        <source>Bottom</source>
-        <translation>Ende</translation>
-    </message>
-    <message>
-        <source>Page up</source>
-        <translation>Eine Seite nach oben</translation>
-    </message>
-    <message>
-        <source>Page right</source>
-        <translation>Eine Seite nach rechts</translation>
-    </message>
-    <message>
-        <source>Scroll up</source>
-        <translation>Nach oben scrollen</translation>
-    </message>
-    <message>
-        <source>Scroll right</source>
-        <translation>Nach rechts scrollen</translation>
-    </message>
-    <message>
-        <source>Left edge</source>
-        <translation>Linker Rand</translation>
-    </message>
-    <message>
-        <source>Page down</source>
-        <translation>Eine Seite nach unten</translation>
-    </message>
-    <message>
-        <source>Page left</source>
-        <translation>Eine Seite nach links</translation>
-    </message>
-    <message>
-        <source>Right edge</source>
-        <translation>Rechter Rand</translation>
-    </message>
-</context>
-<context>
-    <name>QSpiAccessibleBridge</name>
-    <message>
-        <source>row</source>
-        <translation>Zeile</translation>
-    </message>
-    <message>
-        <source>cell</source>
-        <translation>Zelle</translation>
-    </message>
-    <message>
-        <source>dial</source>
-        <translation>Skala</translation>
-    </message>
-    <message>
-        <source>form</source>
-        <translation>Formular</translation>
-    </message>
-    <message>
-        <source>grip</source>
-        <translation>Griff</translation>
-    </message>
-    <message>
-        <source>link</source>
-        <translation>Verweis</translation>
-    </message>
-    <message>
-        <source>list</source>
-        <translation>Liste</translation>
-    </message>
-    <message>
-        <source>note</source>
-        <translation>Hinweis</translation>
-    </message>
-    <message>
-        <source>text</source>
-        <translation>Text</translation>
-    </message>
-    <message>
-        <source>tree</source>
-        <translation>Baum</translation>
-    </message>
-    <message>
-        <source>animation</source>
-        <translation>Animation</translation>
-    </message>
-    <message>
-        <source>chart</source>
-        <translation>Diagramm</translation>
-    </message>
-    <message>
-        <source>clock</source>
-        <translation>Uhr</translation>
-    </message>
-    <message>
-        <source>frame</source>
-        <translation>Rahmen</translation>
-    </message>
-    <message>
-        <source>label</source>
-        <translation>Textfeld</translation>
-    </message>
-    <message>
-        <source>panel</source>
-        <translation>Panel</translation>
-    </message>
-    <message>
-        <source>space</source>
-        <translation>Leerraum</translation>
-    </message>
-    <message>
-        <source>sound</source>
-        <translation>Akustisches Signal</translation>
-    </message>
-    <message>
-        <source>table</source>
-        <translation>Tabelle</translation>
-    </message>
-    <message>
-        <source>radio button</source>
-        <translation>Radioknopf</translation>
-    </message>
-    <message>
-        <source>page tab list</source>
-        <translation>Liste von Seitenreitern</translation>
-    </message>
-    <message>
-        <source>web document</source>
-        <translation>Web-Dokument</translation>
-    </message>
-    <message>
-        <source>combo box</source>
-        <translation>Auswahlfeld</translation>
-    </message>
-    <message>
-        <source>color chooser</source>
-        <translation>Farbauswahl</translation>
-    </message>
-    <message>
-        <source>menu item</source>
-        <translation>Menüeintrag</translation>
-    </message>
-    <message>
-        <source>document</source>
-        <translation>Dokument</translation>
-    </message>
-    <message>
-        <source>scroll bar</source>
-        <translation>Bildlaufleiste</translation>
-    </message>
-    <message>
-        <source>tool bar</source>
-        <translation>Werkzeugleiste</translation>
-    </message>
-    <message>
-        <source>tool tip</source>
-        <translation>Tooltip</translation>
-    </message>
-    <message>
-        <source>text caret</source>
-        <translation>Einfügemarke</translation>
-    </message>
-    <message>
-        <source>button menu</source>
-        <translation>Schaltfläche mit Menü</translation>
-    </message>
-    <message>
-        <source>separator</source>
-        <translation>Separator</translation>
-    </message>
-    <message>
-        <source>canvas</source>
-        <translation>Zeichenfläche</translation>
-    </message>
-    <message>
-        <source>column</source>
-        <translation>Spalte</translation>
-    </message>
-    <message>
-        <source>cursor</source>
-        <translation>Mauszeiger</translation>
-    </message>
-    <message>
-        <source>dialog</source>
-        <translation>Dialog</translation>
-    </message>
-    <message>
-        <source>filler</source>
-        <translation>Füller</translation>
-    </message>
-    <message>
-        <source>footer</source>
-        <translation>Fußzeile</translation>
-    </message>
-    <message>
-        <source>push button</source>
-        <translation>Schaltfläche</translation>
-    </message>
-    <message>
-        <source>row header</source>
-        <translation>Zeilentitel</translation>
-    </message>
-    <message>
-        <source>spin box</source>
-        <translation>Zahlenfeld</translation>
-    </message>
-    <message>
-        <source>splitter</source>
-        <translation>Fensterteiler</translation>
-    </message>
-    <message>
-        <source>slider</source>
-        <translation>Schieber</translation>
-    </message>
-    <message>
-        <source>button with drop down grid</source>
-        <translation>Schaltfläche, die ein Fenster ausklappt, was ein Gitter zeigt</translation>
-    </message>
-    <message>
-        <source>page tab</source>
-        <translation>Seitenreiter</translation>
-    </message>
-    <message>
-        <source>invalid role</source>
-        <translation>ungültige Rolle</translation>
-    </message>
-    <message>
-        <source>paragraph</source>
-        <translation>Absatz</translation>
-    </message>
-    <message>
-        <source>equation</source>
-        <translation>Gleichung</translation>
-    </message>
-    <message>
-        <source>complementary content</source>
-        <translation>Ergänzender Inhalt</translation>
-    </message>
-    <message>
-        <source>section</source>
-        <translation>Abschnitt</translation>
-    </message>
-    <message>
-        <source>assistant</source>
-        <translation>Assistent</translation>
-    </message>
-    <message>
-        <source>list item</source>
-        <translation>Listenelement</translation>
-    </message>
-    <message>
-        <source>indicator</source>
-        <translation>Indikator</translation>
-    </message>
-    <message>
-        <source>title bar</source>
-        <translation>Titelleiste</translation>
-    </message>
-    <message>
-        <source>tree item</source>
-        <translation>Baumelement</translation>
-    </message>
-    <message>
-        <source>check box</source>
-        <translation>Checkbox</translation>
-    </message>
-    <message>
-        <source>status bar</source>
-        <translation>Statuszeile</translation>
-    </message>
-    <message>
-        <source>progress bar</source>
-        <translation>Fortschrittsanzeige</translation>
-    </message>
-    <message>
-        <source>alert message</source>
-        <translation>Benachrichtigung</translation>
-    </message>
-    <message>
-        <source>property page</source>
-        <translation>Eigenschaftsseite</translation>
-    </message>
-    <message>
-        <source>popup menu</source>
-        <translation>Menü</translation>
-    </message>
-    <message>
-        <source>layered pane</source>
-        <translation>Panel mit mehreren Schichten</translation>
-    </message>
-    <message>
-        <source>unknown</source>
-        <translation>unbekannt</translation>
-    </message>
-    <message>
-        <source>menu bar</source>
-        <translation>Menüleiste</translation>
-    </message>
-    <message>
-        <source>column header</source>
-        <translation>Spaltentitel</translation>
-    </message>
-    <message>
-        <source>button with drop down</source>
-        <translation>Schaltfläche, die ein Fenster ausklappt</translation>
-    </message>
-    <message>
-        <source>hotkey field</source>
-        <translation>Feld mit Tastenverknüpfung</translation>
-    </message>
-    <message>
-        <source>graphic</source>
-        <translation>graphisch</translation>
-    </message>
-    <message>
-        <source>help balloon</source>
-        <translation>Ballonhilfe</translation>
-    </message>
-    <message>
-        <source>heading</source>
-        <translation>Kopfzeile</translation>
-    </message>
-    <message>
-        <source>application</source>
-        <translation>Anwendung</translation>
-    </message>
-</context>
-<context>
-    <name>QFile</name>
-    <message>
-        <source>Cannot remove source file</source>
-        <translation>Die Quelldatei kann nicht entfernt werden</translation>
-    </message>
-    <message>
-        <source>Destination file is the same file.</source>
-        <translation>Die Zieldatei ist dieselbe Datei.</translation>
-    </message>
-    <message>
-        <source>Error while renaming.</source>
-        <translation>Fehler beim Umbenennen.</translation>
-    </message>
-    <message>
-        <source>Cannot create %1 for output</source>
-        <translation>%1 kann nicht erstellt werden</translation>
-    </message>
-    <message>
-        <source>Failure to write block</source>
-        <translation>Der Datenblock konnte nicht geschrieben werden</translation>
-    </message>
-    <message>
-        <source>Cannot open %1 for input</source>
-        <translation>%1 kann nicht zum Lesen geöffnet werden</translation>
-    </message>
-    <message>
-        <source>Destination file exists</source>
-        <translation>Die Zieldatei existiert bereits</translation>
-    </message>
-    <message>
-        <source>Cannot open for output</source>
-        <translation>Öffnen zum Schreiben fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>Will not rename sequential file using block copy</source>
-        <translation>Eine sequentielle Datei wird nicht durch blockweises Kopieren umbenannt</translation>
-    </message>
-    <message>
-        <source>Source file does not exist.</source>
-        <translation>Die Quelldatei existiert nicht.</translation>
-    </message>
-    <message>
-        <source>Unable to restore from %1: %2</source>
-        <translation>Die Datei konnte nicht von %1 wieder hergestellt werden: %2</translation>
-    </message>
-</context>
-<context>
-    <name>QFileDialog</name>
-    <message>
-        <source>Back</source>
-        <translation>Zurück</translation>
-    </message>
-    <message>
-        <source>File</source>
-        <translation>Datei</translation>
-    </message>
-    <message>
-        <source>Open</source>
-        <translation>Öffnen</translation>
-    </message>
-    <message>
-        <source>&amp;Open</source>
-        <translation>&amp;Öffnen</translation>
-    </message>
-    <message>
-        <source>&amp;Save</source>
-        <translation>S&amp;peichern</translation>
-    </message>
-    <message>
-        <source>Alias</source>
-        <translation>Alias</translation>
-    </message>
-    <message>
-        <source>Drive</source>
-        <translation>Laufwerk</translation>
-    </message>
-    <message>
-        <source>Files</source>
-        <translation>Dateien</translation>
-    </message>
-    <message>
-        <source>Show </source>
-        <translation>Anzeigen </translation>
-    </message>
-    <message>
-        <source>&apos;%1&apos; is write protected.
-Do you want to delete it anyway?</source>
-        <translation>&apos;%1&apos; ist schreibgeschützt.
-Möchten Sie die Datei trotzdem löschen?</translation>
-    </message>
-    <message>
-        <source>Are you sure you want to delete &apos;%1&apos;?</source>
-        <translation>Sind Sie sicher, dass Sie &apos;%1&apos; löschen möchten?</translation>
-    </message>
-    <message>
-        <source>List of places and bookmarks</source>
-        <translation>Liste der Orte und Lesezeichen</translation>
-    </message>
-    <message>
-        <source>File &amp;name:</source>
-        <translation>Datei&amp;name:</translation>
-    </message>
-    <message>
-        <source>Alt+Left</source>
-        <translation>Alt+Left</translation>
-    </message>
-    <message>
-        <source>Alt+Up</source>
-        <translation>Alt+Up</translation>
-    </message>
-    <message>
-        <source>File Folder</source>
-        <translation>Ordner</translation>
-    </message>
-    <message>
-        <source>Delete</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>New Folder</source>
-        <translation>Neues Verzeichnis</translation>
-    </message>
-    <message>
-        <source>Folder</source>
-        <translation>Verzeichnis</translation>
-    </message>
-    <message>
-        <source>Parent Directory</source>
-        <translation>Ãœbergeordnetes Verzeichnis</translation>
-    </message>
-    <message>
-        <source>&amp;New Folder</source>
-        <translation>&amp;Neues Verzeichnis</translation>
-    </message>
-    <message>
-        <source>Remove</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>My Computer</source>
-        <translation>Mein Computer</translation>
-    </message>
-    <message>
-        <source>Look in:</source>
-        <translation>Suchen in:</translation>
-    </message>
-    <message>
-        <source>Alt+Right</source>
-        <translation>Alt+Right</translation>
-    </message>
-    <message>
-        <source>Create a New Folder</source>
-        <translation>Neuen Ordner erstellen</translation>
-    </message>
-    <message>
-        <source>%1 File</source>
-        <translation>%1-Datei</translation>
-    </message>
-    <message>
-        <source>Files of type:</source>
-        <translation>Dateien des Typs:</translation>
-    </message>
-    <message>
-        <source>Find Directory</source>
-        <translation>Verzeichnis suchen</translation>
-    </message>
-    <message>
-        <source>Show &amp;hidden files</source>
-        <translation>&amp;Versteckte Dateien anzeigen</translation>
-    </message>
-    <message>
-        <source>Save As</source>
-        <translation>Speichern unter</translation>
-    </message>
-    <message>
-        <source>%1
-Directory not found.
-Please verify the correct directory name was given.</source>
-        <translation>%1
-Das Verzeichnis konnte nicht gefunden werden.
-Stellen Sie sicher, dass der Verzeichnisname richtig ist.</translation>
-    </message>
-    <message>
-        <source>Sidebar</source>
-        <translation>Seitenleiste</translation>
-    </message>
-    <message>
-        <source>List View</source>
-        <translation>Liste</translation>
-    </message>
-    <message>
-        <source>&amp;Choose</source>
-        <translation>&amp;Auswählen</translation>
-    </message>
-    <message>
-        <source>&amp;Delete</source>
-        <translation>&amp;Löschen</translation>
-    </message>
-    <message>
-        <source>All files (*)</source>
-        <translation>Alle Dateien (*)</translation>
-    </message>
-    <message>
-        <source>All Files (*)</source>
-        <translation>Alle Dateien (*)</translation>
-    </message>
-    <message>
-        <source>Directories</source>
-        <translation>Verzeichnisse</translation>
-    </message>
-    <message>
-        <source>&amp;Rename</source>
-        <translation>&amp;Umbenennen</translation>
-    </message>
-    <message>
-        <source>Could not delete directory.</source>
-        <translation>Das Verzeichnis konnte nicht gelöscht werden.</translation>
-    </message>
-    <message>
-        <source>Directory:</source>
-        <translation>Verzeichnis:</translation>
-    </message>
-    <message>
-        <source>Unknown</source>
-        <translation>Unbekannt</translation>
-    </message>
-    <message>
-        <source>%1 already exists.
-Do you want to replace it?</source>
-        <translation>Die Datei %1 existiert bereits.
-Soll sie überschrieben werden?</translation>
-    </message>
-    <message>
-        <source>Forward</source>
-        <translation>Vorwärts</translation>
-    </message>
-    <message>
-        <source>Go forward</source>
-        <translation>Vor</translation>
-    </message>
-    <message>
-        <source>Go to the parent directory</source>
-        <translation>Gehe zum übergeordneten Verzeichnis</translation>
-    </message>
-    <message>
-        <source>Recent Places</source>
-        <translation>Zuletzt besucht</translation>
-    </message>
-    <message>
-        <source>Go back</source>
-        <translation>Zurück</translation>
-    </message>
-    <message>
-        <source>Change to detail view mode</source>
-        <translation>Wechsle zu Detailansicht</translation>
-    </message>
-    <message>
-        <source>Create New Folder</source>
-        <translation>Neuen Ordner erstellen</translation>
-    </message>
-    <message>
-        <source>Shortcut</source>
-        <translation>Symbolischer Link</translation>
-    </message>
-    <message>
-        <source>Detail View</source>
-        <translation>Details</translation>
-    </message>
-    <message>
-        <source>%1
-File not found.
-Please verify the correct file name was given.</source>
-        <translation>%1
-Die Datei konnte nicht gefunden werden.
-Stellen Sie sicher, dass der Dateiname richtig ist.</translation>
-    </message>
-    <message>
-        <source>Change to list view mode</source>
-        <translation>Wechsle zu Listenansicht</translation>
-    </message>
-</context>
-<context>
-    <name>QLineEdit</name>
-    <message>
-        <source>Cu&amp;t</source>
-        <translation>&amp;Ausschneiden</translation>
-    </message>
-    <message>
-        <source>&amp;Copy</source>
-        <translation>&amp;Kopieren</translation>
-    </message>
-    <message>
-        <source>&amp;Redo</source>
-        <translation>Wieder&amp;herstellen</translation>
-    </message>
-    <message>
-        <source>&amp;Undo</source>
-        <translation>&amp;Rückgängig</translation>
-    </message>
-    <message>
-        <source>&amp;Paste</source>
-        <translation>Einf&amp;ügen</translation>
-    </message>
-    <message>
-        <source>Delete</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>Select All</source>
-        <translation>Alles auswählen</translation>
-    </message>
-</context>
-<context>
-    <name>QWidgetTextControl</name>
-    <message>
-        <source>Cu&amp;t</source>
-        <translation>&amp;Ausschneiden</translation>
-    </message>
-    <message>
-        <source>&amp;Copy</source>
-        <translation>&amp;Kopieren</translation>
-    </message>
-    <message>
-        <source>&amp;Redo</source>
-        <translation>Wieder&amp;herstellen</translation>
-    </message>
-    <message>
-        <source>&amp;Undo</source>
-        <translation>&amp;Rückgängig</translation>
-    </message>
-    <message>
-        <source>&amp;Paste</source>
-        <translation>Einf&amp;ügen</translation>
-    </message>
-    <message>
-        <source>Delete</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <source>Select All</source>
-        <translation>Alles auswählen</translation>
-    </message>
-    <message>
-        <source>Copy &amp;Link Location</source>
-        <translation>&amp;Link-Adresse kopieren</translation>
-    </message>
-</context>
-<context>
-    <name>QWizard</name>
-    <message>
-        <source>Done</source>
-        <translation>Fertig</translation>
-    </message>
-    <message>
-        <source>Help</source>
-        <translation>Hilfe</translation>
-    </message>
-    <message>
-        <source>&amp;Help</source>
-        <translation>&amp;Hilfe</translation>
-    </message>
-    <message>
-        <source>&amp;Next</source>
-        <translation>&amp;Weiter</translation>
-    </message>
-    <message>
-        <source>Cancel</source>
-        <translation>Abbrechen</translation>
-    </message>
-    <message>
-        <source>Commit</source>
-        <translation>Anwenden</translation>
-    </message>
-    <message>
-        <source>Continue</source>
-        <translation>Weiter</translation>
-    </message>
-    <message>
-        <source>&amp;Finish</source>
-        <translation>Ab&amp;schließen</translation>
-    </message>
-    <message>
-        <source>&amp;Next &gt;</source>
-        <translation>&amp;Weiter &gt;</translation>
-    </message>
-    <message>
-        <source>Go Back</source>
-        <translation>Zurück</translation>
-    </message>
-    <message>
-        <source>&lt; &amp;Back</source>
-        <translation>&lt; &amp;Zurück</translation>
-    </message>
-</context>
-<context>
-    <name>QPrintPropertiesWidget</name>
-    <message>
-        <source>Form</source>
-        <translation>Formular</translation>
-    </message>
-    <message>
-        <source>Page</source>
-        <translation>Seite</translation>
-    </message>
-</context>
-<context>
-    <name>QMdiSubWindow</name>
-    <message>
-        <source>Help</source>
-        <translation>Hilfe</translation>
-    </message>
-    <message>
-        <source>Menu</source>
-        <translation>Menü</translation>
-    </message>
-    <message>
-        <source>&amp;Move</source>
-        <translation>Ver&amp;schieben</translation>
-    </message>
-    <message>
-        <source>&amp;Size</source>
-        <translation>&amp;Größe</translation>
-    </message>
-    <message>
-        <source>Close</source>
-        <translation>Schließen</translation>
-    </message>
-    <message>
-        <source>Minimize</source>
-        <translation>Minimieren</translation>
-    </message>
-    <message>
-        <source>Shade</source>
-        <translation>Aufrollen</translation>
-    </message>
-    <message>
-        <source>Stay on &amp;Top</source>
-        <translation>Im &amp;Vordergrund bleiben</translation>
-    </message>
-    <message>
-        <source>&amp;Close</source>
-        <translation>Schl&amp;ießen</translation>
-    </message>
-    <message>
-        <source>- [%1]</source>
-        <translation>- [%1]</translation>
-    </message>
-    <message>
-        <source>%1 - [%2]</source>
-        <translation>%1 - [%2]</translation>
-    </message>
-    <message>
-        <source>&amp;Restore</source>
-        <translation>Wieder&amp;herstellen</translation>
-    </message>
-    <message>
-        <source>Restore</source>
-        <translation>Wiederherstellen</translation>
-    </message>
-    <message>
-        <source>Maximize</source>
-        <translation>Maximieren</translation>
-    </message>
-    <message>
-        <source>Unshade</source>
-        <translation>Herabrollen</translation>
-    </message>
-    <message>
-        <source>Mi&amp;nimize</source>
-        <translation>M&amp;inimieren</translation>
-    </message>
-    <message>
-        <source>Ma&amp;ximize</source>
-        <translation>Ma&amp;ximieren</translation>
-    </message>
-    <message>
-        <source>Restore Down</source>
-        <translation>Wiederherstellen</translation>
-    </message>
-</context>
-<context>
-    <name>QStandardPaths</name>
-    <message>
-        <source>Home</source>
-        <translation>Benutzerverzeichnis</translation>
-    </message>
-    <message>
-        <source>Cache</source>
-        <translation>Zwischenspeicher</translation>
-    </message>
-    <message>
-        <source>Fonts</source>
-        <translation>Schriftarten</translation>
-    </message>
-    <message>
-        <source>Music</source>
-        <translation>Musik</translation>
-    </message>
-    <message>
-        <source>Shared Cache</source>
-        <translation>Gemeinsamer Zwischenspeicher</translation>
-    </message>
-    <message>
-        <source>Shared Configuration</source>
-        <translation>Gemeinsame Konfiguration</translation>
-    </message>
-    <message>
-        <source>Movies</source>
-        <translation>Filme</translation>
-    </message>
-    <message>
-        <source>Application Configuration</source>
-        <translation>Anwendungskonfiguration</translation>
-    </message>
-    <message>
-        <source>Download</source>
-        <translation>Download</translation>
-    </message>
-    <message>
-        <source>Configuration</source>
-        <translation>Konfiguration</translation>
-    </message>
-    <message>
-        <source>Application Data</source>
-        <translation>Anwendungsdaten</translation>
-    </message>
-    <message>
-        <source>Runtime</source>
-        <translation>Laufzeit</translation>
-    </message>
-    <message>
-        <source>Documents</source>
-        <translation>Dokumente</translation>
-    </message>
-    <message>
-        <source>Desktop</source>
-        <translation>Desktop</translation>
-    </message>
-    <message>
-        <source>Temporary Directory</source>
-        <translation>Temporäres Verzeichnis</translation>
-    </message>
-    <message>
-        <source>Shared Data</source>
-        <translation>Gemeinsame Daten</translation>
-    </message>
-    <message>
-        <source>Applications</source>
-        <translation>Anwendungen</translation>
-    </message>
-    <message>
-        <source>Pictures</source>
-        <translation>Bilder</translation>
-    </message>
-</context>
-<context>
-    <name>QDirModel</name>
-    <message>
-        <source>Kind</source>
-        <translation>Art</translation>
-    </message>
-    <message>
-        <source>Name</source>
-        <translation>Name</translation>
-    </message>
-    <message>
-        <source>Size</source>
-        <translation>Größe</translation>
-    </message>
-    <message>
-        <source>Type</source>
-        <translation>Typ</translation>
-    </message>
-    <message>
-        <source>Date Modified</source>
-        <translation>Änderungsdatum</translation>
-    </message>
-</context>
-<context>
-    <name>QFileSystemModel</name>
-    <message>
-        <source>Kind</source>
-        <translation>Art</translation>
-    </message>
-    <message>
-        <source>Name</source>
-        <translation>Name</translation>
-    </message>
-    <message>
-        <source>Size</source>
-        <translation>Größe</translation>
-    </message>
-    <message>
-        <source>Type</source>
-        <translation>Typ</translation>
-    </message>
-    <message>
-        <source>%1 GB</source>
-        <translation>%1 GB</translation>
-    </message>
-    <message>
-        <source>%1 KB</source>
-        <translation>%1 KB</translation>
-    </message>
-    <message>
-        <source>%1 MB</source>
-        <translation>%1 MB</translation>
-    </message>
-    <message>
-        <source>%1 TB</source>
-        <translation>%1 TB</translation>
-    </message>
-    <message>
-        <source>&lt;b&gt;The name &quot;%1&quot; can not be used.&lt;/b&gt;&lt;p&gt;Try using another name, with fewer characters or no punctuations marks.</source>
-        <translation>&lt;b&gt;Der Name &quot;%1&quot; kann nicht verwendet werden.&lt;/b&gt;&lt;p&gt;Versuchen Sie, die Satzzeichen zu entfernen oder einen kürzeren Namen zu verwenden.</translation>
-    </message>
-    <message>
-        <source>%1 bytes</source>
-        <translation>%1 Byte</translation>
-    </message>
-    <message>
-        <source>My Computer</source>
-        <translation>Mein Computer</translation>
-    </message>
-    <message>
-        <source>Computer</source>
-        <translation>Computer</translation>
-    </message>
-    <message>
-        <source>Invalid filename</source>
-        <translation>Ungültiger Dateiname</translation>
-    </message>
-    <message>
-        <source>%1 byte(s)</source>
-        <translation>%1 byte</translation>
-    </message>
-    <message>
-        <source>Date Modified</source>
-        <translation>Änderungsdatum</translation>
-    </message>
-</context>
-<context>
-    <name>QUndoGroup</name>
-    <message>
-        <source>Redo</source>
-        <translation>Wiederherstellen</translation>
-    </message>
-    <message>
-        <source>Undo</source>
-        <translation>Rückgängig</translation>
-    </message>
-    <message>
-        <source>Redo %1</source>
-        <translation>%1 wiederherstellen</translation>
-    </message>
-    <message>
-        <source>Undo %1</source>
-        <translation>%1 rückgängig machen</translation>
-    </message>
-</context>
-<context>
-    <name>QUndoStack</name>
-    <message>
-        <source>Redo</source>
-        <translation>Wiederherstellen</translation>
-    </message>
-    <message>
-        <source>Undo</source>
-        <translation>Rückgängig</translation>
-    </message>
-    <message>
-        <source>Redo %1</source>
-        <translation>%1 wiederherstellen</translation>
-    </message>
-    <message>
-        <source>Undo %1</source>
-        <translation>%1 rückgängig machen</translation>
-    </message>
-</context>
-<context>
-    <name>QComboBox</name>
-    <message>
-        <source>True</source>
-        <translation>Wahr</translation>
-    </message>
-    <message>
-        <source>False</source>
-        <translation>Falsch</translation>
-    </message>
-    <message>
-        <source>Open the combo box selection popup</source>
-        <translation>Öffnet das Auswahlfenster der Combobox</translation>
-    </message>
-</context>
-<context>
-    <name>QSslSocket</name>
-    <message>
-        <source>Error creating SSL session: %1</source>
-        <translation>Es konnte keine SSL-Sitzung erzeugt werden: %1</translation>
-    </message>
-    <message>
-        <source>Error creating SSL session, %1</source>
-        <translation>Es konnte keine SSL-Sitzung erzeugt werden, %1</translation>
-    </message>
-    <message>
-        <source>Error when setting the elliptic curves (%1)</source>
-        <translation>Fehler beim Setzen der elliptischen Kurven (%1)</translation>
-    </message>
-    <message>
-        <source>The certificate&apos;s notAfter field contains an invalid time</source>
-        <translation>Das Feld &apos;notAfter&apos; des Zertifikats enthält eine ungültige Zeit</translation>
-    </message>
-    <message>
-        <source>No error</source>
-        <translation>Kein Fehler</translation>
-    </message>
-    <message>
-        <source>Cannot provide a certificate with no key, %1</source>
-        <translation>Ohne Schlüssel kann kein Zertifikat zur Verfügung gestellt werden, %1</translation>
-    </message>
-    <message>
-        <source>Unable to write data: %1</source>
-        <translation>Die Daten konnten nicht geschrieben werden: %1</translation>
-    </message>
-    <message>
-        <source>The basicConstraints path length parameter has been exceeded</source>
-        <translation>Die Länge des basicConstraints-Pfades wurde überschritten</translation>
-    </message>
-    <message>
-        <source>The certificate has expired</source>
-        <translation>Die Gültigkeit des Zertifikats ist abgelaufen</translation>
-    </message>
-    <message>
-        <source>The TLS/SSL connection has been closed</source>
-        <translation>Die TLS/SSL-Verbindung wurde geschlossen</translation>
-    </message>
-    <message>
-        <source>Error during SSL handshake: %1</source>
-        <translation>Im Ablauf des SSL-Protokolls ist ein Fehler aufgetreten: %1</translation>
-    </message>
-    <message>
-        <source>Error loading local certificate, %1</source>
-        <translation>Das lokale Zertifikat konnte nicht geladen werden, %1</translation>
-    </message>
-    <message>
-        <source>The certificate is self-signed, and untrusted</source>
-        <translation>Das Zertifikat ist selbstsigniert und daher nicht vertrauenswürdig</translation>
-    </message>
-    <message>
-        <source>Unable to init SSL Context: %1</source>
-        <translation>Der SSL-Kontext konnte nicht initialisiert werden: %1</translation>
-    </message>
-    <message>
-        <source>The peer did not present any certificate</source>
-        <translation>Die Gegenstelle hat kein Zertifikat angegeben</translation>
-    </message>
-    <message>
-        <source>unsupported protocol</source>
-        <translation>Nicht unterstütztes Protokoll</translation>
-    </message>
-    <message>
-        <source>The root CA certificate is marked to reject the specified purpose</source>
-        <translation>Das oberste Zertifikat der Zertifizierungsstelle weist diesen Fall auf Grund einer speziellen Kennzeichnung zurück</translation>
-    </message>
-    <message>
-        <source>Invalid or empty cipher list (%1)</source>
-        <translation>Ungültige oder leere Schlüsselliste (%1)</translation>
-    </message>
-    <message>
-        <source>No certificates could be verified</source>
-        <translation>Keines der Zertifikate konnte verifiziert werden</translation>
-    </message>
-    <message>
-        <source>The current candidate issuer certificate was rejected because its issuer name and serial number was present and did not match the authority key identifier of the current certificate</source>
-        <translation>Das Zertifikat des betrachteten Ausstellers wurde zurückgewiesen da Ausstellername und Seriennummer vorhanden sind und nicht dem Bezeichner der Zertifizierungsstelle des aktuellen Zertifikats entsprechen</translation>
-    </message>
-    <message>
-        <source>The root CA certificate is not trusted for this purpose</source>
-        <translation>Das oberste Zertifikat der Zertifizierungsstelle ist für diesen Fall nicht vertrauenswürdig</translation>
-    </message>
-    <message>
-        <source>The host name did not match any of the valid hosts for this certificate</source>
-        <translation>Der Name des Hosts ist keiner aus der Liste der für dieses Zertifikat gültigen Hosts</translation>
-    </message>
-    <message>
-        <source>The root certificate of the certificate chain is self-signed, and untrusted</source>
-        <translation>Das oberste Zertifikat der Kette ist selbstsigniert und daher nicht vertrauenswürdig</translation>
-    </message>
-    <message>
-        <source>The peer certificate is blacklisted</source>
-        <translation>Das Zertifikat der Gegenstelle ist in einer Schwarzen Liste enthalten</translation>
-    </message>
-    <message>
-        <source>The certificate signature could not be decrypted</source>
-        <translation>Die Signatur des Zertifikats konnte nicht entschlüsselt werden</translation>
-    </message>
-    <message>
-        <source>The supplied certificate is unsuitable for this purpose</source>
-        <translation>Das angegebene Zertifikat kann in diesem Fall nicht verwendet werden</translation>
-    </message>
-    <message>
-        <source>Private key does not certify public key, %1</source>
-        <translation>Der private Schlüssel passt nicht zum öffentlichen Schlüssel, %1</translation>
-    </message>
-    <message>
-        <source>Error creating SSL context (%1)</source>
-        <translation>Es konnte keine SSL-Kontextstruktur erzeugt werden (%1)</translation>
-    </message>
-    <message>
-        <source>OpenSSL version too old, need at least v1.0.2</source>
-        <translation>Die verwendete Version von OpenSSL ist zu alt, es muss v1.0.2 oder neuer sein</translation>
-    </message>
-    <message>
-        <source>The issuer certificate could not be found</source>
-        <translation>Das Zertifikat des Ausstellers konnte nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>Unknown error</source>
-        <translation>Unbekannter Fehler</translation>
-    </message>
-    <message>
-        <source>The current candidate issuer certificate was rejected because its subject name did not match the issuer name of the current certificate</source>
-        <translation>Das Zertifikat des betrachteten Ausstellers wurde zurückgewiesen da sein Subjektname nicht dem Namen des Austellers des aktuellen Zertifikats entspricht</translation>
-    </message>
-    <message>
-        <source>Error while reading: %1</source>
-        <translation>Beim Lesen ist ein Fehler aufgetreten: %1</translation>
-    </message>
-    <message>
-        <source>The certificate&apos;s notBefore field contains an invalid time</source>
-        <translation>Das Feld &apos;notBefore&apos; des Zertifikats enthält eine ungültige Zeit</translation>
-    </message>
-    <message>
-        <source>Error loading private key, %1</source>
-        <translation>Der private Schlüssel konnte nicht geladen werden, %1</translation>
-    </message>
-    <message>
-        <source>Diffie-Hellman parameters are not valid</source>
-        <translation>Die Diffie-Hellman-Parameter sind ungültig</translation>
-    </message>
-    <message>
-        <source>The certificate is not yet valid</source>
-        <translation>Das Zertifikat ist noch nicht gültig</translation>
-    </message>
-    <message>
-        <source>The public key in the certificate could not be read</source>
-        <translation>Der öffentliche Schlüssel konnte nicht gelesen werden</translation>
-    </message>
-    <message>
-        <source>One of the CA certificates is invalid</source>
-        <translation>Eines der Zertifikate der Zertifizierungsstelle ist ungültig</translation>
-    </message>
-    <message>
-        <source>The signature of the certificate is invalid</source>
-        <translation>Die Signatur des Zertifikats ist ungültig</translation>
-    </message>
-    <message>
-        <source>The issuer certificate of a locally looked up certificate could not be found</source>
-        <translation>Das Zertifikat des Ausstellers eines lokal gefundenen Zertifikats konnte nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>Unable to decrypt data: %1</source>
-        <translation>Die Daten konnten nicht entschlüsselt werden: %1</translation>
-    </message>
-</context>
-<context>
-    <name>QLocalSocket</name>
-    <message>
-        <source>%1: Connection error</source>
-        <translation>%1: Verbindungsfehler</translation>
-    </message>
-    <message>
-        <source>%1: Access denied</source>
-        <translation>%1: Zugriff verweigert</translation>
-    </message>
-    <message>
-        <source>%1: Operation not permitted when socket is in this state</source>
-        <translation>%1: Diese Operation ist in diesem Socket-Status nicht zulässig</translation>
-    </message>
-    <message>
-        <source>%1: Connection refused</source>
-        <translation>%1: Der Verbindungsaufbau wurde verweigert</translation>
-    </message>
-    <message>
-        <source>%1: Unknown error %2</source>
-        <translation>%1: Unbekannter Fehler %2</translation>
-    </message>
-    <message>
-        <source>%1: Socket access error</source>
-        <translation>%1: Fehler beim Zugriff auf den Socket</translation>
-    </message>
-    <message>
-        <source>%1: Socket resource error</source>
-        <translation>%1: Socket-Fehler (Ressourcenproblem)</translation>
-    </message>
-    <message>
-        <source>Trying to connect while connection is in progress</source>
-        <translation>Versuch der Verbindungsaufnahme während bereits eine andere Verbindungsaufnahme läuft</translation>
-    </message>
-    <message>
-        <source>%1: The socket operation is not supported</source>
-        <translation>%1: Diese Socket-Operation wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>%1: Invalid name</source>
-        <translation>%1: Ungültiger Name</translation>
-    </message>
-    <message>
-        <source>%1: Unknown error</source>
-        <translation>%1: Unbekannter Fehler</translation>
-    </message>
-    <message>
-        <source>%1: Socket operation timed out</source>
-        <translation>%1: Zeitüberschreitung bei Socket-Operation</translation>
-    </message>
-    <message>
-        <source>%1: Datagram too large</source>
-        <translation>%1: Das Datagramm ist zu groß</translation>
-    </message>
-    <message>
-        <source>%1: Remote closed</source>
-        <translation>%1: Die Verbindung wurde von der Gegenseite geschlossen</translation>
-    </message>
-</context>
-<context>
-    <name>QRegularExpression</name>
-    <message>
-        <source>digit expected after (?+</source>
-        <translation>Ziffer erwartet nach (?+</translation>
-    </message>
-    <message>
-        <source>unmatched parentheses</source>
-        <translation>überzählige Klammern</translation>
-    </message>
-    <message>
-        <source>inconsistent NEWLINE options</source>
-        <translation>Inkonsistente NEWLINE-Optionen</translation>
-    </message>
-    <message>
-        <source>(?R or (?[+-]digits must be followed by )</source>
-        <translation>(?R oder (?[+-]Ziffern erfordert schließende Klammer</translation>
-    </message>
-    <message>
-        <source>syntax error in subpattern name (missing terminator)</source>
-        <translation>Syntaxfehler in Name des Untermusters (fehlendes Trennzeichen)</translation>
-    </message>
-    <message>
-        <source>missing terminating ] for character class</source>
-        <translation>Die schließende eckige Klammer fehlt bei Zeichenklasse</translation>
-    </message>
-    <message>
-        <source>setting UTF is disabled by the application</source>
-        <translation>UTF-Einstellung durch Anwendung deaktiviert</translation>
-    </message>
-    <message>
-        <source>\k is not followed by a braced, angle-bracketed, or quoted name</source>
-        <translation>auf \k folgt kein in Anführungszeichen, geschweifte oder eckige Klammern eingeschlossener Name</translation>
-    </message>
-    <message>
-        <source>internal error: unexpected repeat</source>
-        <translation>interner Fehler: Wiederholung nicht erwartet</translation>
-    </message>
-    <message>
-        <source>this version of PCRE is not compiled with PCRE_UCP support</source>
-        <translation>diese Version von PCRE ist nicht mit PCRE_UCP-Unterstützung erstellt</translation>
-    </message>
-    <message>
-        <source>no error</source>
-        <translation>kein Fehler</translation>
-    </message>
-    <message>
-        <source>POSIX named classes are supported only within a class</source>
-        <translation>nach POSIX benannte Klassen sind nur innerhalb einer Klasse unterstützt</translation>
-    </message>
-    <message>
-        <source>invalid UTF-16 string</source>
-        <translation>Ungültige UTF-16-Zeichenkette</translation>
-    </message>
-    <message>
-        <source>invalid UTF-32 string</source>
-        <translation>Ungültige UTF-32-Zeichenkette</translation>
-    </message>
-    <message>
-        <source>parentheses are too deeply nested (stack check)</source>
-        <translation>Klammern zu tief geschachtelt (Stack-Prüfung)</translation>
-    </message>
-    <message>
-        <source>\g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number</source>
-        <translation>auf \g folgt weder in Anführungszeichen, geschweifte oder eckige Klammern eingeschlossene Zahl oder Name noch eine einfache Zahl</translation>
-    </message>
-    <message>
-        <source>invalid escape sequence in character class</source>
-        <translation>Ungültige Escape-Sequenz in Zeichenklasse</translation>
-    </message>
-    <message>
-        <source>missing opening brace after \o</source>
-        <translation>öffnende Klammer fehlt nach \o</translation>
-    </message>
-    <message>
-        <source>range out of order in character class</source>
-        <translation>Ungültiger Bereich in Zeichenklasse</translation>
-    </message>
-    <message>
-        <source>(*MARK) must have an argument</source>
-        <translation>(*MARK) erfordert ein Argument</translation>
-    </message>
-    <message>
-        <source>this version of PCRE is not compiled with PCRE_UTF8 support</source>
-        <translation>diese Version von PCRE ist nicht mit PCRE_UTF8 Unterstützung erstellt</translation>
-    </message>
-    <message>
-        <source>too many forward references</source>
-        <translation>zuviele Vorwärtsreferenzen</translation>
-    </message>
-    <message>
-        <source>a numbered reference must not be zero</source>
-        <translation>eine nummerierte Referenz darf nicht Null sein</translation>
-    </message>
-    <message>
-        <source>reference to non-existent subpattern</source>
-        <translation>Referenz auf nicht existentes Untermuster</translation>
-    </message>
-    <message>
-        <source>PCRE does not support \L, \l, \N{name}, \U, or \u</source>
-        <translation>PCRE unterstützt \L, \l, \N{name}, \U, oder \u nicht</translation>
-    </message>
-    <message>
-        <source>number after (?C is &gt; 255</source>
-        <translation>Zahl nach(?C ist &gt; 255</translation>
-    </message>
-    <message>
-        <source>two named subpatterns have the same name</source>
-        <translation>Es gibt zwei Untermuster desselben Namens</translation>
-    </message>
-    <message>
-        <source>internal error: overran compiling workspace</source>
-        <translation>interner Fehler: Ãœberlauf im Kompilierbereich</translation>
-    </message>
-    <message>
-        <source>] is an invalid data character in JavaScript compatibility mode</source>
-        <translation>] ist kein gültiges Zeichen im JavaScript-Kompatibilitätsmodus</translation>
-    </message>
-    <message>
-        <source>unrecognized character follows \</source>
-        <translation>Nicht erkanntes Zeichen nach \</translation>
-    </message>
-    <message>
-        <source>octal value is greater than \377 (not in UTF-8 mode)</source>
-        <translation>Okaler Wert ist größer als \377 (nicht im UTF8-Modus)</translation>
-    </message>
-    <message>
-        <source>unknown option bit(s) set</source>
-        <translation>Unbekannte Options-Bits gesetzt</translation>
-    </message>
-    <message>
-        <source>\N is not supported in a class</source>
-        <translation>\N ist innerhalb einer Klasse nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>non-hex character in \x{} (closing brace missing?)</source>
-        <translation>\x{} enthält ein Zeichen, das keine Hexadezimalziffer ist (fehlt eventuell eine schließende Klammer?)</translation>
-    </message>
-    <message>
-        <source>support for \P, \p, and \X has not been compiled</source>
-        <translation>Unterstützung für \P, \p, und \X wurde nicht eingebunden</translation>
-    </message>
-    <message>
-        <source>character value in \x{...} sequence is too large</source>
-        <translation>Zeichenwert in \x{...} ist zu groß</translation>
-    </message>
-    <message>
-        <source>invalid condition (?(0)</source>
-        <translation>Ungültige Bedingung (?(0)</translation>
-    </message>
-    <message>
-        <source>regular expression is too large</source>
-        <translation>regulärer Ausdruck zu groß</translation>
-    </message>
-    <message>
-        <source>failed to get memory</source>
-        <translation>es konnte kein Speicher erhalten werden</translation>
-    </message>
-    <message>
-        <source>unknown property name after \P or \p</source>
-        <translation>unbekannter Eigenschaftsname nach \P oder \p</translation>
-    </message>
-    <message>
-        <source>internal error: code overflow</source>
-        <translation>interner Fehler: Code-Ãœberlauf</translation>
-    </message>
-    <message>
-        <source>\C not allowed in lookbehind assertion</source>
-        <translation>\C ist in lookbehind assertion nicht zulässig</translation>
-    </message>
-    <message>
-        <source>group name must start with a non-digit</source>
-        <translation>Gruppenname darf nicht mit einer Ziffer beginnen</translation>
-    </message>
-    <message>
-        <source>recursive call could loop indefinitely</source>
-        <translation>Rekursiver Aufruf könnte zu Endlosschleife führen</translation>
-    </message>
-    <message>
-        <source>number is too big</source>
-        <translation>zu große Zahl</translation>
-    </message>
-    <message>
-        <source>\c at end of pattern</source>
-        <translation>\c am Ende des Musters</translation>
-    </message>
-    <message>
-        <source>nothing to repeat</source>
-        <translation>nichts zu wiederholen</translation>
-    </message>
-    <message>
-        <source>invalid UTF-8 string</source>
-        <translation>Ungültige UTF8-Zeichenkette</translation>
-    </message>
-    <message>
-        <source>subpattern name expected</source>
-        <translation>Name des Untermusters erwartet</translation>
-    </message>
-    <message>
-        <source>character value in \u.... sequence is too large</source>
-        <translation>Zeichenwert in \u....-Sequenz ist zu groß</translation>
-    </message>
-    <message>
-        <source>invalid range in character class</source>
-        <translation>Ungültiger Bereich in Zeichenklasse</translation>
-    </message>
-    <message>
-        <source>internal error: previously-checked referenced subpattern not found</source>
-        <translation>interner Fehler: bereits überprüfte Referenz auf Untermuster nicht gefunden</translation>
-    </message>
-    <message>
-        <source>name is too long in (*MARK), (*PRUNE), (*SKIP), or (*THEN)</source>
-        <translation>Name zu lang in (*MARK), (*PRUNE), (*SKIP), oder (*THEN)</translation>
-    </message>
-    <message>
-        <source>an argument is not allowed for (*ACCEPT), (*FAIL), or (*COMMIT)</source>
-        <translation>Argumente für (*ACCEPT), (*FAIL), oder (*COMMIT) nicht zulässig</translation>
-    </message>
-    <message>
-        <source>(*VERB) not recognized</source>
-        <translation>(*VERB) nicht erkannt</translation>
-    </message>
-    <message>
-        <source>assertion expected after (?(</source>
-        <translation>assertion erwartet nach (?(</translation>
-    </message>
-    <message>
-        <source>missing )</source>
-        <translation>) fehlt</translation>
-    </message>
-    <message>
-        <source>malformed number or name after (?(</source>
-        <translation>Name oder Nummer nach (?( ungültig</translation>
-    </message>
-    <message>
-        <source>number too big in {} quantifier</source>
-        <translation>Zu große Zahl bei {}-Angabe</translation>
-    </message>
-    <message>
-        <source>unrecognized character after (?&lt;</source>
-        <translation>Zeichen nicht erkannt nach (?&lt;</translation>
-    </message>
-    <message>
-        <source>unrecognized character after (?P</source>
-        <translation>Zeichen nicht erkannt nach (?P</translation>
-    </message>
-    <message>
-        <source>parentheses are too deeply nested</source>
-        <translation>Klammern zu tief geschachtelt</translation>
-    </message>
-    <message>
-        <source>erroffset passed as NULL</source>
-        <translation>erroffset als NULL übergeben</translation>
-    </message>
-    <message>
-        <source>subpattern name is too long (maximum 32 characters)</source>
-        <translation>Name des Untermusters ist zu lang (höchstens 32 Zeichen)</translation>
-    </message>
-    <message>
-        <source>non-octal character in \o{} (closing brace missing?)</source>
-        <translation>\o{} enthält ein Zeichen, das keine Oktalziffer ist (fehlt eventuell eine schließende Klammer?)</translation>
-    </message>
-    <message>
-        <source>closing ) for (?C expected</source>
-        <translation>schließende Klammer für (?C erwartet</translation>
-    </message>
-    <message>
-        <source>disallowed Unicode code point (&gt;= 0xd800 &amp;&amp; &lt;= 0xdfff)</source>
-        <translation>nicht zulässiger Unicode-Code-Point (&gt;= 0xd800 &amp;&amp; &lt;= 0xdfff)</translation>
-    </message>
-    <message>
-        <source>malformed \P or \p sequence</source>
-        <translation>fehlerhafte \P- oder \p-Sequenz</translation>
-    </message>
-    <message>
-        <source>\ at end of pattern</source>
-        <translation>\ am Ende des Musters</translation>
-    </message>
-    <message>
-        <source>POSIX collating elements are not supported</source>
-        <translation>POSIX-Sortierfolgen werden nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>repeating a DEFINE group is not allowed</source>
-        <translation>Wiederholung einer DEFINE-Gruppe ist nicht zulässig</translation>
-    </message>
-    <message>
-        <source>unrecognized character after (? or (?-</source>
-        <translation>Zeichen nicht erkannt nach (? oder (?-</translation>
-    </message>
-    <message>
-        <source>numbers out of order in {} quantifier</source>
-        <translation>Falsche Reihenfolge der Zahlen bei {}-Angabe</translation>
-    </message>
-    <message>
-        <source>DEFINE group contains more than one branch</source>
-        <translation>DEFINE-Gruppe enthält mehr als eine Verzweigung</translation>
-    </message>
-    <message>
-        <source>\c must be followed by an ASCII character</source>
-        <translation>auf \c muss ein ASCII-Zeichen folgen</translation>
-    </message>
-    <message>
-        <source>unknown POSIX class name</source>
-        <translation>unbekannter POSIX-Klassenname</translation>
-    </message>
-    <message>
-        <source>conditional group contains more than two branches</source>
-        <translation>Bedingte Gruppe enthält mehr als zwei Verzweigungen</translation>
-    </message>
-    <message>
-        <source>lookbehind assertion is not fixed length</source>
-        <translation>lookbehind assertion hat keine feste Länge</translation>
-    </message>
-    <message>
-        <source>missing ) after comment</source>
-        <translation>) fehlt nach Kommentar</translation>
-    </message>
-    <message>
-        <source>too many named subpatterns (maximum 10000)</source>
-        <translation>Zuviele benannte Untermuster (höchstens 10000)</translation>
-    </message>
-    <message>
-        <source>digits missing in \x{} or \o{}</source>
-        <translation>Fehlende Ziffern in \x{} oder \o{}</translation>
-    </message>
-    <message>
-        <source>internal error: unknown opcode in find_fixedlength()</source>
-        <translation>interner Fehler: Unbekannter Operationscode in find_fixedlength()</translation>
-    </message>
-    <message>
-        <source>different names for subpatterns of the same number are not allowed</source>
-        <translation>Verschiedene Namen für Untermuster mit derselben Nummer sind nicht zulässig</translation>
-    </message>
-</context>
-<context>
-    <name>QOCIResult</name>
-    <message>
-        <source>Unable to get statement type</source>
-        <translation>Der Anweisungstyp kann nicht bestimmt werden</translation>
-    </message>
-    <message>
-        <source>Unable to alloc statement</source>
-        <translation>Die Allokation des Befehls ist fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>Unable to goto next</source>
-        <translation>Kann nicht zum nächsten Element gehen</translation>
-    </message>
-    <message>
-        <source>Unable to execute statement</source>
-        <translation>Der Befehl konnte nicht ausgeführt werden</translation>
-    </message>
-    <message>
-        <source>Unable to bind column for batch execute</source>
-        <translation>Die Spalte konnte nicht für den Stapelverarbeitungs-Befehl gebunden werden</translation>
-    </message>
-    <message>
-        <source>Unable to prepare statement</source>
-        <translation>Der Befehl konnte nicht initialisiert werden</translation>
-    </message>
-    <message>
-        <source>Unable to execute batch statement</source>
-        <translation>Der Stapelverarbeitungs-Befehl konnte nicht ausgeführt werden</translation>
-    </message>
-    <message>
-        <source>Unable to bind value</source>
-        <translation>Der Wert konnte nicht gebunden werden</translation>
-    </message>
-</context>
-<context>
-    <name>QFontDialog</name>
-    <message>
-        <source>&amp;Font</source>
-        <translation>&amp;Schriftart</translation>
-    </message>
-    <message>
-        <source>&amp;Size</source>
-        <translation>&amp;Größe</translation>
-    </message>
-    <message>
-        <source>Sample</source>
-        <translation>Beispiel</translation>
-    </message>
-    <message>
-        <source>Font st&amp;yle</source>
-        <translation>Schrifts&amp;til</translation>
-    </message>
-    <message>
-        <source>Wr&amp;iting System</source>
-        <translation>&amp;Schriftsystem</translation>
-    </message>
-    <message>
-        <source>Select Font</source>
-        <translation>Schriftart auswählen</translation>
-    </message>
-    <message>
-        <source>&amp;Underline</source>
-        <translation>&amp;Unterstrichen</translation>
-    </message>
-    <message>
-        <source>Effects</source>
-        <translation>Effekte</translation>
-    </message>
-    <message>
-        <source>Stri&amp;keout</source>
-        <translation>Durch&amp;gestrichen</translation>
-    </message>
-</context>
-<context>
-    <name>QColorDialog</name>
-    <message>
-        <source>&amp;Red:</source>
-        <translation>&amp;Rot:</translation>
-    </message>
-    <message>
-        <source>&amp;Sat:</source>
-        <translation>&amp;Sättigung:</translation>
-    </message>
-    <message>
-        <source>&amp;Val:</source>
-        <translation>&amp;Helligkeit:</translation>
-    </message>
-    <message>
-        <source>Hu&amp;e:</source>
-        <translation>Farb&amp;ton:</translation>
-    </message>
-    <message>
-        <source>&amp;HTML:</source>
-        <translation>&amp;HTML:</translation>
-    </message>
-    <message>
-        <source>Select Color</source>
-        <translation>Farbauswahl</translation>
-    </message>
-    <message>
-        <source>&amp;Add to Custom Colors</source>
-        <translation>Zu benutzerdefinierten Farben &amp;hinzufügen</translation>
-    </message>
-    <message>
-        <source>Bl&amp;ue:</source>
-        <translation>Bla&amp;u:</translation>
-    </message>
-    <message>
-        <source>&amp;Pick Screen Color</source>
-        <translation>&amp;Farbe vom Bildschirm wählen</translation>
-    </message>
-    <message>
-        <source>Cursor at %1, %2
-Press ESC to cancel</source>
-        <translation>Cursor bei %1, %2
-Drücken Sie ESC, um abzubrechen</translation>
-    </message>
-    <message>
-        <source>&amp;Green:</source>
-        <translation>&amp;Grün:</translation>
-    </message>
-    <message>
-        <source>&amp;Basic colors</source>
-        <translation>Grundfar&amp;ben</translation>
-    </message>
-    <message>
-        <source>&amp;Custom colors</source>
-        <translation>&amp;Benutzerdefinierte Farben</translation>
-    </message>
-    <message>
-        <source>A&amp;lpha channel:</source>
-        <translation>A&amp;lphakanal:</translation>
-    </message>
-</context>
-<context>
-    <name>QSharedMemory</name>
-    <message>
-        <source>%1: system-imposed size restrictions</source>
-        <translation>%1: Ein systembedingtes Limit der Größe wurde erreicht</translation>
-    </message>
-    <message>
-        <source>%1: key is empty</source>
-        <translation>%1: Ungültige Schlüsselangabe (leer)</translation>
-    </message>
-    <message>
-        <source>%1: key error</source>
-        <translation>%1: Fehlerhafter Schlüssel</translation>
-    </message>
-    <message>
-        <source>%1: bad name</source>
-        <translation>%1: Ungültiger Name</translation>
-    </message>
-    <message>
-        <source>%1: create size is less then 0</source>
-        <translation>%1: Die Größenangabe für die Erzeugung ist kleiner als Null</translation>
-    </message>
-    <message>
-        <source>%1: already exists</source>
-        <translation>%1: existiert bereits</translation>
-    </message>
-    <message>
-        <source>%1: unknown error %2</source>
-        <translation>%1: Unbekannter Fehler %2</translation>
-    </message>
-    <message>
-        <source>%1: invalid size</source>
-        <translation>%1: Ungültige Größe</translation>
-    </message>
-    <message>
-        <source>%1: unable to make key</source>
-        <translation>%1: Es kann kein Schlüssel erzeugt werden</translation>
-    </message>
-    <message>
-        <source>%1: unable to set key on lock</source>
-        <translation>%1: Es kann kein Schlüssel für die Sperrung gesetzt werden</translation>
-    </message>
-    <message>
-        <source>%1: unable to unlock</source>
-        <translation>%1: Die Sperrung konnte nicht aufgehoben werden</translation>
-    </message>
-    <message>
-        <source>%1: permission denied</source>
-        <translation>%1: Zugriff verweigert</translation>
-    </message>
-    <message>
-        <source>%1: ftok failed</source>
-        <translation>%1: ftok-Aufruf ist fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>%1: out of resources</source>
-        <translation>%1: Keine Ressourcen mehr verfügbar</translation>
-    </message>
-    <message>
-        <source>%1: not attached</source>
-        <translation>%1: nicht verbunden</translation>
-    </message>
-    <message>
-        <source>%1: UNIX key file doesn&apos;t exist</source>
-        <translation>%1: Die Unix-Schlüsseldatei existiert nicht</translation>
-    </message>
-    <message>
-        <source>%1: doesn&apos;t exist</source>
-        <translation>%1: existiert nicht</translation>
-    </message>
-    <message>
-        <source>%1: size query failed</source>
-        <translation>%1: Die Abfrage der Größe ist fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>%1: unable to lock</source>
-        <translation>%1: Sperrung fehlgeschlagen</translation>
-    </message>
-</context>
-<context>
-    <name>QXmlStream</name>
-    <message>
-        <source>Reference to unparsed entity &apos;%1&apos;.</source>
-        <translation>Es wurde die ungeparste Entity &apos;%1&apos; referenziert.</translation>
-    </message>
-    <message>
-        <source>Unexpected character &apos;%1&apos; in public id literal.</source>
-        <translation>&apos;%1&apos; ist kein gültiges Zeichen in einer public-id-Angabe.</translation>
-    </message>
-    <message>
-        <source>Illegal namespace declaration.</source>
-        <translation>Ungültige Namensraum-Deklaration.</translation>
-    </message>
-    <message>
-        <source>Invalid XML character.</source>
-        <translation>Ungültiges XML-Zeichen.</translation>
-    </message>
-    <message>
-        <source>Expected character data.</source>
-        <translation>Es wurden Zeichendaten erwartet.</translation>
-    </message>
-    <message>
-        <source>Standalone accepts only yes or no.</source>
-        <translation>Der Wert für das &apos;Standalone&apos;-Attribut kann nur &apos;yes&apos; oder &apos;no&apos; sein.</translation>
-    </message>
-    <message>
-        <source>Invalid XML version string.</source>
-        <translation>Ungültige XML-Versionsangabe.</translation>
-    </message>
-    <message>
-        <source>Invalid processing instruction name.</source>
-        <translation>Der Name der Prozessing-Instruktion ist ungültig.</translation>
-    </message>
-    <message>
-        <source>Namespace prefix &apos;%1&apos; not declared</source>
-        <translation>Der Namensraum-Präfix &apos;%1&apos; wurde nicht deklariert</translation>
-    </message>
-    <message>
-        <source>Entity &apos;%1&apos; not declared.</source>
-        <translation>Die Entity &apos;%1&apos; ist nicht deklariert.</translation>
-    </message>
-    <message>
-        <source>%1 is an invalid processing instruction name.</source>
-        <translation>%1 ist kein gültiger Name für eine Prozessing-Instruktion.</translation>
-    </message>
-    <message>
-        <source>The standalone pseudo attribute must appear after the encoding.</source>
-        <translation>Das Standalone-Pseudoattribut muss der Kodierung unmittelbar folgen.</translation>
-    </message>
-    <message>
-        <source>Sequence &apos;]]&gt;&apos; not allowed in content.</source>
-        <translation>Im Inhalt ist die Zeichenfolge &apos;]]&gt;&apos; nicht erlaubt.</translation>
-    </message>
-    <message>
-        <source>%1 is an invalid encoding name.</source>
-        <translation>%1 ist kein gültiger Name für die Kodierung.</translation>
-    </message>
-    <message>
-        <source>, but got &apos;</source>
-        <translation>erwartet, stattdessen erhalten &apos;</translation>
-    </message>
-    <message>
-        <source>Start tag expected.</source>
-        <translation>Öffnendes Element erwartet.</translation>
-    </message>
-    <message>
-        <source>Invalid character reference.</source>
-        <translation>Ungültige Zeichenreferenz.</translation>
-    </message>
-    <message>
-        <source>Reference to external entity &apos;%1&apos; in attribute value.</source>
-        <translation>Im Attributwert wurde die externe Entity &apos;%1&apos; referenziert.</translation>
-    </message>
-    <message>
-        <source>Expected </source>
-        <translation>Es wurde </translation>
-    </message>
-    <message>
-        <source>Invalid document.</source>
-        <translation>Ungültiges Dokument.</translation>
-    </message>
-    <message>
-        <source>Opening and ending tag mismatch.</source>
-        <translation>Die Anzahl der öffnenden Elemente stimmt nicht mit der Anzahl der schließenden Elemente überein.</translation>
-    </message>
-    <message>
-        <source>Encountered incorrectly encoded content.</source>
-        <translation>Es wurde Inhalt mit einer ungültigen Kodierung gefunden.</translation>
-    </message>
-    <message>
-        <source>Invalid attribute in XML declaration.</source>
-        <translation>Die XML-Deklaration enthält ein ungültiges Attribut.</translation>
-    </message>
-    <message>
-        <source>%1 is an invalid PUBLIC identifier.</source>
-        <translation>%1 ist keine gültige Angabe für eine PUBLIC-Id.</translation>
-    </message>
-    <message>
-        <source>Extra content at end of document.</source>
-        <translation>Überzähliger Inhalt nach Ende des Dokuments.</translation>
-    </message>
-    <message>
-        <source>Attribute &apos;%1&apos; redefined.</source>
-        <translation>Attribut &apos;%1&apos; mehrfach definiert.</translation>
-    </message>
-    <message>
-        <source>Invalid XML name.</source>
-        <translation>Ungültiger XML-Name.</translation>
-    </message>
-    <message>
-        <source>Premature end of document.</source>
-        <translation>Vorzeitiges Ende des Dokuments.</translation>
-    </message>
-    <message>
-        <source>XML declaration not at start of document.</source>
-        <translation>Die XML-Deklaration befindet sich nicht am Anfang des Dokuments.</translation>
-    </message>
-    <message>
-        <source>Recursive entity detected.</source>
-        <translation>Es wurde eine rekursive Entity festgestellt.</translation>
-    </message>
-    <message>
-        <source>Unsupported XML version.</source>
-        <translation>Diese XML-Version wird nicht unterstützt.</translation>
-    </message>
-    <message>
-        <source>Unexpected &apos;</source>
-        <translation>Ungültig an dieser Stelle &apos; </translation>
-    </message>
-    <message>
-        <source>Invalid entity value.</source>
-        <translation>Ungültiger Entity-Wert.</translation>
-    </message>
-    <message>
-        <source>Encoding %1 is unsupported</source>
-        <translation>Die Kodierung %1 wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>NDATA in parameter entity declaration.</source>
-        <translation>Eine Parameter-Entity-Deklaration darf kein NDATA enthalten.</translation>
-    </message>
-</context>
-<context>
-    <name>QProcess</name>
-    <message>
-        <source>Error writing to process</source>
-        <translation>Das Schreiben zum Prozess ist fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>Resource error (fork failure): %1</source>
-        <translation>Ressourcenproblem (&quot;fork failure&quot;): %1</translation>
-    </message>
-    <message>
-        <source>Error reading from process</source>
-        <translation>Das Lesen vom Prozess ist fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>Process failed to start</source>
-        <translation>Das Starten des Prozesses ist fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>Process failed to start: %1</source>
-        <translation>Das Starten des Prozesses ist fehlgeschlagen: %1</translation>
-    </message>
-    <message>
-        <source>Could not open input redirection for reading</source>
-        <translation>Die Eingabeumleitung konnte nicht zum Lesen geöffnet werden</translation>
-    </message>
-    <message>
-        <source>No program defined</source>
-        <translation>Es wurde kein Programm angegeben</translation>
-    </message>
-    <message>
-        <source>Could not open output redirection for writing</source>
-        <translation>Die Ausgabeumleitung konnte nicht zum Lesen geöffnet werden</translation>
-    </message>
-    <message>
-        <source>Process operation timed out</source>
-        <translation>Zeitüberschreitung</translation>
-    </message>
-    <message>
-        <source>Process crashed</source>
-        <translation>Der Prozess ist abgestürzt</translation>
-    </message>
-</context>
-<context>
-    <name>QNativeSocketEngine</name>
-    <message>
-        <source>The proxy type is invalid for this operation</source>
-        <translation>Die Operation kann mit dem Proxy-Typ nicht durchgeführt werden</translation>
-    </message>
-    <message>
-        <source>Network operation timed out</source>
-        <translation>Das Zeitlimit für die Operation wurde überschritten</translation>
-    </message>
-    <message>
-        <source>The remote host closed the connection</source>
-        <translation>Der entfernte Rechner hat die Verbindung geschlossen</translation>
-    </message>
-    <message>
-        <source>Invalid socket descriptor</source>
-        <translation>Ungültiger Socket-Deskriptor</translation>
-    </message>
-    <message>
-        <source>Host unreachable</source>
-        <translation>Der Host kann nicht erreicht werden</translation>
-    </message>
-    <message>
-        <source>Protocol type not supported</source>
-        <translation>Das Protokoll wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Datagram was too large to send</source>
-        <translation>Das Datagram konnte nicht gesendet werden, weil es zu groß ist</translation>
-    </message>
-    <message>
-        <source>Network dropped connection on reset</source>
-        <translation>Beim Rücksetzen wurde die Verbindung getrennt</translation>
-    </message>
-    <message>
-        <source>Attempt to use IPv6 socket on a platform with no IPv6 support</source>
-        <translation>Es wurde versucht, einen IPv6-Socket auf einem System ohne IPv6-Unterstützung zu verwenden</translation>
-    </message>
-    <message>
-        <source>Unable to receive a message</source>
-        <translation>Die Nachricht konnte nicht empfangen werden</translation>
-    </message>
-    <message>
-        <source>Permission denied</source>
-        <translation>Zugriff verweigert</translation>
-    </message>
-    <message>
-        <source>Connection refused</source>
-        <translation>Verbindung verweigert</translation>
-    </message>
-    <message>
-        <source>Unable to write</source>
-        <translation>Der Schreibvorgang konnte nicht ausgeführt werden</translation>
-    </message>
-    <message>
-        <source>Another socket is already listening on the same port</source>
-        <translation>Auf diesem Port hört bereits ein anderer Socket</translation>
-    </message>
-    <message>
-        <source>Unable to send a message</source>
-        <translation>Die Nachricht konnte nicht gesendet werden</translation>
-    </message>
-    <message>
-        <source>The bound address is already in use</source>
-        <translation>Die angegebene Adresse ist bereits in Gebrauch</translation>
-    </message>
-    <message>
-        <source>Connection timed out</source>
-        <translation>Das Zeitlimit für die Verbindung wurde überschritten</translation>
-    </message>
-    <message>
-        <source>Network error</source>
-        <translation>Netzwerkfehler</translation>
-    </message>
-    <message>
-        <source>Unsupported socket operation</source>
-        <translation>Socket-Operation nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Operation on non-socket</source>
-        <translation>Operation kann nur auf einen Socket angewandt werden</translation>
-    </message>
-    <message>
-        <source>Unable to initialize broadcast socket</source>
-        <translation>Der Broadcast-Socket konnte nicht initialisiert werden</translation>
-    </message>
-    <message>
-        <source>Unknown error</source>
-        <translation>Unbekannter Fehler</translation>
-    </message>
-    <message>
-        <source>Unable to initialize non-blocking socket</source>
-        <translation>Der nichtblockierende Socket konnte nicht initialisiert werden</translation>
-    </message>
-    <message>
-        <source>The address is protected</source>
-        <translation>Die Adresse ist geschützt</translation>
-    </message>
-    <message>
-        <source>Network unreachable</source>
-        <translation>Das Netzwerk ist nicht erreichbar</translation>
-    </message>
-    <message>
-        <source>The address is not available</source>
-        <translation>Die Adresse ist nicht verfügbar</translation>
-    </message>
-    <message>
-        <source>Temporary error</source>
-        <translation>Vorübergehender Fehler</translation>
-    </message>
-    <message>
-        <source>Out of resources</source>
-        <translation>Keine Ressourcen verfügbar</translation>
-    </message>
-    <message>
-        <source>Connection reset by peer</source>
-        <translation>Verbindung durch Gegenseite zurückgesetzt</translation>
-    </message>
-</context>
-<context>
-    <name>QNetworkAccessFtpBackend</name>
-    <message>
-        <source>No suitable proxy found</source>
-        <translation>Es konnte kein geeigneter Proxy-Server gefunden werden</translation>
-    </message>
-    <message>
-        <source>Error while downloading %1: %2</source>
-        <translation>Beim Herunterladen von %1 trat ein Fehler auf: %2</translation>
-    </message>
-    <message>
-        <source>Error while uploading %1: %2</source>
-        <translation>Beim Hochladen von %1 trat ein Fehler auf: %2</translation>
-    </message>
-    <message>
-        <source>Cannot open %1: is a directory</source>
-        <translation>%1 kann nicht geöffnet werden: Es handelt sich um ein Verzeichnis</translation>
-    </message>
-    <message>
-        <source>Logging in to %1 failed: authentication required</source>
-        <translation>Die Anmeldung bei %1 ist fehlgeschlagen: Es ist eine Authentifizierung erforderlich</translation>
-    </message>
-</context>
-<context>
-    <name>QNetworkReplyHttpImpl</name>
-    <message>
-        <source>No suitable proxy found</source>
-        <translation>Es konnte kein geeigneter Proxy-Server gefunden werden</translation>
-    </message>
-    <message>
-        <source>Operation canceled</source>
-        <translation>Operation abgebrochen</translation>
-    </message>
-</context>
-<context>
-    <name>QDockWidget</name>
-    <message>
-        <source>Close</source>
-        <translation>Schließen</translation>
-    </message>
-    <message>
-        <source>Float</source>
-        <translation>Lösen</translation>
-    </message>
-    <message>
-        <source>Undocks and re-attaches the dock widget</source>
-        <translation>Löst das Dock-Widget und verankert es wieder</translation>
-    </message>
-    <message>
-        <source>Closes the dock widget</source>
-        <translation>Schließt das Dock-Widget</translation>
-    </message>
-</context>
-<context>
-    <name>QAccessibleActionInterface</name>
-    <message>
-        <source>Press</source>
-        <translation>Drücken</translation>
-    </message>
-    <message>
-        <source>Shows the menu</source>
-        <translation>Zeigt das Menü an</translation>
-    </message>
-    <message>
-        <source>Scrolls to the left</source>
-        <translation>Scrollt nach links</translation>
-    </message>
-    <message>
-        <source>Scroll Down</source>
-        <translation>Nach unten scrollen</translation>
-    </message>
-    <message>
-        <source>Scroll Left</source>
-        <translation>Nach links scrollen</translation>
-    </message>
-    <message>
-        <source>Goes back a page</source>
-        <translation>Geht zur vorigen Seite</translation>
-    </message>
-    <message>
-        <source>Triggers the action</source>
-        <translation>Aktion auslösen</translation>
-    </message>
-    <message>
-        <source>Increase</source>
-        <translation>Erhöhen</translation>
-    </message>
-    <message>
-        <source>Toggle</source>
-        <translation>Umschalten</translation>
-    </message>
-    <message>
-        <source>Toggles the state</source>
-        <translation>Schaltet den Zustand um</translation>
-    </message>
-    <message>
-        <source>Scrolls up</source>
-        <translation>Scrollt nach oben</translation>
-    </message>
-    <message>
-        <source>Scrolls down</source>
-        <translation>Scrollt nach unten</translation>
-    </message>
-    <message>
-        <source>Scroll Up</source>
-        <translation>Nach oben scrollen</translation>
-    </message>
-    <message>
-        <source>Goes to the next page</source>
-        <translation>Geht zur nächsten Seite</translation>
-    </message>
-    <message>
-        <source>Scrolls to the right</source>
-        <translation>Scrollt nach rechts</translation>
-    </message>
-    <message>
-        <source>Increase the value</source>
-        <translation>Wert erhöhen</translation>
-    </message>
-    <message>
-        <source>Decrease the value</source>
-        <translation>Wert absenken</translation>
-    </message>
-    <message>
-        <source>Decrease</source>
-        <translation>Senken</translation>
-    </message>
-    <message>
-        <source>Scroll Right</source>
-        <translation>Nach rechts scrollen</translation>
-    </message>
-    <message>
-        <source>Previous Page</source>
-        <translation>Vorige Seite</translation>
-    </message>
-    <message>
-        <source>Sets the focus</source>
-        <translation>Setzt den Fokus</translation>
-    </message>
-    <message>
-        <source>SetFocus</source>
-        <translation>Fokus setzen</translation>
-    </message>
-    <message>
-        <source>Next Page</source>
-        <translation>Nächste Seite</translation>
-    </message>
-    <message>
-        <source>ShowMenu</source>
-        <translation>Menü anzeigen</translation>
-    </message>
-</context>
-<context>
-    <name>QSocks5SocketEngine</name>
-    <message>
-        <source>Network operation timed out</source>
-        <translation>Das Zeitlimit für die Operation wurde überschritten</translation>
-    </message>
-    <message>
-        <source>Connection to proxy closed prematurely</source>
-        <translation>Der Proxy-Server hat die Verbindung vorzeitig beendet</translation>
-    </message>
-    <message>
-        <source>Proxy authentication failed: %1</source>
-        <translation>Die Authentifizierung beim Proxy-Server ist fehlgeschlagen: %1</translation>
-    </message>
-    <message>
-        <source>Proxy authentication failed</source>
-        <translation>Die Authentifizierung beim Proxy-Server ist fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>General SOCKSv5 server failure</source>
-        <translation>Allgemeiner Fehler bei der Kommunikation mit dem SOCKSv5-Server</translation>
-    </message>
-    <message>
-        <source>Unknown SOCKSv5 proxy error code 0x%1</source>
-        <translation>Unbekannten Fehlercode vom SOCKSv5-Proxy-Server erhalten: 0x%1</translation>
-    </message>
-    <message>
-        <source>Connection not allowed by SOCKSv5 server</source>
-        <translation>Der SOCKSv5-Server hat die Verbindung verweigert</translation>
-    </message>
-    <message>
-        <source>SOCKSv5 command not supported</source>
-        <translation>Dieses SOCKSv5-Kommando wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Connection to proxy timed out</source>
-        <translation>Bei der Verbindung mit dem Proxy-Server wurde ein Zeitlimit überschritten</translation>
-    </message>
-    <message>
-        <source>Proxy host not found</source>
-        <translation>Der Proxy-Server konnte nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>TTL expired</source>
-        <translation>Die Lebensdauer (TTL) ist verstrichen</translation>
-    </message>
-    <message>
-        <source>Address type not supported</source>
-        <translation>Dieser Adresstyp wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Connection to proxy refused</source>
-        <translation>Der Proxy-Server hat den Aufbau einer Verbindung verweigert</translation>
-    </message>
-    <message>
-        <source>SOCKS version 5 protocol error</source>
-        <translation>Protokoll-Fehler (SOCKS Version 5)</translation>
-    </message>
-</context>
-<context>
-    <name>QDnsLookupRunnable</name>
-    <message>
-        <source>No hostname given</source>
-        <translation>Es wurde kein Hostname angegeben</translation>
-    </message>
-    <message>
-        <source>Server failure</source>
-        <translation>Serverausfall</translation>
-    </message>
-    <message>
-        <source>Invalid text record</source>
-        <translation>Ungültigen Datensatz für Text erhalten</translation>
-    </message>
-    <message>
-        <source>Invalid mail exchange record</source>
-        <translation>Ungültigen Datensatz für E-Mail-Austausch erhalten</translation>
-    </message>
-    <message>
-        <source>Invalid canonical name record</source>
-        <translation>Ungültigen Datensatz für kanonischen Namen erhalten</translation>
-    </message>
-    <message>
-        <source>Invalid service record</source>
-        <translation>Ungültigen Datensatz für Dienst erhalten</translation>
-    </message>
-    <message>
-        <source>Non existent domain</source>
-        <translation>Domain existiert nicht</translation>
-    </message>
-    <message>
-        <source>Server could not process query</source>
-        <translation>Der Server konnte die Anfrage nicht verarbeiten</translation>
-    </message>
-    <message>
-        <source>Host %1 could not be found.</source>
-        <translation>Host %1 konnte nicht gefunden werden.</translation>
-    </message>
-    <message>
-        <source>IPv6 addresses for nameservers are currently not supported</source>
-        <translation>IPv6-Adressen für DNS-Server werden gegenwärtig nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Not yet supported on Android</source>
-        <translation>Nicht unterstützt auf Android</translation>
-    </message>
-    <message>
-        <source>Resolver functions not found</source>
-        <translation>Die Resolver-Funktionen konnten nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>Invalid domain name</source>
-        <translation>Ungültiger Domain-Name</translation>
-    </message>
-    <message>
-        <source>Invalid pointer record</source>
-        <translation>Ungültigen Datensatz für Verweis erhalten</translation>
-    </message>
-    <message>
-        <source>Invalid name server record</source>
-        <translation>Ungültigen Datensatz des Name-Servers erhalten</translation>
-    </message>
-    <message>
-        <source>Resolver library can&apos;t be loaded: No runtime library loading support</source>
-        <translation>Die Resolver-Bibliothek konnte nicht geladen werden. Das Laden zur Laufzeit wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Unknown error</source>
-        <translation>Unbekannter Fehler</translation>
-    </message>
-    <message>
-        <source>Server refused to answer</source>
-        <translation>Der Server verweigerte die Antwort</translation>
-    </message>
-    <message>
-        <source>Invalid hostname</source>
-        <translation>Ungültiger Hostname</translation>
-    </message>
-    <message>
-        <source>Could not expand domain name</source>
-        <translation>Der Domain-Name konnte nicht expandiert werden</translation>
-    </message>
-    <message>
-        <source>Resolver initialization failed</source>
-        <translation>Die Initialisierung des Resolvers schlug fehl</translation>
-    </message>
-    <message>
-        <source>Invalid reply received</source>
-        <translation>Ungültige Antwort erhalten</translation>
-    </message>
-    <message>
-        <source>Invalid IPv6 address record</source>
-        <translation>Ungültiger IPv6-Adressdatensatz</translation>
-    </message>
-    <message>
-        <source>Invalid IPv4 address record</source>
-        <translation>Ungültiger IPv4-Adressdatensatz</translation>
-    </message>
-</context>
-<context>
-    <name>QSctpSocket</name>
-    <message>
-        <source>The remote host closed the connection</source>
-        <translation>Der entfernte Rechner hat die Verbindung geschlossen</translation>
-    </message>
-</context>
-<context>
-    <name>QRegExp</name>
-    <message>
-        <source>invalid category</source>
-        <translation>ungültige Kategorie</translation>
-    </message>
-    <message>
-        <source>bad lookahead syntax</source>
-        <translation>falsche Syntax für Lookahead</translation>
-    </message>
-    <message>
-        <source>no error occurred</source>
-        <translation>kein Fehler</translation>
-    </message>
-    <message>
-        <source>missing left delim</source>
-        <translation>fehlende linke Begrenzung</translation>
-    </message>
-    <message>
-        <source>bad char class syntax</source>
-        <translation>falsche Syntax für Zeichenklasse</translation>
-    </message>
-    <message>
-        <source>disabled feature used</source>
-        <translation>deaktivierte Eigenschaft wurde benutzt</translation>
-    </message>
-    <message>
-        <source>invalid octal value</source>
-        <translation>ungültiger Oktal-Wert</translation>
-    </message>
-    <message>
-        <source>bad repetition syntax</source>
-        <translation>falsche Syntax für Wiederholungen</translation>
-    </message>
-    <message>
-        <source>met internal limit</source>
-        <translation>internes Limit erreicht</translation>
-    </message>
-    <message>
-        <source>invalid interval</source>
-        <translation>ungültiges Intervall</translation>
-    </message>
-    <message>
-        <source>unexpected end</source>
-        <translation>unerwartetes Ende</translation>
-    </message>
-    <message>
-        <source>lookbehinds not supported, see QTBUG-2371</source>
-        <translation>lookbehinds nicht unterstützt, siehe QTBUG-2371</translation>
-    </message>
-</context>
-<context>
-    <name>QDialog</name>
-    <message>
-        <source>What&apos;s This?</source>
-        <translation>Direkthilfe</translation>
-    </message>
-</context>
-<context>
-    <name>QWhatsThisAction</name>
-    <message>
-        <source>What&apos;s This?</source>
-        <translation>Direkthilfe</translation>
-    </message>
-</context>
-<context>
-    <name>QFtp</name>
-    <message>
-        <source>Listing directory failed:
-%1</source>
-        <translation>Der Inhalt des Verzeichnisses konnte nicht angezeigt werden:
-%1</translation>
-    </message>
-    <message>
-        <source>Creating directory failed:
-%1</source>
-        <translation>Das Erstellen des Verzeichnisses schlug fehl:
-%1</translation>
-    </message>
-    <message>
-        <source>Not connected</source>
-        <translation>Keine Verbindung</translation>
-    </message>
-    <message>
-        <source>Login failed:
-%1</source>
-        <translation>Anmeldung ist fehlgeschlagen:
-%1</translation>
-    </message>
-    <message>
-        <source>Downloading file failed:
-%1</source>
-        <translation>Das Herunterladen der Datei schlug fehl:
-%1</translation>
-    </message>
-    <message>
-        <source>Connection timed out to host %1</source>
-        <translation>Das Zeitlimit für die Verbindung zu &apos;%1&apos; wurde überschritten</translation>
-    </message>
-    <message>
-        <source>Connected to host %1</source>
-        <translation>Verbunden mit Rechner %1</translation>
-    </message>
-    <message>
-        <source>Connecting to host failed:
-%1</source>
-        <translation>Verbindung mit Rechner ist fehlgeschlagen:
-%1</translation>
-    </message>
-    <message>
-        <source>Host %1 not found</source>
-        <translation>Host %1 konnte nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>Uploading file failed:
-%1</source>
-        <translation>Das Hochladen der Datei schlug fehl:
-%1</translation>
-    </message>
-    <message>
-        <source>Changing directory failed:
-%1</source>
-        <translation>Das Ändern des Verzeichnisses schlug fehl:
-%1</translation>
-    </message>
-    <message>
-        <source>Data Connection refused</source>
-        <translation>Datenverbindung verweigert</translation>
-    </message>
-    <message>
-        <source>Removing directory failed:
-%1</source>
-        <translation>Das Löschen des Verzeichnisses schlug fehl:
-%1</translation>
-    </message>
-    <message>
-        <source>Connection refused to host %1</source>
-        <translation>Verbindung mit %1 verweigert</translation>
-    </message>
-    <message>
-        <source>Removing file failed:
-%1</source>
-        <translation>Das Löschen der Datei schlug fehl:
-%1</translation>
-    </message>
-    <message>
-        <source>Unknown error</source>
-        <translation>Unbekannter Fehler</translation>
-    </message>
-    <message>
-        <source>Connection closed</source>
-        <translation>Verbindung beendet</translation>
-    </message>
-</context>
-<context>
-    <name>QDB2Driver</name>
-    <message>
-        <source>Unable to commit transaction</source>
-        <translation>Die Transaktion kann nicht durchgeführt werden (Operation &apos;commit&apos; fehlgeschlagen)</translation>
-    </message>
-    <message>
-        <source>Unable to set autocommit</source>
-        <translation>&apos;autocommit&apos; kann nicht aktiviert werden</translation>
-    </message>
-    <message>
-        <source>Unable to connect</source>
-        <translation>Es kann keine Verbindung aufgebaut werden</translation>
-    </message>
-    <message>
-        <source>Unable to rollback transaction</source>
-        <translation>Die Transaktion kann nicht rückgängig gemacht werden (Operation &apos;rollback&apos; fehlgeschlagen)</translation>
-    </message>
-</context>
-<context>
-    <name>QIBaseDriver</name>
-    <message>
-        <source>Unable to commit transaction</source>
-        <translation>Die Transaktion konnte nicht durchgeführt werden (Operation &apos;commit&apos; fehlgeschlagen)</translation>
-    </message>
-    <message>
-        <source>Could not start transaction</source>
-        <translation>Es konnte keine Transaktion gestartet werden</translation>
-    </message>
-    <message>
-        <source>Error opening database</source>
-        <translation>Die Datenbankverbindung konnte nicht geöffnet werden</translation>
-    </message>
-    <message>
-        <source>Unable to rollback transaction</source>
-        <translation>Die Transaktion konnte nicht rückgängig gemacht werden (Operation &apos;rollback&apos; fehlgeschlagen)</translation>
-    </message>
-</context>
-<context>
-    <name>QIBaseResult</name>
-    <message>
-        <source>Unable to commit transaction</source>
-        <translation>Die Transaktion konnte nicht durchgeführt werden (Operation &apos;commit&apos; fehlgeschlagen)</translation>
-    </message>
-    <message>
-        <source>Unable to open BLOB</source>
-        <translation>Der BLOB konnte nicht geöffnet werden</translation>
-    </message>
-    <message>
-        <source>Could not describe statement</source>
-        <translation>Es konnte keine Beschreibung des Befehls erhalten werden</translation>
-    </message>
-    <message>
-        <source>Could not describe input statement</source>
-        <translation>Es konnte keine Beschreibung des Eingabebefehls erhalten werden</translation>
-    </message>
-    <message>
-        <source>Could not allocate statement</source>
-        <translation>Die Allokation des Befehls ist fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>Unable to write BLOB</source>
-        <translation>Der BLOB konnte nicht geschrieben werden</translation>
-    </message>
-    <message>
-        <source>Could not start transaction</source>
-        <translation>Es konnte keine Transaktion gestartet werden</translation>
-    </message>
-    <message>
-        <source>Unable to close statement</source>
-        <translation>Der Befehl konnte nicht geschlossen werden</translation>
-    </message>
-    <message>
-        <source>Could not get query info</source>
-        <translation>Die erforderlichen Informationen zur Abfrage sind nicht verfügbar</translation>
-    </message>
-    <message>
-        <source>Could not find array</source>
-        <translation>Das Feld konnte nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>Could not get array data</source>
-        <translation>Die Daten des Feldes konnten nicht gelesen werden</translation>
-    </message>
-    <message>
-        <source>Unable to execute query</source>
-        <translation>Der Befehl konnte nicht ausgeführt werden</translation>
-    </message>
-    <message>
-        <source>Could not prepare statement</source>
-        <translation>Der Befehl konnte nicht initialisiert werden</translation>
-    </message>
-    <message>
-        <source>Could not fetch next item</source>
-        <translation>Das nächste Element konnte nicht abgeholt werden</translation>
-    </message>
-    <message>
-        <source>Could not get statement info</source>
-        <translation>Es ist keine Information zum Befehl verfügbar</translation>
-    </message>
-    <message>
-        <source>Unable to create BLOB</source>
-        <translation>Es konnte kein BLOB erzeugt werden</translation>
-    </message>
-    <message>
-        <source>Unable to read BLOB</source>
-        <translation>Der BLOB konnte nicht gelesen werden</translation>
-    </message>
-</context>
-<context>
-    <name>QMYSQLDriver</name>
-    <message>
-        <source>Unable to commit transaction</source>
-        <translation>Die Transaktion kann nicht durchgeführt werden (Operation &apos;commit&apos; fehlgeschlagen)</translation>
-    </message>
-    <message>
-        <source>Unable to open database &apos;%1&apos;</source>
-        <translation>Die Datenbank &apos;%1&apos; kann nicht geöffnet werden</translation>
-    </message>
-    <message>
-        <source>Unable to allocate a MYSQL object</source>
-        <translation>Es konnte kein  MYSQL-Objekt erstellt werden</translation>
-    </message>
-    <message>
-        <source>Unable to connect</source>
-        <translation>Es kann keine Verbindung aufgebaut werden</translation>
-    </message>
-    <message>
-        <source>Unable to rollback transaction</source>
-        <translation>Die Transaktion kann nicht rückgängig gemacht werden (Operation &apos;rollback&apos; fehlgeschlagen)</translation>
-    </message>
-    <message>
-        <source>Unable to begin transaction</source>
-        <translation>Es kann keine Transaktion gestartet werden</translation>
-    </message>
-</context>
-<context>
-    <name>QOCIDriver</name>
-    <message>
-        <source>Unable to commit transaction</source>
-        <translation>Die Transaktion konnte nicht durchgeführt werden (Operation &apos;commit&apos; fehlgeschlagen)</translation>
-    </message>
-    <message>
-        <source>Unable to initialize</source>
-        <translation>Initialisierung fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>Unable to logon</source>
-        <translation>Logon-Vorgang fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>Unable to rollback transaction</source>
-        <translation>Die Transaktion konnte nicht rückgängig gemacht werden (Operation &apos;rollback&apos; fehlgeschlagen)</translation>
-    </message>
-    <message>
-        <source>Unable to begin transaction</source>
-        <translation>Es konnte keine Transaktion gestartet werden</translation>
-    </message>
-</context>
-<context>
-    <name>QODBCDriver</name>
-    <message>
-        <source>Unable to commit transaction</source>
-        <translation>Die Transaktion konnte nicht durchgeführt werden (Operation &apos;commit&apos; fehlgeschlagen)</translation>
-    </message>
-    <message>
-        <source>Unable to enable autocommit</source>
-        <translation>&apos;autocommit&apos; konnte nicht aktiviert werden</translation>
-    </message>
-    <message>
-        <source>Unable to disable autocommit</source>
-        <translation>&apos;autocommit&apos; konnte nicht deaktiviert werden</translation>
-    </message>
-    <message>
-        <source>Unable to connect - Driver doesn&apos;t support all functionality required</source>
-        <translation>Es kann keine Verbindung aufgebaut werden weil der Treiber die benötigte Funktionalität nicht vollständig unterstützt</translation>
-    </message>
-    <message>
-        <source>Unable to connect</source>
-        <translation>Es kann keine Verbindung aufgebaut werden</translation>
-    </message>
-    <message>
-        <source>Unable to rollback transaction</source>
-        <translation>Die Transaktion konnte nicht rückgängig gemacht werden (Operation &apos;rollback&apos; fehlgeschlagen)</translation>
-    </message>
-</context>
-<context>
-    <name>QSQLite2Driver</name>
-    <message>
-        <source>Unable to commit transaction</source>
-        <translation>Die Transaktion konnte nicht durchgeführt werden (Operation &apos;commit&apos; fehlgeschlagen)</translation>
-    </message>
-    <message>
-        <source>Error opening database</source>
-        <translation>Die Datenbankverbindung konnte nicht geöffnet werden</translation>
-    </message>
-    <message>
-        <source>Unable to rollback transaction</source>
-        <translation>Die Transaktion kann nicht rückgängig gemacht werden</translation>
-    </message>
-    <message>
-        <source>Unable to begin transaction</source>
-        <translation>Es konnte keine Transaktion gestartet werden</translation>
-    </message>
-</context>
-<context>
-    <name>QSQLiteDriver</name>
-    <message>
-        <source>Unable to commit transaction</source>
-        <translation>Die Transaktion konnte nicht durchgeführt werden (Operation &apos;commit&apos; fehlgeschlagen)</translation>
-    </message>
-    <message>
-        <source>Error closing database</source>
-        <translation>Die Datenbankverbindung konnte nicht geschlossen werden</translation>
-    </message>
-    <message>
-        <source>Error opening database</source>
-        <translation>Die Datenbankverbindung konnte nicht geöffnet werden</translation>
-    </message>
-    <message>
-        <source>Unable to rollback transaction</source>
-        <translation>Die Transaktion konnte nicht rückgängig gemacht werden (Operation &apos;rollback&apos; fehlgeschlagen)</translation>
-    </message>
-    <message>
-        <source>Unable to begin transaction</source>
-        <translation>Es konnte keine Transaktion gestartet werden</translation>
-    </message>
-</context>
-<context>
-    <name>QAbstractSocket</name>
-    <message>
-        <source>Host not found</source>
-        <translation>Rechner konnte nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>Connection refused</source>
-        <translation>Verbindung verweigert</translation>
-    </message>
-    <message>
-        <source>Connection timed out</source>
-        <translation>Das Zeitlimit für die Verbindung wurde überschritten</translation>
-    </message>
-    <message>
-        <source>Trying to connect while connection is in progress</source>
-        <translation>Versuch der Verbindungsaufnahme während bereits eine andere Verbindungsaufnahme läuft</translation>
-    </message>
-    <message>
-        <source>Socket is not connected</source>
-        <translation>Der Socket ist nicht verbunden</translation>
-    </message>
-    <message>
-        <source>Socket operation timed out</source>
-        <translation>Zeitüberschreitung bei Socket-Operation</translation>
-    </message>
-    <message>
-        <source>Network unreachable</source>
-        <translation>Das Netzwerk ist nicht erreichbar</translation>
-    </message>
-    <message>
-        <source>Operation on socket is not supported</source>
-        <translation>Diese Socket-Operation wird nicht unterstützt</translation>
-    </message>
-</context>
-<context>
-    <name>QHostInfoAgent</name>
-    <message>
-        <source>Host not found</source>
-        <translation>Host konnte nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>No host name given</source>
-        <translation>Es wurde kein Hostname angegeben</translation>
-    </message>
-    <message>
-        <source>Unknown address type</source>
-        <translation>Unbekannter Adresstyp</translation>
-    </message>
-    <message>
-        <source>Unknown error</source>
-        <translation>Unbekannter Fehler</translation>
-    </message>
-    <message>
-        <source>Invalid hostname</source>
-        <translation>Ungültiger Hostname</translation>
-    </message>
-    <message>
-        <source>Unknown error (%1)</source>
-        <translation>Unbekannter Fehler (%1)</translation>
-    </message>
-</context>
-<context>
-    <name>QTgaFile</name>
-    <message>
-        <source>Image type not supported</source>
-        <translation>Dieser Typ von Bilddaten wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Image header read failed</source>
-        <translation>Das Lesen der Kopfdaten des Bildes schlug fehl</translation>
-    </message>
-    <message>
-        <source>Seek file/device for image read failed</source>
-        <translation>Die Positionierung einer Datei/eines Eingabegeräts für das Lesen der Bilddaten schlug fehl</translation>
-    </message>
-    <message>
-        <source>Could not read image data</source>
-        <translation>Die Bilddaten konnten nicht gelesen werden</translation>
-    </message>
-    <message>
-        <source>Could not reset to read data</source>
-        <translation>Die Positionierung zum Lesen der Daten schlug fehl</translation>
-    </message>
-    <message>
-        <source>Image depth not valid</source>
-        <translation>Ungültige Tiefenangabe in Bilddaten</translation>
-    </message>
-    <message>
-        <source>Could not read footer</source>
-        <translation>Das Endelement konnte nicht gelesen werden</translation>
-    </message>
-    <message>
-        <source>Sequential device (eg socket) for image read not supported</source>
-        <translation>Das Lesen von Bilddaten von sequentiellen Geräten (zum Beispiel Sockets) wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Image type (non-TrueVision 2.0) not supported</source>
-        <translation>Dieser Typ von Bilddaten (nicht TrueVision 2.0) wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Could not seek to image read footer</source>
-        <translation>Die Positionierung auf dem Endelement der Bilddaten schlug fehl</translation>
-    </message>
-</context>
-<context>
-    <name>QLibrary</name>
-    <message>
-        <source>not a dynamic library</source>
-        <translation>Keine dynamische Bibliothek</translation>
-    </message>
-    <message>
-        <source>file too small</source>
-        <translation>Datei zu klein</translation>
-    </message>
-    <message>
-        <source>Cannot unload library %1: %2</source>
-        <translation>Die Bibliothek %1 kann nicht entladen werden: %2</translation>
-    </message>
-    <message>
-        <source>&apos;%1&apos; is not a valid Mach-O binary (%2)</source>
-        <translation>&apos;%1&apos; ist keine gültige ausführbare Datei des Typs Mach-O (%2)</translation>
-    </message>
-    <message>
-        <source>Cannot load library %1: %2</source>
-        <translation>Die Bibliothek %1 kann nicht geladen werden: %2</translation>
-    </message>
-    <message>
-        <source>&apos;%1&apos; is not a Qt plugin</source>
-        <translation>&apos;%1&apos; ist kein Qt-Plugin</translation>
-    </message>
-    <message>
-        <source>Failed to extract plugin meta data from &apos;%1&apos;</source>
-        <translation>Die Metadaten des Plugins &apos;%1&apos; konnten nicht bestimmt werden</translation>
-    </message>
-    <message>
-        <source>&apos;%1&apos; is not an ELF object (%2)</source>
-        <translation>&apos;%1&apos; ist keine ELF-Objektdatei (%2)</translation>
-    </message>
-    <message>
-        <source>The plugin &apos;%1&apos; uses incompatible Qt library. (%2.%3.%4) [%5]</source>
-        <translation>Das Plugin &apos;%1&apos; verwendet eine inkompatible Qt-Bibliothek. (%2.%3.%4) [%5]</translation>
-    </message>
-    <message>
-        <source>Cannot resolve symbol &quot;%1&quot; in %2: %3</source>
-        <translation>Das Symbol &quot;%1&quot; kann in %2 nicht aufgelöst werden: %3</translation>
-    </message>
-    <message>
-        <source>&apos;%1&apos; is an invalid ELF object (%2)</source>
-        <translation>&apos;%1&apos; ist keine gültige ELF-Objektdatei (%2)</translation>
-    </message>
-    <message>
-        <source>The plugin &apos;%1&apos; uses incompatible Qt library. (Cannot mix debug and release libraries.)</source>
-        <translation>Das Plugin &apos;%1&apos; verwendet eine inkompatible Qt-Bibliothek. (Im Debug-Modus erstellte und im Release-Modus erstellte Bibliotheken können nicht zusammen verwendet werden.)</translation>
-    </message>
-    <message>
-        <source>&apos;%1&apos; is not an ELF object</source>
-        <translation>&apos;%1&apos; ist keine ELF-Objektdatei</translation>
-    </message>
-    <message>
-        <source>The file &apos;%1&apos; is not a valid Qt plugin.</source>
-        <translation>Die Datei &apos;%1&apos; ist kein gültiges Qt-Plugin.</translation>
-    </message>
-    <message>
-        <source>The shared library was not found.</source>
-        <translation>Die dynamische Bibliothek konnte nicht gefunden werden.</translation>
-    </message>
-    <message>
-        <source>wrong architecture</source>
-        <translation>Falsche Architektur</translation>
-    </message>
-    <message>
-        <source>file is corrupt</source>
-        <translation>Datei beschädigt</translation>
-    </message>
-    <message>
-        <source>Unknown error</source>
-        <translation>Unbekannter Fehler</translation>
-    </message>
-    <message>
-        <source>no suitable architecture in fat binary</source>
-        <translation>Keine passende Architektur in ausführbarer Datei (fat binary)</translation>
-    </message>
-    <message>
-        <source>invalid magic %1</source>
-        <translation>Ungültiger Magic-Code: %1</translation>
-    </message>
-</context>
-<context>
-    <name>QSQLiteResult</name>
-    <message>
-        <source>Unable to execute multiple statements at a time</source>
-        <translation>Es können nicht mehrere Befehle gleichzeitig ausgeführt werden</translation>
-    </message>
-    <message>
-        <source>Unable to fetch row</source>
-        <translation>Der Datensatz konnte nicht abgeholt werden</translation>
-    </message>
-    <message>
-        <source>No query</source>
-        <translation>Kein Abfrage</translation>
-    </message>
-    <message>
-        <source>Unable to execute statement</source>
-        <translation>Der Befehl konnte nicht ausgeführt werden</translation>
-    </message>
-    <message>
-        <source>Unable to bind parameters</source>
-        <translation>Die Parameter konnten nicht gebunden werden</translation>
-    </message>
-    <message>
-        <source>Unable to reset statement</source>
-        <translation>Der Befehl konnte nicht zurückgesetzt werden</translation>
-    </message>
-    <message>
-        <source>Parameter count mismatch</source>
-        <translation>Die Anzahl der Parameter ist falsch</translation>
-    </message>
-</context>
-<context>
-    <name>QXml</name>
-    <message>
-        <source>unparsed entity reference in wrong context</source>
-        <translation>nicht-analysierte Entity-Referenz im falschen Kontext verwendet</translation>
-    </message>
-    <message>
-        <source>external parsed general entity reference not allowed in DTD</source>
-        <translation>in der DTD sind keine externen Entity-Referenzen erlaubt </translation>
-    </message>
-    <message>
-        <source>wrong value for standalone declaration</source>
-        <translation>falscher Wert für die Standalone-Deklaration</translation>
-    </message>
-    <message>
-        <source>encoding declaration or standalone declaration expected while reading the XML declaration</source>
-        <translation>fehlende Kodierung-Deklaration oder Standalone-Deklaration beim Parsen der XML-Deklaration</translation>
-    </message>
-    <message>
-        <source>no error occurred</source>
-        <translation>kein Fehler</translation>
-    </message>
-    <message>
-        <source>error occurred while parsing reference</source>
-        <translation>Fehler beim Parsen einer Referenz</translation>
-    </message>
-    <message>
-        <source>standalone declaration expected while reading the XML declaration</source>
-        <translation>fehlende Standalone-Deklaration beim Parsen der XML Deklaration</translation>
-    </message>
-    <message>
-        <source>invalid name for processing instruction</source>
-        <translation>kein gültiger Name für eine Processing-Instruktion</translation>
-    </message>
-    <message>
-        <source>error triggered by consumer</source>
-        <translation>Konsument löste Fehler aus</translation>
-    </message>
-    <message>
-        <source>error occurred while parsing element</source>
-        <translation>Fehler beim Parsen eines Elements</translation>
-    </message>
-    <message>
-        <source>unexpected character</source>
-        <translation>unerwartetes Zeichen</translation>
-    </message>
-    <message>
-        <source>tag mismatch</source>
-        <translation>Element-Tags sind nicht richtig geschachtelt</translation>
-    </message>
-    <message>
-        <source>error occurred while parsing content</source>
-        <translation>Fehler beim Parsen des Inhalts eines Elements</translation>
-    </message>
-    <message>
-        <source>error occurred while parsing comment</source>
-        <translation>Fehler beim Parsen eines Kommentars</translation>
-    </message>
-    <message>
-        <source>internal general entity reference not allowed in DTD</source>
-        <translation>in einer DTD ist keine interne allgemeine Entity-Referenz erlaubt</translation>
-    </message>
-    <message>
-        <source>recursive entities</source>
-        <translation>rekursive Entity</translation>
-    </message>
-    <message>
-        <source>more than one document type definition</source>
-        <translation>mehrere Dokumenttypdefinitionen</translation>
-    </message>
-    <message>
-        <source>version expected while reading the XML declaration</source>
-        <translation>fehlende Version beim Parsen der XML-Deklaration</translation>
-    </message>
-    <message>
-        <source>letter is expected</source>
-        <translation>ein Buchstabe ist an dieser Stelle erforderlich</translation>
-    </message>
-    <message>
-        <source>unexpected end of file</source>
-        <translation>unerwartetes Ende der Datei</translation>
-    </message>
-    <message>
-        <source>external parsed general entity reference not allowed in attribute value</source>
-        <translation>in einem Attribut-Wert sind keine externen Entity-Referenzen erlaubt</translation>
-    </message>
-    <message>
-        <source>error in the text declaration of an external entity</source>
-        <translation>Fehler in der Text-Deklaration einer externen Entity</translation>
-    </message>
-    <message>
-        <source>error occurred while parsing document type definition</source>
-        <translation>Fehler beim Parsen der Dokumenttypdefinition</translation>
-    </message>
-</context>
-<context>
-    <name>QSystemSemaphore</name>
-    <message>
-        <source>%1: does not exist</source>
-        <translation>%1: Nicht existent</translation>
-    </message>
-    <message>
-        <source>%1: already exists</source>
-        <translation>%1: Existiert bereits</translation>
-    </message>
-    <message>
-        <source>%1: unknown error %2</source>
-        <translation>%1: Unbekannter Fehler %2</translation>
-    </message>
-    <message>
-        <source>%1: permission denied</source>
-        <translation>%1: Zugriff verweigert</translation>
-    </message>
-    <message>
-        <source>%1: out of resources</source>
-        <translation>%1: Keine Ressourcen mehr verfügbar</translation>
-    </message>
-</context>
-<context>
-    <name>QCommandLineParser</name>
-    <message>
-        <source>Unknown options: %1.</source>
-        <translation>Unbekannte Optionen: %1.</translation>
-    </message>
-    <message>
-        <source>Unknown option &apos;%1&apos;.</source>
-        <translation>Unbekannte Option &apos;%1&apos;.</translation>
-    </message>
-    <message>
-        <source>[options]</source>
-        <translation>[Optionen]</translation>
-    </message>
-    <message>
-        <source>Options:</source>
-        <translation>Optionen:</translation>
-    </message>
-    <message>
-        <source>Usage: %1</source>
-        <translation>Aufruf: %1</translation>
-    </message>
-    <message>
-        <source>Unexpected value after &apos;%1&apos;.</source>
-        <translation>Wert unerwartet nach &apos;%1&apos;.</translation>
-    </message>
-    <message>
-        <source>Displays version information.</source>
-        <translation>Zeigt Versionsinformation an.</translation>
-    </message>
-    <message>
-        <source>Arguments:</source>
-        <translation>Argumente:</translation>
-    </message>
-    <message>
-        <source>Displays this help.</source>
-        <translation>Zeigt diese Hilfe an.</translation>
-    </message>
-    <message>
-        <source>Missing value after &apos;%1&apos;.</source>
-        <translation>Nach &apos;%1&apos; fehlt der Wert.</translation>
-    </message>
-</context>
-<context>
-    <name>QHttp</name>
-    <message>
-        <source>Data corrupted</source>
-        <translation>Die Daten sind verfälscht</translation>
-    </message>
-    <message>
-        <source>Insecure redirect</source>
-        <translation>Unsichere Weiterleitung</translation>
-    </message>
-    <message>
-        <source>Host %1 not found</source>
-        <translation>Host %1 konnte nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>Host requires authentication</source>
-        <translation>Der Host verlangt eine Authentifizierung</translation>
-    </message>
-    <message>
-        <source>Connection refused</source>
-        <translation>Verbindung verweigert</translation>
-    </message>
-    <message>
-        <source>Unknown protocol specified</source>
-        <translation>Unbekanntes Protokoll angegeben</translation>
-    </message>
-    <message>
-        <source>Proxy requires authentication</source>
-        <translation>Proxy-Authentifizierung erforderlich</translation>
-    </message>
-    <message>
-        <source>SSL handshake failed</source>
-        <translation>Im Ablauf des SSL-Protokolls ist ein Fehler aufgetreten.</translation>
-    </message>
-    <message>
-        <source>Too many redirects</source>
-        <translation>Zu viele Weiterleitungen</translation>
-    </message>
-    <message>
-        <source>Connection closed</source>
-        <translation>Verbindung beendet</translation>
-    </message>
-</context>
-<context>
-    <name>QSslDiffieHellmanParameter</name>
-    <message>
-        <source>No error</source>
-        <translation>Kein Fehler</translation>
-    </message>
-    <message>
-        <source>Invalid input data</source>
-        <translation>Ungültige Eingabedaten</translation>
-    </message>
-    <message>
-        <source>The given Diffie-Hellman parameters are deemed unsafe</source>
-        <translation>Die angegebenen Diffie-Hellman-Parameter wurden als unsicher eingeschätzt</translation>
-    </message>
-</context>
-<context>
-    <name>QMessageBox</name>
-    <message>
-        <source>Show Details...</source>
-        <translation>Details einblenden...</translation>
-    </message>
-    <message>
-        <source>&lt;p&gt;Qt is a C++ toolkit for cross-platform application development.&lt;/p&gt;&lt;p&gt;Qt provides single-source portability across all major desktop operating systems. It is also available for embedded Linux and other embedded and mobile operating systems.&lt;/p&gt;&lt;p&gt;Qt is available under three different licensing options designed to accommodate the needs of our various users.&lt;/p&gt;&lt;p&gt;Qt licensed under our commercial license agreement is appropriate for development of proprietary/commercial software where you do not want to share any source code with third parties or otherwise cannot comply with the terms of the GNU LGPL version 3.&lt;/p&gt;&lt;p&gt;Qt licensed under the GNU LGPL version 3 is appropriate for the development of Qt&amp;nbsp;applications provided you can comply with the terms and conditions of the GNU LGPL version 3.&lt;/p&gt;&lt;p&gt;Please see &lt;a href=&quot;http://%2/&quot;&gt;%2&lt;/a&gt; for an overview of Qt licensing.&lt;/p&gt;&lt;p&gt;Copyright (C) %1 The Qt Company Ltd and other contributors.&lt;/p&gt;&lt;p&gt;Qt and the Qt logo are trademarks of The Qt Company Ltd.&lt;/p&gt;&lt;p&gt;Qt is The Qt Company Ltd product developed as an open source project. See &lt;a href=&quot;http://%3/&quot;&gt;%3&lt;/a&gt; for more information.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Qt is a C++ toolkit for cross-platform application development.&lt;/p&gt;&lt;p&gt;Qt provides single-source portability across all major desktop operating systems. It is also available for embedded Linux and other embedded and mobile operating systems.&lt;/p&gt;&lt;p&gt;Qt is available under three different licensing options designed to accommodate the needs of our various users.&lt;/p&gt;&lt;p&gt;Qt licensed under our commercial license agreement is appropriate for development of proprietary/commercial software where you do not want to share any source code with third parties or otherwise cannot comply with the terms of the GNU LGPL version 3.&lt;/p&gt;&lt;p&gt;Qt licensed under the GNU LGPL version 3 is appropriate for the development of Qt&amp;nbsp;applications provided you can comply with the terms and conditions of the GNU LGPL version 3.&lt;/p&gt;&lt;p&gt;Please see &lt;a href=&quot;http://%2/&quot;&gt;%2&lt;/a&gt; for an overview of Qt licensing.&lt;/p&gt;&lt;p&gt;Copyright (C) %1 The Qt Company Ltd and other contributors.&lt;/p&gt;&lt;p&gt;Qt and the Qt logo are trademarks of The Qt Company Ltd.&lt;/p&gt;&lt;p&gt;Qt is The Qt Company Ltd product developed as an open source project. See &lt;a href=&quot;http://%3/&quot;&gt;%3&lt;/a&gt; for more information.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <source>About Qt</source>
-        <translation>Ãœber Qt</translation>
-    </message>
-    <message>
-        <source>Hide Details...</source>
-        <translation>Details ausblenden...</translation>
-    </message>
-    <message>
-        <source>&lt;h3&gt;About Qt&lt;/h3&gt;&lt;p&gt;This program uses Qt version %1.&lt;/p&gt;</source>
-        <translation>&lt;h3&gt;Ãœber Qt&lt;/h3&gt;&lt;p&gt;Dieses Programm verwendet Qt Version %1.&lt;/p&gt;</translation>
-    </message>
-</context>
-<context>
-    <name>QUnicodeControlCharacterMenu</name>
-    <message>
-        <source>RLE Start of right-to-left embedding</source>
-        <translation>RLE Start of right-to-left embedding</translation>
-    </message>
-    <message>
-        <source>ZWSP Zero width space</source>
-        <translation>ZWSP Zero width space</translation>
-    </message>
-    <message>
-        <source>LRI Left-to-right isolate</source>
-        <translation>LRI Left-to-right isolate</translation>
-    </message>
-    <message>
-        <source>Insert Unicode control character</source>
-        <translation>Unicode-Kontrollzeichen einfügen</translation>
-    </message>
-    <message>
-        <source>LRO Start of left-to-right override</source>
-        <translation>LRO Start of left-to-right override</translation>
-    </message>
-    <message>
-        <source>LRE Start of left-to-right embedding</source>
-        <translation>LRE Start of left-to-right embedding</translation>
-    </message>
-    <message>
-        <source>RLI Right-to-left isolate</source>
-        <translation>RLI Right-to-left isolate</translation>
-    </message>
-    <message>
-        <source>RLM Right-to-left mark</source>
-        <translation>RLM Right-to-left mark</translation>
-    </message>
-    <message>
-        <source>PDF Pop directional formatting</source>
-        <translation>PDF Pop directional formatting</translation>
-    </message>
-    <message>
-        <source>ZWNJ Zero width non-joiner</source>
-        <translation>ZWNJ Zero width non-joiner</translation>
-    </message>
-    <message>
-        <source>RLO Start of right-to-left override</source>
-        <translation>RLO Start of right-to-left override</translation>
-    </message>
-    <message>
-        <source>PDI Pop directional isolate</source>
-        <translation>PDI Pop directional isolate</translation>
-    </message>
-    <message>
-        <source>ZWJ Zero width joiner</source>
-        <translation>ZWJ Zero width joiner</translation>
-    </message>
-    <message>
-        <source>LRM Left-to-right mark</source>
-        <translation>LRM Left-to-right mark</translation>
-    </message>
-    <message>
-        <source>FSI First strong isolate</source>
-        <translation>FSI First strong isolate</translation>
-    </message>
-</context>
-<context>
-    <name>QJsonParseError</name>
-    <message>
-        <source>invalid UTF8 string</source>
-        <translation>Ungültige UTF8-Zeichenkette</translation>
-    </message>
-    <message>
-        <source>unterminated array</source>
-        <translation>Nicht abgeschlossenes Feld</translation>
-    </message>
-    <message>
-        <source>unterminated object</source>
-        <translation>Nicht abgeschlossenes Objekt</translation>
-    </message>
-    <message>
-        <source>no error occurred</source>
-        <translation>kein Fehler</translation>
-    </message>
-    <message>
-        <source>unterminated string</source>
-        <translation>Nicht abgeschlossene Zeichenkette</translation>
-    </message>
-    <message>
-        <source>garbage at the end of the document</source>
-        <translation>Überzähliger Inhalt nach Ende des Dokuments</translation>
-    </message>
-    <message>
-        <source>invalid termination by number</source>
-        <translation>Ungültiger Abschluß durch Zahl</translation>
-    </message>
-    <message>
-        <source>missing value separator</source>
-        <translation>Trennzeichen für Wert fehlt</translation>
-    </message>
-    <message>
-        <source>illegal number</source>
-        <translation>Ungültige Zahl</translation>
-    </message>
-    <message>
-        <source>invalid escape sequence</source>
-        <translation>Ungültige Escape-Sequenz</translation>
-    </message>
-    <message>
-        <source>missing name separator</source>
-        <translation>Trennzeichen für Namen fehlt</translation>
-    </message>
-    <message>
-        <source>too large document</source>
-        <translation>zu großes Dokument</translation>
-    </message>
-    <message>
-        <source>object is missing after a comma</source>
-        <translation>Objekt fehlt nach Komma </translation>
-    </message>
-    <message>
-        <source>too deeply nested document</source>
-        <translation>Das Dokument ist zu tief geschachtelt</translation>
-    </message>
-    <message>
-        <source>illegal value</source>
-        <translation>Ungültiger Wert</translation>
-    </message>
-</context>
-<context>
-    <name>QImageReader</name>
-    <message>
-        <source>Unable to read image data</source>
-        <translation>Die Bilddaten konnten nicht gelesen werden</translation>
-    </message>
-    <message>
-        <source>Invalid device</source>
-        <translation>Ungültiges Gerät</translation>
-    </message>
-    <message>
-        <source>Unsupported image format</source>
-        <translation>Dieser Typ von Bilddaten wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>File not found</source>
-        <translation>Datei nicht gefunden</translation>
-    </message>
-    <message>
-        <source>Unknown error</source>
-        <translation>Unbekannter Fehler</translation>
-    </message>
-</context>
-<context>
-    <name>QHttpSocketEngine</name>
-    <message>
-        <source>Proxy connection refused</source>
-        <translation>Der Proxy-Server hat den Aufbau einer Verbindung verweigert</translation>
-    </message>
-    <message>
-        <source>Proxy denied connection</source>
-        <translation>Der Proxy-Server hat den Aufbau einer Verbindung verweigert</translation>
-    </message>
-    <message>
-        <source>Proxy server not found</source>
-        <translation>Es konnte kein Proxy-Server gefunden werden</translation>
-    </message>
-    <message>
-        <source>Proxy server connection timed out</source>
-        <translation>Bei der Verbindung mit dem Proxy-Server wurde ein Zeitlimit überschritten</translation>
-    </message>
-    <message>
-        <source>Did not receive HTTP response from proxy</source>
-        <translation>Keine HTTP-Antwort vom Proxy-Server</translation>
-    </message>
-    <message>
-        <source>Proxy connection closed prematurely</source>
-        <translation>Der Proxy-Server hat die Verbindung vorzeitig beendet</translation>
-    </message>
-    <message>
-        <source>Error communicating with HTTP proxy</source>
-        <translation>Fehler bei der Kommunikation mit dem Proxy-Server</translation>
-    </message>
-    <message>
-        <source>Authentication required</source>
-        <translation>Authentifizierung erforderlich</translation>
-    </message>
-    <message>
-        <source>Error parsing authentication request from proxy</source>
-        <translation>Fehler beim Auswerten der Authentifizierungsanforderung des Proxy-Servers</translation>
-    </message>
-</context>
-<context>
-    <name>QSaveFile</name>
-    <message>
-        <source>Filename refers to a directory</source>
-        <translation>Dateiname bezeichnet ein Verzeichnis</translation>
-    </message>
-    <message>
-        <source>Writing canceled by application</source>
-        <translation>Das Schreiben wurde von der Anwendung abgebrochen</translation>
-    </message>
-    <message>
-        <source>Existing file %1 is not writable</source>
-        <translation>Die existierende Datei %1 ist nicht schreibbar</translation>
-    </message>
-</context>
-<context>
-    <name>QNetworkAccessManager</name>
-    <message>
-        <source>Network access is disabled.</source>
-        <translation>Der Zugriff auf das Netzwerk ist nicht gestattet.</translation>
-    </message>
-</context>
-<context>
-    <name>QAbstractSpinBox</name>
-    <message>
-        <source>Step &amp;down</source>
-        <translation>&amp;Dekrementieren</translation>
-    </message>
-    <message>
-        <source>&amp;Step up</source>
-        <translation>&amp;Inkrementieren</translation>
-    </message>
-    <message>
-        <source>&amp;Select All</source>
-        <translation>&amp;Alles auswählen</translation>
-    </message>
-</context>
-<context>
-    <name>QDB2Result</name>
-    <message>
-        <source>Unable to bind variable</source>
-        <translation>Die Variable kann nicht gebunden werden</translation>
-    </message>
-    <message>
-        <source>Unable to execute statement</source>
-        <translation>Der Befehl kann nicht ausgeführt werden</translation>
-    </message>
-    <message>
-        <source>Unable to fetch next</source>
-        <translation>Der nächste Datensatz kann nicht abgeholt werden</translation>
-    </message>
-    <message>
-        <source>Unable to prepare statement</source>
-        <translation>Der Befehl kann nicht vorbereitet werden</translation>
-    </message>
-    <message>
-        <source>Unable to fetch record %1</source>
-        <translation>Der Datensatz %1 kann nicht abgeholt werden</translation>
-    </message>
-    <message>
-        <source>Unable to fetch first</source>
-        <translation>Der erste Datensatz kann nicht abgeholt werden</translation>
-    </message>
-</context>
-<context>
-    <name>QODBCResult</name>
-    <message>
-        <source>Unable to bind variable</source>
-        <translation>Die Variable konnte nicht gebunden werden</translation>
-    </message>
-    <message>
-        <source>Unable to execute statement</source>
-        <translation>Der Befehl konnte nicht ausgeführt werden</translation>
-    </message>
-    <message>
-        <source>Unable to fetch next</source>
-        <translation>Der nächste Datensatz konnte nicht abgeholt werden</translation>
-    </message>
-    <message>
-        <source>Unable to fetch last</source>
-        <translation>Der letzte Datensatz konnte nicht abgeholt werden</translation>
-    </message>
-    <message>
-        <source>Unable to prepare statement</source>
-        <translation>Der Befehl konnte nicht initialisiert werden</translation>
-    </message>
-    <message>
-        <source>Unable to fetch previous</source>
-        <translation>Der vorherige Datensatz konnte nicht abgeholt werden</translation>
-    </message>
-    <message>
-        <source>Unable to fetch</source>
-        <translation>Es konnten keine Daten abgeholt werden</translation>
-    </message>
-    <message>
-        <source>QODBCResult::reset: Unable to set &apos;SQL_CURSOR_STATIC&apos; as statement attribute. Please check your ODBC driver configuration</source>
-        <translation>QODBCResult::reset: &apos;SQL_CURSOR_STATIC&apos; konnte nicht als Attribut des Befehls gesetzt werden. Bitte prüfen Sie die Konfiguration Ihres ODBC-Treibers</translation>
-    </message>
-    <message>
-        <source>Unable to fetch first</source>
-        <translation>Der erste Datensatz konnte nicht abgeholt werden</translation>
-    </message>
-</context>
-<context>
-    <name>QPSQLDriver</name>
-    <message>
-        <source>Unable to subscribe</source>
-        <translation>Die Registrierung ist fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>Could not begin transaction</source>
-        <translation>Es konnte keine Transaktion gestartet werden</translation>
-    </message>
-    <message>
-        <source>Could not rollback transaction</source>
-        <translation>Die Transaktion konnte nicht rückgängig gemacht werden (Operation &apos;rollback&apos; fehlgeschlagen)</translation>
-    </message>
-    <message>
-        <source>Could not commit transaction</source>
-        <translation>Die Transaktion konnte nicht durchgeführt werden (Operation &apos;commit&apos; fehlgeschlagen)</translation>
-    </message>
-    <message>
-        <source>Unable to connect</source>
-        <translation>Es kann keine Verbindung aufgebaut werden</translation>
-    </message>
-    <message>
-        <source>Unable to unsubscribe</source>
-        <translation>Die Registrierung konnte nicht aufgehoben werden</translation>
-    </message>
-</context>
-<context>
-    <name>QInputDialog</name>
-    <message>
-        <source>Enter a value:</source>
-        <translation>Geben Sie einen Wert ein:</translation>
-    </message>
-</context>
-<context>
-    <name>QCoreApplication</name>
-    <message>
-        <source>%1: key is empty</source>
-        <translation>%1: Ungültige Schlüsselangabe (leer)</translation>
-    </message>
-    <message>
-        <source>%1: unable to make key</source>
-        <translation>%1: Es kann kein Schlüssel erzeugt werden</translation>
-    </message>
-    <message>
-        <source>%1: ftok failed</source>
-        <translation>%1: ftok-Aufruf ist fehlgeschlagen</translation>
-    </message>
-</context>
-<context>
-    <name>QIODevice</name>
-    <message>
-        <source>No such file or directory</source>
-        <translation>Die Datei oder das Verzeichnis konnte nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>Permission denied</source>
-        <translation>Zugriff verweigert</translation>
-    </message>
-    <message>
-        <source>file to open is a directory</source>
-        <translation>die zu öffnende Datei ist ein Verzeichnis</translation>
-    </message>
-    <message>
-        <source>No space left on device</source>
-        <translation>Kein freier Speicherplatz auf dem Gerät vorhanden</translation>
-    </message>
-    <message>
-        <source>Unknown error</source>
-        <translation>Unbekannter Fehler</translation>
-    </message>
-    <message>
-        <source>Too many open files</source>
-        <translation>Zu viele Dateien geöffnet</translation>
-    </message>
-</context>
-<context>
-    <name>QTabBar</name>
-    <message>
-        <source>Scroll Left</source>
-        <translation>Nach links scrollen</translation>
-    </message>
-    <message>
-        <source>Scroll Right</source>
-        <translation>Nach rechts scrollen</translation>
-    </message>
-</context>
-<context>
-    <name>QUndoModel</name>
-    <message>
-        <source>&lt;empty&gt;</source>
-        <translation>&lt;leer&gt;</translation>
-    </message>
-</context>
-<context>
-    <name>QNetworkAccessCacheBackend</name>
-    <message>
-        <source>Error opening %1</source>
-        <translation>%1 konnte nicht geöffnet werden</translation>
-    </message>
-</context>
-<context>
-    <name>QMYSQLResult</name>
-    <message>
-        <source>Unable to execute statement</source>
-        <translation>Der Befehl konnte nicht ausgeführt werden</translation>
-    </message>
-    <message>
-        <source>Unable to store statement results</source>
-        <translation>Die Ergebnisse des Befehls konnten nicht gespeichert werden</translation>
-    </message>
-    <message>
-        <source>Unable to execute next query</source>
-        <translation>Die folgende Abfrage kann nicht ausgeführt werden</translation>
-    </message>
-    <message>
-        <source>Unable to bind outvalues</source>
-        <translation>Die Ausgabewerte konnten nicht gebunden werden</translation>
-    </message>
-    <message>
-        <source>Unable to store next result</source>
-        <translation>Das folgende Ergebnis kann nicht gespeichert werden</translation>
-    </message>
-    <message>
-        <source>Unable to fetch data</source>
-        <translation>Es konnten keine Daten abgeholt werden</translation>
-    </message>
-    <message>
-        <source>Unable to prepare statement</source>
-        <translation>Der Befehl konnte nicht initialisiert werden</translation>
-    </message>
-    <message>
-        <source>Unable to store result</source>
-        <translation>Das Ergebnis konnte nicht gespeichert werden</translation>
-    </message>
-    <message>
-        <source>Unable to bind value</source>
-        <translation>Der Wert konnte nicht gebunden werden</translation>
-    </message>
-    <message>
-        <source>Unable to execute query</source>
-        <translation>Die Abfrage konnte nicht ausgeführt werden</translation>
-    </message>
-    <message>
-        <source>Unable to reset statement</source>
-        <translation>Der Befehl konnte nicht zurückgesetzt werden</translation>
-    </message>
-</context>
-<context>
-    <name>QSQLite2Result</name>
-    <message>
-        <source>Unable to execute statement</source>
-        <translation>Der Befehl konnte nicht ausgeführt werden</translation>
-    </message>
-    <message>
-        <source>Unable to fetch results</source>
-        <translation>Das Ergebnis konnte nicht abgeholt werden</translation>
-    </message>
-</context>
-<context>
-    <name>QNetworkSessionPrivateImpl</name>
-    <message>
-        <source>The session was aborted by the user or system.</source>
-        <translation>Die Verbindung wurde vom Benutzer oder vom Betriebssystem unterbrochen.</translation>
-    </message>
-    <message>
-        <source>The requested operation is not supported by the system.</source>
-        <translation>Die angeforderte Operation wird vom System nicht unterstützt.</translation>
-    </message>
-    <message>
-        <source>Roaming was aborted or is not possible.</source>
-        <translation>Das Roaming wurde abgebrochen oder ist hier nicht möglich.</translation>
-    </message>
-    <message>
-        <source>The specified configuration cannot be used.</source>
-        <translation>Die angegebene Konfiguration kann nicht verwendet werden.</translation>
-    </message>
-    <message>
-        <source>Unknown session error.</source>
-        <translation>Unbekannter Fehler bei Netzwerkverbindung.</translation>
-    </message>
-</context>
-<context>
-    <name>QWindowsDirect2DIntegration</name>
-    <message>
-        <source>Qt cannot load the direct2d platform plugin because the Direct2D version on this system is too old. The minimum system requirement for this platform plugin is Windows 7 SP1 with Platform Update.
-
-The minimum Direct2D version required is %1.%2.%3.%4. The Direct2D version on this system is %5.%6.%7.%8.</source>
-        <translation>Qt kann das Direct2D-Plattform-Plugin nicht laden, weil die auf dem System installierte Version von Direct2D veraltet ist. Dieses Plattform-Plugin erfordert mindestens Windows 7 SP1 mit Plattform Update.
-
-Die minimal erforderliche Version von Direct2D ist %1.%2.%3.%4. Die auf diesem System installierte Version von Direct2D ist %5.%6.%7.%8.</translation>
-    </message>
-    <message>
-        <source>Cannot load direct2d platform plugin</source>
-        <translation>Direct2D-Plattform-Plugin kann nicht geladen werden</translation>
-    </message>
-</context>
-<context>
-    <name>QLocalServer</name>
-    <message>
-        <source>%1: Name error</source>
-        <translation>%1: Fehlerhafter Name</translation>
-    </message>
-    <message>
-        <source>%1: Unknown error %2</source>
-        <translation>%1: Unbekannter Fehler %2</translation>
-    </message>
-    <message>
-        <source>%1: Permission denied</source>
-        <translation>%1: Zugriff verweigert</translation>
-    </message>
-    <message>
-        <source>%1: Address in use</source>
-        <translation>%1: Die Adresse wird bereits verwendet</translation>
-    </message>
-</context>
-<context>
-    <name>QNetworkReply</name>
-    <message>
-        <source>Network session error.</source>
-        <translation>Fehler bei Netzwerkverbindung.</translation>
-    </message>
-    <message>
-        <source>Protocol &quot;%1&quot; is unknown</source>
-        <translation>Das Protokoll &quot;%1&quot; ist unbekannt</translation>
-    </message>
-    <message>
-        <source>backend start error.</source>
-        <translation>Fehler beim Starten des Backends.</translation>
-    </message>
-    <message>
-        <source>Background request not allowed.</source>
-        <translation>Hintergrundabfrage nicht zulässig.</translation>
-    </message>
-    <message>
-        <source>Error transferring %1 - server replied: %2</source>
-        <translation>Bei der Ãœbertragung von %1 trat ein Fehler auf - Die Antwort des Servers ist: %2</translation>
-    </message>
-    <message>
-        <source>Temporary network failure.</source>
-        <translation>Das Netzwerk ist vorübergehend ausgefallen.</translation>
-    </message>
-</context>
-<context>
-    <name>QGuiApplication</name>
-    <message>
-        <source>QT_LAYOUT_DIRECTION</source>
-        <translation>LTR</translation>
-    </message>
-</context>
-<context>
-    <name>QProgressDialog</name>
-    <message>
-        <source>Cancel</source>
-        <translation>Abbrechen</translation>
-    </message>
-</context>
-<context>
-    <name>QImageWriter</name>
-    <message>
-        <source>Unsupported image format</source>
-        <translation>Dieser Typ von Bilddaten wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Device not writable</source>
-        <translation>Kann nicht auf Ausgabegerät schreiben</translation>
-    </message>
-    <message>
-        <source>Unknown error</source>
-        <translation>Unbekannter Fehler</translation>
-    </message>
-    <message>
-        <source>Device is not set</source>
-        <translation>Kein Ausgabegerät</translation>
-    </message>
-</context>
-<context>
-    <name>MAC_APPLICATION_MENU</name>
-    <message>
-        <source>Hide Others</source>
-        <translation>Andere ausblenden</translation>
-    </message>
-    <message>
-        <source>Quit %1</source>
-        <translation>%1 beenden</translation>
-    </message>
-    <message>
-        <source>About %1</source>
-        <translation>Ãœber %1</translation>
-    </message>
-    <message>
-        <source>Preferences...</source>
-        <translation>Einstellungen...</translation>
-    </message>
-    <message>
-        <source>Services</source>
-        <translation>Dienste</translation>
-    </message>
-    <message>
-        <source>Hide %1</source>
-        <translation>%1 ausblenden</translation>
-    </message>
-    <message>
-        <source>Show All</source>
-        <translation>Alle anzeigen</translation>
-    </message>
-</context>
-<context>
-    <name>QTDSDriver</name>
-    <message>
-        <source>Unable to open connection</source>
-        <translation>Die Datenbankverbindung kann nicht geöffnet werden</translation>
-    </message>
-    <message>
-        <source>Unable to use database</source>
-        <translation>Die Datenbank kann nicht verwendet werden</translation>
-    </message>
-</context>
-<context>
-    <name>QPrintPropertiesDialog</name>
-    <message>
-        <source>Job Options</source>
-        <translation>Einstellungen zum Druckauftrag</translation>
-    </message>
-    <message>
-        <source>Printer Properties</source>
-        <translation>Druckereigenschaften</translation>
-    </message>
-</context>
-<context>
-    <name>QPluginLoader</name>
-    <message>
-        <source>The plugin was not loaded.</source>
-        <translation>Das Plugin wurde nicht geladen.</translation>
-    </message>
-    <message>
-        <source>Unknown error</source>
-        <translation>Unbekannter Fehler</translation>
-    </message>
-</context>
-<context>
-    <name>CloseButton</name>
-    <message>
-        <source>Close Tab</source>
-        <translation>Schließen</translation>
-    </message>
-</context>
-<context>
-    <name>QPSQLResult</name>
-    <message>
-        <source>Unable to prepare statement</source>
-        <translation>Der Befehl konnte nicht initialisiert werden</translation>
-    </message>
-    <message>
-        <source>Unable to create query</source>
-        <translation>Es konnte keine Abfrage erzeugt werden</translation>
-    </message>
-</context>
-<context>
-    <name>QFileDevice</name>
-    <message>
-        <source>No file engine available or engine does not support UnMapExtension</source>
-        <translation>Es ist kein Datei-Engine verfügbar oder der gegenwärtig aktive Engine unterstützt die UnMap-Erweiterung nicht</translation>
-    </message>
-</context>
-<context>
-    <name>QNetworkSession</name>
-    <message>
-        <source>Invalid configuration.</source>
-        <translation>Ungültige Konfiguration.</translation>
-    </message>
-</context>
-<context>
-    <name>QUdpSocket</name>
-    <message>
-        <source>No datagram available for reading</source>
-        <translation>Es steht kein Datagramm zum Lesen bereit</translation>
-    </message>
-    <message>
-        <source>Unable to send a datagram</source>
-        <translation>Es konnte kein Datagramm gesendet werden</translation>
-    </message>
-</context>
-<context>
-    <name>QNetworkAccessDataBackend</name>
-    <message>
-        <source>Invalid URI: %1</source>
-        <translation>Ungültiger URI: %1</translation>
-    </message>
-</context>
-<context>
-    <name>QKeySequenceEdit</name>
-    <message>
-        <source>Press shortcut</source>
-        <translation>Geben Sie ein Tastenkürzel ein</translation>
-    </message>
-    <message>
-        <source>%1, ...</source>
-        <translation>%1, ...</translation>
-    </message>
-</context>
-<context>
-    <name>QNetworkAccessDebugPipeBackend</name>
-    <message>
-        <source>Socket error on %1: %2</source>
-        <translation>Socket-Fehler bei %1: %2</translation>
-    </message>
-    <message>
-        <source>Remote host closed the connection prematurely on %1</source>
-        <translation>Der Host hat die Verbindung zu %1 vorzeitig beendet</translation>
-    </message>
-    <message>
-        <source>Write error writing to %1: %2</source>
-        <translation>Fehler beim Schreiben zu %1: %2</translation>
-    </message>
-</context>
-<context>
-    <name>QNetworkAccessFileBackend</name>
-    <message>
-        <source>Request for opening non-local file %1</source>
-        <translation>Anforderung zum Öffnen einer Datei über Netzwerk %1</translation>
-    </message>
-    <message>
-        <source>Read error reading from %1: %2</source>
-        <translation>Beim Lesen von der Datei %1 trat ein Fehler auf: %2</translation>
-    </message>
-    <message>
-        <source>Cannot open %1: Path is a directory</source>
-        <translation>%1 kann nicht geöffnet werden: Der Pfad spezifiziert ein Verzeichnis</translation>
-    </message>
-    <message>
-        <source>Error opening %1: %2</source>
-        <translation>%1 konnte nicht geöffnet werden: %2</translation>
-    </message>
-    <message>
-        <source>Write error writing to %1: %2</source>
-        <translation>Fehler beim Schreiben zur Datei %1: %2</translation>
-    </message>
-</context>
-<context>
-    <name>QHostInfo</name>
-    <message>
-        <source>No host name given</source>
-        <translation>Es wurde kein Hostname angegeben</translation>
-    </message>
-    <message>
-        <source>Unknown error</source>
-        <translation>Unbekannter Fehler</translation>
-    </message>
-</context>
-<context>
-    <name>QNetworkReplyImpl</name>
-    <message>
-        <source>Operation canceled</source>
-        <translation>Operation abgebrochen</translation>
-    </message>
-</context>
-<context>
-    <name>QStateMachine</name>
-    <message>
-        <source>Missing default state in history state &apos;%1&apos;</source>
-        <translation>Der Anfangszustand im Verlauf bei Zustand &apos;%1&apos; fehlt</translation>
-    </message>
-    <message>
-        <source>Unknown error</source>
-        <translation>Unbekannter Fehler</translation>
-    </message>
-    <message>
-        <source>Missing initial state in compound state &apos;%1&apos;</source>
-        <translation>Der Anfangszustand des zusammengesetzten Zustands &apos;%1&apos; fehlt</translation>
-    </message>
-    <message>
-        <source>No common ancestor for targets and source of transition from state &apos;%1&apos;</source>
-        <translation>Die Ziele und die Quelle des Ãœbergangs vom Zustand &apos;%1&apos; haben keinen gemeinsamen Ursprung</translation>
-    </message>
-</context>
-<context>
-    <name>QMdiArea</name>
-    <message>
-        <source>(Untitled)</source>
-        <translation>(Unbenannt)</translation>
-    </message>
-</context>
-<context>
-    <name>QApplication</name>
-    <message>
-        <source>Executable &apos;%1&apos; requires Qt %2, found Qt %3.</source>
-        <translation>Die Anwendung &apos;%1&apos; benötigt Qt %2; es wurde aber Qt %3 gefunden.</translation>
-    </message>
-    <message>
-        <source>Incompatible Qt Library Error</source>
-        <translation>Die Qt-Bibliothek ist inkompatibel</translation>
-    </message>
-</context>
-<context>
-    <name>QCocoaTheme</name>
-    <message>
-        <source>Don&apos;t Save</source>
-        <translation>Nicht speichern</translation>
-    </message>
-</context>
-<context>
-    <name>QDnsLookup</name>
-    <message>
-        <source>Operation cancelled</source>
-        <translation>Operation abgebrochen</translation>
-    </message>
-</context>
-<context>
-    <name>QTcpServer</name>
-    <message>
-        <source>Operation on socket is not supported</source>
-        <translation>Diese Socket-Operation wird nicht unterstützt</translation>
-    </message>
-</context>
-</TS>
diff --git a/translations/qtconnectivity_de.qm b/translations/qtconnectivity_de.qm
deleted file mode 100644
index 7f0946a243a8a74e6d9d1e5338349dee2fb1c3c7..0000000000000000000000000000000000000000
Binary files a/translations/qtconnectivity_de.qm and /dev/null differ
diff --git a/translations/qtconnectivity_de.ts b/translations/qtconnectivity_de.ts
deleted file mode 100755
index 0fff4c3b5b08ac381b2d8acef0c4a87eca3b422b..0000000000000000000000000000000000000000
--- a/translations/qtconnectivity_de.ts
+++ /dev/null
@@ -1,1366 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<context>
-    <name>QBluetoothServiceDiscoveryAgent</name>
-    <message>
-        <source>Age</source>
-        <translation>Alter</translation>
-    </message>
-    <message>
-        <source>Fat Burn Heart Rate Lower Limit</source>
-        <translation>Minimaler Puls, bei dem Fettverbrennung stattfindet</translation>
-    </message>
-    <message>
-        <source>Fat Burn Heart Rate Upper Limit</source>
-        <translation>Maximaler Puls, bei dem Fettverbrennung stattfindet</translation>
-    </message>
-    <message>
-        <source>Audio Sink</source>
-        <translation>Audioempfänger</translation>
-    </message>
-    <message>
-        <source>Characteristic Aggregate Format</source>
-        <translation>Charakteristisches Format zusammengesetzter Typen</translation>
-    </message>
-    <message>
-        <source>Human Interface Device</source>
-        <translation>Mensch-Maschine-Schnittstelle</translation>
-    </message>
-    <message>
-        <source>Scan Parameters</source>
-        <translation>Scan-Parameter</translation>
-    </message>
-    <message>
-        <source>Sensor Location</source>
-        <translation>Lage des Sensors</translation>
-    </message>
-    <message>
-        <source>Generic File Transfer</source>
-        <translation>Dateiübertragung</translation>
-    </message>
-    <message>
-        <source>Video Source</source>
-        <translation>Videoquelle</translation>
-    </message>
-    <message>
-        <source>Blood Pressure Measurement</source>
-        <translation>Blutdruckmessung</translation>
-    </message>
-    <message>
-        <source>Basic Printing</source>
-        <translation>Druckfreigabe</translation>
-    </message>
-    <message>
-        <source>Aerobic Threshold</source>
-        <translation>Aerobe Schwelle</translation>
-    </message>
-    <message>
-        <source>Wireless Short Packet Protocol</source>
-        <translation>Wireless Short Packet Protocol</translation>
-    </message>
-    <message>
-        <source>Multi-Channel Adaptation Protocol - Control</source>
-        <translation>Multi-Channel Adaptation Protocol - Control</translation>
-    </message>
-    <message>
-        <source>Phonebook Access</source>
-        <translation>Telefonbuchzugang</translation>
-    </message>
-    <message>
-        <source>Basic Direct Printing (BPP)</source>
-        <translation>Druckfreigabe Basic Direct Printing (BPP)</translation>
-    </message>
-    <message>
-        <source>Current Time Service</source>
-        <translation>Zeitdienst</translation>
-    </message>
-    <message>
-        <source>Day Date Time</source>
-        <translation>Tag Datum Zeit</translation>
-    </message>
-    <message>
-        <source>Location and Navigation</source>
-        <translation>Ort und Navigation</translation>
-    </message>
-    <message>
-        <source>Personal Area Networking (GN)</source>
-        <translation>Netzwerkzugang (GN)</translation>
-    </message>
-    <message>
-        <source>Characteristic Presentation Format</source>
-        <translation>Charakteristisches Darstellungsformat</translation>
-    </message>
-    <message>
-        <source>Device is powered off</source>
-        <translation>Gerät ist ausgeschaltet</translation>
-    </message>
-    <message>
-        <source>Alert Status</source>
-        <translation>Status Alarmbereitschaft</translation>
-    </message>
-    <message>
-        <source>Audio Source</source>
-        <translation>Audioquelle</translation>
-    </message>
-    <message>
-        <source>Basic Imaging Responder</source>
-        <translation>Druckfreigabe (Responder)</translation>
-    </message>
-    <message>
-        <source>Body Composition Measurement</source>
-        <translation>Muskelanteilmessung</translation>
-    </message>
-    <message>
-        <source>Characteristic User Description</source>
-        <translation>Charakteristische Nutzerbeschreibung</translation>
-    </message>
-    <message>
-        <source>External Report Reference</source>
-        <translation>Referenz zu externem Bericht</translation>
-    </message>
-    <message>
-        <source>Alert Category ID Bit Mask</source>
-        <translation>Bitmaske der Kategorie-ID (Alarmbereitschaft)</translation>
-    </message>
-    <message>
-        <source>Descriptor Value Changed</source>
-        <translation>Wertänderung des Deskriptors</translation>
-    </message>
-    <message>
-        <source>Aerobic Heart Rate Upper Limit</source>
-        <translation>Aerober maximaler Puls</translation>
-    </message>
-    <message>
-        <source>Anaerobic Heart Rate Upper Limit</source>
-        <translation>Anaerober maximaler Puls</translation>
-    </message>
-    <message>
-        <source>Aerobic Heart Rate Lower Limit</source>
-        <translation>Aerober minimaler Puls</translation>
-    </message>
-    <message>
-        <source>Anaerobic Heart Rate Lower Limit</source>
-        <translation>Anaerober minimaler Puls</translation>
-    </message>
-    <message>
-        <source>Personal Area Networking (NAP)</source>
-        <translation>Netzwerkzugang (NAP)</translation>
-    </message>
-    <message>
-        <source>Unable to find appointed local adapter</source>
-        <translation>Angegebene Geräteadresse konnte nicht als lokales Gerät identifiziert werden</translation>
-    </message>
-    <message>
-        <source>Current Time</source>
-        <translation>Aktuelle Zeit</translation>
-    </message>
-    <message>
-        <source>Cycling Power Feature</source>
-        <translation>Trittleistungs-Funktion</translation>
-    </message>
-    <message>
-        <source>Basic Printing Status</source>
-        <translation>Druckfreigabestatus</translation>
-    </message>
-    <message>
-        <source>Server Characteristic Configuration</source>
-        <translation>Charakteristische Konfiguration des Servers</translation>
-    </message>
-    <message>
-        <source>Hypertext Transfer Protocol</source>
-        <translation>Hypertext Transfer Protocol</translation>
-    </message>
-    <message>
-        <source>GAP Reconnection Address</source>
-        <translation>GAP Reconnection Address</translation>
-    </message>
-    <message>
-        <source>Cannot obtain service uuids</source>
-        <translation>Ermittlung der Dienst-UUID fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>Exact Time 256</source>
-        <translation>Exakte Zeit 256</translation>
-    </message>
-    <message>
-        <source>SIM Access Server</source>
-        <translation>Server für SIM Zugriff</translation>
-    </message>
-    <message>
-        <source>Audio/Video Remote Control Target</source>
-        <translation>Audio/Video Remote Control Target</translation>
-    </message>
-    <message>
-        <source>Hardcopy Notification</source>
-        <translation>Druckbenachrichtigung</translation>
-    </message>
-    <message>
-        <source>Battery Service</source>
-        <translation>Batteriestatusdienst</translation>
-    </message>
-    <message>
-        <source>Protocol Mode</source>
-        <translation>Protokoll-Modus</translation>
-    </message>
-    <message>
-        <source>Internet Protocol</source>
-        <translation>Internet Protocol</translation>
-    </message>
-    <message>
-        <source>Supported Unread Alert Category</source>
-        <translation>Unterstützte neue Kategorie unbehandelter Alarmmeldungen</translation>
-    </message>
-    <message>
-        <source>Time Accuracy</source>
-        <translation>Genauigkeit der Zeitangabe</translation>
-    </message>
-    <message>
-        <source>Heart Rate Measurement</source>
-        <translation>Pulsmessung</translation>
-    </message>
-    <message>
-        <source>Date Of Birth</source>
-        <translation>Geburtsdatum</translation>
-    </message>
-    <message>
-        <source>Time Update State</source>
-        <translation>Status der Zeitaktualisierung</translation>
-    </message>
-    <message>
-        <source>Body Composition Feature</source>
-        <translation>Funktion für Körperliche Verfassung</translation>
-    </message>
-    <message>
-        <source>IEEE 11073 20601 Regulatory Certification Data List</source>
-        <translation>IEEE 11073 20601 Regulatory Certification Data List</translation>
-    </message>
-    <message>
-        <source>Heart Rate Maximum</source>
-        <translation>Maximaler Puls</translation>
-    </message>
-    <message>
-        <source>Cannot find local Bluetooth adapter</source>
-        <translation>Es konnte kein lokaler Bluetooth-Adapter gefunden werden</translation>
-    </message>
-    <message>
-        <source>Hardcopy Cable Replacement</source>
-        <translation>Hardcopy Cable Replacement</translation>
-    </message>
-    <message>
-        <source>Next DST Change Service</source>
-        <translation>Sommerzeit-Benachrichtigungsdienst</translation>
-    </message>
-    <message>
-        <source>Hands-Free AG</source>
-        <translation>Freisprechanlage AG</translation>
-    </message>
-    <message>
-        <source>Unable to access device</source>
-        <translation>Zugriff auf Gerät nicht möglich</translation>
-    </message>
-    <message>
-        <source>Advanced Audio Distribution</source>
-        <translation>Erweiterte Audio-Verteilung</translation>
-    </message>
-    <message>
-        <source>Generic Attribute</source>
-        <translation>Allgemeines Attribut</translation>
-    </message>
-    <message>
-        <source>Oxygen Uptake</source>
-        <translation>Sauerstoffaufnahme</translation>
-    </message>
-    <message>
-        <source>Manufacturer Name String</source>
-        <translation>Herstellername als Zeichenkette</translation>
-    </message>
-    <message>
-        <source>Blood Pressure Feature</source>
-        <translation>Blutdruck-Funktion</translation>
-    </message>
-    <message>
-        <source>Time Zone</source>
-        <translation>Zeitzone</translation>
-    </message>
-    <message>
-        <source>Common ISDN Access Protocol</source>
-        <translation>Common ISDN Access Protocol</translation>
-    </message>
-    <message>
-        <source>Weight Scale</source>
-        <translation>Gewichtsskala</translation>
-    </message>
-    <message>
-        <source>Multi-Profile Specification</source>
-        <translation>Multi-Profilspezifikation</translation>
-    </message>
-    <message>
-        <source>Human Interface Device Protocol</source>
-        <translation>Human Interface Device Protocol</translation>
-    </message>
-    <message>
-        <source>User Datagram Protocol</source>
-        <translation>User Datagram Protocol</translation>
-    </message>
-    <message>
-        <source>Cycling Power</source>
-        <translation>Trittleistung</translation>
-    </message>
-    <message>
-        <source>Bond Management</source>
-        <translation>Verbindungsverwaltung</translation>
-    </message>
-    <message>
-        <source>Battery Level</source>
-        <translation>Batteriestatus</translation>
-    </message>
-    <message>
-        <source>Platform does not support Bluetooth</source>
-        <translation>Die Plattform unterstützt kein Bluetooth</translation>
-    </message>
-    <message>
-        <source>Message Notification Server</source>
-        <translation>Nachrichten-Benachrichtigungs-Server</translation>
-    </message>
-    <message>
-        <source>GAP Peripheral Preferred Connection Parameters</source>
-        <translation>GAP Peripheral Preferred Connection Parameters</translation>
-    </message>
-    <message>
-        <source>User Control Point</source>
-        <translation>Nutzerkontrollpunkt</translation>
-    </message>
-    <message>
-        <source>Boot Mouse Input Report</source>
-        <translation>Eingabemeldung von Boot-Maus</translation>
-    </message>
-    <message>
-        <source>Android API below v15 does not support SDP discovery</source>
-        <translation>SDP-Suche erfordert Android API Version 15 oder höher</translation>
-    </message>
-    <message>
-        <source>SC Control Point</source>
-        <translation>SC-Kontrollpunkt</translation>
-    </message>
-    <message>
-        <source>LN Control Point</source>
-        <translation>LN-Kontrollpunkt</translation>
-    </message>
-    <message>
-        <source>User Index</source>
-        <translation>Nutzerindex</translation>
-    </message>
-    <message>
-        <source>Model Number String</source>
-        <translation>Modellnummer als Zeichenkette</translation>
-    </message>
-    <message>
-        <source>Public Browse Group</source>
-        <translation>Öffentliche Gruppe</translation>
-    </message>
-    <message>
-        <source>Basic Imaging Ref Objects</source>
-        <translation>Druckfreigabe (Ref Objects)</translation>
-    </message>
-    <message>
-        <source>Ringer Control Point</source>
-        <translation>Kontrollpunkt des Signalgebers</translation>
-    </message>
-    <message>
-        <source>HID Control Point</source>
-        <translation>HID-Kontrollpunkt</translation>
-    </message>
-    <message>
-        <source>Gust Factor</source>
-        <translation>Böenfaktor</translation>
-    </message>
-    <message>
-        <source>Hardware Revision String</source>
-        <translation>Hardware-Revision als Zeichenkette</translation>
-    </message>
-    <message>
-        <source>Link Loss</source>
-        <translation>Verbindungsverlust</translation>
-    </message>
-    <message>
-        <source>Gender</source>
-        <translation>Geschlecht</translation>
-    </message>
-    <message>
-        <source>Health Device Source</source>
-        <translation>Medizinisches Gerät (Quelle)</translation>
-    </message>
-    <message>
-        <source>Height</source>
-        <translation>Größe</translation>
-    </message>
-    <message>
-        <source>Firmware Revision String</source>
-        <translation>Firmware-Revision als Zeichenkette</translation>
-    </message>
-    <message>
-        <source>Immediate Alert</source>
-        <translation>Sofortiger Alarm</translation>
-    </message>
-    <message>
-        <source>Alert Notification Service</source>
-        <translation>Alarmmeldungsdienst</translation>
-    </message>
-    <message>
-        <source>Glucose Measurement</source>
-        <translation>Blutzuckermessung</translation>
-    </message>
-    <message>
-        <source>Hardcopy Cable Replacement Print</source>
-        <translation>Hardcopy Cable Replacement (Drucken)</translation>
-    </message>
-    <message>
-        <source>DST Offset</source>
-        <translation>Sommerzeitverschiebung</translation>
-    </message>
-    <message>
-        <source>Transmission Control Protocol</source>
-        <translation>Transmission Control Protocol</translation>
-    </message>
-    <message>
-        <source>Custom Service</source>
-        <translation>Benutzerdefinierter Dienst</translation>
-    </message>
-    <message>
-        <source>PnP ID</source>
-        <translation>PnP-ID</translation>
-    </message>
-    <message>
-        <source>File Transfer</source>
-        <translation>Dateiübertragung</translation>
-    </message>
-    <message>
-        <source>Report</source>
-        <translation>Bericht</translation>
-    </message>
-    <message>
-        <source>Synchronization</source>
-        <translation>Synchronisation</translation>
-    </message>
-    <message>
-        <source>Body Sensor Location</source>
-        <translation>Lage des Körpersensors</translation>
-    </message>
-    <message>
-        <source>Day Of Week</source>
-        <translation>Wochentag</translation>
-    </message>
-    <message>
-        <source>Weight</source>
-        <translation>Gewicht</translation>
-    </message>
-    <message>
-        <source>Time Source</source>
-        <translation>Quelle der Zeitangabe</translation>
-    </message>
-    <message>
-        <source>Hardcopy Data Channel</source>
-        <translation>Druckdatenkanal</translation>
-    </message>
-    <message>
-        <source>Record Access Control Point</source>
-        <translation>Record Access Control Point</translation>
-    </message>
-    <message>
-        <source>Valid Range</source>
-        <translation>Gültigkeitsbereich</translation>
-    </message>
-    <message>
-        <source>Unable to find sdpscanner</source>
-        <translation>Es kann kein sdpscanner gefunden werden</translation>
-    </message>
-    <message>
-        <source>Sport Type For Aerobic/Anaerobic Thresholds</source>
-        <translation>Sportart für Aerobe/Anaerobe Schwellen</translation>
-    </message>
-    <message>
-        <source>Telephony Control Specification - AT</source>
-        <translation>Spezifikation der Telefonsteuerung - AT</translation>
-    </message>
-    <message>
-        <source>Date Of Threshold Assessment</source>
-        <translation>Datum der Schwellenbestimmung</translation>
-    </message>
-    <message>
-        <source>Phonebook Access PSE</source>
-        <translation>Telefonbuchzugang (Server)</translation>
-    </message>
-    <message>
-        <source>Phonebook Access PCE</source>
-        <translation>Telefonbuchzugang (Client)</translation>
-    </message>
-    <message>
-        <source>Alert Level</source>
-        <translation>Alarmzustand</translation>
-    </message>
-    <message>
-        <source>Attribute Protocol</source>
-        <translation>Attribute Protocol</translation>
-    </message>
-    <message>
-        <source>Wind Chill</source>
-        <translation>Windkühle</translation>
-    </message>
-    <message>
-        <source>Heat Index</source>
-        <translation>Hitzeindex</translation>
-    </message>
-    <message>
-        <source>Service Discovery</source>
-        <translation>Dienstsuche</translation>
-    </message>
-    <message>
-        <source>Hip Circumference</source>
-        <translation>Hüftumfang</translation>
-    </message>
-    <message>
-        <source>Report Map</source>
-        <translation>Ãœbersicht der Berichte</translation>
-    </message>
-    <message>
-        <source>Layer 2 Control Protocol</source>
-        <translation>Layer 2 Control Protocol</translation>
-    </message>
-    <message>
-        <source>Scan Interval Window</source>
-        <translation>Scan-Intervallfenster</translation>
-    </message>
-    <message>
-        <source>Basic Imaging Archive</source>
-        <translation>Druckfreigabe Archiv</translation>
-    </message>
-    <message>
-        <source>GATT Service Changed</source>
-        <translation>GATT Service Changed</translation>
-    </message>
-    <message>
-        <source>Dial-Up Networking</source>
-        <translation>Modemnetzwerk</translation>
-    </message>
-    <message>
-        <source>Heart Rate Control Point</source>
-        <translation>Pulsabnahmepunkt</translation>
-    </message>
-    <message>
-        <source>Glucose Feature</source>
-        <translation>Blutzucker-Funktion</translation>
-    </message>
-    <message>
-        <source>Temperature Measurement</source>
-        <translation>Temperaturmessung</translation>
-    </message>
-    <message>
-        <source>3-Zone Heart Rate Limits</source>
-        <translation>Pulslimits / 3 Zonen</translation>
-    </message>
-    <message>
-        <source>2-Zone Heart Rate Limits</source>
-        <translation>Pulslimits / 2 Zonen</translation>
-    </message>
-    <message>
-        <source>Software Revision String</source>
-        <translation>Software-Revision als Zeichenkette</translation>
-    </message>
-    <message>
-        <source>Global Navigation Satellite System Server</source>
-        <translation>Server für globales Satelliten-Navigationssystem</translation>
-    </message>
-    <message>
-        <source>Irradiance</source>
-        <translation>Strahlungsintensität</translation>
-    </message>
-    <message>
-        <source>5-Zone Heart Rate Limits</source>
-        <translation>Pulslimits / 5 Zonen</translation>
-    </message>
-    <message>
-        <source>Health Device Sink</source>
-        <translation>Medizinisches Gerät (Senke)</translation>
-    </message>
-    <message>
-        <source>Audio/Video Remote Control Controller</source>
-        <translation>Audio/Video Remote Control Controller</translation>
-    </message>
-    <message>
-        <source>Personal Area Networking (PANU)</source>
-        <translation>Netzwerkzugang (PANU)</translation>
-    </message>
-    <message>
-        <source>Generic Networking</source>
-        <translation>Netzwerk allgemein</translation>
-    </message>
-    <message>
-        <source>File Transfer Protocol</source>
-        <translation>File Transfer Protocol</translation>
-    </message>
-    <message>
-        <source>Rainfall</source>
-        <translation>Regen</translation>
-    </message>
-    <message>
-        <source>Position Quality</source>
-        <translation>Güte der Ortsdaten</translation>
-    </message>
-    <message>
-        <source>Generic Access</source>
-        <translation>Zugriff allgemein</translation>
-    </message>
-    <message>
-        <source>Local device is powered off</source>
-        <translation>Das lokale Gerät ist ausgeschaltet</translation>
-    </message>
-    <message>
-        <source>Language</source>
-        <translation>Sprache</translation>
-    </message>
-    <message>
-        <source>UV Index</source>
-        <translation>UV-Index</translation>
-    </message>
-    <message>
-        <source>Time Update Control Point</source>
-        <translation>Kontrollpunkt Zeitaktualisierung</translation>
-    </message>
-    <message>
-        <source>Anaerobic Threshold</source>
-        <translation>Anaerobe Schwelle</translation>
-    </message>
-    <message>
-        <source>Resting Heart Rate</source>
-        <translation>Ruhepuls</translation>
-    </message>
-    <message>
-        <source>Generic Audio</source>
-        <translation>Audio allgemein</translation>
-    </message>
-    <message>
-        <source>Basic Printing Reflected UI</source>
-        <translation>Druckfreigabe UI</translation>
-    </message>
-    <message>
-        <source>Message Access Server</source>
-        <translation>Nachrichten-Zugangsserver</translation>
-    </message>
-    <message>
-        <source>Boot Keyboard Input Report</source>
-        <translation>Eingabemeldung von Boot-Tastatur</translation>
-    </message>
-    <message>
-        <source>Pressure</source>
-        <translation>Druck</translation>
-    </message>
-    <message>
-        <source>Message Access</source>
-        <translation>Nachrichtenzugang</translation>
-    </message>
-    <message>
-        <source>3D Synchronization</source>
-        <translation>3D-Synchronisation</translation>
-    </message>
-    <message>
-        <source>Alert Notification Control Point</source>
-        <translation>Kontrollpunkt Alarmmeldung</translation>
-    </message>
-    <message>
-        <source>Client Characteristic Configuration</source>
-        <translation>Charakteristische Konfiguration des Clients</translation>
-    </message>
-    <message>
-        <source>Waist Circumference</source>
-        <translation>Taillenumfang</translation>
-    </message>
-    <message>
-        <source>New Alert</source>
-        <translation>Neue Alarmmeldung</translation>
-    </message>
-    <message>
-        <source>Extended Service Discovery Protocol</source>
-        <translation>Extended Service Discovery Protocol</translation>
-    </message>
-    <message>
-        <source>Dew Point</source>
-        <translation>Taupunkt</translation>
-    </message>
-    <message>
-        <source>Heart Rate</source>
-        <translation>Puls</translation>
-    </message>
-    <message>
-        <source>Characteristic Extended Properties</source>
-        <translation>Charakteristische erweiterte Eigenschaften</translation>
-    </message>
-    <message>
-        <source>Ringer Setting</source>
-        <translation>Signalgebereinstellung</translation>
-    </message>
-    <message>
-        <source>Local Time Information</source>
-        <translation>Information zur Ortszeit</translation>
-    </message>
-    <message>
-        <source>Basic Imaging Profile</source>
-        <translation>Einfaches Druckprofil</translation>
-    </message>
-    <message>
-        <source>Device Identification</source>
-        <translation>Geräteidentifikation</translation>
-    </message>
-    <message>
-        <source>CSC Measurement</source>
-        <translation>CSC-Messung</translation>
-    </message>
-    <message>
-        <source>RSC Measurement</source>
-        <translation>RSC-Messung</translation>
-    </message>
-    <message>
-        <source>Health Device</source>
-        <translation>Medizinisches Gerät</translation>
-    </message>
-    <message>
-        <source>Object Push</source>
-        <translation>Object Push</translation>
-    </message>
-    <message>
-        <source>TX Power</source>
-        <translation>Tx-Spannungsversorgung</translation>
-    </message>
-    <message>
-        <source>Tx Power</source>
-        <translation>Tx-Spannungsversorgung</translation>
-    </message>
-    <message>
-        <source>Report Reference</source>
-        <translation>Referenz zu Bericht</translation>
-    </message>
-    <message>
-        <source>First Name</source>
-        <translation>Vorname</translation>
-    </message>
-    <message>
-        <source>Last Name</source>
-        <translation>Nachname</translation>
-    </message>
-    <message>
-        <source>Date Time</source>
-        <translation>Datum/Zeit</translation>
-    </message>
-    <message>
-        <source>Generic Telephony</source>
-        <translation>Telefonie allgemein</translation>
-    </message>
-    <message>
-        <source>Audio/Video Remote Control</source>
-        <translation>Audio/Video Remote Control</translation>
-    </message>
-    <message>
-        <source>System ID</source>
-        <translation>System-ID</translation>
-    </message>
-    <message>
-        <source>Basic Reference Printing (BPP)</source>
-        <translation>Druckfreigabe Basic Reference Printing (BPP)</translation>
-    </message>
-    <message>
-        <source>Cannot create Android BluetoothDevice</source>
-        <translation>Android Bluetooth-Gerät kann nicht erstellt werden</translation>
-    </message>
-    <message>
-        <source>LAN Access Profile</source>
-        <translation>LAN-Zugriff-Profil</translation>
-    </message>
-    <message>
-        <source>GAP Device Name</source>
-        <translation>GAP-Gerätename</translation>
-    </message>
-    <message>
-        <source>Apparent Wind Speed</source>
-        <translation>Scheinbare Windgeschwindigkeit</translation>
-    </message>
-    <message>
-        <source>Serial Port Profile</source>
-        <translation>Serialport-Profil</translation>
-    </message>
-    <message>
-        <source>Environmental Sensing Measurement</source>
-        <translation>Messung der Umgebung</translation>
-    </message>
-    <message>
-        <source>Cycling Power Control Point</source>
-        <translation>Kontrollpunkt Trittleistung</translation>
-    </message>
-    <message>
-        <source>Hands-Free</source>
-        <translation>Freisprechanlage</translation>
-    </message>
-    <message>
-        <source>Radio Frequency Communication</source>
-        <translation>Radio Frequency Communication</translation>
-    </message>
-    <message>
-        <source>Magnetic Flux Density 2D</source>
-        <translation>Magnetische Flussdichte 2D</translation>
-    </message>
-    <message>
-        <source>Magnetic Flux Density 3D</source>
-        <translation>Magnetische Flussdichte 3D</translation>
-    </message>
-    <message>
-        <source>Cycling Power Measurement</source>
-        <translation>Messung der Trittleistung</translation>
-    </message>
-    <message>
-        <source>GAP Peripheral Privacy Flag</source>
-        <translation>GAP Peripheral Privacy Flag</translation>
-    </message>
-    <message>
-        <source>Telephony Control Specification - Binary</source>
-        <translation>Spezifikation der Telefonsteuerung - binär</translation>
-    </message>
-    <message>
-        <source>Headset AG</source>
-        <translation>Kopfhörer (Audio Gateway)</translation>
-    </message>
-    <message>
-        <source>Headset HS</source>
-        <translation>Kopfhörer (HS)</translation>
-    </message>
-    <message>
-        <source>Email Address</source>
-        <translation>E-Mail-Adresse</translation>
-    </message>
-    <message>
-        <source>Unknown Service</source>
-        <translation>Unbekannter Dienst</translation>
-    </message>
-    <message>
-        <source>Time With DST</source>
-        <translation>Zeit unter Berücksichtigung der Sommerzeit</translation>
-    </message>
-    <message>
-        <source>Blood Pressure</source>
-        <translation>Blutdruck</translation>
-    </message>
-    <message>
-        <source>Basic Printing RefObject Service</source>
-        <translation>Druckfreigabe (Ref Objects Service)</translation>
-    </message>
-    <message>
-        <source>Audio/Video Control Transport Protocol</source>
-        <translation>Audio/Video Control Transport Protocol</translation>
-    </message>
-    <message>
-        <source>Pollen Concentration</source>
-        <translation>Pollenkonzentration</translation>
-    </message>
-    <message>
-        <source>Video Sink</source>
-        <translation>Videosenke</translation>
-    </message>
-    <message>
-        <source>Environmental Sensing Configuration</source>
-        <translation>Konfiguration der Umgebungssensoren</translation>
-    </message>
-    <message>
-        <source>Humidity</source>
-        <translation>Luftfeuchtigkeit</translation>
-    </message>
-    <message>
-        <source>User Data</source>
-        <translation>Nutzerdaten</translation>
-    </message>
-    <message>
-        <source>3D Synchronization Display</source>
-        <translation>Synchronisation eines 3D-Displays</translation>
-    </message>
-    <message>
-        <source>Hardcopy Cable Replacement Scan</source>
-        <translation>Hardcopy Cable Replacement (Scannen)</translation>
-    </message>
-    <message>
-        <source>Alert Category ID</source>
-        <translation>Kategorie-ID der Alarmbereitschaft</translation>
-    </message>
-    <message>
-        <source>Boot Keyboard Output Report</source>
-        <translation>Ausgabemeldung von Boot-Tastatur</translation>
-    </message>
-    <message>
-        <source>Barometric Pressure Trend</source>
-        <translation>Trend des barometrischen Drucks</translation>
-    </message>
-    <message>
-        <source>Cycling Speed and Cadence</source>
-        <translation>Trittfrequenz und Geschwindigkeit</translation>
-    </message>
-    <message>
-        <source>LN Feature</source>
-        <translation>LN-Funktion</translation>
-    </message>
-    <message>
-        <source>Invalid Bluetooth adapter address</source>
-        <translation>Ungültige Bluetooth-Geräteadresse</translation>
-    </message>
-    <message>
-        <source>Elevation</source>
-        <translation>Höhe relativ zum Meerespiegel</translation>
-    </message>
-    <message>
-        <source>Temperature</source>
-        <translation>Temperatur</translation>
-    </message>
-    <message>
-        <source>Device Information</source>
-        <translation>Geräteinformation</translation>
-    </message>
-    <message>
-        <source>Bluetooth Network Encapsulation Protocol</source>
-        <translation>Bluetooth Network Encapsulation Protocol</translation>
-    </message>
-    <message>
-        <source>Serial Number String</source>
-        <translation>Seriennummer als Zeichenkette</translation>
-    </message>
-    <message>
-        <source>RSC Feature</source>
-        <translation>RSC-Funktion</translation>
-    </message>
-    <message>
-        <source>CSC Feature</source>
-        <translation>CSC-Funktion</translation>
-    </message>
-    <message>
-        <source>Continuous Glucose Monitoring</source>
-        <translation>Ständige Blutzuckermessung</translation>
-    </message>
-    <message>
-        <source>Unable to perform SDP scan</source>
-        <translation>Es kann kein SDP-Scan durchgeführt werden</translation>
-    </message>
-    <message>
-        <source>Intermediate Cuff Pressure</source>
-        <translation>Zwischenzeitlicher Druck der Manschette</translation>
-    </message>
-    <message>
-        <source>Scan Refresh</source>
-        <translation>Scan erneut durchführen</translation>
-    </message>
-    <message>
-        <source>Location And Speed</source>
-        <translation>Ort und Geschwindigkeit</translation>
-    </message>
-    <message>
-        <source>True Wind Speed</source>
-        <translation>Wahre Windgeschwindigkeit</translation>
-    </message>
-    <message>
-        <source>True Wind Direction</source>
-        <translation>Wahre Windrichtung</translation>
-    </message>
-    <message>
-        <source>3D Synchronization Glasses</source>
-        <translation>Synchronisation einer 3D-Brille</translation>
-    </message>
-    <message>
-        <source>Intermediate Temperature</source>
-        <translation>Zwischenzeitliche Temperatur</translation>
-    </message>
-    <message>
-        <source>Reference Time Update Service</source>
-        <translation>Referenzzeit-Aktualisierungsdienst</translation>
-    </message>
-    <message>
-        <source>UdiCPlain</source>
-        <translation>UdiCPlain</translation>
-    </message>
-    <message>
-        <source>Unread Alert Status</source>
-        <translation>Status unbehandelter Alarmmeldungen</translation>
-    </message>
-    <message>
-        <source>Database Change Increment</source>
-        <translation>Database Change Increment</translation>
-    </message>
-    <message>
-        <source>GAP Appearance</source>
-        <translation>GAP-Erscheinung</translation>
-    </message>
-    <message>
-        <source>Measurement Interval</source>
-        <translation>Messintervall</translation>
-    </message>
-    <message>
-        <source>Body Composition</source>
-        <translation>Körperliche Verfassung</translation>
-    </message>
-    <message>
-        <source>Service Discovery Protocol</source>
-        <translation>Service Discovery Protocol</translation>
-    </message>
-    <message>
-        <source>Minimal service discovery failed</source>
-        <translation>Minimal Service Discovery fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>Object Exchange Protocol</source>
-        <translation>Object Exchange Protocol</translation>
-    </message>
-    <message>
-        <source>Glucose</source>
-        <translation>Blutzucker</translation>
-    </message>
-    <message>
-        <source>Supported New Alert Category</source>
-        <translation>Unterstützte neue Kategorie Alarmmeldungen</translation>
-    </message>
-    <message>
-        <source>Glucose Measurement Context</source>
-        <translation>Kontext der Blutzuckermessung</translation>
-    </message>
-    <message>
-        <source>Headset</source>
-        <translation>Kopfhörer</translation>
-    </message>
-    <message>
-        <source>Temperature Type</source>
-        <translation>Typ der Temperatur</translation>
-    </message>
-    <message>
-        <source>Hardcopy Control Channel</source>
-        <translation>Druckkontrollkanal</translation>
-    </message>
-    <message>
-        <source>Reference Time Information</source>
-        <translation>Referenzzeit-Information</translation>
-    </message>
-    <message>
-        <source>Video Distribution</source>
-        <translation>Videoverteilung</translation>
-    </message>
-    <message>
-        <source>Magnetic Declination</source>
-        <translation>Magnetische Deklination</translation>
-    </message>
-    <message>
-        <source>Phone Alert Status Service</source>
-        <translation>Telefon-Bereitschaftsdienst</translation>
-    </message>
-    <message>
-        <source>Health Thermometer</source>
-        <translation>Fieberthermometer</translation>
-    </message>
-    <message>
-        <source>Environmental Sensing</source>
-        <translation>Umweltsensorik</translation>
-    </message>
-    <message>
-        <source>Multi-Profile Specification (Profile)</source>
-        <translation>Multi-Profilspezifikation (Profil)</translation>
-    </message>
-    <message>
-        <source>Maximum Recommended Heart Rate</source>
-        <translation>Maximaler empfohlener Puls</translation>
-    </message>
-    <message>
-        <source>Cycling Power Vector</source>
-        <translation>Vektor der Trittleistung</translation>
-    </message>
-    <message>
-        <source>Global Navigation Satellite System</source>
-        <translation>Globales Satelliten-Navigationssystem</translation>
-    </message>
-    <message>
-        <source>Synchronization Command</source>
-        <translation>Synchronisations-Steuerbefehl</translation>
-    </message>
-    <message>
-        <source>Weight Measurement</source>
-        <translation>Gewichtsmessung</translation>
-    </message>
-    <message>
-        <source>Multi-Channel Adaptation Protocol - Data</source>
-        <translation>Multi-Channel Adaptation Protocol - Data</translation>
-    </message>
-    <message>
-        <source>Audio/Video Distribution Transport Protocol</source>
-        <translation>Audio/Video Distribution Transport Protocol</translation>
-    </message>
-    <message>
-        <source>Environmental Sensing Trigger Setting</source>
-        <translation>Einstellung der Trigger der Umgebungssensoren</translation>
-    </message>
-    <message>
-        <source>HID Information</source>
-        <translation>HID-Information</translation>
-    </message>
-    <message>
-        <source>Running Speed and Cadence</source>
-        <translation>Schrittfrequenz und Lauftempo</translation>
-    </message>
-    <message>
-        <source>Browse Group Descriptor</source>
-        <translation>Gruppenbeschreibung durchsuchen</translation>
-    </message>
-    <message>
-        <source>Navigation</source>
-        <translation>Navigation</translation>
-    </message>
-    <message>
-        <source>Apparent Wind Direction</source>
-        <translation>Scheinbare Windrichtung</translation>
-    </message>
-</context>
-<context>
-    <name>QBluetoothTransferReply</name>
-    <message>
-        <source>Push session cannot be started</source>
-        <translation>Push-Session konnte nicht gestartet werden</translation>
-    </message>
-    <message>
-        <source>Push session cannot connect</source>
-        <translation>Push-Session konnte keine Verbindung erhalten</translation>
-    </message>
-    <message>
-        <source>Push service not found</source>
-        <translation>Push Service konnte nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>Invalid target address</source>
-        <translation>Ungültige Zieladresse</translation>
-    </message>
-    <message>
-        <source>QIODevice cannot be read. Make sure it is open for reading.</source>
-        <translation>Es konnte nicht vom QIODevice gelesen werden. Stellen Sie sicher, dass es zum Lesen geöffnet ist.</translation>
-    </message>
-    <message>
-        <source>Source file does not exist</source>
-        <translation>Quelldatei existiert nicht</translation>
-    </message>
-    <message>
-        <source>Operation canceled</source>
-        <translation>Operation abgebrochen</translation>
-    </message>
-    <message>
-        <source>Transfer already started</source>
-        <translation>Ãœbertragung wurde bereits begonnen</translation>
-    </message>
-    <message>
-        <source>Invalid input device (null)</source>
-        <translation>Ungültiges Eingabegerät (null)</translation>
-    </message>
-    <message>
-        <source>Push session failed</source>
-        <translation>Push-Session fehlgeschlagen</translation>
-    </message>
-</context>
-<context>
-    <name>QBluetoothSocket</name>
-    <message>
-        <source>Cannot access address %1</source>
-        <translation>Fehler beim Zugriff auf %1</translation>
-    </message>
-    <message>
-        <source>Device is powered off</source>
-        <translation>Gerät ist ausgeschaltet</translation>
-    </message>
-    <message>
-        <source>Device does not support Bluetooth</source>
-        <translation>Das Gerät unterstützt kein Bluetooth</translation>
-    </message>
-    <message>
-        <source>Error during write on socket.</source>
-        <translation>Fehler beim Schreibzugriff auf den Socket aufgetreten.</translation>
-    </message>
-    <message>
-        <source>Unknown socket error</source>
-        <translation>Unbekannter Socket-Fehler</translation>
-    </message>
-    <message>
-        <source>Cannot write while not connected</source>
-        <translation>Schreibvorgang wegen fehlender Verbindung fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>Connecting to port is not supported</source>
-        <translation>Verbindungsaufbau mittels eines Ports wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Cannot set connection security level</source>
-        <translation>Die Sicherheitsstufe der Verbindung konnte nicht eingestellt werden</translation>
-    </message>
-    <message>
-        <source>Cannot connect to %1 on %2</source>
-        <translation>Fehler beim Verbindungsaufbau zu %1 (%2)</translation>
-    </message>
-    <message>
-        <source>Obtaining streams for service failed</source>
-        <translation>Öffnen der Eingabe- und Ausgabestreams des Dienstes fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>Input stream thread cannot be started</source>
-        <translation>Thread des Eingabestreams konnte nicht gestartet werden</translation>
-    </message>
-    <message>
-        <source>Network error during read</source>
-        <translation>Netzwerkfehler während des Lesevorgangs</translation>
-    </message>
-    <message>
-        <source>Network Error</source>
-        <translation>Netzwerkfehler</translation>
-    </message>
-    <message>
-        <source>Trying to connect while connection is in progress</source>
-        <translation>Versuch der Verbindungsaufnahme für bereits aktiven Socket</translation>
-    </message>
-    <message>
-        <source>Invalid data/data size</source>
-        <translation>Ungültige Daten/Datengröße</translation>
-    </message>
-    <message>
-        <source>Service cannot be found</source>
-        <translation>Dienst konnte nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>Cannot read while not connected</source>
-        <translation>Lesevorgang wegen fehlender Verbindung fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>Socket type not supported</source>
-        <translation>Sockettyp wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Connection to service failed</source>
-        <translation>Verbindungsaufbau zum Dienst fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>Network Error: %1</source>
-        <translation>Netzwerkfehler: %1</translation>
-    </message>
-</context>
-<context>
-    <name>QBluetoothDeviceDiscoveryAgent</name>
-    <message>
-        <source>Device is powered off</source>
-        <translation>Gerät ist ausgeschaltet</translation>
-    </message>
-    <message>
-        <source>Device does not support Bluetooth</source>
-        <translation>Das Gerät unterstützt kein Bluetooth</translation>
-    </message>
-    <message>
-        <source>Input Output Error</source>
-        <translation>Fehler bei Ein/Ausgabe</translation>
-    </message>
-    <message>
-        <source>Passed address is not a local device.</source>
-        <translation>Übergebene Adresse gehört zu keinem lokalen Gerät.</translation>
-    </message>
-    <message>
-        <source>One or more device discovery methods are not supported on this platform</source>
-        <translation>Eine oder mehrere Gerätesuchmethoden werden auf dieser Plattform nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Device discovery not supported on this platform</source>
-        <translation>Gerätesuchlauf wird auf dieser Plattform nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Bluetooth LE is not supported</source>
-        <translation>Bluetooth LE wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Classic Discovery cannot be started</source>
-        <translation>Standardsuche kann nicht gestartet werden</translation>
-    </message>
-    <message>
-        <source>Bluetooth adapter error</source>
-        <translation>Fehler im Bluetooth-Adapter</translation>
-    </message>
-    <message>
-        <source>Low Energy Discovery not supported</source>
-        <translation>Low Energy-Suche wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Missing Location permission. Search is not possible</source>
-        <translation>Die Berechtigung zur Positionsbestimmung fehlt. Es ist keine Suche möglich</translation>
-    </message>
-    <message>
-        <source>Unknown error</source>
-        <translation>Unbekannter Fehler</translation>
-    </message>
-    <message>
-        <source>Invalid Bluetooth adapter address</source>
-        <translation>Ungültige Bluetooth-Geräteadresse</translation>
-    </message>
-    <message>
-        <source>Cannot start device inquiry</source>
-        <translation>Gerätesuche konnte nicht gestartet werden</translation>
-    </message>
-    <message>
-        <source>Discovery cannot be stopped</source>
-        <translation>Suche kann nicht gestoppt werden</translation>
-    </message>
-    <message>
-        <source>Cannot find valid Bluetooth adapter.</source>
-        <translation>Es konnte kein gültiger Bluetooth-Adapter gefunden werden.</translation>
-    </message>
-    <message>
-        <source>Cannot start low energy device inquiry</source>
-        <translation>Kann keine Bluetooth LE-Suche starten</translation>
-    </message>
-    <message>
-        <source>Cannot access adapter during service discovery</source>
-        <translation>Währen des Gerätesuchlaufes kann nicht auf den Adapter zugegriffen werden</translation>
-    </message>
-</context>
-<context>
-    <name>QLowEnergyController</name>
-    <message>
-        <source>Remote device cannot be found</source>
-        <translation>Gegenseite konnte nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>Error occurred trying to connect to remote device.</source>
-        <translation>Beim Aufbau der Verbindung zum Gerät trat ein Fehler auf.</translation>
-    </message>
-    <message>
-        <source>Cannot find local adapter</source>
-        <translation>Es konnte kein lokaler Adapter gefunden werden</translation>
-    </message>
-    <message>
-        <source>Error occurred during connection I/O</source>
-        <translation>Fehler bei Ein/Ausgabe auf der Verbindung</translation>
-    </message>
-    <message>
-        <source>Error occurred trying to start advertising</source>
-        <translation>Bei der Ankündigung trat ein Fehler auf</translation>
-    </message>
-    <message>
-        <source>Unknown Error</source>
-        <translation>Unbekannter Fehler</translation>
-    </message>
-</context>
-<context>
-    <name>QBluetoothTransferReplyBluez</name>
-    <message>
-        <source>Operation canceled</source>
-        <translation>Operation abgebrochen</translation>
-    </message>
-    <message>
-        <source>Could not open file for sending</source>
-        <translation>Datei konnte nicht zum Senden geöffnet werden</translation>
-    </message>
-    <message>
-        <source>Unknown Error</source>
-        <translation>Unbekannter Fehler</translation>
-    </message>
-    <message>
-        <source>The transfer was canceled</source>
-        <translation>Die Ãœbertragung wurde abgebrochen</translation>
-    </message>
-</context>
-</TS>
diff --git a/translations/qtdeclarative_de.qm b/translations/qtdeclarative_de.qm
deleted file mode 100644
index 740536d812403b4c0eddb0f69cc0f75b67e7910b..0000000000000000000000000000000000000000
Binary files a/translations/qtdeclarative_de.qm and /dev/null differ
diff --git a/translations/qtdeclarative_de.ts b/translations/qtdeclarative_de.ts
deleted file mode 100755
index 9e9152327e593bf2f398344adef58d218f68fe53..0000000000000000000000000000000000000000
--- a/translations/qtdeclarative_de.ts
+++ /dev/null
@@ -1,1549 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<context>
-    <name>QQmlPropertyValidator</name>
-    <message>
-        <source>Attached properties cannot be used here</source>
-        <translation>An dieser Stelle können keine Eigenschaften des Typs &apos;attached&apos; verwendet werden</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: rect expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es werden Parameter für ein Rechteck erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid attached object assignment</source>
-        <translation>Ungültige Zuweisung des Bezugselements</translation>
-    </message>
-    <message>
-        <source>Invalid grouped property access</source>
-        <translation>Falscher Zugriff auf gruppierte Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: size expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Größenangabe erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: string expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Zeichenkette erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: 4D vector expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird ein vierdimensionaler Vektor erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: unknown enumeration</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Unbekannter Aufzählungswert</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: unsupported type &quot;%1&quot;</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Der Typ &quot;%1&quot; wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: datetime expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird ein Zeitstempel erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: 2D vector expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird ein zweidimensionaler Vektor erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: 3D vector expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird ein dreidimensionaler Vektor erwartet</translation>
-    </message>
-    <message>
-        <source>Cannot assign multiple values to a script property</source>
-        <translation>Eine Zuweisung mehrerer Werte an eine Skript-Eigenschaft ist nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: date expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Datumsangabe erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: time expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Zeitangabe erwartet</translation>
-    </message>
-    <message>
-        <source>Property assignment expected</source>
-        <translation>Zuweisung an Eigenschaft erwartet</translation>
-    </message>
-    <message>
-        <source>Cannot assign object to list property &quot;%1&quot;</source>
-        <translation>Der Listeneigenschaft &quot;%1&quot; kann kein Objekt zugewiesen werden</translation>
-    </message>
-    <message>
-        <source>&quot;%1&quot; cannot operate on &quot;%2&quot;</source>
-        <translation>&quot;%1&quot; kann nicht auf  &quot;%2&quot; angewandt werden</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: number or array of numbers expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Zahl oder ein Feld von Zahlen erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: bool or array of bools expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird boolescher Wert oder ein Feld boolescher Werten erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: quaternion expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Quaternion erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: color expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Farbspezifikation erwartet</translation>
-    </message>
-    <message>
-        <source>Cannot assign multiple values to a singular property</source>
-        <translation>Eine Zuweisung mehrerer Werte an eine einfache Eigenschaft ist nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: boolean expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird ein boolescher Wert erwartet</translation>
-    </message>
-    <message>
-        <source>Cannot assign to non-existent default property</source>
-        <translation>Es kann keine Zuweisung an eine nicht existierende Vorgabe-Eigenschaft erfolgen</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: point expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Koordinatenangabe für einen Punkt erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: unsigned int expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird ein vorzeichenloser Ganzzahlwert erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: byte array expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird ein Bytefeld erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: &quot;%1&quot; is a read-only property</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: &quot;%1&quot; ist schreibgeschützt</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: int or array of ints expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird ein Ganzahlwert oder ein Feld ganzer Zahlen erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: url or array of urls expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine URL oder ein Feld von URLs erwartet</translation>
-    </message>
-    <message>
-        <source>Cannot assign primitives to lists</source>
-        <translation>Zuweisung eines einfachen Werts (primitive) an eine Liste nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Cannot assign object to property</source>
-        <translation>Zuweisung eines Objekts an eine Eigenschaft nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Property has already been assigned a value</source>
-        <translation>Der Eigenschaft wurde bereits ein Wert zugewiesen</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: number expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Zahl erwartet</translation>
-    </message>
-    <message>
-        <source>Cannot assign a value directly to a grouped property</source>
-        <translation>Bei einer Eigenschaft, die Teil einer Gruppierung ist, ist eine direkte Wertzuweisung unzulässig</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: string or array of strings expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Zeichenkette oder ein Feld von Zeichenketten erwartet</translation>
-    </message>
-    <message>
-        <source>Unexpected object assignment</source>
-        <translation>Unerwartete Zuweisung des Objekts</translation>
-    </message>
-    <message>
-        <source>&quot;%1.%2&quot; is not available due to component versioning.</source>
-        <translation>&quot;%1.%2&quot; ist in dieser Version der Komponente nicht verfügbar.</translation>
-    </message>
-    <message>
-        <source>Cannot assign to non-existent property &quot;%1&quot;</source>
-        <translation>Es kann keine Zuweisung erfolgen, da keine Eigenschaft des Namens &quot;%1&quot; existiert</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: string or string list expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Zeichenkette oder eine Liste von Zeichenketten erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: regular expression expected; use /pattern/ syntax</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird ein regulärer Ausdruck erwartet; verwenden Sie die Schreibweise /Muster/</translation>
-    </message>
-    <message>
-        <source>&quot;%1.%2&quot; is not available in %3 %4.%5.</source>
-        <translation>&quot;%1.%2&quot; ist in %3 %4.%5 nicht verfügbar.</translation>
-    </message>
-    <message>
-        <source>Invalid use of namespace</source>
-        <translation>Ungültige Verwendung eines Namensraums</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: int expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird ein Ganzzahlwert erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: url expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine URL erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: script expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird ein Skript erwartet</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickAnchors</name>
-    <message>
-        <source>Cannot anchor item to self.</source>
-        <translation>Ein Element kann keinen Anker zu sich selbst haben.</translation>
-    </message>
-    <message>
-        <source>Possible anchor loop detected on horizontal anchor.</source>
-        <translation>Bei einem horizontalen Anker wurde eine potentielle Endlosschleife der Anker festgestellt.</translation>
-    </message>
-    <message>
-        <source>Cannot anchor to a null item.</source>
-        <translation>Es kann kein Anker zu einem Null-Element angegeben werden.</translation>
-    </message>
-    <message>
-        <source>Cannot specify left, right, and horizontalCenter anchors at the same time.</source>
-        <translation>Ankerangaben für links, rechts und horizontal können nicht zusammen festgelegt werden.</translation>
-    </message>
-    <message>
-        <source>Possible anchor loop detected on centerIn.</source>
-        <translation>Bei der Operation &apos;centerIn&apos; wurde eine potentielle Endlosschleife der Anker festgestellt.</translation>
-    </message>
-    <message>
-        <source>Baseline anchor cannot be used in conjunction with top, bottom, or verticalCenter anchors.</source>
-        <translation>Ein Baseline-Anker kann nicht zusammen mit oberen, unteren oder vertikal zentrierten Ankern verwendet werden.</translation>
-    </message>
-    <message>
-        <source>Cannot specify top, bottom, and verticalCenter anchors at the same time.</source>
-        <translation>Ankerangaben für oben, unten und vertikal können nicht zusammen festgelegt werden.</translation>
-    </message>
-    <message>
-        <source>Possible anchor loop detected on vertical anchor.</source>
-        <translation>Bei einem vertikalen Anker wurde eine potentielle Endlosschleife der Anker festgestellt.</translation>
-    </message>
-    <message>
-        <source>Cannot anchor a horizontal edge to a vertical edge.</source>
-        <translation>Eine horizontale Kante kann nicht mit einer vertikalen Kante verankert werden.</translation>
-    </message>
-    <message>
-        <source>Cannot anchor a vertical edge to a horizontal edge.</source>
-        <translation>Vertikale und horizontale Kanten können nicht mit Ankern verbunden werden.</translation>
-    </message>
-    <message>
-        <source>Cannot anchor to an item that isn&apos;t a parent or sibling.</source>
-        <translation>Das Ziel eines Anker muss ein Elternelement oder Element der gleichen Ebene sein.</translation>
-    </message>
-    <message>
-        <source>Possible anchor loop detected on fill.</source>
-        <translation>Bei der Fülloperation wurde eine potentielle Endlosschleife der Anker festgestellt.</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickLayoutMirroringAttached</name>
-    <message>
-        <source>LayoutMirroring is only available via attached properties</source>
-        <translation>LayoutMirroring ist nur in Verbindung mit Eigenschaften des Typs &quot;attached&quot; möglich</translation>
-    </message>
-    <message>
-        <source>LayoutDirection attached property only works with Items and Windows</source>
-        <translation>Die Eigenschaft LayoutDirection des Typs &apos;attached&apos; funktioniert nur mit Objekten des Typs Item oder Window</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlDelegateModelGroup</name>
-    <message>
-        <source>resolve: to index invalid</source>
-        <translation>resolve: Der Index &apos;to&apos; ist ungültig</translation>
-    </message>
-    <message>
-        <source>resolve: to index out of range</source>
-        <translation>resolve: Der Index &apos;to&apos; ist außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>create: index out of range</source>
-        <translation>create: Der Index ist außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>move: invalid to index</source>
-        <translation>move: ungültiger Index &apos;to&apos;</translation>
-    </message>
-    <message>
-        <source>move: invalid from index</source>
-        <translation>move: ungültiger Index &apos;from&apos;</translation>
-    </message>
-    <message>
-        <source>setGroups: index out of range</source>
-        <translation>setGroups: Der Index ist außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>move: to index out of range</source>
-        <translation>move: Der Index &apos;to&apos; ist außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>remove: index out of range</source>
-        <translation>remove: Der Index ist außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>move: from index out of range</source>
-        <translation>move: Der Index &apos;from&apos; ist außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>addGroups: invalid count</source>
-        <translation>addGroups: ungültige Anzahl</translation>
-    </message>
-    <message>
-        <source>Group names must start with a lower case letter</source>
-        <translation>Gruppennamen müssen mit einem Kleinbuchstaben beginnen</translation>
-    </message>
-    <message>
-        <source>removeGroups: invalid count</source>
-        <translation>removeGroups: ungültige Anzahl</translation>
-    </message>
-    <message>
-        <source>resolve: from is not an unresolved item</source>
-        <translation>resolve: Der Index &apos;from&apos; ist kein nicht aufgelöstes Element</translation>
-    </message>
-    <message>
-        <source>resolve: from index out of range</source>
-        <translation>resolve: Der Index &apos;from&apos; ist außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>setGroups: invalid count</source>
-        <translation>setGroups: ungültige Anzahl</translation>
-    </message>
-    <message>
-        <source>get: index out of range</source>
-        <translation>get: Der Index ist außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>move: invalid count</source>
-        <translation>move: ungültige Anzahl</translation>
-    </message>
-    <message>
-        <source>remove: invalid count</source>
-        <translation>remove: ungültige Anzahl</translation>
-    </message>
-    <message>
-        <source>remove: invalid index</source>
-        <translation>remove: ungültiger Index</translation>
-    </message>
-    <message>
-        <source>resolve: from index invalid</source>
-        <translation>resolve: Der Index &apos;from&apos; ist ungültig</translation>
-    </message>
-    <message>
-        <source>resolve: to is not a model item</source>
-        <translation>resolve: &apos;to&apos; ist kein Modellelement</translation>
-    </message>
-    <message>
-        <source>insert: index out of range</source>
-        <translation>insert: Der Index ist außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>removeGroups: index out of range</source>
-        <translation>removeGroups: Der Index ist außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>addGroups: index out of range</source>
-        <translation>addGroups: Der Index ist außerhalb des gültigen Bereichs</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlTypeLoader</name>
-    <message>
-        <source>%1 %2</source>
-        <translation>%1 %2</translation>
-    </message>
-    <message>
-        <source>Unreported error adding script import to import database</source>
-        <translation>Nicht gemeldeter Fehler beim Hinzufügen eines Skriptes zu einer Importdatenbank</translation>
-    </message>
-    <message>
-        <source>pragma Singleton used with a non composite singleton type %1</source>
-        <translation>pragma Singleton in Zusammenhang mit Nicht-Composite Singleton des Typs %1 verwendet</translation>
-    </message>
-    <message>
-        <source>Cannot update qmldir content for &apos;%1&apos;</source>
-        <translation>Der Inhalt von qmldir für &apos;%1&apos; kann nicht auf den aktuellen Stand gebracht werden</translation>
-    </message>
-    <message>
-        <source>No matching type found, pragma Singleton files cannot be used by QQmlComponent.</source>
-        <translation>Es konnte kein passender Typ gefunden werden; Dateien, die pragma Singleton enthalten, können von QQmlComponent nicht verwendet werden.</translation>
-    </message>
-    <message>
-        <source>module &quot;%1&quot; is not installed</source>
-        <translation>Modul &quot;%1&quot; ist nicht installiert</translation>
-    </message>
-    <message>
-        <source>Type %1 unavailable</source>
-        <translation>Der Typ %1 ist nicht verfügbar</translation>
-    </message>
-    <message>
-        <source>qmldir defines type as singleton, but no pragma Singleton found in type %1.</source>
-        <translation>qmldir definiert den Typ als Singleton, aber der Typ %1 enthält kein pragma Singleton.</translation>
-    </message>
-    <message>
-        <source>Namespace %1 cannot be used as a type</source>
-        <translation>Der Namensraum %1 kann nicht als Typangabe verwendet werden</translation>
-    </message>
-    <message>
-        <source>Script %1 unavailable</source>
-        <translation>Das Skript %1 ist nicht verfügbar</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickShaderEffectMesh</name>
-    <message>
-        <source>Cannot create instance of abstract class ShaderEffectMesh.</source>
-        <translation>Es kann keine Instanz der abstrakten Klasse ShaderEffectMesh erstellt werden.</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickWindow</name>
-    <message>
-        <source>Failed to create %1 context for format %2.
-This is most likely caused by not having the necessary graphics drivers installed.
-
-Install a driver providing OpenGL 2.0 or higher, or, if this is not possible, make sure the ANGLE Open GL ES 2.0 emulation libraries (%3, %4 and d3dcompiler_*.dll) are available in the application executable&apos;s directory or in a location listed in PATH.</source>
-        <translation>Es konnte kein %1-Kontext für das Format %2 erzeugt werden.
-Die wahrscheinliche Ursache ist, dass die erforderlichen Grafiktreiber nicht installiert sind.
-
-Installieren Sie einen Treiber, der OpenGL 2.0 oder neuer bereitstellt, oder stellen Sie sicher, dass die ANGLE-Open GL ES 2.0-Emulationsbibliotheken (%3, %4 und d3dcompiler_*.dll) im Verzeichnis der ausführbaren Datei der Anwendung oder im Pfad verfügbar sind.</translation>
-    </message>
-    <message>
-        <source>Failed to create %1 context for format %2</source>
-        <translation>Es konnte kein %1-Kontext für das Format %2 erzeugt werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlParser</name>
-    <message>
-        <source>Invalid signal parameter type: </source>
-        <translation>Ungültiger Typ des Signalparameters: </translation>
-    </message>
-    <message>
-        <source>Stray newline in string literal</source>
-        <translation>Freistehendes Zeilenendezeichen in Zeichenkettenliteral</translation>
-    </message>
-    <message>
-        <source>Invalid module URI</source>
-        <translation>Ungültiger Modul-URI</translation>
-    </message>
-    <message>
-        <source>Script import qualifiers must be unique.</source>
-        <translation>Der für den Skript-Import angegebene Qualifizierer muss eindeutig sein.</translation>
-    </message>
-    <message>
-        <source>Unterminated regular expression class</source>
-        <translation>Klasse im regulären Ausdruck nicht abgeschlossen</translation>
-    </message>
-    <message>
-        <source>Library import requires a version</source>
-        <translation>Der Import einer Bibliothek erfordert eine Versionsangabe</translation>
-    </message>
-    <message>
-        <source>Octal escape sequences are not allowed</source>
-        <translation>Oktale Escape-Sequenzen sind nicht zulässig</translation>
-    </message>
-    <message>
-        <source>At least one hexadecimal digit is required after &apos;0%1&apos;</source>
-        <translation>Nach &apos;0%1&apos; ist mindestens eine hexadezimale Stelle erforderlich</translation>
-    </message>
-    <message>
-        <source>Invalid regular expression flag &apos;%0&apos;</source>
-        <translation>Ungültiger Modifikator &apos;%0&apos; bei regulärem Ausdruck</translation>
-    </message>
-    <message>
-        <source>JavaScript declaration outside Script element</source>
-        <translation>Eine JavaScript-Deklaration ist außerhalb eines Skriptelementes nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Illegal hexadecimal escape sequence</source>
-        <translation>Ungültige hexadezimale Escape-Sequenz</translation>
-    </message>
-    <message>
-        <source>Module import requires a qualifier</source>
-        <translation>Modulimport erfordert die Angabe eines Qualifizierers</translation>
-    </message>
-    <message>
-        <source>Unclosed string at end of line</source>
-        <translation>Zeichenkette am Zeilenende nicht abgeschlossen</translation>
-    </message>
-    <message>
-        <source>Expected property type</source>
-        <translation>Typangabe für Eigenschaft erwartet</translation>
-    </message>
-    <message>
-        <source>Decimal numbers can&apos;t start with &apos;0&apos;</source>
-        <translation>Dezimalzahlen können nicht mit &apos;0&apos; beginnen</translation>
-    </message>
-    <message>
-        <source>Module import requires a version</source>
-        <translation>Der Import eines Moduls erfordert eine Versionsangabe</translation>
-    </message>
-    <message>
-        <source>Unterminated regular expression literal</source>
-        <translation>Regulärer Ausdruck nicht abgeschlossen</translation>
-    </message>
-    <message>
-        <source>Unterminated regular expression backslash sequence</source>
-        <translation>Backslash-Sequenz in regulärem Ausdruck nicht abgeschlossen</translation>
-    </message>
-    <message>
-        <source>File import requires a qualifier</source>
-        <translation>Dateiimport erfordert die Angabe eines Qualifizierers</translation>
-    </message>
-    <message>
-        <source>Script import requires a qualifier</source>
-        <translation>Der Skript-Import erfordert die Angabe eines Qualifizierers.</translation>
-    </message>
-    <message>
-        <source>Illegal syntax for exponential number</source>
-        <translation>Ungültige Syntax des Exponenten</translation>
-    </message>
-    <message>
-        <source>Imported file must be a script</source>
-        <translation>Eine importierte Datei muss ein Skript sein</translation>
-    </message>
-    <message>
-        <source>Pragma requires a valid qualifier</source>
-        <translation>Das Pragma erfordert einen gültigen Qualifizierer</translation>
-    </message>
-    <message>
-        <source>Invalid import qualifier</source>
-        <translation>Ungültiger Import-Qualifizierer</translation>
-    </message>
-    <message>
-        <source>Invalid property type modifier</source>
-        <translation>Ungültiger Modifikator für den Typ der Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Unexpected object definition</source>
-        <translation>Objektdefinition an dieser Stelle nicht erwartet</translation>
-    </message>
-    <message>
-        <source>Reserved name &quot;Qt&quot; cannot be used as an qualifier</source>
-        <translation>Der reservierte Name &quot;Qt&quot; kann nicht als Bezeichner verwendet werden</translation>
-    </message>
-    <message>
-        <source>Expected token `%1&apos;</source>
-        <translation>Es wird das Element &apos;%1&apos; erwartet</translation>
-    </message>
-    <message>
-        <source>Unexpected token `%1&apos;</source>
-        <translation>Unerwartetes Element &apos;%1&apos;</translation>
-    </message>
-    <message>
-        <source>Expected parameter type</source>
-        <translation>Es wird eine Typangabe für den Parameter erwartet</translation>
-    </message>
-    <message>
-        <source>Illegal unicode escape sequence</source>
-        <translation>Ungültige Unicode-Escape-Sequenz</translation>
-    </message>
-    <message>
-        <source>Unexpected property type modifier</source>
-        <translation>Modifikator für den Typ der Eigenschaft an dieser Stelle nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Invalid import qualifier ID</source>
-        <translation>Ungültige Id-Angabe bei Import</translation>
-    </message>
-    <message>
-        <source>Syntax error</source>
-        <translation>Syntaxfehler</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlComponent</name>
-    <message>
-        <source>createObject: value is not an object</source>
-        <translation>createObject: Der Wert ist kein Objekt</translation>
-    </message>
-    <message>
-        <source>Invalid empty URL</source>
-        <translation>Ungültige leere URL</translation>
-    </message>
-    <message>
-        <source>Object destroyed during incubation</source>
-        <translation>Ein Objekt wurde während der Inkubation zerstört</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlAnonymousComponentResolver</name>
-    <message>
-        <source>Component elements may not contain properties other than id</source>
-        <translation>Komponenten dürfen außer id keine weiteren Eigenschaften enthalten</translation>
-    </message>
-    <message>
-        <source>Cannot create empty component specification</source>
-        <translation>Es kann keine leere Komponentenangabe erzeugt werden</translation>
-    </message>
-    <message>
-        <source>Component objects cannot declare new functions.</source>
-        <translation>Komponentenobjekte können keine neuen Funktionen deklarieren.</translation>
-    </message>
-    <message>
-        <source>Component objects cannot declare new properties.</source>
-        <translation>Komponentenobjekte können keine neuen Eigenschaften deklarieren.</translation>
-    </message>
-    <message>
-        <source>id is not unique</source>
-        <translation>Id-Wert nicht eindeutig</translation>
-    </message>
-    <message>
-        <source>Invalid alias reference. Unable to find id &quot;%1&quot;</source>
-        <translation>Ungültige Referenzierung einer Alias-Eigenschaft. Der Id-Wert &quot;%1&quot; konnte nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>Invalid component body specification</source>
-        <translation>Ungültige Spezifikation des Komponentenkörpers</translation>
-    </message>
-    <message>
-        <source>Component objects cannot declare new signals.</source>
-        <translation>Komponentenobjekte können keine neuen Signale deklarieren.</translation>
-    </message>
-    <message>
-        <source>Invalid alias target location: %1</source>
-        <translation>Ungültige Zielangabe bei Alias-Eigenschaft: %1</translation>
-    </message>
-    <message>
-        <source>Circular alias reference detected</source>
-        <translation>Zirkuläre Referenzierung eines Alias festgestellt</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlListModel</name>
-    <message>
-        <source>set: value is not an object</source>
-        <translation>set: Der Wert ist kein Objekt</translation>
-    </message>
-    <message>
-        <source>remove: incorrect number of arguments</source>
-        <translation>remove: Ungültige Parameterzahl</translation>
-    </message>
-    <message>
-        <source>remove: indices [%1 - %2] out of range [0 - %3]</source>
-        <translation>remove: Die Indizes [%1 - %2] sind außerhalb des Bereichs [0 - %3]</translation>
-    </message>
-    <message>
-        <source>dynamic role setting must be made from the main thread, before any worker scripts are created</source>
-        <translation>Einstellung bezüglich dynamischer Rollen muss aus dem Haupt-Thread vorgenommen werden, bevor Arbeitsskripte erstellt werden</translation>
-    </message>
-    <message>
-        <source>ListElement: cannot use script for property value</source>
-        <translation>ListElement: Es kann kein Skript für den Wert der Eigenschaft verwendet werden</translation>
-    </message>
-    <message>
-        <source>ListModel: undefined property &apos;%1&apos;</source>
-        <translation>ListModel: Die Eigenschaft &apos;%1&apos; ist nicht definiert</translation>
-    </message>
-    <message>
-        <source>ListElement: cannot contain nested elements</source>
-        <translation>ListElement kann keine geschachtelten Elemente enthalten</translation>
-    </message>
-    <message>
-        <source>insert: value is not an object</source>
-        <translation>insert: Der Wert ist kein Objekt</translation>
-    </message>
-    <message>
-        <source>unable to enable dynamic roles as this model is not empty!</source>
-        <translation>Dynamische Rollen können nicht aktiviert werden, da das Modell nicht leer ist!</translation>
-    </message>
-    <message>
-        <source>set: index %1 out of range</source>
-        <translation>set: Der Index %1 ist außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>append: value is not an object</source>
-        <translation>append: Der Wert ist kein Objekt</translation>
-    </message>
-    <message>
-        <source>move: out of range</source>
-        <translation>move: Außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>insert: index %1 out of range</source>
-        <translation>insert: Der Index %1 ist außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>ListElement: cannot use reserved &quot;id&quot; property</source>
-        <translation>ListElement: Die spezielle &quot;id&quot;-Eigenschaft kann nicht verwendet werden</translation>
-    </message>
-    <message>
-        <source>unable to enable static roles as this model is not empty!</source>
-        <translation>Statische Rollen können nicht aktiviert werden, da das Modell nicht leer ist!</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlPropertyCacheCreatorBase</name>
-    <message>
-        <source>Invalid property type</source>
-        <translation>Ungültiger Typ der Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Cannot override FINAL property</source>
-        <translation>Eine als FINAL ausgewiesene Eigenschaft kann nicht überschrieben werden</translation>
-    </message>
-    <message>
-        <source>Fully Dynamic types cannot declare new functions.</source>
-        <translation>Vollständig dynamische Typen können keine neuen Funktionen deklarieren.</translation>
-    </message>
-    <message>
-        <source>Non-existent attached object</source>
-        <translation>Das Objekt des Typs &apos;attached&apos; existiert nicht</translation>
-    </message>
-    <message>
-        <source>Fully dynamic types cannot declare new signals.</source>
-        <translation>Vollständig dynamische Typen können keine neuen Signale deklarieren.</translation>
-    </message>
-    <message>
-        <source>Duplicate method name: invalid override of property change signal or superclass signal</source>
-        <translation>Bereits vorhandener Methodenname: Das Überschreiben eines Signals einer Eigenschaftsänderung oder der Basisklasse ist nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Invalid signal parameter type: %1</source>
-        <translation>Der Signalparameter hat einen ungültigen Typ: %1</translation>
-    </message>
-    <message>
-        <source>Fully dynamic types cannot declare new properties.</source>
-        <translation>Vollständig dynamische Typen können keine neuen Eigenschaften deklarieren.</translation>
-    </message>
-    <message>
-        <source>Duplicate signal name: invalid override of property change signal or superclass signal</source>
-        <translation>Bereits vorhandener Signalname: Das Überschreiben eines Signals einer Eigenschaftsänderung oder der Basisklasse ist nicht zulässig</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlEngine</name>
-    <message>
-        <source>Version mismatch: expected %1, found %2</source>
-        <translation>Die Version %2 kann nicht verwendet werden; es wird %1 benötigt</translation>
-    </message>
-    <message>
-        <source>Locale cannot be instantiated.  Use Qt.locale()</source>
-        <translation>Locale kann nicht instanziiert werden. Verwenden Sie Qt.locale()</translation>
-    </message>
-    <message>
-        <source>SQL: can&apos;t create database, offline storage is disabled.</source>
-        <translation>SQL: Es kann keine Datenbank erstellt werden, offline storage ist deaktiviert.</translation>
-    </message>
-    <message>
-        <source>executeSql called outside transaction()</source>
-        <translation>&apos;executeSql&apos; wurde außerhalb von &apos;transaction()&apos; aufgerufen</translation>
-    </message>
-    <message>
-        <source>Read-only Transaction</source>
-        <translation>Schreibgeschützte Transaktion</translation>
-    </message>
-    <message>
-        <source>SQL transaction failed</source>
-        <translation>Die SQL-Transaktion ist fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>transaction: missing callback</source>
-        <translation>callback fehlt bei Transaktion</translation>
-    </message>
-    <message>
-        <source>There are still &quot;%1&quot; items in the process of being created at engine destruction.</source>
-        <translation>Bei der Zerstörung des Engines sind noch &quot;%1&quot; Elemente in der Erstellung.</translation>
-    </message>
-    <message>
-        <source>SQL: database version mismatch</source>
-        <translation>SQL: Die Version der Datenbank entspricht nicht der erwarteten Version</translation>
-    </message>
-</context>
-<context>
-    <name>SignalHandlerConverter</name>
-    <message>
-        <source>Cannot assign a value to a signal (expecting a script to be run)</source>
-        <translation>Einem Signal können keine Werte zugewiesen werden (es wird ein ausführbares Skript erwartet)</translation>
-    </message>
-    <message>
-        <source>Signal uses unnamed parameter followed by named parameter.</source>
-        <translation>Das Signal verwendet einen unbenannten Parameter, auf den ein benannter Parameter folgt.</translation>
-    </message>
-    <message>
-        <source>Incorrectly specified signal assignment</source>
-        <translation>Angegebene Signalzuweisung ist nicht korrekt</translation>
-    </message>
-    <message>
-        <source>Non-existent attached object</source>
-        <translation>Das als &quot;attached&quot; angegebene Objekt existiert nicht</translation>
-    </message>
-    <message>
-        <source>Signal parameter &quot;%1&quot; hides global variable.</source>
-        <translation>Der Signalparameter &quot;%1&quot; überdeckt eine globale Variable.</translation>
-    </message>
-    <message>
-        <source>&quot;%1.%2&quot; is not available due to component versioning.</source>
-        <translation>&quot;%1.%2&quot; ist wegen der Versionierung der Komponente nicht verfügbar.</translation>
-    </message>
-    <message>
-        <source>&quot;%1.%2&quot; is not available in %3 %4.%5.</source>
-        <translation>&quot;%1.%2&quot; ist in %3 %4.%5 nicht verfügbar.</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlImportDatabase</name>
-    <message>
-        <source>is ambiguous. Found in %1 and in %2</source>
-        <translation>ist mehrdeutig. Es kommt in %1 und in %2 vor</translation>
-    </message>
-    <message>
-        <source>Namespace &apos;%1&apos; has already been used for type registration</source>
-        <translation>Der Namensraum &apos;%1&apos; wurde bereits zur Typregistrierung verwendet</translation>
-    </message>
-    <message>
-        <source>Module &apos;%1&apos; does not contain a module identifier directive - it cannot be protected from external registrations.</source>
-        <translation>Der Modul &apos;%1&apos; enthält keine Modulbezeichner-Direktive - er kann nicht vor externen Registrierungen geschützt werden.</translation>
-    </message>
-    <message>
-        <source>local directory</source>
-        <translation>Lokales Verzeichnis</translation>
-    </message>
-    <message>
-        <source>import &quot;%1&quot; has no qmldir and no namespace</source>
-        <translation>&quot;qmldir&quot; und Namensraum fehlen bei dem Import &quot;%1&quot;</translation>
-    </message>
-    <message>
-        <source>- %1 is not a namespace</source>
-        <translation>- %1 ist kein gültiger Namensraum</translation>
-    </message>
-    <message>
-        <source>&quot;%1&quot; is ambiguous. Found in %2 and in %3</source>
-        <translation>&quot;%1&quot; ist nicht eindeutig. Es kommt in %2 und %3 vor</translation>
-    </message>
-    <message>
-        <source>library loading is disabled</source>
-        <translation>das Laden von Bibliotheken ist deaktiviert</translation>
-    </message>
-    <message>
-        <source>&quot;%1&quot; version %2.%3 is defined more than once in module &quot;%4&quot;</source>
-        <translation>&quot;%1&quot; Version %2.%3 ist im Modul &quot;%4&quot; mehrfach definiert</translation>
-    </message>
-    <message>
-        <source>module &quot;%1&quot; plugin &quot;%2&quot; not found</source>
-        <translation>Modul &quot;%1&quot; Plugin &quot;%2&quot; konnte nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>is not a type</source>
-        <translation>ist kein Typ</translation>
-    </message>
-    <message>
-        <source>module &quot;%1&quot; is not installed</source>
-        <translation>Modul &quot;%1&quot; ist nicht installiert</translation>
-    </message>
-    <message>
-        <source>static plugin for module &quot;%1&quot; with name &quot;%2&quot; has no metadata URI</source>
-        <translation>Das statische Plugin des Moduls &quot;%1&quot; mit dem Namen &quot;%2&quot; hat keinen Metadaten-URI</translation>
-    </message>
-    <message>
-        <source>static plugin for module &quot;%1&quot; with name &quot;%2&quot; cannot be loaded: %3</source>
-        <translation>Das statische Plugin des Moduls &quot;%1&quot; mit dem Namen &quot;%2&quot; kann nicht geladen werden: %3</translation>
-    </message>
-    <message>
-        <source>module &quot;%1&quot; version %2.%3 is not installed</source>
-        <translation>Modul &quot;%1&quot; Version %2.%3 ist nicht installiert</translation>
-    </message>
-    <message>
-        <source>File name case mismatch for &quot;%1&quot;</source>
-        <translation>Die Groß/Kleinschreibung des Dateinamens &quot;%1&quot; stimmt nicht überein</translation>
-    </message>
-    <message>
-        <source>Module loaded for URI &apos;%1&apos; does not implement QQmlTypesExtensionInterface</source>
-        <translation>Das für den URI &apos;%1&apos; geladene Modul implementiert nicht QQmlTypesExtensionInterface</translation>
-    </message>
-    <message>
-        <source>- nested namespaces not allowed</source>
-        <translation>- geschachtelte Namensräume sind nicht zulässig</translation>
-    </message>
-    <message>
-        <source>plugin cannot be loaded for module &quot;%1&quot;: %2</source>
-        <translation>Das Plugin des Moduls &quot;%1&quot; kann nicht geladen werden: %2</translation>
-    </message>
-    <message>
-        <source>module does not support the designer &quot;%1&quot;</source>
-        <translation>Das Modul unterstützt den Designer &quot;%1&quot; nicht</translation>
-    </message>
-    <message>
-        <source>is instantiated recursively</source>
-        <translation>wird rekursiv instanziiert</translation>
-    </message>
-    <message>
-        <source>Module namespace &apos;%1&apos; does not match import URI &apos;%2&apos;</source>
-        <translation>Der Modul-Namensraum &apos;%1&apos; entspricht nicht dem Import-URI &apos;%2&apos;</translation>
-    </message>
-    <message>
-        <source>is ambiguous. Found in %1 in version %2.%3 and %4.%5</source>
-        <translation>ist mehrdeutig. Es kommt in %1 in den Versionen %2.%3 und %4.%5 vor</translation>
-    </message>
-    <message>
-        <source>&quot;%1&quot;: no such directory</source>
-        <translation>Das Verzeichnis &quot;%1&quot; existiert nicht</translation>
-    </message>
-    <message>
-        <source>could not resolve all plugins for module &quot;%1&quot;</source>
-        <translation>Es konnten nicht alle Plugins für das Modul &quot;%1&quot; aufgelöst werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlDebugServerImpl</name>
-    <message>
-        <source>&quot;host:&quot; and &quot;port:&quot; can be used to specify an address and a single port or a range of ports the debugger will try to bind to with a QTcpServer.</source>
-        <translation>&quot;host:&quot; und &quot;port:&quot; geben eine Adresse beziehungsweise einen Port oder einen Bereich von Ports an, auf denen der Debugger mittels eines QTcpServer versuchen wird, zu lauschen.</translation>
-    </message>
-    <message>
-        <source>QML Debugger: Invalid argument &quot;%1&quot; detected. Ignoring the same.</source>
-        <translation>QML Debugger: Ungültiges Argument &quot;%1&quot;. Es hat keinerlei Auswirkung.</translation>
-    </message>
-    <message>
-        <source>&quot;services:&quot; can be used to specify which debug services the debugger should load. Some debug services interact badly with others. The V4 debugger should not be loaded when using the QML profiler as it will force any V4 engines to use the JavaScript interpreter rather than the JIT. The following debug services are available by default:</source>
-        <translation>&quot;services:&quot; gibt an, welche Debug-Dienste der Debugger laden soll. Einige Debug-Dienste können sich gegenseitig behindern. Der V4-Debugger sollte nicht geladen werden, wenn der QML-Profiler benutzt wird, da er bewirkt, dass die V4-Engines den JavaScript-Interpreter an Stelle von JIT benutzen. Folgende Debug-Dienste stehen zur Verfügung:</translation>
-    </message>
-    <message>
-        <source>Sends qDebug() and similar messages over the QML debug
-		  connection. QtCreator uses this for showing debug
-		  messages in the debugger console.</source>
-        <translation>Sendet qDebug() und ähnliche Nachrichten über die
-		  QML-Debug-Verbindung. Qt Creator benutzt dies,
-		  um Debug-Nachrichten in der Debugger-Konsole
-		  anzuzeigen.</translation>
-    </message>
-    <message>
-        <source>Other services offered by qmltooling plugins that implement QQmlDebugServiceFactory and which can be found in the standard plugin paths will also be available and can be specified. If no &quot;services&quot; argument is given, all services found this way, including the default ones, are loaded.</source>
-        <translation>Es können auch andere Dienste angegeben werden, die von qmltooling-Plugins bereitgestellt werden, die QQmlDebugServiceFactory implementieren und in den Standard-Plugin-Pfaden gefunden werden können. Wenn kein &quot;services&quot;-Argument angegeben wurde, werden alle auf diesem Wege gefundenen Dienste einschließlich der Standarddienste geladen.</translation>
-    </message>
-    <message>
-        <source>&quot;file:&quot; can be used to specify the name of a file the debugger will try to connect to using a QLocalSocket. If &quot;file:&quot; is given any &quot;host:&quot; and&quot;port:&quot; arguments will be ignored.</source>
-        <translation>&quot;file:&quot; gibt einen Dateinamen an, auf den sich der Debugger mittels eines QLocalSocket verbinden wird. Wenn &quot;file:&quot; angegeben wird, haben die Argumente &quot;host:&quot; oder &quot;port:&quot; keinerlei Auswirkung.</translation>
-    </message>
-    <message>
-        <source>QML Debugger: Ignoring &quot;-qmljsdebugger=%1&quot;.</source>
-        <translation>QML Debugger: &quot;-qmljsdebugger=%1&quot; hat keinerlei Auswirkung.</translation>
-    </message>
-    <message>
-        <source>The QML inspector</source>
-        <translation>Der QML-Inspector</translation>
-    </message>
-    <message>
-        <source>Allows the client to delay the starting and stopping of
-		  QML engines until other services are ready. QtCreator
-		  uses this service with the QML profiler in order to
-		  profile multiple QML engines at the same time.</source>
-        <translation>Ermöglicht dem Klienten das Starten und Anhalten von
-		  QML-Engines zu verzögern, bis andere Dienste Bereitschaft
-		  signalisieren. Qt Creator benutzt diesen Dienst mit dem
-		  QML-Profiler, um mehrere QML-Engines gleichzeitig zu
-		  analysieren.</translation>
-    </message>
-    <message>
-        <source>The V4 debugger</source>
-        <translation>Der V4-Debugger</translation>
-    </message>
-    <message>
-        <source>The format is &quot;-qmljsdebugger=[file:&lt;file&gt;|port:&lt;port_from&gt;][,&lt;port_to&gt;][,host:&lt;ip address&gt;][,block][,services:&lt;service&gt;][,&lt;service&gt;]*&quot;</source>
-        <translation>Das Format ist &quot;-qmljsdebugger=[file:&lt;file&gt;|port:&lt;port_from&gt;][,&lt;port_to&gt;][,host:&lt;ip address&gt;][,block][,services:&lt;service&gt;][,&lt;service&gt;]*&quot;</translation>
-    </message>
-    <message>
-        <source>The QML profiler</source>
-        <translation>Der QML-Profiler</translation>
-    </message>
-    <message>
-        <source>&quot;block&quot; makes the debugger and some services wait for clients to be connected and ready before the first QML engine starts.</source>
-        <translation>&quot;block&quot; bewirkt, dass der Debugger und einige Dienste warten, bis sich Clients verbinden und Bereitschaft signalisieren, bevor die erste QML-Engine startet.</translation>
-    </message>
-    <message>
-        <source>The QML debugger</source>
-        <translation>Der QML-Debugger</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickPixmap</name>
-    <message>
-        <source>Failed to get texture from provider: %1</source>
-        <translation>Es konnte keine Textur vom Provider %1 erhalten werden</translation>
-    </message>
-    <message>
-        <source>Error decoding: %1: %2</source>
-        <translation>Fehler beim Dekodieren: %1: %2</translation>
-    </message>
-    <message>
-        <source>Cannot open: %1</source>
-        <translation>Fehlschlag beim Öffnen: %1</translation>
-    </message>
-    <message>
-        <source>Failed to get image from provider: %1</source>
-        <translation>Bilddaten konnten nicht erhalten werden: %1</translation>
-    </message>
-    <message>
-        <source>Invalid image provider: %1</source>
-        <translation>Ungültige Bildquelle: %1</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlObjectModel</name>
-    <message>
-        <source>remove: indices [%1 - %2] out of range [0 - %3]</source>
-        <translation>remove: Die Indizes [%1 - %2] sind außerhalb des Bereichs [0 - %3]</translation>
-    </message>
-    <message>
-        <source>move: out of range</source>
-        <translation>move: Außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>insert: index %1 out of range</source>
-        <translation>insert: Der Index %1 ist außerhalb des gültigen Bereichs</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickXmlRoleList</name>
-    <message>
-        <source>An XmlListModel query must start with &apos;/&apos; or &quot;//&quot;</source>
-        <translation>Eine XmlListModel-Abfrage muss mit &apos;/&apos; oder &quot;//&quot; beginnen</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickAbstractAnimation</name>
-    <message>
-        <source>Animator is an abstract class</source>
-        <translation>Die Klasse Animator ist abstrakt</translation>
-    </message>
-    <message>
-        <source>Animation is an abstract class</source>
-        <translation>Die Klasse Animation ist abstrakt</translation>
-    </message>
-    <message>
-        <source>Cannot animate non-existent property &quot;%1&quot;</source>
-        <translation>Die Eigenschaft &quot;%1&quot; existiert nicht und kann daher nicht animiert werden</translation>
-    </message>
-    <message>
-        <source>Cannot animate read-only property &quot;%1&quot;</source>
-        <translation>Die Eigenschaft &quot;%1&quot; ist schreibgeschützt und kann daher nicht animiert werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlPartsModel</name>
-    <message>
-        <source>Delegate component must be Package type.</source>
-        <translation>Delegate-Komponente muss vom Typ &apos;Package&apos; sein.</translation>
-    </message>
-    <message>
-        <source>The group of a DelegateModel cannot be changed within onChanged</source>
-        <translation>Die Gruppe eines DelegateModel kann nicht in onChanged geändert werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlCodeGenerator</name>
-    <message>
-        <source>Invalid use of id property</source>
-        <translation>Ungültige Verwendung der Eigenschaft &apos;id&apos;</translation>
-    </message>
-    <message>
-        <source>IDs cannot start with an uppercase letter</source>
-        <translation>Id-Werte dürfen nicht mit einem Großbuchstaben beginnen</translation>
-    </message>
-    <message>
-        <source>Invalid alias reference. An alias reference must be specified as &lt;id&gt;, &lt;id&gt;.&lt;property&gt; or &lt;id&gt;.&lt;value property&gt;.&lt;property&gt;</source>
-        <translation>Ungültige Alias-Referenz. Eine Alias-Referenz muss in der Form &lt;id&gt;, &lt;id&gt;.&lt;property&gt; oder &lt;id&gt;.&lt;value property&gt;.&lt;property&gt; angegeben werden</translation>
-    </message>
-    <message>
-        <source>Expected type name</source>
-        <translation>Es wird ein Typname erwartet</translation>
-    </message>
-    <message>
-        <source>Property value set multiple times</source>
-        <translation>Mehrfache Zuweisung eines Wertes an eine Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Illegal signal name</source>
-        <translation>Ungültiger Name für Signal</translation>
-    </message>
-    <message>
-        <source>No property alias location</source>
-        <translation>Alias-Eigenschaft ohne Quellangabe</translation>
-    </message>
-    <message>
-        <source>IDs must start with a letter or underscore</source>
-        <translation>Id-Werte müssen mit einem Buchstaben oder Unterstrich beginnen</translation>
-    </message>
-    <message>
-        <source>Invalid empty ID</source>
-        <translation>Ungültiger (leerer) Id-Wert</translation>
-    </message>
-    <message>
-        <source>ID illegally masks global JavaScript property</source>
-        <translation>Der Id-Wert überdeckt eine globale Eigenschaft aus JavaScript</translation>
-    </message>
-    <message>
-        <source>IDs must contain only letters, numbers, and underscores</source>
-        <translation>Id-Werte dürfen nur Ziffern, Buchstaben oder Unterstriche enthalten</translation>
-    </message>
-    <message>
-        <source>Invalid component id specification</source>
-        <translation>Id-Wert der Komponente ungültig</translation>
-    </message>
-    <message>
-        <source>Illegal property name</source>
-        <translation>Ungültiger Name der Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Invalid alias location</source>
-        <translation>Ungültige Quellangabe bei Alias-Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Signal names cannot begin with an upper case letter</source>
-        <translation>Signalnamen dürfen nicht mit einem Großbuchstaben beginnen</translation>
-    </message>
-</context>
-<context>
-    <name>Object</name>
-    <message>
-        <source>Method names cannot begin with an upper case letter</source>
-        <translation>Methodennamen dürfen nicht mit einem Großbuchstaben beginnen</translation>
-    </message>
-    <message>
-        <source>Duplicate property name</source>
-        <translation>Mehrfaches Auftreten eines Eigenschaftsnamens</translation>
-    </message>
-    <message>
-        <source>Duplicate method name</source>
-        <translation>Mehrfaches Auftreten eines Methodennamens</translation>
-    </message>
-    <message>
-        <source>Duplicate default property</source>
-        <translation>Mehrfaches Auftreten der Vorgabe-Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Duplicate signal name</source>
-        <translation>Mehrfaches Auftreten eines Signalnamens</translation>
-    </message>
-    <message>
-        <source>Property names cannot begin with an upper case letter</source>
-        <translation>Eigenschaftsnamen dürfen nicht mit einem Großbuchstaben beginnen</translation>
-    </message>
-    <message>
-        <source>Property value set multiple times</source>
-        <translation>Mehrfache Zuweisung eines Wertes an eine Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Illegal method name</source>
-        <translation>Ungültiger Methodenname</translation>
-    </message>
-    <message>
-        <source>Alias names cannot begin with an upper case letter</source>
-        <translation>Aliasnamen dürfen nicht mit einem Großbuchstaben beginnen</translation>
-    </message>
-    <message>
-        <source>Duplicate alias name</source>
-        <translation>Mehrfaches Auftreten eines Aliasnamens</translation>
-    </message>
-</context>
-<context>
-    <name>SignalTransition</name>
-    <message>
-        <source>Specified signal does not exist.</source>
-        <translation>Das angegebene Signal existiert nicht.</translation>
-    </message>
-    <message>
-        <source>SignalTransition: script expected</source>
-        <translation>SignalTransition: Skript erwartet</translation>
-    </message>
-    <message>
-        <source>Cannot assign to non-existent property &quot;%1&quot;</source>
-        <translation>Es kann keine Zuweisung erfolgen, da keine Eigenschaft des Namens &quot;%1&quot; existiert</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlObjectCreator</name>
-    <message>
-        <source>Cannot assign object type %1 with no default method</source>
-        <translation>Der Objekttyp %1 kann nicht zugewiesen werden, da keine Vorgabe-Methode existiert</translation>
-    </message>
-    <message>
-        <source>Cannot connect mismatched signal/slot %1 %vs. %2</source>
-        <translation>Es kann keine Verbindung zwischen dem Signal %1 und dem Slot %2 hergestellt werden, da sie nicht zusammenpassen</translation>
-    </message>
-    <message>
-        <source>Cannot assign value %1 to property %2</source>
-        <translation>Der Wert %1 kann der Eigenschaft %2 nicht zugewiesen werden</translation>
-    </message>
-    <message>
-        <source>Cannot set properties on %1 as it is null</source>
-        <translation>Es können keine Eigenschaften auf %1 gesetzt werden, da es &apos;null&apos; ist</translation>
-    </message>
-    <message>
-        <source>Cannot assign an object to signal property %1</source>
-        <translation>Der Signal-Eigenschaft %1 kann kein Objekt zugewiesen werden</translation>
-    </message>
-    <message>
-        <source>Composite Singleton Type %1 is not creatable</source>
-        <translation>Das Composite Singleton des Typs %1 ist nicht erzeugbar</translation>
-    </message>
-    <message>
-        <source>Cannot assign object to read only list</source>
-        <translation>Zuweisung eines Objekts an eine schreibgeschützte Liste nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Cannot assign primitives to lists</source>
-        <translation>Zuweisung eines einfachen Werts (primitive) an eine Liste nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Unable to create object of type %1</source>
-        <translation>Es konnte kein Objekt des Typs %1 erzeugt werden</translation>
-    </message>
-    <message>
-        <source>Cannot assign object to interface property</source>
-        <translation>Der Eigenschaft der Schnittstelle kann kein Objekt zugewiesen werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlRewrite</name>
-    <message>
-        <source>Signal uses unnamed parameter followed by named parameter.</source>
-        <translation>Das Signal verwendet einen namenlosen Parameter gefolgt von einem Parameter mit Namen</translation>
-    </message>
-    <message>
-        <source>Signal parameter &quot;%1&quot; hides global variable.</source>
-        <translation>Der Signalparameter &quot;%1&quot; überdeckt eine globale Variable.</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickPropertyChanges</name>
-    <message>
-        <source>Cannot assign to read-only property &quot;%1&quot;</source>
-        <translation>Die Eigenschaft &quot;%1&quot; ist schreibgeschützt und kann daher nicht zugewiesen werden</translation>
-    </message>
-    <message>
-        <source>PropertyChanges does not support creating state-specific objects.</source>
-        <translation>Die Erzeugung von Objekten, die einem Zustand zugeordnet sind, wird von PropertyChanges nicht unterstützt.</translation>
-    </message>
-    <message>
-        <source>Cannot assign to non-existent property &quot;%1&quot;</source>
-        <translation>Es kann keine Zuweisung erfolgen, da keine Eigenschaft des Namens &apos;%1&quot; existiert</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickItemView</name>
-    <message>
-        <source>Delegate must be of Item type</source>
-        <translation>Delegate-Komponente muss vom Typ &apos;Item&apos; sein</translation>
-    </message>
-    <message>
-        <source>ItemView is an abstract base class</source>
-        <translation>ItemView ist eine abstrakte Basisklasse</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickPathView</name>
-    <message>
-        <source>Delegate must be of Item type</source>
-        <translation>Delegate-Komponente muss vom Typ &apos;Item&apos; sein</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickRepeater</name>
-    <message>
-        <source>Delegate must be of Item type</source>
-        <translation>Delegate-Komponente muss vom Typ &apos;Item&apos; sein</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickFlipable</name>
-    <message>
-        <source>front is a write-once property</source>
-        <translation>&apos;front&apos; kann nur einmal zugewiesen werden</translation>
-    </message>
-    <message>
-        <source>back is a write-once property</source>
-        <translation>&apos;back&apos; kann nur einmal zugewiesen werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickParentAnimation</name>
-    <message>
-        <source>Unable to preserve appearance under non-uniform scale</source>
-        <translation>Das Erscheinungsbild kann bei einer nicht-uniformen Skalierung nicht beibehalten werden</translation>
-    </message>
-    <message>
-        <source>Unable to preserve appearance under complex transform</source>
-        <translation>Das Erscheinungsbild kann bei einer komplexen Transformation nicht beibehalten werden</translation>
-    </message>
-    <message>
-        <source>Unable to preserve appearance under scale of 0</source>
-        <translation>Das Erscheinungsbild kann bei einer Skalierung mit 0 nicht beibehalten werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickParentChange</name>
-    <message>
-        <source>Unable to preserve appearance under non-uniform scale</source>
-        <translation>Das Erscheinungsbild kann bei einer nicht-uniformen Skalierung nicht beibehalten werden</translation>
-    </message>
-    <message>
-        <source>Unable to preserve appearance under complex transform</source>
-        <translation>Das Erscheinungsbild kann bei einer komplexen Transformation nicht beibehalten werden</translation>
-    </message>
-    <message>
-        <source>Unable to preserve appearance under scale of 0</source>
-        <translation>Das Erscheinungsbild kann bei einer Skalierung mit 0 nicht beibehalten werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlTypeData</name>
-    <message>
-        <source>Element is not creatable.</source>
-        <translation>Das Element kann nicht erzeugt werden.</translation>
-    </message>
-    <message>
-        <source>Composite Singleton Type %1 is not creatable.</source>
-        <translation>Es kann kein Composite Singleton des Typs %1 erzeugt werden.</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickTextUtil</name>
-    <message>
-        <source>Could not load cursor delegate</source>
-        <translation>Cursor-Delegate konnte nicht geladen werden</translation>
-    </message>
-    <message>
-        <source>%1 does not support loading non-visual cursor delegates.</source>
-        <translation>%1 unterstützt nicht das Laden von nicht visuellen Cursor-Delegates.</translation>
-    </message>
-</context>
-<context>
-    <name>QInputMethod</name>
-    <message>
-        <source>InputMethod is an abstract class</source>
-        <translation>InputMethod ist eine abstrakte Klasse</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickAccessibleAttached</name>
-    <message>
-        <source>Accessible is only available via attached properties</source>
-        <translation>Auf Accessible kann nur mittels Eigenschaften des Typs&apos;attached&apos; zugegriffen werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlConnections</name>
-    <message>
-        <source>Connections: script expected</source>
-        <translation>Verbindungen: Skript erwartet</translation>
-    </message>
-    <message>
-        <source>Connections: nested objects not allowed</source>
-        <translation>Verbindungen: Verschachtelte Objekte sind nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Cannot assign to non-existent property &quot;%1&quot;</source>
-        <translation>Es kann keine Zuweisung erfolgen, da keine Eigenschaft des Namens &quot;%1&quot; existiert</translation>
-    </message>
-    <message>
-        <source>Connections: syntax error</source>
-        <translation>Verbindungen: Syntaxfehler</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickApplication</name>
-    <message>
-        <source>Application is an abstract class</source>
-        <translation>&apos;Application&apos; ist eine abstrakte Klasse</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickAnimatedImage</name>
-    <message>
-        <source>Qt was built without support for QMovie</source>
-        <translation>Diese Version der Qt-Bibliothek wurde ohne Unterstützung für die Klasse QMovie erstellt</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickXmlListModel</name>
-    <message>
-        <source>&quot;%1&quot; duplicates a previous role name and will be disabled.</source>
-        <translation>&quot;%1&quot; ist bereits als Name einer Rolle vergeben und wird daher deaktiviert.</translation>
-    </message>
-    <message>
-        <source>invalid query: &quot;%1&quot;</source>
-        <translation>Ungültige Abfrage: &quot;%1&quot;</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickKeysAttached</name>
-    <message>
-        <source>Keys is only available via attached properties</source>
-        <translation>Die Unterstützung für Tasten ist nur über Eigenschaften des Typs &apos;attached&apos; verfügbar</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlEnumTypeResolver</name>
-    <message>
-        <source>Invalid property assignment: &quot;%1&quot; is a read-only property</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: &quot;%1&quot; ist eine schreibgeschützte Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: Enum value &quot;%1&quot; cannot start with a lowercase letter</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Der Aufzählungswert &quot;%1&quot; darf nicht mit einem Kleinbuchstaben beginnen</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlDelegateModel</name>
-    <message>
-        <source>The maximum number of supported DelegateModelGroups is 8</source>
-        <translation>Die Maximalzahl der unterstützten DelegateModelGroups ist 8</translation>
-    </message>
-    <message>
-        <source>The group of a DelegateModel cannot be changed within onChanged</source>
-        <translation>Die Gruppe eines DelegateModel kann nicht in onChanged geändert werden</translation>
-    </message>
-    <message>
-        <source>The delegate of a DelegateModel cannot be changed within onUpdated.</source>
-        <translation>Der Delegate eines DelegateModel kann nicht in onUpdated geändert werden.</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickEnterKeyAttached</name>
-    <message>
-        <source>EnterKey attached property only works with Items</source>
-        <translation>Die EnterKey-Eigenschaft des Typs &apos;attached&apos; kann nur mit Elementen der Klasse Item verwendet werden</translation>
-    </message>
-    <message>
-        <source>EnterKey is only available via attached properties</source>
-        <translation>Auf EnterKey kann nur mittels Eigenschaften des Typs &apos;attached&apos; zugegriffen werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickLoader</name>
-    <message>
-        <source>setSource: value is not an object</source>
-        <translation>setSource: Der Wert ist kein Objekt</translation>
-    </message>
-</context>
-<context>
-    <name>qmlRegisterType</name>
-    <message>
-        <source>Cannot install %1 &apos;%2&apos; into unregistered namespace &apos;%3&apos;</source>
-        <translation>%1 &apos;%2&apos; kann nicht in einen nicht registrierten Namensraum &apos;%3&apos; installiert werden</translation>
-    </message>
-    <message>
-        <source>Invalid QML %1 name &quot;%2&quot;</source>
-        <translation>Ungültiger QML %1-Name: &quot;%2&quot;</translation>
-    </message>
-    <message>
-        <source>Cannot install %1 &apos;%2&apos; into protected namespace &apos;%3&apos;</source>
-        <translation>%1 &apos;%2&apos; kann nicht in einen geschützten Namensraum &apos;%3&apos; installiert werden</translation>
-    </message>
-    <message>
-        <source>Cannot install %1 &apos;%2&apos; into protected module &apos;%3&apos; version &apos;%4&apos;</source>
-        <translation>%1 &apos;%2&apos; kann nicht in das geschützte Modul &apos;%3&apos; der Version &apos;%4&apos; installiert werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickWindowQmlImpl</name>
-    <message>
-        <source>Conflicting properties &apos;visible&apos; and &apos;visibility&apos; for Window &apos;%1&apos;</source>
-        <translation>Widersprüchliche Eigenschaften &apos;visible&apos; und &apos;visibility&apos; für das Fenster &apos;%1&apos;</translation>
-    </message>
-    <message>
-        <source>Conflicting properties &apos;visible&apos; and &apos;visibility&apos;</source>
-        <translation>Widersprüchliche Eigenschaften &apos;visible&apos; und &apos;visibility&apos;</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickViewTransitionAttached</name>
-    <message>
-        <source>ViewTransition is only available via attached properties</source>
-        <translation>ViewTransition ist nur über Eigenschaften des Typs &apos;attached&apos; verfügbar</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickGraphicsInfo</name>
-    <message>
-        <source>GraphicsInfo is only available via attached properties</source>
-        <translation>Auf GraphicsInfo kann nur mittels Eigenschaften des Typs &apos;attached&apos; zugegriffen werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickDragAttached</name>
-    <message>
-        <source>Drag is only available via attached properties</source>
-        <translation>Auf Drag kann nur mittels Eigenschaften des Typs &apos;attached&apos; zugegriffen werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickXmlListModelRole</name>
-    <message>
-        <source>An XmlRole query must not start with &apos;/&apos;</source>
-        <translation>Eine XmlRole-Abfrage darf nicht mit &apos;/&apos; beginnen</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickPaintedItem</name>
-    <message>
-        <source>Cannot create instance of abstract class PaintedItem</source>
-        <translation>Es kann keine Instanz der abstrakten Klasse PaintedItem erstellt werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickBehavior</name>
-    <message>
-        <source>Cannot change the animation assigned to a Behavior.</source>
-        <translation>Die zu einem Behavior-Element gehörende Animation kann nicht geändert werden.</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickOpenGLInfo</name>
-    <message>
-        <source>OpenGLInfo is only available via attached properties</source>
-        <translation>Auf OpenGLInfo kann nur mittels Eigenschaften des Typs &apos;attached&apos; zugegriffen werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickKeyNavigationAttached</name>
-    <message>
-        <source>KeyNavigation is only available via attached properties</source>
-        <translation>Tastennavigation ist nur über Eigenschaften des Typs &apos;attached&apos; verfügbar</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickMouseEvent</name>
-    <message>
-        <source>MouseEvent is only available within handlers in MouseArea</source>
-        <translation>MouseEvent ist nur in Handler-Funktionen von MouseArea verfügbar</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickAnchorAnimation</name>
-    <message>
-        <source>Cannot set a duration of &lt; 0</source>
-        <translation>Es kann keine Zeitdauer &lt;0 gesetzt werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickPathAnimation</name>
-    <message>
-        <source>Cannot set a duration of &lt; 0</source>
-        <translation>Es kann keine Zeitdauer &lt;0 gesetzt werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickPauseAnimation</name>
-    <message>
-        <source>Cannot set a duration of &lt; 0</source>
-        <translation>Es kann keine Zeitdauer &lt;0 gesetzt werden</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickPropertyAnimation</name>
-    <message>
-        <source>Cannot set a duration of &lt; 0</source>
-        <translation>Es kann keine Zeitdauer &lt;0 gesetzt werden</translation>
-    </message>
-</context>
-</TS>
diff --git a/translations/qtlocation_de.qm b/translations/qtlocation_de.qm
deleted file mode 100644
index b322d4df6c7494415da5522a8ff4ea9742345571..0000000000000000000000000000000000000000
Binary files a/translations/qtlocation_de.qm and /dev/null differ
diff --git a/translations/qtlocation_de.ts b/translations/qtlocation_de.ts
deleted file mode 100755
index f0438f8f5bb4fe836b9d76cce2537cd74441d381..0000000000000000000000000000000000000000
--- a/translations/qtlocation_de.ts
+++ /dev/null
@@ -1,693 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<context>
-    <name>QGeoTiledMappingManagerEngineMapbox</name>
-    <message>
-        <source>Dark</source>
-        <translation>Dunkel</translation>
-    </message>
-    <message>
-        <source>Comic</source>
-        <translation>Comic</translation>
-    </message>
-    <message>
-        <source>Light</source>
-        <translation>Hell</translation>
-    </message>
-    <message>
-        <source>Pencil</source>
-        <translation>Bleistiftzeichnung</translation>
-    </message>
-    <message>
-        <source>Street</source>
-        <translation>Straßenkarte</translation>
-    </message>
-    <message>
-        <source>Streets Satellite</source>
-        <translation>Straßenkarte in Satellitenansicht</translation>
-    </message>
-    <message>
-        <source>Pirates</source>
-        <translation>Schatzkarte</translation>
-    </message>
-    <message>
-        <source>Wheatpaste</source>
-        <translation>mehlfarben</translation>
-    </message>
-    <message>
-        <source>Run Bike Hike</source>
-        <translation>Laufen Radfahren Wandern</translation>
-    </message>
-    <message>
-        <source>Satellite</source>
-        <translation>Satellitenansicht</translation>
-    </message>
-    <message>
-        <source>Emerald</source>
-        <translation>Smaragdfarben</translation>
-    </message>
-    <message>
-        <source>High Contrast</source>
-        <translation>Hoher Kontrast</translation>
-    </message>
-    <message>
-        <source>Outdoors</source>
-        <translation>Outdoor-Karte</translation>
-    </message>
-    <message>
-        <source>Streets Basic</source>
-        <translation>Einfache Straßenkarte</translation>
-    </message>
-</context>
-<context>
-    <name>QPlaceManagerEngineOsm</name>
-    <message>
-        <source>Shop</source>
-        <translation>Geschäft</translation>
-    </message>
-    <message>
-        <source>Place</source>
-        <translation>Ort</translation>
-    </message>
-    <message>
-        <source>Historic</source>
-        <translation>Historisch</translation>
-    </message>
-    <message>
-        <source>Leisure</source>
-        <translation>Freizeit</translation>
-    </message>
-    <message>
-        <source>Natural</source>
-        <translation>Natürlich</translation>
-    </message>
-    <message>
-        <source>Network request error</source>
-        <translation>Netzwerkfehler</translation>
-    </message>
-    <message>
-        <source>Aeroway</source>
-        <translation>Luftverkehr</translation>
-    </message>
-    <message>
-        <source>Man made</source>
-        <translation>Menschlichen Ursprungs</translation>
-    </message>
-    <message>
-        <source>Amenity</source>
-        <translation>Öffentliche Einrichtung</translation>
-    </message>
-    <message>
-        <source>Land use</source>
-        <translation>Landnutzung</translation>
-    </message>
-    <message>
-        <source>Railway</source>
-        <translation>Eisenbahn</translation>
-    </message>
-    <message>
-        <source>Waterway</source>
-        <translation>Wasserweg</translation>
-    </message>
-    <message>
-        <source>Tourism</source>
-        <translation>Tourismus</translation>
-    </message>
-    <message>
-        <source>Building</source>
-        <translation>Gebäude</translation>
-    </message>
-    <message>
-        <source>Highway</source>
-        <translation>Straße</translation>
-    </message>
-</context>
-<context>
-    <name>QGeoTiledMappingManagerEngineOsm</name>
-    <message>
-        <source>Cycle map view in daylight mode</source>
-        <translation>Ansicht Fahrradkarte bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Night Transit Map</source>
-        <translation>Nahverkehrskarte bei Nacht</translation>
-    </message>
-    <message>
-        <source>Hiking Map</source>
-        <translation>Wanderkarte</translation>
-    </message>
-    <message>
-        <source>Terrain map view</source>
-        <translation>Ansicht Topografische Karte</translation>
-    </message>
-    <message>
-        <source>Street map view in daylight mode</source>
-        <translation>Ansicht Straßenkarte bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Custom URL Map</source>
-        <translation>Karte von benutzerdefinierter URL</translation>
-    </message>
-    <message>
-        <source>Public transit map view in night mode</source>
-        <translation>Ansicht Nahverkehrskarte bei Nacht</translation>
-    </message>
-    <message>
-        <source>Custom url map view set via urlprefix parameter</source>
-        <translation>Ansicht Karte von benutzerdefinierter URL</translation>
-    </message>
-    <message>
-        <source>Terrain Map</source>
-        <translation>Topografische Karte</translation>
-    </message>
-    <message>
-        <source>Satellite Map</source>
-        <translation>Satellitenkarte</translation>
-    </message>
-    <message>
-        <source>Satellite map view in daylight mode</source>
-        <translation>Ansicht Satellitenkarte bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Hiking map view</source>
-        <translation>Ansicht Wanderkarte</translation>
-    </message>
-    <message>
-        <source>Cycle Map</source>
-        <translation>Fahrradkarte</translation>
-    </message>
-    <message>
-        <source>Transit Map</source>
-        <translation>Nahverkehrskarte</translation>
-    </message>
-    <message>
-        <source>Street Map</source>
-        <translation>Straßenkarte</translation>
-    </message>
-    <message>
-        <source>Public transit map view in daylight mode</source>
-        <translation>Ansicht Nahverkehrskarte bei Tageslicht</translation>
-    </message>
-</context>
-<context>
-    <name>QGeoRouteReplyOsm</name>
-    <message>
-        <source>Turn left.</source>
-        <translation>Abzweigung links nehmen.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the seventh exit onto %1.</source>
-        <translation>Nehmen Sie die siebte Ausfahrt aus dem Kreisverkehr, um auf %1 zu wechseln.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the first exit.</source>
-        <translation>Nehmen Sie die erste Ausfahrt aus dem Kreisverkehr.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the third exit.</source>
-        <translation>Nehmen Sie die dritte Ausfahrt aus dem Kreisverkehr.</translation>
-    </message>
-    <message>
-        <source>Turn right onto %1.</source>
-        <translation>Abzweigung rechts nehmen, um auf %1 zu wechseln.</translation>
-    </message>
-    <message>
-        <source>Turn slightly left.</source>
-        <translation>Links halten.</translation>
-    </message>
-    <message>
-        <source>Turn left onto %1.</source>
-        <translation>Abzweigung links nehmen, um auf %1 zu wechseln.</translation>
-    </message>
-    <message>
-        <source>Make a sharp right.</source>
-        <translation>Abzweigung scharf rechts nehmen.</translation>
-    </message>
-    <message>
-        <source>Turn slightly left onto %1.</source>
-        <translation>Links halten, um auf %1 zu wechseln.</translation>
-    </message>
-    <message>
-        <source>Make a sharp left.</source>
-        <translation>Abzweigung scharf links nehmen.</translation>
-    </message>
-    <message>
-        <source>Don&apos;t know what to say for &apos;%1&apos;</source>
-        <translation>Unbekannte Anweisung: %1</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the ninth exit onto %1.</source>
-        <translation>Nehmen Sie die neunte Ausfahrt aus dem Kreisverkehr, um auf %1 zu wechseln.</translation>
-    </message>
-    <message>
-        <source>Turn slightly right.</source>
-        <translation>Rechts halten.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the fourth exit onto %1.</source>
-        <translation>Nehmen Sie die vierte Ausfahrt aus dem Kreisverkehr, um auf %1 zu wechseln.</translation>
-    </message>
-    <message>
-        <source>Make a sharp right onto %1.</source>
-        <translation>Abzweigung scharf rechts nehmen, um auf %1 zu wechseln.</translation>
-    </message>
-    <message>
-        <source>Turn slightly right onto %1.</source>
-        <translation>Rechts halten, um auf %1 zu wechseln.</translation>
-    </message>
-    <message>
-        <source>When it is safe to do so, perform a U-turn.</source>
-        <translation>Wenden Sie, sobald dies möglich ist.</translation>
-    </message>
-    <message>
-        <source>Leave the roundabout.</source>
-        <translation>Verlassen Sie den Kreisverkehr.</translation>
-    </message>
-    <message>
-        <source>Start at the end of the street.</source>
-        <translation>Starten Sie am Ende der Straße.</translation>
-    </message>
-    <message>
-        <source>Make a sharp left onto %1.</source>
-        <translation>Abzweigung scharf links nehmen, um auf %1 zu wechseln.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the second exit.</source>
-        <translation>Nehmen Sie die zweite Ausfahrt aus dem Kreisverkehr.</translation>
-    </message>
-    <message>
-        <source>Enter the roundabout.</source>
-        <translation>In den Kreisverkehr einfahren.</translation>
-    </message>
-    <message>
-        <source>Turn right.</source>
-        <translation>Abzweigung rechts nehmen.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the sixth exit onto %1.</source>
-        <translation>Nehmen Sie die sechste Ausfahrt aus dem Kreisverkehr, um auf %1 zu wechseln.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the second exit onto %1.</source>
-        <translation>Nehmen Sie die zweite Ausfahrt aus dem Kreisverkehr, um auf %1 zu wechseln.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the fourth exit.</source>
-        <translation>Nehmen Sie die vierte Ausfahrt aus dem Kreisverkehr.</translation>
-    </message>
-    <message>
-        <source>You have reached your destination.</source>
-        <translation>Sie haben Ihr Ziel erreicht.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the seventh exit.</source>
-        <translation>Nehmen Sie die siebte Ausfahrt aus dem Kreisverkehr.</translation>
-    </message>
-    <message>
-        <source>Stay on the roundabout.</source>
-        <translation>Folgen Sie dem Kreisverkehr.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the third exit onto %1.</source>
-        <translation>Nehmen Sie die dritte Ausfahrt aus dem Kreisverkehr, um auf %1 zu wechseln.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the eighth exit.</source>
-        <translation>Nehmen Sie die achte Ausfahrt aus dem Kreisverkehr.</translation>
-    </message>
-    <message>
-        <source>Go straight onto %1.</source>
-        <translation>Geradeaus auf %1 wechseln.</translation>
-    </message>
-    <message>
-        <source>Head onto %1.</source>
-        <translation>Weiter auf %1.</translation>
-    </message>
-    <message>
-        <source>Head on.</source>
-        <translation>Folgen Sie der Straße.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the fifth exit onto %1.</source>
-        <translation>Nehmen Sie die fünfte Ausfahrt aus dem Kreisverkehr, um auf %1 zu wechseln.</translation>
-    </message>
-    <message>
-        <source>Leave the roundabout onto %1.</source>
-        <translation>Verlassen Sie den Kreisverkehr, um auf %1 zu wechseln.</translation>
-    </message>
-    <message>
-        <source>Go straight.</source>
-        <translation>Geradeaus folgen.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the eighth exit onto %1.</source>
-        <translation>Nehmen Sie die achte Ausfahrt aus dem Kreisverkehr, um auf %1 zu wechseln.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the fifth exit.</source>
-        <translation>Nehmen Sie die fünfte Ausfahrt aus dem Kreisverkehr.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the ninth exit.</source>
-        <translation>Nehmen Sie die neunte Ausfahrt aus dem Kreisverkehr.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the sixth exit.</source>
-        <translation>Nehmen Sie die sechste Ausfahrt aus dem Kreisverkehr.</translation>
-    </message>
-    <message>
-        <source>Reached waypoint.</source>
-        <translation>Wegpunkt erreicht.</translation>
-    </message>
-    <message>
-        <source>Start at the end of %1.</source>
-        <translation>Starten Sie am Ende von %1.</translation>
-    </message>
-    <message>
-        <source>At the roundabout take the first exit onto %1.</source>
-        <translation>Nehmen Sie die erste Ausfahrt aus dem Kreisverkehr, um auf %1 zu wechseln.</translation>
-    </message>
-</context>
-<context>
-    <name>QGeoServiceProviderFactoryMapbox</name>
-    <message>
-        <source>Mapbox plugin requires a &apos;mapbox.access_token&apos; parameter.
-Please visit https://www.mapbox.com</source>
-        <translation>Das Mapbox-Plugin erfordert einen Parameter &apos;mapbox.access_token&apos;.
-Bitte besuchen Sie https://www.mapbox.com</translation>
-    </message>
-</context>
-<context>
-    <name>QGeoTiledMappingManagerEngineNokia</name>
-    <message>
-        <source>Satellite map view with streets in daylight mode</source>
-        <translation>Satellitenkarte mit Straßen bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Mobile normal map view in night mode</source>
-        <translation>Mobilkarte bei Nacht</translation>
-    </message>
-    <message>
-        <source>Mobile color-reduced map view in daylight mode</source>
-        <translation>Farbreduzierte Karte für mobile Nutzung bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Color-reduced map view in daylight mode</source>
-        <translation>Farbreduzierte Karte bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Mobile color-reduced map view with public transport scheme in daylight mode</source>
-        <translation>Farbreduzierte Karte für mobile Nutzung mit öffentlichen Nahverkehr bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Mobile Gray Street Map</source>
-        <translation>Karte (Mobil/Grau)</translation>
-    </message>
-    <message>
-        <source>Mobile terrain map view in daylight mode</source>
-        <translation>Mobile topografische Karte bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Gray Street Map</source>
-        <translation>Karte (Grau)</translation>
-    </message>
-    <message>
-        <source>Terrain map view in daylight mode</source>
-        <translation>Topografische Karte bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Car Navigation Map</source>
-        <translation>Karte (Fahrzeugnavigation)</translation>
-    </message>
-    <message>
-        <source>Night Street Map</source>
-        <translation>Karte (Nacht)</translation>
-    </message>
-    <message>
-        <source>Pedestrian map view in daylight mode</source>
-        <translation>Fußgängerkarte bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Pedestrian Street Map</source>
-        <translation>Fußgängerkarte</translation>
-    </message>
-    <message>
-        <source>Mobile Pedestrian Street Map</source>
-        <translation>Mobile Fußgängerkarte</translation>
-    </message>
-    <message>
-        <source>Mobile normal map view in daylight mode</source>
-        <translation>Mobilkarte bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Mobile Terrain Map</source>
-        <translation>Karte (Mobil/Topografie)</translation>
-    </message>
-    <message>
-        <source>Mobile Night Street Map</source>
-        <translation>Karte (Mobil/Nacht)</translation>
-    </message>
-    <message>
-        <source>Terrain Map</source>
-        <translation>Karte (Topografie)</translation>
-    </message>
-    <message>
-        <source>Normal map view in daylight mode for car navigation</source>
-        <translation>Karte für Fahrzeugnavigation bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Pedestrian map view in night mode</source>
-        <translation>Fußgängerkarte bei Nacht</translation>
-    </message>
-    <message>
-        <source>Hybrid Map</source>
-        <translation>Karte (Hybrid)</translation>
-    </message>
-    <message>
-        <source>Satellite Map</source>
-        <translation>Karte (Satellite)</translation>
-    </message>
-    <message>
-        <source>Satellite map view in daylight mode</source>
-        <translation>Satellitenkarte bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Mobile Street Map</source>
-        <translation>Karte (Mobil)</translation>
-    </message>
-    <message>
-        <source>Mobile Pedestrian Night Street Map</source>
-        <translation>Mobile Fußgängerkarte bei Nacht</translation>
-    </message>
-    <message>
-        <source>Transit Map</source>
-        <translation>Karte (Nahverkehr)</translation>
-    </message>
-    <message>
-        <source>Pedestrian Night Street Map</source>
-        <translation>Fußgängerkarte bei Nacht</translation>
-    </message>
-    <message>
-        <source>Mobile satellite map view with streets in daylight mode</source>
-        <translation>Mobile Satellitenkarte mit Straßen bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Mobile Hybrid Map</source>
-        <translation>Karte (Mobil/Hybrid)</translation>
-    </message>
-    <message>
-        <source>Street Map</source>
-        <translation>Karte (Normal)</translation>
-    </message>
-    <message>
-        <source>Gray Night Street Map</source>
-        <translation>Karte (Nacht/Grau)</translation>
-    </message>
-    <message>
-        <source>Mobile Transit Map</source>
-        <translation>Karte (Mobil/Nahverkehr)</translation>
-    </message>
-    <message>
-        <source>Mobile Gray Night Street Map</source>
-        <translation>Karte (Mobil/Grau/Nacht)</translation>
-    </message>
-    <message>
-        <source>Normal map view in daylight mode</source>
-        <translation>Karte bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Mobile color-reduced map view in night mode (especially used for background maps)</source>
-        <translation>Farbreduzierte Karte für mobile Nutzung bei Nacht</translation>
-    </message>
-    <message>
-        <source>Color-reduced map view with public transport scheme in daylight mode</source>
-        <translation>Farbreduzierte Karte mit öffentlichen Nahverkehr bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Color-reduced map view in night mode (especially used for background maps)</source>
-        <translation>Farbreduzierte Karte bei Nacht</translation>
-    </message>
-    <message>
-        <source>Custom Street Map</source>
-        <translation>Karte (Angepasst)</translation>
-    </message>
-    <message>
-        <source>Mobile pedestrian map view in night mode for mobile usage</source>
-        <translation>Fußgängerkarte für mobilen Einsatz bei Nacht</translation>
-    </message>
-    <message>
-        <source>Mobile pedestrian map view in daylight mode for mobile usage</source>
-        <translation>Fußgängerkarte für mobilen Einsatz bei Tageslicht</translation>
-    </message>
-    <message>
-        <source>Normal map view in night mode</source>
-        <translation>Karte bei Nacht</translation>
-    </message>
-</context>
-<context>
-    <name>QtLocationQML</name>
-    <message>
-        <source>Unable to initialize categories</source>
-        <translation>Kategorien konnten nicht initialisiert werden</translation>
-    </message>
-    <message>
-        <source>Qt Location requires app_id and token parameters.
-Please register at https://developer.here.com/ to get your personal application credentials.</source>
-        <translation>Qt Location benötigt die app_id und token Parameter.
-Bitte registrieren Sie sich unter https://developer.here.com/ um Ihre persönlichen Anmeldedaten zu erhalten.</translation>
-    </message>
-    <message>
-        <source>Request was canceled.</source>
-        <translation>Anfrage wurde abgebrochen.</translation>
-    </message>
-    <message>
-        <source>Unable to create request</source>
-        <translation>Anfrage konnte nicht erstellt werden</translation>
-    </message>
-    <message>
-        <source>Removing categories is not supported.</source>
-        <translation>Löschen von Kategorien wird nicht unterstützt.</translation>
-    </message>
-    <message>
-        <source>Plugin is not valid</source>
-        <translation>Plug-in ist ungültig</translation>
-    </message>
-    <message>
-        <source>Index &apos;%1&apos; out of range</source>
-        <translation>Der Index &apos;%1&apos; ist außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>Error parsing response.</source>
-        <translation>Fehler bim Parsen der Antwort.</translation>
-    </message>
-    <message>
-        <source>Removing places is not supported.</source>
-        <translation>Löschen von Orten wird nicht unterstützt.</translation>
-    </message>
-    <message>
-        <source>Plugin Error (%1): Could not instantiate provider</source>
-        <translation>Plug-in Fehler: Der %1 - Provider konnte nicht instanziiert werden</translation>
-    </message>
-    <message>
-        <source>Plugin property is not set.</source>
-        <translation>Plug-in Property wurde nicht gesetzt.</translation>
-    </message>
-    <message>
-        <source>Plugin Error (%1): %2</source>
-        <translation>Plug-in Fehler (%1): %2</translation>
-    </message>
-    <message>
-        <source>Network error.</source>
-        <translation>Netzwerkfehler.</translation>
-    </message>
-    <message>
-        <source>The response from the service was not in a recognizable format.</source>
-        <translation>Die Antwort des Dienstes war in keinem erkennbaren Format.</translation>
-    </message>
-    <message>
-        <source>Saving categories is not supported.</source>
-        <translation>Speichern von Kategorien wird nicht unterstützt.</translation>
-    </message>
-    <message>
-        <source>Saving places is not supported.</source>
-        <translation>Speichern von Orten wird nicht unterstützt.</translation>
-    </message>
-</context>
-<context>
-    <name>GeoServiceProviderFactoryEsri</name>
-    <message>
-        <source>Esri plugin requires a &apos;esri.token&apos; parameter.
-Please visit https://developers.arcgis.com/authentication/accessing-arcgis-online-services/</source>
-        <translation>Das Esri-Plugin erfordert einen &apos;esri.token&apos; Parameter.
-Bitte besuchen Sie https://developers.arcgis.com/authentication/accessing-arcgis-online-services/</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeGeoRouteModel</name>
-    <message>
-        <source>Cannot route, plugin not set.</source>
-        <translation>Kein Plugin gesetzt, kann keine Navigation durchführen.</translation>
-    </message>
-    <message>
-        <source>Plugin does not support routing.</source>
-        <translation>Das Plugin unterstützt keine Navigation.</translation>
-    </message>
-    <message>
-        <source>Not enough waypoints for routing.</source>
-        <translation>Es sind nicht ausreichend Wegpunkte für die Navigation vorhanden.</translation>
-    </message>
-    <message>
-        <source>Cannot route, route manager not set.</source>
-        <translation>Es ist kein Routen-Manager gesetzt, kann keine Navigation durchführen.</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeGeoMap</name>
-    <message>
-        <source>Plugin does not support mapping.</source>
-        <translation>Das Plugin unterstützt keine Karten.</translation>
-    </message>
-    <message>
-        <source>No Map</source>
-        <translation>Keine Karte</translation>
-    </message>
-</context>
-<context>
-    <name>QGeoTileFetcherNokia</name>
-    <message>
-        <source>Mapping manager no longer exists</source>
-        <translation>Kartenmanager existiert nicht mehr</translation>
-    </message>
-</context>
-<context>
-    <name>QPlaceSearchReplyOsm</name>
-    <message>
-        <source>Communication error</source>
-        <translation>Fehler bei Kommunikation</translation>
-    </message>
-    <message>
-        <source>Response parse error</source>
-        <translation>Fehler beim Parsen der Antwort</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeGeocodeModel</name>
-    <message>
-        <source>Cannot geocode, plugin not set.</source>
-        <translation>Kein Plugin gesetzt, kann keine Koordinatenbestimmung durchführen.</translation>
-    </message>
-    <message>
-        <source>Cannot geocode, geocode manager not set.</source>
-        <translation>Es ist kein Geocode-Manager gesetzt, kann keine Koordinatenbestimmung durchführen.</translation>
-    </message>
-    <message>
-        <source>Cannot geocode, valid query not set.</source>
-        <translation>Es ist keine gültige Abfrage gesetzt, kann keine Koordinatenbestimmung durchführen.</translation>
-    </message>
-    <message>
-        <source>Plugin does not support (reverse) geocoding.</source>
-        <translation>Das Plugin unterstützt keine (umgekehrte) Koordinatenbestimmung.</translation>
-    </message>
-</context>
-</TS>
diff --git a/translations/qtmultimedia_de.qm b/translations/qtmultimedia_de.qm
deleted file mode 100644
index 9f689456aa2ae9842478852ce96e109f7c86e7f9..0000000000000000000000000000000000000000
Binary files a/translations/qtmultimedia_de.qm and /dev/null differ
diff --git a/translations/qtmultimedia_de.ts b/translations/qtmultimedia_de.ts
deleted file mode 100755
index fde30f448be9684def48c81e4d3f376ad7acf6b6..0000000000000000000000000000000000000000
--- a/translations/qtmultimedia_de.ts
+++ /dev/null
@@ -1,586 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<context>
-    <name>BbCameraAudioEncoderSettingsControl</name>
-    <message>
-        <source>PCM uncompressed</source>
-        <translation>Unkomprimiertes PCM</translation>
-    </message>
-    <message>
-        <source>No compression</source>
-        <translation>Keine Kompression</translation>
-    </message>
-    <message>
-        <source>AAC compression</source>
-        <translation>AAC-Kompression</translation>
-    </message>
-</context>
-<context>
-    <name>BbVideoDeviceSelectorControl</name>
-    <message>
-        <source>Front Camera</source>
-        <translation>Vordere Kamera</translation>
-    </message>
-    <message>
-        <source>Rear Camera</source>
-        <translation>Hintere Kamera</translation>
-    </message>
-    <message>
-        <source>Desktop Camera</source>
-        <translation>Tischkamera</translation>
-    </message>
-</context>
-<context>
-    <name>QMultimediaDeclarativeModule</name>
-    <message>
-        <source>CameraFocus is provided by Camera</source>
-        <translation>CameraFocus wird von Camera bereitgestellt</translation>
-    </message>
-    <message>
-        <source>CameraRecorder is provided by Camera</source>
-        <translation>CameraRecorder wird von Camera bereitgestellt</translation>
-    </message>
-    <message>
-        <source>CameraFlash is provided by Camera</source>
-        <translation>CameraFlash wird von Camera bereitgestellt</translation>
-    </message>
-    <message>
-        <source>CameraViewfinder is provided by Camera</source>
-        <translation>CameraViewfinder wird von Camera bereitgestellt</translation>
-    </message>
-    <message>
-        <source>CameraExposure is provided by Camera</source>
-        <translation>CameraExposure wird von Camera bereitgestellt</translation>
-    </message>
-    <message>
-        <source>CameraImageProcessing is provided by Camera</source>
-        <translation>CameraImageProcessing wird von Camera bereitgestellt</translation>
-    </message>
-    <message>
-        <source>CameraCapture is provided by Camera</source>
-        <translation>CameraCapture wird von Camera bereitgestellt</translation>
-    </message>
-</context>
-<context>
-    <name>QAndroidCameraSession</name>
-    <message>
-        <source>Camera cannot be started without a viewfinder.</source>
-        <translation>Die Kamera kann nicht ohne Sucher gestartet werden.</translation>
-    </message>
-    <message>
-        <source>Failed to capture image</source>
-        <translation>Es konnte kein Bild aufgenommen werden</translation>
-    </message>
-    <message>
-        <source>Camera preview failed to start.</source>
-        <translation>Die Kamera-Vorschau konnte nicht gestartet werden.</translation>
-    </message>
-    <message>
-        <source>Could not open destination file: %1</source>
-        <translation>Die Zieldatei %1 konnte nicht geöffnet werden</translation>
-    </message>
-    <message>
-        <source>Camera not ready</source>
-        <translation>Kamera nicht bereit</translation>
-    </message>
-    <message>
-        <source>Drive mode not supported</source>
-        <translation>Auslösemodus wird nicht unterstützt</translation>
-    </message>
-</context>
-<context>
-    <name>MFPlayerSession</name>
-    <message>
-        <source>Unsupported media, a codec is missing.</source>
-        <translation>Nicht unterstütztes Medium; es fehlt ein Codec.</translation>
-    </message>
-    <message>
-        <source>Failed to stop.</source>
-        <translation>Stoppen nicht möglich.</translation>
-    </message>
-    <message>
-        <source>Failed to seek.</source>
-        <translation>Positionierung fehlgeschlagen.</translation>
-    </message>
-    <message>
-        <source>Attempting to play invalid Qt resource.</source>
-        <translation>Es wurde versucht, eine ungültige Qt-Ressource abzuspielen.</translation>
-    </message>
-    <message>
-        <source>Unsupported media type.</source>
-        <translation>Nicht unterstützter Medientyp.</translation>
-    </message>
-    <message>
-        <source>Unable to create mediasession.</source>
-        <translation>Es konnte keine Medien-Session erzeugt werden.</translation>
-    </message>
-    <message>
-        <source>Failed to set topology.</source>
-        <translation>Topologie konnte nicht gesetzt werden.</translation>
-    </message>
-    <message>
-        <source>Failed to pause.</source>
-        <translation>Pausieren nicht möglich.</translation>
-    </message>
-    <message>
-        <source>Unable to play.</source>
-        <translation>Abspielen nicht möglich.</translation>
-    </message>
-    <message>
-        <source>failed to start playback</source>
-        <translation>Playback konnte nicht gestartet werden</translation>
-    </message>
-    <message>
-        <source>Cannot create presentation descriptor.</source>
-        <translation>Der Präsentationsdeskriptor kann nicht erzeugt werden.</translation>
-    </message>
-    <message>
-        <source>The specified server could not be found.</source>
-        <translation>Der angegebene Server konnte nicht gefunden werden.</translation>
-    </message>
-    <message>
-        <source>The system cannot find the file specified.</source>
-        <translation>Das System kann die angegebene Datei nicht finden.</translation>
-    </message>
-    <message>
-        <source>Invalid stream source.</source>
-        <translation>Ungültige Datenstromquelle.</translation>
-    </message>
-    <message>
-        <source>Media session serious error.</source>
-        <translation>Kritischer Fehler der Medien-Session.</translation>
-    </message>
-    <message>
-        <source>Unable to pull session events.</source>
-        <translation>Events der Sitzung konnten nicht abgeholt werden.</translation>
-    </message>
-    <message>
-        <source>Failed to get stream count.</source>
-        <translation>Anzahl der Datenströme konnte nicht bestimmt werden.</translation>
-    </message>
-    <message>
-        <source>Media session non-fatal error.</source>
-        <translation>Unkritischer Fehler der Medien-Session.</translation>
-    </message>
-    <message>
-        <source>Failed to load source.</source>
-        <translation>Die Quelle konnte nicht geladen werden.</translation>
-    </message>
-    <message>
-        <source>Unknown stream type.</source>
-        <translation>Unbekannter Datenstromtyp.</translation>
-    </message>
-    <message>
-        <source>Unable to play any stream.</source>
-        <translation>Es konnte kein Datenstrom abgespielt werden.</translation>
-    </message>
-    <message>
-        <source>Failed to create topology.</source>
-        <translation>Topologie konnte nicht erzeugt werden.</translation>
-    </message>
-</context>
-<context>
-    <name>BbCameraSession</name>
-    <message>
-        <source>Unable to start video recording</source>
-        <translation>Die Videoaufaufzeichnung kann nicht gestartet werden</translation>
-    </message>
-    <message>
-        <source>Unable to open camera</source>
-        <translation>Die Kamera kann nicht geöffnet werden</translation>
-    </message>
-    <message>
-        <source>Unable to retrieve native camera orientation</source>
-        <translation>Die gerätespezifische Ausrichtung der Kamera kann nicht bestimmt werden</translation>
-    </message>
-    <message>
-        <source>Could not load JPEG data from frame</source>
-        <translation>Es konnten keine JPEG-Daten vom Bild geladen werden</translation>
-    </message>
-    <message>
-        <source>Camera provides image in unsupported format</source>
-        <translation>Die Kamera liefert Bilddaten in einem nicht unterstützten Format</translation>
-    </message>
-    <message>
-        <source>Unable to apply video settings</source>
-        <translation>Die Videoeinstellungen können nicht vorgenommen werden</translation>
-    </message>
-    <message>
-        <source>Could not open destination file:
-%1</source>
-        <translation>Die Zieldatei konnte nicht geöffnet werden:
-%1</translation>
-    </message>
-    <message>
-        <source>Unable to close camera</source>
-        <translation>Die Kamera kann nicht geschlossen werden</translation>
-    </message>
-    <message>
-        <source>Camera not ready</source>
-        <translation>Kamera nicht bereit</translation>
-    </message>
-    <message>
-        <source>Unable to stop video recording</source>
-        <translation>Die Videoaufaufzeichnung kann nicht angehalten werden</translation>
-    </message>
-</context>
-<context>
-    <name>QGstreamerVideoInputDeviceControl</name>
-    <message>
-        <source>Front camera</source>
-        <translation>Vordere Kamera</translation>
-    </message>
-    <message>
-        <source>Main camera</source>
-        <translation>Hauptkamera</translation>
-    </message>
-</context>
-<context>
-    <name>QGstreamerAudioDecoderSession</name>
-    <message>
-        <source>Cannot play stream of type: &lt;unknown&gt;</source>
-        <translation>Datenstrom des Typs &lt;unbekannt&gt; kann nicht abgespielt werden</translation>
-    </message>
-</context>
-<context>
-    <name>QGstreamerPlayerSession</name>
-    <message>
-        <source>Cannot play stream of type: &lt;unknown&gt;</source>
-        <translation>Datenstrom des Typs &lt;unbekannt&gt; kann nicht abgespielt werden</translation>
-    </message>
-    <message>
-        <source>UDP source timeout</source>
-        <translation>Zeitüberschreitung bei UDP-Quelle</translation>
-    </message>
-    <message>
-        <source>Media is loaded as a playlist</source>
-        <translation>Medien als Abspielliste geladen</translation>
-    </message>
-</context>
-<context>
-    <name>QAndroidVideoEncoderSettingsControl</name>
-    <message>
-        <source>MPEG-4 SP compression</source>
-        <translation>MPEG-4-SP-Kompression</translation>
-    </message>
-    <message>
-        <source>H.263 compression</source>
-        <translation>H.263-Kompression</translation>
-    </message>
-    <message>
-        <source>H.264 compression</source>
-        <translation>H.264-Kompression</translation>
-    </message>
-</context>
-<context>
-    <name>CameraBinRecorder</name>
-    <message>
-        <source>QMediaRecorder::pause() is not supported by camerabin2.</source>
-        <translation>QMediaRecorder::pause() wird von camerabin2 nicht unterstützt.</translation>
-    </message>
-    <message>
-        <source>Recording permissions are not available</source>
-        <translation>Berechtigung zur Aufnahme fehlt</translation>
-    </message>
-    <message>
-        <source>Service has not been started</source>
-        <translation>Der Dienst wurde nicht gestartet</translation>
-    </message>
-</context>
-<context>
-    <name>QPlaylistFileParser</name>
-    <message>
-        <source>%1 does not exist</source>
-        <translation>%1 existiert nicht</translation>
-    </message>
-    <message>
-        <source>Empty file provided</source>
-        <translation>Leere Datei angegeben</translation>
-    </message>
-    <message>
-        <source>invalid line in playlist file</source>
-        <translation>ungültige Zeile in Abspielliste</translation>
-    </message>
-    <message>
-        <source>%1 playlist type is unknown</source>
-        <translation>Unbekannter Typ der Abspielliste %1</translation>
-    </message>
-</context>
-<context>
-    <name>AudioContainerControl</name>
-    <message>
-        <source>RAW (headerless) file format</source>
-        <translation>RAW-Dateiformat (ohne Header)</translation>
-    </message>
-    <message>
-        <source>WAV file format</source>
-        <translation>WAV-Dateiformat</translation>
-    </message>
-</context>
-<context>
-    <name>QAndroidMediaContainerControl</name>
-    <message>
-        <source>MPEG4 media file format</source>
-        <translation>MPEG4-Medien-Dateiformat</translation>
-    </message>
-    <message>
-        <source>AMR WB file format</source>
-        <translation>AMR-WB-Dateiformat</translation>
-    </message>
-    <message>
-        <source>AMR NB file format</source>
-        <translation>AMR-NB-Dateiformat</translation>
-    </message>
-    <message>
-        <source>3GPP media file format</source>
-        <translation>3GPP-Medien-Dateiformat</translation>
-    </message>
-</context>
-<context>
-    <name>QMediaPlayer</name>
-    <message>
-        <source>Attempting to play invalid Qt resource</source>
-        <translation>Es wurde versucht, eine ungültige Qt-Ressource abzuspielen</translation>
-    </message>
-    <message>
-        <source>The QMediaPlayer object does not have a valid service</source>
-        <translation>Das QMediaPlayer-Objekt hat keinen gültigen Dienst</translation>
-    </message>
-</context>
-<context>
-    <name>QGstreamerImageCaptureControl</name>
-    <message>
-        <source>Not ready to capture</source>
-        <translation>Nicht aufnahmebereit</translation>
-    </message>
-</context>
-<context>
-    <name>QMediaPlaylist</name>
-    <message>
-        <source>The file could not be accessed.</source>
-        <translation>Es konnte nicht auf die Datei zugegriffen werden.</translation>
-    </message>
-    <message>
-        <source>Playlist format is not supported.</source>
-        <translation>Nicht unterstütztes Format der Abspielliste</translation>
-    </message>
-    <message>
-        <source>Could not add items to read only playlist.</source>
-        <translation>Konnte keine Elemente zu schreibgeschützter Abspielliste hinzufügen</translation>
-    </message>
-    <message>
-        <source>Playlist format is not supported</source>
-        <translation>Nicht unterstütztes Format der Abspielliste</translation>
-    </message>
-</context>
-<context>
-    <name>QCamera</name>
-    <message>
-        <source>The camera service is missing</source>
-        <translation>Der Kameradienst fehlt</translation>
-    </message>
-</context>
-<context>
-    <name>QGstreamerRecorderControl</name>
-    <message>
-        <source>Not compatible codecs and container format.</source>
-        <translation>Keine kompatiblen Codecs und Container-Formate.</translation>
-    </message>
-    <message>
-        <source>Service has not been started</source>
-        <translation>Der Dienst wurde nicht gestartet</translation>
-    </message>
-</context>
-<context>
-    <name>QAndroidAudioEncoderSettingsControl</name>
-    <message>
-        <source>Adaptive Multi-Rate Wideband (AMR-WB) audio codec</source>
-        <translation>Adaptive Multi-Rate Wideband (AMR-WB) audio codec</translation>
-    </message>
-    <message>
-        <source>AAC Low Complexity (AAC-LC) audio codec</source>
-        <translation>AAC Low Complexity (AAC-LC) audio codec</translation>
-    </message>
-    <message>
-        <source>Adaptive Multi-Rate Narrowband (AMR-NB) audio codec</source>
-        <translation>Adaptive Multi-Rate Narrowband (AMR-NB) audio codec</translation>
-    </message>
-</context>
-<context>
-    <name>QCameraImageCapture</name>
-    <message>
-        <source>Device does not support images capture.</source>
-        <translation>Das Gerät unterstützt das Aufnehmen von Bildern nicht.</translation>
-    </message>
-</context>
-<context>
-    <name>QWinRTCameraImageCaptureControl</name>
-    <message>
-        <source>Invalid photo data length.</source>
-        <translation>Ungültige Länge der Bilddaten.</translation>
-    </message>
-    <message>
-        <source>Camera not ready</source>
-        <translation>Kamera nicht bereit</translation>
-    </message>
-    <message>
-        <source>Image saving failed</source>
-        <translation>Das Speichern des Bildes schlug fehl</translation>
-    </message>
-</context>
-<context>
-    <name>QGstreamerCaptureSession</name>
-    <message>
-        <source>Could not create an audio source element</source>
-        <translation>Das Audio-Quellelement konnte nicht erstellt werden</translation>
-    </message>
-    <message>
-        <source>Failed to build media capture pipeline.</source>
-        <translation>Es konnte keine Medien-Aufnahme-Pipeline erstellt werden.</translation>
-    </message>
-</context>
-<context>
-    <name>QGstreamerAudioInputSelector</name>
-    <message>
-        <source>System default device</source>
-        <translation>System-Vorgabegerät</translation>
-    </message>
-</context>
-<context>
-    <name>QGstreamerAudioEncode</name>
-    <message>
-        <source>Raw PCM audio</source>
-        <translation>Raw-PCM-Audio</translation>
-    </message>
-</context>
-<context>
-    <name>BbCameraMediaRecorderControl</name>
-    <message>
-        <source>Unable to retrieve audio input volume</source>
-        <translation>Lautstärke des Audio-Eingangs kann nicht bestimmt werden</translation>
-    </message>
-    <message>
-        <source>Unable to set audio input volume</source>
-        <translation>Lautstärke des Audio-Eingangs kann nicht gesetzt werden</translation>
-    </message>
-    <message>
-        <source>Unable to set mute status</source>
-        <translation>Status der Stummschaltung kann nicht gesetzt werden</translation>
-    </message>
-    <message>
-        <source>Unable to retrieve mute status</source>
-        <translation>Status der Stummschaltung kann nicht bestimmt werden</translation>
-    </message>
-</context>
-<context>
-    <name>CameraBinSession</name>
-    <message>
-        <source>Camera error</source>
-        <translation>Kamerafehler</translation>
-    </message>
-</context>
-<context>
-    <name>DSCameraSession</name>
-    <message>
-        <source>Camera not ready for capture</source>
-        <translation>Die Kamera ist nicht aufnahmebereit</translation>
-    </message>
-    <message>
-        <source>Could not save image to file.</source>
-        <translation>Das Bild konnte nicht in eine Datei gespeichert werden.</translation>
-    </message>
-</context>
-<context>
-    <name>QGstreamerImageEncode</name>
-    <message>
-        <source>JPEG image encoder</source>
-        <translation>JPEG-Bild-Kodierer</translation>
-    </message>
-</context>
-<context>
-    <name>BbImageEncoderControl</name>
-    <message>
-        <source>JPEG image</source>
-        <translation>JPEG-Bild</translation>
-    </message>
-</context>
-<context>
-    <name>CameraBinImageEncoder</name>
-    <message>
-        <source>JPEG image</source>
-        <translation>JPEG-Bild</translation>
-    </message>
-</context>
-<context>
-    <name>QAndroidImageEncoderControl</name>
-    <message>
-        <source>JPEG image</source>
-        <translation>JPEG-Bild</translation>
-    </message>
-</context>
-<context>
-    <name>QWinRTImageEncoderControl</name>
-    <message>
-        <source>JPEG image</source>
-        <translation>JPEG-Bild</translation>
-    </message>
-</context>
-<context>
-    <name>BbCameraVideoEncoderSettingsControl</name>
-    <message>
-        <source>No compression</source>
-        <translation>Keine Kompression</translation>
-    </message>
-    <message>
-        <source>AVC1 compression</source>
-        <translation>AVC1-Kompression</translation>
-    </message>
-    <message>
-        <source>H264 compression</source>
-        <translation>H264-Kompression</translation>
-    </message>
-</context>
-<context>
-    <name>CameraBinImageCapture</name>
-    <message>
-        <source>Camera not ready</source>
-        <translation>Kamera nicht bereit</translation>
-    </message>
-</context>
-<context>
-    <name>QGstreamerCameraControl</name>
-    <message>
-        <source>State not supported.</source>
-        <translation>nicht unterstützter Zustand.</translation>
-    </message>
-</context>
-<context>
-    <name>AudioEncoderControl</name>
-    <message>
-        <source>Linear PCM audio data</source>
-        <translation>PCM-Audiodaten (linear)</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeAudio</name>
-    <message>
-        <source>volume should be between 0.0 and 1.0</source>
-        <translation>Lautstärke sollte zwischen 0.0 und 1.0 liegen</translation>
-    </message>
-</context>
-<context>
-    <name>QGstreamerPlayerControl</name>
-    <message>
-        <source>Attempting to play invalid user stream</source>
-        <translation>Es wurde versucht, einen ungültigen Nutzer-Datenstrom abzuspielen</translation>
-    </message>
-</context>
-<context>
-    <name>QAudioDecoder</name>
-    <message>
-        <source>The QAudioDecoder object does not have a valid service</source>
-        <translation>Das QAudioDecoder-Objekt hat keinen gültigen Dienst</translation>
-    </message>
-</context>
-</TS>
diff --git a/translations/qtquick1_de.qm b/translations/qtquick1_de.qm
deleted file mode 100644
index 323fda237e8d04ed396eb3392782b1179994bfcf..0000000000000000000000000000000000000000
Binary files a/translations/qtquick1_de.qm and /dev/null differ
diff --git a/translations/qtquick1_de.ts b/translations/qtquick1_de.ts
deleted file mode 100755
index e4f33970449b0044e50e91090566ff1cffdafdd0..0000000000000000000000000000000000000000
--- a/translations/qtquick1_de.ts
+++ /dev/null
@@ -1,982 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<context>
-    <name>QDeclarativeCompiler</name>
-    <message>
-        <source>Attached properties cannot be used here</source>
-        <translation>An dieser Stelle können keine Eigenschaften des Typs &apos;attached&apos; verwendet werden</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: rect expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es werden Parameter für ein Rechteck erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid attached object assignment</source>
-        <translation>Ungültige Zuweisung des Bezugselements</translation>
-    </message>
-    <message>
-        <source>Component elements may not contain properties other than id</source>
-        <translation>Komponenten dürfen außer id keine weiteren Eigenschaften enthalten</translation>
-    </message>
-    <message>
-        <source>Invalid grouped property access</source>
-        <translation>Falsche Gruppierung bei Zugriff auf Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Invalid property type</source>
-        <translation>Ungültiger Typ der Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Cannot override FINAL property</source>
-        <translation>Eine als &apos;FINAL&apos; ausgewiesene Eigenschaft kann nicht überschrieben werden</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: size expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Größenangabe erwartet</translation>
-    </message>
-    <message>
-        <source>Cannot assign object to list</source>
-        <translation>Zuweisung eines Objekts an eine Liste nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: string expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Zeichenkette erwartet</translation>
-    </message>
-    <message>
-        <source>Cannot assign a value to a signal (expecting a script to be run)</source>
-        <translation>Einem Signal können keine Werte zugewiesen werden (es wird ein Skript erwartet)</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: unknown enumeration</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Unbekannter Aufzählungswert</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: unsupported type &quot;%1&quot;</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Der Typ &quot;%1&quot; ist nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: datetime expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Datumsangabe erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: 3D vector expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird ein dreidimensionaler Vektor erwartet</translation>
-    </message>
-    <message>
-        <source>Cannot assign multiple values to a script property</source>
-        <translation>Eine Zuweisung mehrerer Werte an eine Skript-Eigenschaft ist nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: date expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Datumsangabe erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: time expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Zeitangabe erwartet</translation>
-    </message>
-    <message>
-        <source>Property assignment expected</source>
-        <translation>Zuweisung an Eigenschaft erwartet</translation>
-    </message>
-    <message>
-        <source>Cannot create empty component specification</source>
-        <translation>Es kann keine leere Komponentenangabe erzeugt werden</translation>
-    </message>
-    <message>
-        <source>&quot;%1&quot; cannot operate on &quot;%2&quot;</source>
-        <translation>&quot;%1&quot; kann nicht auf  &quot;%2&quot; angewandt werden</translation>
-    </message>
-    <message>
-        <source>Invalid use of id property</source>
-        <translation>Ungültige Verwendung einer Eigenschaft des Typs &apos;Id&apos;</translation>
-    </message>
-    <message>
-        <source>Method names cannot begin with an upper case letter</source>
-        <translation>Methodennamen dürfen nicht mit einem Großbuchstaben beginnen</translation>
-    </message>
-    <message>
-        <source>Empty signal assignment</source>
-        <translation>Leere Signalzuweisung</translation>
-    </message>
-    <message>
-        <source>Duplicate property name</source>
-        <translation>Mehrfaches Auftreten eines Eigenschaftsnamens</translation>
-    </message>
-    <message>
-        <source>Not an attached property name</source>
-        <translation>Kein gültiger Name einer Eigenschaft des Typs &apos;attached&apos;</translation>
-    </message>
-    <message>
-        <source>Component objects cannot declare new functions.</source>
-        <translation>Komponentenobjekte können keine neuen Funktionen deklarieren.</translation>
-    </message>
-    <message>
-        <source>Incorrectly specified signal assignment</source>
-        <translation>Angegebene Signalzuweisung ist nicht korrekt</translation>
-    </message>
-    <message>
-        <source>Element is not creatable.</source>
-        <translation>Das Element kann nicht erzeugt werden.</translation>
-    </message>
-    <message>
-        <source>Component objects cannot declare new properties.</source>
-        <translation>Komponentenobjekte können keine neuen Eigenschaften deklarieren.</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: color expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Farbspezifikation erwartet</translation>
-    </message>
-    <message>
-        <source>Duplicate method name</source>
-        <translation>Mehrfaches Auftreten eines Methodennamens</translation>
-    </message>
-    <message>
-        <source>Cannot assign multiple values to a singular property</source>
-        <translation>Eine Zuweisung mehrerer Werte an eine einfache Eigenschaft ist nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: boolean expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird ein boolescher Wert erwartet</translation>
-    </message>
-    <message>
-        <source>Cannot assign to non-existent default property</source>
-        <translation>Es kann keine Zuweisung erfolgen, da keine Vorgabe-Eigenschaft existiert</translation>
-    </message>
-    <message>
-        <source>Non-existent attached object</source>
-        <translation>Es existiert kein Bezugselement für die Eigenschaft</translation>
-    </message>
-    <message>
-        <source>IDs cannot start with an uppercase letter</source>
-        <translation>Id-Werte dürfen nicht mit einem Großbuchstaben beginnen</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: point expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Koordinatenangabe für einen Punkt erwartet</translation>
-    </message>
-    <message>
-        <source>Can only assign one binding to lists</source>
-        <translation>Listen kann nur eine einzige Bindung zugewiesen werden</translation>
-    </message>
-    <message>
-        <source>Duplicate default property</source>
-        <translation>Mehrfaches Auftreten der Vorgabe-Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Duplicate signal name</source>
-        <translation>Mehrfaches Auftreten eines Signalnamens</translation>
-    </message>
-    <message>
-        <source>Alias property exceeds alias bounds</source>
-        <translation>Die Alias-Eigenschaft überschreitet die Grenzen des Alias&apos;</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: unsigned int expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird ein vorzeichenloser Ganzzahlwert erwartet</translation>
-    </message>
-    <message>
-        <source>id is not unique</source>
-        <translation>ID-Wert nicht eindeutig</translation>
-    </message>
-    <message>
-        <source>Invalid alias reference. An alias reference must be specified as &lt;id&gt;, &lt;id&gt;.&lt;property&gt; or &lt;id&gt;.&lt;value property&gt;.&lt;property&gt;</source>
-        <translation>Ungültige Alias-Referenz. Eine Alias-Referenz muss in der Form &lt;id&gt;, &lt;id&gt;.&lt;property&gt; oder &lt;id&gt;.&lt;value property&gt;.&lt;property&gt; angegeben werden</translation>
-    </message>
-    <message>
-        <source>Invalid property nesting</source>
-        <translation>Ungültige Schachtelung von Eigenschaften</translation>
-    </message>
-    <message>
-        <source>Property names cannot begin with an upper case letter</source>
-        <translation>Eigenschaftsnamen dürfen nicht mit einem Großbuchstaben beginnen</translation>
-    </message>
-    <message>
-        <source>Invalid alias reference. Unable to find id &quot;%1&quot;</source>
-        <translation>Ungültige Referenzierung einer Alias-Eigenschaft. Der Id-Wert &quot;%1&quot; konnte nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: &quot;%1&quot; is a read-only property</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: &quot;%1&quot; ist schreibgeschützt</translation>
-    </message>
-    <message>
-        <source>Property value set multiple times</source>
-        <translation>Mehrfache Zuweisung eines Wertes an eine Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Illegal signal name</source>
-        <translation>Ungültiger Name für Signal</translation>
-    </message>
-    <message>
-        <source>Cannot assign primitives to lists</source>
-        <translation>Zuweisung eines einfachen Werts (primitive) an eine Liste nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Cannot assign object to property</source>
-        <translation>Zuweisung eines Objekts an eine Eigenschaft nicht zulässig</translation>
-    </message>
-    <message>
-        <source>No property alias location</source>
-        <translation>Alias-Eigenschaft ohne Quellangabe</translation>
-    </message>
-    <message>
-        <source>Property has already been assigned a value</source>
-        <translation>Der Eigenschaft wurde bereits ein Wert zugewiesen</translation>
-    </message>
-    <message>
-        <source>Illegal method name</source>
-        <translation>Ungültiger Name für Methode</translation>
-    </message>
-    <message>
-        <source>Invalid property use</source>
-        <translation>Ungültige Verwendung von Eigenschaften</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: number expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine Zahl erwartet</translation>
-    </message>
-    <message>
-        <source>Cannot assign a value directly to a grouped property</source>
-        <translation>Bei einer Eigenschaft, die Teil einer Gruppierung ist, ist keine direkte Wertzuweisung zulässig</translation>
-    </message>
-    <message>
-        <source>IDs must start with a letter or underscore</source>
-        <translation>Id-Werte müssen mit einem Buchstaben oder Unterstrich beginnen</translation>
-    </message>
-    <message>
-        <source>Invalid empty ID</source>
-        <translation>Ungültiger (leerer) Id-Wert</translation>
-    </message>
-    <message>
-        <source>Unexpected object assignment</source>
-        <translation>Unerwartete Zuweisung des Objekts</translation>
-    </message>
-    <message>
-        <source>&quot;%1.%2&quot; is not available due to component versioning.</source>
-        <translation>&quot;%1.%2&quot; ist in dieser Version der Komponente nicht verfügbar </translation>
-    </message>
-    <message>
-        <source>Cannot assign to non-existent property &quot;%1&quot;</source>
-        <translation>Es kann keine Zuweisung erfolgen, da keine Eigenschaft des Namens &apos;%1&quot; existiert</translation>
-    </message>
-    <message>
-        <source>ID illegally masks global JavaScript property</source>
-        <translation>Der Id-Wert überdeckt eine globale Eigenschaft aus JavaScript</translation>
-    </message>
-    <message>
-        <source>Invalid component body specification</source>
-        <translation>Inhalt der Komponente ungültig</translation>
-    </message>
-    <message>
-        <source>Component objects cannot declare new signals.</source>
-        <translation>Komponentenobjekte können keine neuen Signale deklarieren.</translation>
-    </message>
-    <message>
-        <source>IDs must contain only letters, numbers, and underscores</source>
-        <translation>Id-Werte dürfen nur Buchstaben, Ziffern oder Unterstriche enthalten</translation>
-    </message>
-    <message>
-        <source>&quot;%1.%2&quot; is not available in %3 %4.%5.</source>
-        <translation>&quot;%1.%2&quot; ist in %3 %4.%5 nicht verfügbar.</translation>
-    </message>
-    <message>
-        <source>Invalid use of namespace</source>
-        <translation>Ungültige Verwendung eines Namensraums</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: int expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird ein Ganzzahlwert erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid component id specification</source>
-        <translation>ID der Komponente ungültig</translation>
-    </message>
-    <message>
-        <source>Illegal property name</source>
-        <translation>Ungültiger Name der Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Invalid alias location</source>
-        <translation>Ungültige Quellangabe bei Alias-Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Single property assignment expected</source>
-        <translation>Einzelne Zuweisung an Eigenschaft erwartet</translation>
-    </message>
-    <message>
-        <source>Empty property assignment</source>
-        <translation>Leere Eigenschaftszuweisung</translation>
-    </message>
-    <message>
-        <source>Signal names cannot begin with an upper case letter</source>
-        <translation>Signalnamen dürfen nicht mit einem Großbuchstaben beginnen</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: url expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird eine URL erwartet</translation>
-    </message>
-    <message>
-        <source>Invalid property assignment: script expected</source>
-        <translation>Ungültige Zuweisung bei Eigenschaft: Es wird ein Skript erwartet</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeAnchors</name>
-    <message>
-        <source>Cannot anchor item to self.</source>
-        <translation>Ein Element kann keinen Anker zu sich selbst haben.</translation>
-    </message>
-    <message>
-        <source>Possible anchor loop detected on horizontal anchor.</source>
-        <translation>Bei einem horizontalen Anker wurde eine potentielle Endlosschleife der Anker festgestellt.</translation>
-    </message>
-    <message>
-        <source>Cannot anchor to a null item.</source>
-        <translation>Es kann kein Anker zu einem Null-Element angegeben werden.</translation>
-    </message>
-    <message>
-        <source>Cannot specify top, bottom, and vcenter anchors.</source>
-        <translation>Ankerangaben für oben, unten und vertikal zentriert dürfen nicht zusammen auftreten.</translation>
-    </message>
-    <message>
-        <source>Possible anchor loop detected on centerIn.</source>
-        <translation>Bei der Operation &apos;centerIn&apos; wurde eine potentielle Endlosschleife der Anker festgestellt.</translation>
-    </message>
-    <message>
-        <source>Baseline anchor cannot be used in conjunction with top, bottom, or vcenter anchors.</source>
-        <translation>Ein Baseline-Anker darf nicht zusammen mit weiteren Ankerangaben für oben, unten und vertikal zentriert verwendet werden.</translation>
-    </message>
-    <message>
-        <source>Cannot specify left, right, and hcenter anchors.</source>
-        <translation>Ankerangaben für links, rechts und horizontal zentriert dürfen nicht zusammen auftreten.</translation>
-    </message>
-    <message>
-        <source>Possible anchor loop detected on vertical anchor.</source>
-        <translation>Bei einem vertikalen Anker wurde eine potentielle Endlosschleife der Anker festgestellt.</translation>
-    </message>
-    <message>
-        <source>Cannot anchor a horizontal edge to a vertical edge.</source>
-        <translation>Eine horizontale Kante kann nicht mit einer vertikalen Kante verankert werden.</translation>
-    </message>
-    <message>
-        <source>Cannot anchor a vertical edge to a horizontal edge.</source>
-        <translation>Vertikale und horizontale Kanten können nicht mit Ankern verbunden werden.</translation>
-    </message>
-    <message>
-        <source>Cannot anchor to an item that isn&apos;t a parent or sibling.</source>
-        <translation>Das Ziel eines Anker muss ein Elternelement oder Element der gleichen Ebene sein.</translation>
-    </message>
-    <message>
-        <source>Possible anchor loop detected on fill.</source>
-        <translation>Bei der Fülloperation wurde eine potentielle Endlosschleife der Anker festgestellt.</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeLayoutMirroringAttached</name>
-    <message>
-        <source>LayoutMirroring is only available via attached properties</source>
-        <translation>LayoutMirroring ist nur in Verbindung mit Eigenschaften des Typs &quot;attached&quot; möglich</translation>
-    </message>
-    <message>
-        <source>LayoutDirection attached property only works with Items</source>
-        <translation>Eigenschaften des Typs &apos;attached&apos; können nur mit Elementen der Klasse Item verwendet werden</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeTypeLoader</name>
-    <message>
-        <source>%1 %2</source>
-        <translation>%1 %2</translation>
-    </message>
-    <message>
-        <source>Type %1 unavailable</source>
-        <translation>Der Typ %1 ist nicht verfügbar</translation>
-    </message>
-    <message>
-        <source>Namespace %1 cannot be used as a type</source>
-        <translation>Der Namensraum %1 kann nicht als Typangabe verwendet werden</translation>
-    </message>
-    <message>
-        <source>Script %1 unavailable</source>
-        <translation>Das Skript %1 ist nicht verfügbar</translation>
-    </message>
-</context>
-<context>
-    <name>QmlJSDebugger::QtQuick1::ZoomTool</name>
-    <message>
-        <source>Zoom to &amp;100%</source>
-        <translation>Auf &amp;100% vergrößern</translation>
-    </message>
-    <message>
-        <source>Zoom In</source>
-        <translation>Vergrößern</translation>
-    </message>
-    <message>
-        <source>Zoom Out</source>
-        <translation>Verkleinern</translation>
-    </message>
-</context>
-<context>
-    <name>QmlJSDebugger::QtQuick1::LiveSelectionTool</name>
-    <message>
-        <source>Items</source>
-        <translation>Elemente</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeComponent</name>
-    <message>
-        <source>createObject: value is not an object</source>
-        <translation>createObject: Der Wert ist kein Objekt</translation>
-    </message>
-    <message>
-        <source>Invalid empty URL</source>
-        <translation>Ungültige (leere) URL</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeTextInput</name>
-    <message>
-        <source>Could not instantiate cursor delegate</source>
-        <translation>Cursor-Delegate konnte nicht instanziiert werden</translation>
-    </message>
-    <message>
-        <source>Could not load cursor delegate</source>
-        <translation>Cursor-Delegate konnte nicht geladen werden</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeListModel</name>
-    <message>
-        <source>set: value is not an object</source>
-        <translation>set: Der Wert ist kein Objekt</translation>
-    </message>
-    <message>
-        <source>ListElement: cannot use script for property value</source>
-        <translation>ListElement: Es kann kein Skript für den Wert der Eigenschaft verwendet werden</translation>
-    </message>
-    <message>
-        <source>ListModel: undefined property &apos;%1&apos;</source>
-        <translation>ListModel: Die Eigenschaft &apos;%1&apos; ist nicht definiert</translation>
-    </message>
-    <message>
-        <source>ListElement: cannot contain nested elements</source>
-        <translation>ListElement kann keine geschachtelten Elemente enthalten</translation>
-    </message>
-    <message>
-        <source>insert: value is not an object</source>
-        <translation>insert: Der Wert ist kein Objekt</translation>
-    </message>
-    <message>
-        <source>remove: index %1 out of range</source>
-        <translation>remove: Der Index %1 ist außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>set: index %1 out of range</source>
-        <translation>set: Der Index %1 ist außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>append: value is not an object</source>
-        <translation>append: Der Wert ist kein Objekt</translation>
-    </message>
-    <message>
-        <source>move: out of range</source>
-        <translation>move: Außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>insert: index %1 out of range</source>
-        <translation>insert: Der Index %1 ist außerhalb des gültigen Bereichs</translation>
-    </message>
-    <message>
-        <source>ListElement: cannot use reserved &quot;id&quot; property</source>
-        <translation>ListElement: Die &quot;id&quot;-Eigenschaft kann nicht verwendet werden</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeEngine</name>
-    <message>
-        <source>Version mismatch: expected %1, found %2</source>
-        <translation>Die Version %2 kann nicht verwendet werden; es wird %1 benötigt</translation>
-    </message>
-    <message>
-        <source>executeSql called outside transaction()</source>
-        <translation>&apos;executeSql&apos; wurde außerhalb von &apos;transaction()&apos; aufgerufen</translation>
-    </message>
-    <message>
-        <source>Read-only Transaction</source>
-        <translation>Schreibgeschützte Transaktion</translation>
-    </message>
-    <message>
-        <source>SQL transaction failed</source>
-        <translation>Die SQL-Transaktion ist fehlgeschlagen</translation>
-    </message>
-    <message>
-        <source>transaction: missing callback</source>
-        <translation>callback fehlt bei Transaktion</translation>
-    </message>
-    <message>
-        <source>SQL: database version mismatch</source>
-        <translation>SQL: Die Version der Datenbank entspricht nicht der erwarteten Version</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeVME</name>
-    <message>
-        <source>Cannot assign object to list</source>
-        <translation>Zuweisung eines Objekts an eine Liste nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Cannot assign object type %1 with no default method</source>
-        <translation>Der Objekttyp %1 kann nicht zugewiesen werden, da keine Vorgabe-Methode existiert</translation>
-    </message>
-    <message>
-        <source>Cannot connect mismatched signal/slot %1 %vs. %2</source>
-        <translation>Es kann keine Verbindung zwischen dem Signal %1 und dem Slot %2 hergestellt werden, da sie nicht zusammenpassen</translation>
-    </message>
-    <message>
-        <source>Cannot assign value %1 to property %2</source>
-        <translation>Der Wert &apos;%1&apos; kann der Eigenschaft %2 nicht zugewiesen werden</translation>
-    </message>
-    <message>
-        <source>Cannot set properties on %1 as it is null</source>
-        <translation>Es können keine Eigenschaften auf %1 gesetzt werden, da es &apos;null&apos; ist</translation>
-    </message>
-    <message>
-        <source>Cannot assign an object to signal property %1</source>
-        <translation>Der Signal-Eigenschaft %1 kann kein Objekt zugewiesen werden</translation>
-    </message>
-    <message>
-        <source>Unable to create object of type %1</source>
-        <translation>Es konnte kein Objekt des Typs %1 erzeugt werden</translation>
-    </message>
-    <message>
-        <source>Cannot assign object to interface property</source>
-        <translation>Der Eigenschaft der Schnittstelle kann kein Objekt zugewiesen werden</translation>
-    </message>
-    <message>
-        <source>Unable to create attached object</source>
-        <translation>Es konnte kein &apos;attached&apos;-Objekt erzeugt werden</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeImportDatabase</name>
-    <message>
-        <source>is ambiguous. Found in %1 and in %2</source>
-        <translation>ist mehrdeutig. Es kommt in %1 und in %2 vor</translation>
-    </message>
-    <message>
-        <source>local directory</source>
-        <translation>lokales Verzeichnis</translation>
-    </message>
-    <message>
-        <source>import &quot;%1&quot; has no qmldir and no namespace</source>
-        <translation>&quot;qmldir&quot; und Namensraum fehlen bei dem Import &quot;%1&quot;</translation>
-    </message>
-    <message>
-        <source>- %1 is not a namespace</source>
-        <translation>- %1 ist kein gültiger Namensraum</translation>
-    </message>
-    <message>
-        <source>module &quot;%1&quot; plugin &quot;%2&quot; not found</source>
-        <translation>Modul &quot;%1&quot; Plugin &quot;%2&quot; konnte nicht gefunden werden</translation>
-    </message>
-    <message>
-        <source>is not a type</source>
-        <translation>ist kein Typ</translation>
-    </message>
-    <message>
-        <source>module &quot;%1&quot; is not installed</source>
-        <translation>Modul &quot;%1&quot; ist nicht installiert</translation>
-    </message>
-    <message>
-        <source>module &quot;%1&quot; version %2.%3 is not installed</source>
-        <translation>Modul &quot;%1&quot; Version %2.%3 ist nicht installiert</translation>
-    </message>
-    <message>
-        <source>File name case mismatch for &quot;%1&quot;</source>
-        <translation>Die Groß/Kleinschreibung in &quot;%1&quot; stimmt nicht überein</translation>
-    </message>
-    <message>
-        <source>- nested namespaces not allowed</source>
-        <translation>- geschachtelte Namensräume sind nicht zulässig</translation>
-    </message>
-    <message>
-        <source>plugin cannot be loaded for module &quot;%1&quot;: %2</source>
-        <translation>das Plugin des Moduls &quot;%1&quot; kann nicht geladen werden: %2</translation>
-    </message>
-    <message>
-        <source>is instantiated recursively</source>
-        <translation>wird rekursiv instanziiert</translation>
-    </message>
-    <message>
-        <source>is ambiguous. Found in %1 in version %2.%3 and %4.%5</source>
-        <translation>ist mehrdeutig. Es kommt in %1 in den Versionen %2.%3 und %4.%5 vor</translation>
-    </message>
-    <message>
-        <source>&quot;%1&quot;: no such directory</source>
-        <translation>das Verzeichnis &quot;%1&quot; existiert nicht</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativePixmap</name>
-    <message>
-        <source>Error decoding: %1: %2</source>
-        <translation>Fehler beim Dekodieren: %1: %2</translation>
-    </message>
-    <message>
-        <source>Cannot open: %1</source>
-        <translation>Fehlschlag beim Öffnen: %1</translation>
-    </message>
-    <message>
-        <source>Failed to get image from provider: %1</source>
-        <translation>Bilddaten konnten nicht erhalten werden: %1</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeBinding</name>
-    <message>
-        <source>Binding loop detected for property &quot;%1&quot;</source>
-        <translation>Bei der für die Eigenschaft &quot;%1&quot; angegebenen Bindung wurde eine Endlosschleife festgestellt</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeCompiledBindings</name>
-    <message>
-        <source>Binding loop detected for property &quot;%1&quot;</source>
-        <translation>Bei der für die Eigenschaft &quot;%1&quot; angegebenen Bindung wurde eine Endlosschleife festgestellt</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeXmlRoleList</name>
-    <message>
-        <source>An XmlListModel query must start with &apos;/&apos; or &quot;//&quot;</source>
-        <translation>Eine XmlListMode-Abfrage muss mit &apos;/&apos; oder &quot;//&quot; beginnen</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeParser</name>
-    <message>
-        <source>Script import qualifiers must be unique.</source>
-        <translation>Der für den Skript-Import angegebene Qualifizierer muss eindeutig sein.</translation>
-    </message>
-    <message>
-        <source>Unterminated regular expression class</source>
-        <translation>Klasse im regulären Ausdruck nicht abgeschlossen</translation>
-    </message>
-    <message>
-        <source>Library import requires a version</source>
-        <translation>Der Import einer Bibliothek erfordert eine Versionsangabe</translation>
-    </message>
-    <message>
-        <source>Invalid regular expression flag &apos;%0&apos;</source>
-        <translation>Ungültiger Modifikator &apos;%0&apos; bei regulärem Ausdruck</translation>
-    </message>
-    <message>
-        <source>JavaScript declaration outside Script element</source>
-        <translation>Eine JavaScript-Deklaration ist außerhalb eines Skriptelementes nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Illegal character</source>
-        <translation>Ungültiges Zeichen</translation>
-    </message>
-    <message>
-        <source>Unclosed comment at end of file</source>
-        <translation>Kommentar am Dateiende nicht abgeschlossen</translation>
-    </message>
-    <message>
-        <source>Unclosed string at end of line</source>
-        <translation>Zeichenkette am Zeilenende nicht abgeschlossen</translation>
-    </message>
-    <message>
-        <source>Expected property type</source>
-        <translation>Typangabe für Eigenschaft erwartet</translation>
-    </message>
-    <message>
-        <source>Expected type name</source>
-        <translation>Es wird ein Typname erwartet</translation>
-    </message>
-    <message>
-        <source>Illegal escape sequence</source>
-        <translation>Ungültige Escape-Sequenz</translation>
-    </message>
-    <message>
-        <source>Readonly not yet supported</source>
-        <translation>&apos;read-only&apos; wird an dieser Stelle noch nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Unterminated regular expression literal</source>
-        <translation>Regulärer Ausdruck nicht abgeschlossen</translation>
-    </message>
-    <message>
-        <source>Property value set multiple times</source>
-        <translation>Mehrfache Zuweisung eines Wertes an eine Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Unterminated regular expression backslash sequence</source>
-        <translation>Backslash-Sequenz in regulärem Ausdruck nicht abgeschlossen</translation>
-    </message>
-    <message>
-        <source>Identifier cannot start with numeric literal</source>
-        <translation>Ein Bezeichner darf nicht mit einem numerischen Literal beginnen</translation>
-    </message>
-    <message>
-        <source>Script import requires a qualifier</source>
-        <translation>Der Skript-Import erfordert die Angabe eines Qualifizierers</translation>
-    </message>
-    <message>
-        <source>Illegal syntax for exponential number</source>
-        <translation>Ungültige Syntax des Exponenten</translation>
-    </message>
-    <message>
-        <source>Invalid property type modifier</source>
-        <translation>Ungültiger Modifikator für den Typ der Eigenschaft</translation>
-    </message>
-    <message>
-        <source>Reserved name &quot;Qt&quot; cannot be used as an qualifier</source>
-        <translation>Der reservierte Name &quot;Qt&quot; kann nicht als Bezeichner verwendet werden</translation>
-    </message>
-    <message>
-        <source>Expected token `%1&apos;</source>
-        <translation>Es wird das Element &apos;%1&apos; erwartet</translation>
-    </message>
-    <message>
-        <source>Unexpected token `%1&apos;</source>
-        <translation>Unerwartetes Element &apos;%1&apos;</translation>
-    </message>
-    <message>
-        <source>Expected parameter type</source>
-        <translation>Es wird eine Typangabe für den Parameter erwartet</translation>
-    </message>
-    <message>
-        <source>Illegal unicode escape sequence</source>
-        <translation>Ungültige Unicode-Escape-Sequenz</translation>
-    </message>
-    <message>
-        <source>Unexpected property type modifier</source>
-        <translation>Modifikator für den Typ der Eigenschaft an dieser Stelle nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Invalid import qualifier ID</source>
-        <translation>Ungültige Id-Angabe bei Import</translation>
-    </message>
-    <message>
-        <source>Syntax error</source>
-        <translation>Syntaxfehler</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativePropertyChanges</name>
-    <message>
-        <source>Cannot assign to read-only property &quot;%1&quot;</source>
-        <translation>Die Eigenschaft &quot;%1&quot; ist schreibgeschützt und kann daher nicht zugewiesen werden</translation>
-    </message>
-    <message>
-        <source>PropertyChanges does not support creating state-specific objects.</source>
-        <translation>Die Erzeugung von Objekten, die einem Zustand zugeordnet sind, wird von PropertyChanges nicht unterstützt.</translation>
-    </message>
-    <message>
-        <source>Cannot assign to non-existent property &quot;%1&quot;</source>
-        <translation>Es kann keine Zuweisung erfolgen, da keine Eigenschaft des Namens &apos;%1&quot; existiert</translation>
-    </message>
-</context>
-<context>
-    <name>Debugger::JSAgentWatchData</name>
-    <message>
-        <source>[Array of length %1]</source>
-        <translation>[Feld der Länge %1]</translation>
-    </message>
-    <message>
-        <source>&lt;undefined&gt;</source>
-        <translation>&lt;nicht definiert&gt;</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeAbstractAnimation</name>
-    <message>
-        <source>Animation is an abstract class</source>
-        <translation>Die Klasse Animation ist abstrakt</translation>
-    </message>
-    <message>
-        <source>Cannot animate non-existent property &quot;%1&quot;</source>
-        <translation>Die Eigenschaft &quot;%1&quot; existiert nicht und kann daher nicht animiert werden</translation>
-    </message>
-    <message>
-        <source>Cannot animate read-only property &quot;%1&quot;</source>
-        <translation>Die Eigenschaft &quot;%1&quot; ist schreibgeschützt und kann daher nicht animiert werden</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeFlipable</name>
-    <message>
-        <source>front is a write-once property</source>
-        <translation>&apos;front&apos; kann nur einmal zugewiesen werden</translation>
-    </message>
-    <message>
-        <source>back is a write-once property</source>
-        <translation>&apos;back&apos; kann nur einmal zugewiesen werden</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeParentAnimation</name>
-    <message>
-        <source>Unable to preserve appearance under non-uniform scale</source>
-        <translation>Das Erscheinungsbild kann bei einer nicht-uniformen Skalierung nicht beibehalten werden</translation>
-    </message>
-    <message>
-        <source>Unable to preserve appearance under complex transform</source>
-        <translation>Das Erscheinungsbild kann bei einer komplexen Transformation nicht beibehalten werden</translation>
-    </message>
-    <message>
-        <source>Unable to preserve appearance under scale of 0</source>
-        <translation>Das Erscheinungsbild kann bei einer Skalierung mit 0 nicht beibehalten werden</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeParentChange</name>
-    <message>
-        <source>Unable to preserve appearance under non-uniform scale</source>
-        <translation>Das Erscheinungsbild kann bei einer nicht-uniformen Skalierung nicht beibehalten werden</translation>
-    </message>
-    <message>
-        <source>Unable to preserve appearance under complex transform</source>
-        <translation>Das Erscheinungsbild kann bei einer komplexen Transformation nicht beibehalten werden</translation>
-    </message>
-    <message>
-        <source>Unable to preserve appearance under scale of 0</source>
-        <translation>Das Erscheinungsbild kann bei einer Skalierung mit 0 nicht beibehalten werden</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeVisualDataModel</name>
-    <message>
-        <source>Delegate component must be Item type.</source>
-        <translation>Delegate-Komponente muss vom Typ &apos;Item&apos; sein.</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeConnections</name>
-    <message>
-        <source>Connections: script expected</source>
-        <translation>Verbindungen: Skript erwartet</translation>
-    </message>
-    <message>
-        <source>Connections: nested objects not allowed</source>
-        <translation>Verbindungen: Verschachtelte Objekte sind nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Cannot assign to non-existent property &quot;%1&quot;</source>
-        <translation>Es kann keine Zuweisung erfolgen, da keine Eigenschaft des Namens &quot;%1&quot; existiert</translation>
-    </message>
-    <message>
-        <source>Connections: syntax error</source>
-        <translation>Verbindungen: Syntaxfehler</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeApplication</name>
-    <message>
-        <source>Application is an abstract class</source>
-        <translation>&apos;Application&apos; ist eine abstrakte Klasse</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeGestureArea</name>
-    <message>
-        <source>GestureArea: script expected</source>
-        <translation>GestureArea: Skript erwartet</translation>
-    </message>
-    <message>
-        <source>GestureArea: syntax error</source>
-        <translation>GestureArea: Syntaxfehler</translation>
-    </message>
-    <message>
-        <source>GestureArea: nested objects not allowed</source>
-        <translation>GestureArea: Verschachtelte Objekte sind nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Cannot assign to non-existent property &quot;%1&quot;</source>
-        <translation>Die Eigenschaft &quot;%1&quot; existiert nicht und kann daher nicht zugewiesen werden</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeAnimatedImage</name>
-    <message>
-        <source>Qt was built without support for QMovie</source>
-        <translation>Diese Version der Qt-Bibliothek wurde ohne Unterstützung für die Klasse QMovie erstellt</translation>
-    </message>
-</context>
-<context>
-    <name>QObject</name>
-    <message>
-        <source>&quot;%1&quot; duplicates a previous role name and will be disabled.</source>
-        <translation>&quot;%1&quot; ist bereits als Name einer Rolle vergeben und wird daher deaktiviert.</translation>
-    </message>
-    <message>
-        <source>invalid query: &quot;%1&quot;</source>
-        <translation>Ungültige Abfrage: &quot;%1&quot;</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeKeysAttached</name>
-    <message>
-        <source>Keys is only available via attached properties</source>
-        <translation>Die Unterstützung für Tasten ist nur über Eigenschaften des Typs &apos;attached&apos; verfügbar</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeLoader</name>
-    <message>
-        <source>Loader does not support loading non-visual elements.</source>
-        <translation>Das Laden nicht-visueller Elemente ist nicht unterstützt.</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeXmlListModelRole</name>
-    <message>
-        <source>An XmlRole query must not start with &apos;/&apos;</source>
-        <translation>Eine XmlRole-Abfrage darf nicht mit &apos;/&apos; beginnen</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeBehavior</name>
-    <message>
-        <source>Cannot change the animation assigned to a Behavior.</source>
-        <translation>Die zu einem Behavior-Element gehörende Animation kann nicht geändert werden.</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeKeyNavigationAttached</name>
-    <message>
-        <source>KeyNavigation is only available via attached properties</source>
-        <translation>Tastennavigation ist nur über Eigenschaften des Typs &apos;attached&apos; verfügbar</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeAnchorAnimation</name>
-    <message>
-        <source>Cannot set a duration of &lt; 0</source>
-        <translation>Es kann keine Zeitdauer &lt;0 gesetzt werden</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativePauseAnimation</name>
-    <message>
-        <source>Cannot set a duration of &lt; 0</source>
-        <translation>Es kann keine Zeitdauer &lt;0 gesetzt werden</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativePropertyAnimation</name>
-    <message>
-        <source>Cannot set a duration of &lt; 0</source>
-        <translation>Es kann keine Zeitdauer &lt;0 gesetzt werden</translation>
-    </message>
-</context>
-<context>
-    <name>QDeclarativeXmlListModel</name>
-    <message>
-        <source>Qt was built without support for xmlpatterns</source>
-        <translation>Diese Version der Qt-Bibliothek wurde ohne Unterstützung für xmlpatterns erstellt</translation>
-    </message>
-</context>
-</TS>
diff --git a/translations/qtquickcontrols_de.qm b/translations/qtquickcontrols_de.qm
deleted file mode 100755
index d4fba5aa775d812ebbf476eb323625a96156c9cf..0000000000000000000000000000000000000000
Binary files a/translations/qtquickcontrols_de.qm and /dev/null differ
diff --git a/translations/qtquickcontrols_de.ts b/translations/qtquickcontrols_de.ts
deleted file mode 100755
index 7cef19ec028373435f319deac30268c19a977e94..0000000000000000000000000000000000000000
--- a/translations/qtquickcontrols_de.ts
+++ /dev/null
@@ -1,524 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<context>
-    <name>AddUsersToRoomPopup</name>
-    <message>
-        <source>add user to room</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>add</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>cancel</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>ChannelViewFooterToolbar</name>
-    <message>
-        <source>no camera or microphone access, check permissions</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>ChannelViewLeftPane</name>
-    <message>
-        <source>Users in channel</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>ChannelViewRightPane</name>
-    <message>
-        <source>Ongoing file uploads</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>Cancel</source>
-        <translation type="unfinished">Abbrechen</translation>
-    </message>
-</context>
-<context>
-    <name>CreatePrivateChannelPopup</name>
-    <message>
-        <source>search for user</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>create</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>cancel</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>CreatePrivateGroupPopup</name>
-    <message>
-        <source>new Room</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>Read Only Channel</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>add user to room</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>create</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>cancel</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>CreatePublicRoomPopup</name>
-    <message>
-        <source>new Room</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>Read Only Channel</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>add user to room</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>create</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>cancel</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>DefaultColorDialog</name>
-    <message>
-        <source>OK</source>
-        <translation type="vanished">OK</translation>
-    </message>
-    <message>
-        <source>Hue</source>
-        <translation type="vanished">Farbton</translation>
-    </message>
-    <message>
-        <source>Alpha</source>
-        <translation type="vanished">Alpha</translation>
-    </message>
-    <message>
-        <source>Luminosity</source>
-        <translation type="vanished">Helligkeit</translation>
-    </message>
-    <message>
-        <source>Cancel</source>
-        <translation type="vanished">Abbrechen</translation>
-    </message>
-    <message>
-        <source>Saturation</source>
-        <translation type="vanished">Sättigung</translation>
-    </message>
-</context>
-<context>
-    <name>DefaultDialogWrapper</name>
-    <message>
-        <source>Show Details...</source>
-        <translation type="vanished">Details anzeigen...</translation>
-    </message>
-</context>
-<context>
-    <name>DefaultFileDialog</name>
-    <message>
-        <source>Open</source>
-        <translation type="vanished">Öffnen</translation>
-    </message>
-    <message>
-        <source>Save</source>
-        <translation type="vanished">Speichern</translation>
-    </message>
-    <message>
-        <source>Size</source>
-        <translation type="vanished">Größe</translation>
-    </message>
-    <message>
-        <source>Type</source>
-        <translation type="vanished">Typ</translation>
-    </message>
-    <message>
-        <source>Add the current directory as a favorite</source>
-        <translation type="vanished">Aktuellen Ordner als Favoriten hinzufügen</translation>
-    </message>
-    <message>
-        <source>Filename</source>
-        <translation type="vanished">Dateiname</translation>
-    </message>
-    <message>
-        <source>Cancel</source>
-        <translation type="vanished">Abbrechen</translation>
-    </message>
-    <message>
-        <source>Choose</source>
-        <translation type="vanished">Auswählen</translation>
-    </message>
-    <message>
-        <source>Modified</source>
-        <translation type="vanished">Letzte Änderung</translation>
-    </message>
-    <message>
-        <source>Accessed</source>
-        <translation type="vanished">Letzter Zugriff</translation>
-    </message>
-    <message>
-        <source>Go up to the folder containing this one</source>
-        <translation type="vanished">Gehe nach oben zum Ordner, der diesen enthält</translation>
-    </message>
-    <message>
-        <source>Remove favorite</source>
-        <translation type="vanished">Favoriten löschen</translation>
-    </message>
-</context>
-<context>
-    <name>DefaultFontDialog</name>
-    <message>
-        <source>OK</source>
-        <translation type="vanished">OK</translation>
-    </message>
-    <message>
-        <source>Bold</source>
-        <translation type="vanished">Fett</translation>
-    </message>
-    <message>
-        <source>Font</source>
-        <translation type="vanished">Schriftart</translation>
-    </message>
-    <message>
-        <source>Size</source>
-        <translation type="vanished">Größe</translation>
-    </message>
-    <message>
-        <source>Thin</source>
-        <translation type="vanished">Dünn</translation>
-    </message>
-    <message>
-        <source>Black</source>
-        <translation type="vanished">Schwarz</translation>
-    </message>
-    <message>
-        <source>Light</source>
-        <translation type="vanished">Leicht</translation>
-    </message>
-    <message>
-        <source>Style</source>
-        <translation type="vanished">Schriftstil</translation>
-    </message>
-    <message>
-        <source>Font Family</source>
-        <translation type="vanished">Schriftfamilie</translation>
-    </message>
-    <message>
-        <source>Cancel</source>
-        <translation type="vanished">Abbrechen</translation>
-    </message>
-    <message>
-        <source>Italic</source>
-        <translation type="vanished">Kursiv</translation>
-    </message>
-    <message>
-        <source>Medium</source>
-        <translation type="vanished">Mittel</translation>
-    </message>
-    <message>
-        <source>Normal</source>
-        <translation type="vanished">Normal</translation>
-    </message>
-    <message>
-        <source>Sample</source>
-        <translation type="vanished">Beispiel</translation>
-    </message>
-    <message>
-        <source>Weight</source>
-        <translation type="vanished">Dicke</translation>
-    </message>
-    <message>
-        <source>ExtraLight</source>
-        <translation type="vanished">Sehr dünn</translation>
-    </message>
-    <message>
-        <source>Strikeout</source>
-        <translation type="vanished">Durchgestrichen</translation>
-    </message>
-    <message>
-        <source>Underline</source>
-        <translation type="vanished">Unterstrichen</translation>
-    </message>
-    <message>
-        <source>ExtraBold</source>
-        <translation type="vanished">Sehr fett</translation>
-    </message>
-    <message>
-        <source>DemiBold</source>
-        <translation type="vanished">Halbfett</translation>
-    </message>
-    <message>
-        <source>Writing System</source>
-        <translation type="vanished">Schriftsystem</translation>
-    </message>
-    <message>
-        <source>Overline</source>
-        <translation type="vanished">Ãœberstrichen</translation>
-    </message>
-</context>
-<context>
-    <name>DefaultMessageDialog</name>
-    <message>
-        <source>OK</source>
-        <translation type="vanished">OK</translation>
-    </message>
-    <message>
-        <source>No</source>
-        <translation type="vanished">Nein</translation>
-    </message>
-    <message>
-        <source>Yes</source>
-        <translation type="vanished">Ja</translation>
-    </message>
-    <message>
-        <source>Help</source>
-        <translation type="vanished">Hilfe</translation>
-    </message>
-    <message>
-        <source>Open</source>
-        <translation type="vanished">Öffnen</translation>
-    </message>
-    <message>
-        <source>Save</source>
-        <translation type="vanished">Speichern</translation>
-    </message>
-    <message>
-        <source>Abort</source>
-        <translation type="vanished">Abbrechen</translation>
-    </message>
-    <message>
-        <source>Apply</source>
-        <translation type="vanished">Anwenden</translation>
-    </message>
-    <message>
-        <source>Close</source>
-        <translation type="vanished">Schließen</translation>
-    </message>
-    <message>
-        <source>Reset</source>
-        <translation type="vanished">Zurücksetzen</translation>
-    </message>
-    <message>
-        <source>Retry</source>
-        <translation type="vanished">Wiederholen</translation>
-    </message>
-    <message>
-        <source>Restore Defaults</source>
-        <translation type="vanished">Voreinstellungen</translation>
-    </message>
-    <message>
-        <source>Show Details...</source>
-        <translation type="vanished">Details anzeigen...</translation>
-    </message>
-    <message>
-        <source>Cancel</source>
-        <translation type="vanished">Abbrechen</translation>
-    </message>
-    <message>
-        <source>Ignore</source>
-        <translation type="vanished">Ignorieren</translation>
-    </message>
-    <message>
-        <source>No to All</source>
-        <translation type="vanished">Nein, keine</translation>
-    </message>
-    <message>
-        <source>Yes to All</source>
-        <translation type="vanished">Ja, alle</translation>
-    </message>
-    <message>
-        <source>Save All</source>
-        <translation type="vanished">Alles Speichern</translation>
-    </message>
-    <message>
-        <source>Discard</source>
-        <translation type="vanished">Verwerfen</translation>
-    </message>
-    <message>
-        <source>Hide Details</source>
-        <translation type="vanished">Details verbergen</translation>
-    </message>
-</context>
-<context>
-    <name>EditMenu_base</name>
-    <message>
-        <source>Cu&amp;t</source>
-        <translation type="vanished">&amp;Ausschneiden</translation>
-    </message>
-    <message>
-        <source>&amp;Copy</source>
-        <translation type="vanished">&amp;Kopieren</translation>
-    </message>
-    <message>
-        <source>&amp;Redo</source>
-        <translation type="vanished">Wieder&amp;herstellen</translation>
-    </message>
-    <message>
-        <source>&amp;Undo</source>
-        <translation type="vanished">&amp;Rückgängig</translation>
-    </message>
-    <message>
-        <source>Clear</source>
-        <translation type="vanished">Alles löschen</translation>
-    </message>
-    <message>
-        <source>&amp;Paste</source>
-        <translation type="vanished">Einf&amp;ügen</translation>
-    </message>
-    <message>
-        <source>Delete</source>
-        <translation type="vanished">Löschen</translation>
-    </message>
-    <message>
-        <source>Select All</source>
-        <translation type="vanished">Alles auswählen</translation>
-    </message>
-</context>
-<context>
-    <name>ListHeader</name>
-    <message>
-        <source>Release to load more...</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>LoginPage</name>
-    <message>
-        <source>username</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>password</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>login</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>username or password wrong</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>MainView</name>
-    <message>
-        <source>Logout</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>Settings</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>About</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>channels</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>private messages</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>SettingsPopup</name>
-    <message>
-        <source>font size</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>example text ABC 123 xyz</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>apply</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>cancel</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>TopBar</name>
-    <message>
-        <source>Logout</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>Settings</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>About</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>Video</name>
-    <message>
-        <source>[</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>shoot photo or record video</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>video</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>photo</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>start recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>front</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>back</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-<context>
-    <name>main</name>
-    <message>
-        <source>ucom</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <source>logout ?</source>
-        <translation type="unfinished"></translation>
-    </message>
-</context>
-</TS>
diff --git a/translations/qtscript_de.qm b/translations/qtscript_de.qm
deleted file mode 100644
index d0d210a4fdde92fb86db7c8175af782b13247ebb..0000000000000000000000000000000000000000
Binary files a/translations/qtscript_de.qm and /dev/null differ
diff --git a/translations/qtscript_de.ts b/translations/qtscript_de.ts
deleted file mode 100755
index d8b83aa589bac5469e237765833100a663f746cb..0000000000000000000000000000000000000000
--- a/translations/qtscript_de.ts
+++ /dev/null
@@ -1,279 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<context>
-    <name>QScriptDebugger</name>
-    <message>
-        <source>F3</source>
-        <translation>F3</translation>
-    </message>
-    <message>
-        <source>F5</source>
-        <translation>F5</translation>
-    </message>
-    <message>
-        <source>F9</source>
-        <translation>F9</translation>
-    </message>
-    <message>
-        <source>F10</source>
-        <translation>F10</translation>
-    </message>
-    <message>
-        <source>F11</source>
-        <translation>F11</translation>
-    </message>
-    <message>
-        <source>Debug</source>
-        <translation>Debuggen</translation>
-    </message>
-    <message>
-        <source>Line:</source>
-        <translation>Zeile:</translation>
-    </message>
-    <message>
-        <source>Clear Console</source>
-        <translation>Konsole löschen</translation>
-    </message>
-    <message>
-        <source>Ctrl+F</source>
-        <translation>Ctrl+F</translation>
-    </message>
-    <message>
-        <source>Ctrl+G</source>
-        <translation>Ctrl+G</translation>
-    </message>
-    <message>
-        <source>Clear Error Log</source>
-        <translation>Fehlerausgabe löschen</translation>
-    </message>
-    <message>
-        <source>Clear Debug Output</source>
-        <translation>Debug-Ausgabe löschen</translation>
-    </message>
-    <message>
-        <source>Toggle Breakpoint</source>
-        <translation>Haltepunkt umschalten</translation>
-    </message>
-    <message>
-        <source>Find &amp;Next</source>
-        <translation>&amp;Nächste Fundstelle</translation>
-    </message>
-    <message>
-        <source>Continue</source>
-        <translation>Weiter</translation>
-    </message>
-    <message>
-        <source>Find &amp;Previous</source>
-        <translation>&amp;Vorhergehende Fundstelle</translation>
-    </message>
-    <message>
-        <source>Step Out</source>
-        <translation>Einzelschritt heraus</translation>
-    </message>
-    <message>
-        <source>Interrupt</source>
-        <translation>Unterbrechen</translation>
-    </message>
-    <message>
-        <source>Go to Line</source>
-        <translation>Gehe zu Zeile</translation>
-    </message>
-    <message>
-        <source>Ctrl+F10</source>
-        <translation>Ctrl+F10</translation>
-    </message>
-    <message>
-        <source>Step Into</source>
-        <translation>Einzelschritt herein</translation>
-    </message>
-    <message>
-        <source>Step Over</source>
-        <translation>Einzelschritt über</translation>
-    </message>
-    <message>
-        <source>&amp;Find in Script...</source>
-        <translation>&amp;Suche im Skript...</translation>
-    </message>
-    <message>
-        <source>Run to Cursor</source>
-        <translation>Bis Cursor ausführen</translation>
-    </message>
-    <message>
-        <source>Run to New Script</source>
-        <translation>Bis zu neuem Skript ausführen</translation>
-    </message>
-    <message>
-        <source>Shift+F3</source>
-        <translation>Shift+F3</translation>
-    </message>
-    <message>
-        <source>Shift+F5</source>
-        <translation>Shift+F5</translation>
-    </message>
-    <message>
-        <source>Shift+F11</source>
-        <translation>Shift+F11</translation>
-    </message>
-</context>
-<context>
-    <name>QScriptBreakpointsModel</name>
-    <message>
-        <source>ID</source>
-        <translation>ID</translation>
-    </message>
-    <message>
-        <source>Single-shot</source>
-        <translation>Einmal auslösen</translation>
-    </message>
-    <message>
-        <source>Condition</source>
-        <translation>Bedingung</translation>
-    </message>
-    <message>
-        <source>Ignore-count</source>
-        <translation>Auslösen nach</translation>
-    </message>
-    <message>
-        <source>Location</source>
-        <translation>Stelle</translation>
-    </message>
-    <message>
-        <source>Hit-count</source>
-        <translation>Ausgelöst</translation>
-    </message>
-</context>
-<context>
-    <name>QScriptBreakpointsWidget</name>
-    <message>
-        <source>New</source>
-        <translation>Neu</translation>
-    </message>
-    <message>
-        <source>Delete</source>
-        <translation>Löschen</translation>
-    </message>
-</context>
-<context>
-    <name>QScriptDebuggerLocalsModel</name>
-    <message>
-        <source>Name</source>
-        <translation>Name</translation>
-    </message>
-    <message>
-        <source>Value</source>
-        <translation>Wert</translation>
-    </message>
-</context>
-<context>
-    <name>QScriptDebuggerStackModel</name>
-    <message>
-        <source>Name</source>
-        <translation>Name</translation>
-    </message>
-    <message>
-        <source>Level</source>
-        <translation>Ebene</translation>
-    </message>
-    <message>
-        <source>Location</source>
-        <translation>Stelle</translation>
-    </message>
-</context>
-<context>
-    <name>QScriptDebuggerCodeFinderWidget</name>
-    <message>
-        <source>Next</source>
-        <translation>Nächste</translation>
-    </message>
-    <message>
-        <source>Close</source>
-        <translation>Schließen</translation>
-    </message>
-    <message>
-        <source>Whole words</source>
-        <translation>Ganze Worte</translation>
-    </message>
-    <message>
-        <source>Previous</source>
-        <translation>Vorige</translation>
-    </message>
-    <message>
-        <source>&lt;img src=&quot;:/qt/scripttools/debugging/images/wrap.png&quot;&gt;&amp;nbsp;Search wrapped</source>
-        <translation>&lt;img src=&quot;:/qt/scripttools/debugging/images/wrap.png&quot;&gt;&amp;nbsp;Die Suche hat das Ende erreicht</translation>
-    </message>
-    <message>
-        <source>Case Sensitive</source>
-        <translation>Groß/Kleinschreibung beachten</translation>
-    </message>
-</context>
-<context>
-    <name>QScriptEngineDebugger</name>
-    <message>
-        <source>View</source>
-        <translation>Ansicht</translation>
-    </message>
-    <message>
-        <source>Stack</source>
-        <translation>Stapel</translation>
-    </message>
-    <message>
-        <source>Debug Output</source>
-        <translation>Debug-Ausgabe</translation>
-    </message>
-    <message>
-        <source>Breakpoints</source>
-        <translation>Haltepunkte</translation>
-    </message>
-    <message>
-        <source>Qt Script Debugger</source>
-        <translation>Qt Script Debugger</translation>
-    </message>
-    <message>
-        <source>Locals</source>
-        <translation>Lokale Variablen</translation>
-    </message>
-    <message>
-        <source>Search</source>
-        <translation>Suche</translation>
-    </message>
-    <message>
-        <source>Error Log</source>
-        <translation>Fehlerausgabe</translation>
-    </message>
-    <message>
-        <source>Console</source>
-        <translation>Konsole</translation>
-    </message>
-    <message>
-        <source>Loaded Scripts</source>
-        <translation>Geladene Skripte</translation>
-    </message>
-</context>
-<context>
-    <name>QScriptNewBreakpointWidget</name>
-    <message>
-        <source>Close</source>
-        <translation>Schließen</translation>
-    </message>
-</context>
-<context>
-    <name>QScriptEdit</name>
-    <message>
-        <source>Disable Breakpoint</source>
-        <translation>Haltepunkt deaktivieren</translation>
-    </message>
-    <message>
-        <source>Breakpoint Condition:</source>
-        <translation>Bedingung:</translation>
-    </message>
-    <message>
-        <source>Toggle Breakpoint</source>
-        <translation>Haltepunkt umschalten</translation>
-    </message>
-    <message>
-        <source>Enable Breakpoint</source>
-        <translation>Haltepunkt aktivieren</translation>
-    </message>
-</context>
-</TS>
diff --git a/translations/qtserialport_de.qm b/translations/qtserialport_de.qm
deleted file mode 100644
index caa69713bef90d1959ab3c7e283e2d003154f523..0000000000000000000000000000000000000000
Binary files a/translations/qtserialport_de.qm and /dev/null differ
diff --git a/translations/qtserialport_de.ts b/translations/qtserialport_de.ts
deleted file mode 100755
index fd2e7661e9f4904980f7318fe0240be4a88be8e6..0000000000000000000000000000000000000000
--- a/translations/qtserialport_de.ts
+++ /dev/null
@@ -1,71 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<context>
-    <name>QSerialPort</name>
-    <message>
-        <source>Permission error while creating lock file</source>
-        <translation>Fehlende Zugriffsberechtigung beim Erstellen der Lock-Datei</translation>
-    </message>
-    <message>
-        <source>No error</source>
-        <translation>Kein Fehler</translation>
-    </message>
-    <message>
-        <source>Device is already open</source>
-        <translation>Gerät bereits geöffnet</translation>
-    </message>
-    <message>
-        <source>No suitable custom baud rate divisor</source>
-        <translation>Kein geeigneter Divisor für benutzerdefinierte Baud-Rate</translation>
-    </message>
-    <message>
-        <source>Cannot set custom speed for one direction</source>
-        <translation>Es kann keine benutzerdefinierte Baud-Rate für eine Richtung festgelegt werden</translation>
-    </message>
-    <message>
-        <source>Device is not open</source>
-        <translation>Gerät nicht geöffnet</translation>
-    </message>
-    <message>
-        <source>The device supports only the ignoring policy</source>
-        <translation>Dieses Gerät unterstützt lediglich die Policy &quot;ignoring&quot;</translation>
-    </message>
-    <message>
-        <source>Operation timed out</source>
-        <translation>Zeitüberschreitung</translation>
-    </message>
-    <message>
-        <source>Custom baud rate is not supported</source>
-        <translation>Benutzerdefinierte Baud-Raten werden nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Error writing to device</source>
-        <translation>Fehler beim Schreiben zum Gerät</translation>
-    </message>
-    <message>
-        <source>Permission error while locking the device</source>
-        <translation>Fehlende Zugriffsberechtigung beim Sperren des Geräts</translation>
-    </message>
-    <message>
-        <source>Error reading from device</source>
-        <translation>Fehler während des Lesens vom Gerät</translation>
-    </message>
-    <message>
-        <source>Unsupported open mode</source>
-        <translation>Nicht unterstützter Modus zum Öffnen</translation>
-    </message>
-    <message>
-        <source>Device disappeared from the system</source>
-        <translation>Gerät wurde vom System entfernt</translation>
-    </message>
-    <message>
-        <source>Custom baud rate direction is unsupported</source>
-        <translation>Benutzerdefinierte Baud-Raten für einzelne Richtungen werden nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Invalid baud rate value</source>
-        <translation>Ungültiger Wert für Baud-Rate</translation>
-    </message>
-</context>
-</TS>
diff --git a/translations/qtwebengine_de.qm b/translations/qtwebengine_de.qm
deleted file mode 100644
index f4c0c7e20f7611f7aa5f6717dec2b9e57c9023e8..0000000000000000000000000000000000000000
Binary files a/translations/qtwebengine_de.qm and /dev/null differ
diff --git a/translations/qtwebengine_de.ts b/translations/qtwebengine_de.ts
deleted file mode 100755
index 706e0e2fed9525a25d6894c4b9817ba22d3a9684..0000000000000000000000000000000000000000
--- a/translations/qtwebengine_de.ts
+++ /dev/null
@@ -1,306 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<context>
-    <name>QWebEnginePage</name>
-    <message>
-        <source>Cut</source>
-        <translation>Ausschneiden</translation>
-    </message>
-    <message>
-        <source>Back</source>
-        <translation>Zurück</translation>
-    </message>
-    <message>
-        <source>Copy</source>
-        <translation>Kopieren</translation>
-    </message>
-    <message>
-        <source>Redo</source>
-        <translation>Wiederherstellen</translation>
-    </message>
-    <message>
-        <source>Stop</source>
-        <translation>Stop</translation>
-    </message>
-    <message>
-        <source>Undo</source>
-        <translation>Rückgängig machen</translation>
-    </message>
-    <message>
-        <source>&amp;Back</source>
-        <translation>&amp;Zurück</translation>
-    </message>
-    <message>
-        <source>Paste</source>
-        <translation>Einfügen</translation>
-    </message>
-    <message>
-        <source>Copy Image URL</source>
-        <translation>Adresse des Bildes kopieren</translation>
-    </message>
-    <message>
-        <source>Open Link in This Window</source>
-        <translation>Link in diesem Fenster öffnen</translation>
-    </message>
-    <message>
-        <source>Toggle Mute</source>
-        <translation>Stummschaltung umschalten</translation>
-    </message>
-    <message>
-        <source>Inspect Element</source>
-        <translation>Element untersuchen</translation>
-    </message>
-    <message>
-        <source>Open Link in New Background Tab</source>
-        <translation>Link in neuem Reiter im Hintergrund öffnen</translation>
-    </message>
-    <message>
-        <source>Toggle Media Controls</source>
-        <translation>Steuerelemente für Medieninhalte umschalten</translation>
-    </message>
-    <message>
-        <source>Reload</source>
-        <translation>Neu laden</translation>
-    </message>
-    <message>
-        <source>Unselect</source>
-        <translation>Auswahl aufheben</translation>
-    </message>
-    <message>
-        <source>Copy Link URL</source>
-        <translation>Link-Adresse kopieren</translation>
-    </message>
-    <message>
-        <source>Exit Full Screen Mode</source>
-        <translation>Vollbildmodus verlassen</translation>
-    </message>
-    <message>
-        <source>Paste and Match Style</source>
-        <translation>Einfügen und Stil anpassen</translation>
-    </message>
-    <message>
-        <source>Follow Link</source>
-        <translation>Link folgen</translation>
-    </message>
-    <message>
-        <source>Open Link in New Tab</source>
-        <translation>Link in neuem Reiter öffnen</translation>
-    </message>
-    <message>
-        <source>Reload and Bypass Cache</source>
-        <translation>Unter Umgehung des Caches neu laden</translation>
-    </message>
-    <message>
-        <source>Save &amp;Page</source>
-        <translation>Seite s&amp;peichern</translation>
-    </message>
-    <message>
-        <source>Select folder to upload</source>
-        <translation>Verzeichnis zum Hochladen</translation>
-    </message>
-    <message>
-        <source>Save Image</source>
-        <translation>Bild speichern</translation>
-    </message>
-    <message>
-        <source>Save Media</source>
-        <translation>Medieninhalt speichern</translation>
-    </message>
-    <message>
-        <source>Toggle Looping</source>
-        <translation>Wiederholung umschalten</translation>
-    </message>
-    <message>
-        <source>Close Page</source>
-        <translation>Seite schließen</translation>
-    </message>
-    <message>
-        <source>Toggle Play/Pause</source>
-        <translation>Abspielen/Pausieren umschalten</translation>
-    </message>
-    <message>
-        <source>Copy Image</source>
-        <translation>Bild kopieren</translation>
-    </message>
-    <message>
-        <source>&amp;Reload</source>
-        <translation>&amp;Neu laden</translation>
-    </message>
-    <message>
-        <source>Select All</source>
-        <translation>Alles auswählen</translation>
-    </message>
-    <message>
-        <source>Save Link</source>
-        <translation>Link speichern</translation>
-    </message>
-    <message>
-        <source>Copy Media URL</source>
-        <translation>Adresse des Medieninhalts kopieren</translation>
-    </message>
-    <message>
-        <source>&amp;View Page Source</source>
-        <translation>Seiten&amp;quelltext anzeigen</translation>
-    </message>
-    <message>
-        <source>Forward</source>
-        <translation>Vorwärts</translation>
-    </message>
-    <message>
-        <source>&amp;Forward</source>
-        <translation>&amp;Vorwärts</translation>
-    </message>
-    <message>
-        <source>Open Link in New Window</source>
-        <translation>Link in neuem Fenster öffnen</translation>
-    </message>
-    <message>
-        <source>Are you sure you want to leave this page?</source>
-        <translation>Möchten Sie diese Seite wirklich verlassen?</translation>
-    </message>
-</context>
-<context>
-    <name>QQuickWebEngineView</name>
-    <message>
-        <source>Back</source>
-        <translation>Zurück</translation>
-    </message>
-    <message>
-        <source>Copy</source>
-        <translation>Kopieren</translation>
-    </message>
-    <message>
-        <source>Copy Image URL</source>
-        <translation>Adresse des Bildes kopieren</translation>
-    </message>
-    <message>
-        <source>Toggle Mute</source>
-        <translation>Stummschaltung umschalten</translation>
-    </message>
-    <message>
-        <source>Inspect Element</source>
-        <translation>Element untersuchen</translation>
-    </message>
-    <message>
-        <source>Toggle Media Controls</source>
-        <translation>Steuerelemente für Medieninhalte umschalten</translation>
-    </message>
-    <message>
-        <source>Reload</source>
-        <translation>Neu laden</translation>
-    </message>
-    <message>
-        <source>Unselect</source>
-        <translation>Auswahl aufheben</translation>
-    </message>
-    <message>
-        <source>Copy Link URL</source>
-        <translation>Link-Adresse kopieren</translation>
-    </message>
-    <message>
-        <source>Exit Full Screen Mode</source>
-        <translation>Vollbildmodus verlassen</translation>
-    </message>
-    <message>
-        <source>Follow Link</source>
-        <translation>Link folgen</translation>
-    </message>
-    <message>
-        <source>Save Image</source>
-        <translation>Bild speichern</translation>
-    </message>
-    <message>
-        <source>Save Media</source>
-        <translation>Medieninhalt speichern</translation>
-    </message>
-    <message>
-        <source>Toggle Looping</source>
-        <translation>Wiederholung umschalten</translation>
-    </message>
-    <message>
-        <source>Toggle Play/Pause</source>
-        <translation>Abspielen/Pausieren umschalten</translation>
-    </message>
-    <message>
-        <source>Copy Image</source>
-        <translation>Bild kopieren</translation>
-    </message>
-    <message>
-        <source>Save Link</source>
-        <translation>Link speichern</translation>
-    </message>
-    <message>
-        <source>Copy Media URL</source>
-        <translation>Adresse des Medieninhalts kopieren</translation>
-    </message>
-    <message>
-        <source>View Page Source</source>
-        <translation>Seitenquelltext anzeigen</translation>
-    </message>
-    <message>
-        <source>Forward</source>
-        <translation>Vorwärts</translation>
-    </message>
-</context>
-<context>
-    <name>QtWebEnginePlugin</name>
-    <message>
-        <source>Cannot create separate instance of %1</source>
-        <translation>Es kann keine separate Instanz der Klasse %1 erstellt werden</translation>
-    </message>
-    <message>
-        <source>Cannot create a separate instance of WebEngineDownloadItem</source>
-        <translation>Es kann keine separate Instanz der Klasse WebEngineDownloadItem erstellt werden</translation>
-    </message>
-    <message>
-        <source>Cannot create a separate instance of WebEngineSettings</source>
-        <translation>Es kann keine separate Instanz der Klasse WebEngineSettings erstellt werden</translation>
-    </message>
-    <message>
-        <source>Cannot create a separate instance of FullScreenRequest</source>
-        <translation>Es kann keine separate Instanz der Klasse FullScreenRequest erstellt werden</translation>
-    </message>
-    <message>
-        <source>Cannot create a separate instance of NavigationHistory</source>
-        <translation>Es kann keine separate Instanz der Klasse NavigationHistory erstellt werden</translation>
-    </message>
-</context>
-<context>
-    <name>QtWebEngineCore</name>
-    <message>
-        <source>Javascript Alert - %1</source>
-        <translation>Javascript-Warnung - %1</translation>
-    </message>
-    <message>
-        <source>Javascript Confirm - %1</source>
-        <translation>Javascript-Bestätigung - %1</translation>
-    </message>
-    <message>
-        <source>Javascript Prompt - %1</source>
-        <translation>Javascript-Abfrage - %1</translation>
-    </message>
-    <message>
-        <source>Are you sure you want to leave this page?</source>
-        <translation>Möchten Sie diese Seite wirklich verlassen?</translation>
-    </message>
-</context>
-<context>
-    <name>UIDelegatesManager</name>
-    <message>
-        <source>Enter username and password for &quot;%1&quot; at %2://%3</source>
-        <translation>Geben Sie Nutzername und Passwort für &quot;%1&quot; auf %2://%3 ein</translation>
-    </message>
-    <message>
-        <source>Connect to proxy &quot;%1&quot; using:</source>
-        <translation>Verbinde zu Proxy &quot;%1&quot; unter Verwendung von:</translation>
-    </message>
-</context>
-<context>
-    <name>QtWebEngineTestSupportPlugin</name>
-    <message>
-        <source>Cannot create a separate instance of WebEngineErrorPage</source>
-        <translation>Es kann keine separate Instanz der Klasse WebEngineErrorPage erstellt werden</translation>
-    </message>
-</context>
-</TS>
diff --git a/translations/qtwebengine_locales/de.pak b/translations/qtwebengine_locales/de.pak
deleted file mode 100755
index df83cd816b1091f2ed5919ec86884eed0deb1bf4..0000000000000000000000000000000000000000
Binary files a/translations/qtwebengine_locales/de.pak and /dev/null differ
diff --git a/translations/qtwebsockets_de.qm b/translations/qtwebsockets_de.qm
deleted file mode 100644
index b5122cb140c4c795444d9d0d2bdf9bd38105153f..0000000000000000000000000000000000000000
Binary files a/translations/qtwebsockets_de.qm and /dev/null differ
diff --git a/translations/qtwebsockets_de.ts b/translations/qtwebsockets_de.ts
deleted file mode 100755
index bffb9b01f4699d28cdc98e03b6635b01813f08ba..0000000000000000000000000000000000000000
--- a/translations/qtwebsockets_de.ts
+++ /dev/null
@@ -1,229 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<context>
-    <name>QWebSocketServer</name>
-    <message>
-        <source>Upgrade to WebSocket failed.</source>
-        <translation>Upgrade auf WebSocket fehlgeschlagen.</translation>
-    </message>
-    <message>
-        <source>Too many pending connections.</source>
-        <translation>Zu viele anstehende Verbindungen.</translation>
-    </message>
-    <message>
-        <source>Server closed.</source>
-        <translation>Server geschlossen.</translation>
-    </message>
-    <message>
-        <source>Invalid response received.</source>
-        <translation>Ungültige Antwort erhalten.</translation>
-    </message>
-</context>
-<context>
-    <name>QWebSocket</name>
-    <message>
-        <source>The protocols attribute contains newlines. Possible attack detected.</source>
-        <translation>Das Attribut für Protokolle enthält Zeilenvorschübe. Potentieller Angriff festgestellt.</translation>
-    </message>
-    <message>
-        <source>Unsupported WebSocket scheme: %1</source>
-        <translation>WebSocket-Schema %1 ist nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>Error writing bytes to socket: %1.</source>
-        <translation>Fehler beim Schreiben von Daten zum Socket: %1.</translation>
-    </message>
-    <message>
-        <source>Accept-Key received from server %1 does not match the client key %2.</source>
-        <translation>Der Accept-Schlüssel vom Server %1 entspricht nicht dem Schlüssel des Clients %2.</translation>
-    </message>
-    <message>
-        <source>Invalid resource name.</source>
-        <translation>Ungültiger Ressourcenname.</translation>
-    </message>
-    <message>
-        <source>The origin contains newlines. Possible attack detected.</source>
-        <translation>Die Quelle enthält Zeilenvorschübe. Potentieller Angriff festgestellt.</translation>
-    </message>
-    <message>
-        <source>The hostname contains newlines. Possible attack detected.</source>
-        <translation>Der Hostname enthält Zeilenvorschübe. Potentieller Angriff festgestellt.</translation>
-    </message>
-    <message>
-        <source>The resource name contains newlines. Possible attack detected.</source>
-        <translation>Der Ressourcenname enthält Zeilenvorschübe. Potentieller Angriff festgestellt.</translation>
-    </message>
-    <message>
-        <source>Invalid URL.</source>
-        <translation>Ungültiger URL.</translation>
-    </message>
-    <message>
-        <source>QWebSocketPrivate::processHandshake: Unhandled http status code: %1 (%2).</source>
-        <translation>QWebSocketPrivate::processHandshake: Unbehandelter HTTP-Status-Code: %1 (%2).</translation>
-    </message>
-    <message>
-        <source>QWebSocketPrivate::processHandshake: Connection closed while reading header.</source>
-        <translation>QWebSocketPrivate::processHandshake: Verbindung während des Auslesens des Headers geschlossen.</translation>
-    </message>
-    <message>
-        <source>QWebSocketPrivate::processHandshake: Invalid statusline in response: %1.</source>
-        <translation>QWebSocketPrivate::processHandshake: Ungültige Statuszeile in Antwort: %1.</translation>
-    </message>
-    <message>
-        <source>SSL Sockets are not supported on this platform.</source>
-        <translation>SSL-Sockets sind auf dieser Plattform nicht unterstützt.</translation>
-    </message>
-    <message>
-        <source>The extensions attribute contains newlines. Possible attack detected.</source>
-        <translation>Das Attribut für Erweiterungen enthält Zeilenvorschübe. Potentieller Angriff festgestellt.</translation>
-    </message>
-    <message>
-        <source>Connection closed</source>
-        <translation>Verbindung geschlossen</translation>
-    </message>
-    <message>
-        <source>Bytes written %1 != %2.</source>
-        <translation>Es konnten nicht alle Daten geschrieben werden: %1 != %2.</translation>
-    </message>
-    <message>
-        <source>QWebSocketPrivate::processHandshake: Unknown error condition encountered. Aborting connection.</source>
-        <translation>QWebSocketPrivate::processHandshake: Es ist ein unbekannter Fehler aufgetreten. Verbindung beendet.</translation>
-    </message>
-    <message>
-        <source>Handshake: Server requests a version that we don&apos;t support: %1.</source>
-        <translation>Handshake: Der Server verlangt eine nicht unterstützte Version: %1.</translation>
-    </message>
-    <message>
-        <source>Invalid statusline in response: %1.</source>
-        <translation>Ungültige Statuszeile in Antwort: %1.</translation>
-    </message>
-    <message>
-        <source>Out of memory.</source>
-        <translation>Kein freier Speicher mehr vorhanden.</translation>
-    </message>
-</context>
-<context>
-    <name>QWebSocketFrame</name>
-    <message>
-        <source>Lengths smaller than 65536 (2^16) must be expressed as 2 bytes.</source>
-        <translation>Längenangaben unter 65536 (2^16) müssen als zwei Bytes angegeben werden.</translation>
-    </message>
-    <message>
-        <source>Error occurred while reading from the network: %1</source>
-        <translation>Fehler beim Lesen vom Netzwerk: %1</translation>
-    </message>
-    <message>
-        <source>Something went wrong during reading from the network.</source>
-        <translation>Fehler beim Lesen vom Netzwerk.</translation>
-    </message>
-    <message>
-        <source>Control frame is larger than 125 bytes</source>
-        <translation>Control-Frame ist größer als 125 Bytes</translation>
-    </message>
-    <message>
-        <source>Some serious error occurred while reading from the network.</source>
-        <translation>Schwerwiegender Fehler beim Lesen vom Netzwerk.</translation>
-    </message>
-    <message>
-        <source>Used reserved opcode</source>
-        <translation>Reservierter Opcode verwendet</translation>
-    </message>
-    <message>
-        <source>Error while reading from the network: %1.</source>
-        <translation>Fehler beim Lesen vom Netzwerk: %1.</translation>
-    </message>
-    <message>
-        <source>Lengths smaller than 126 must be expressed as one byte.</source>
-        <translation>Längenangaben unter 126 müssen als ein Byte angegeben werden.</translation>
-    </message>
-    <message>
-        <source>Maximum framesize exceeded.</source>
-        <translation>Maximale Größe des Frames überschritten.</translation>
-    </message>
-    <message>
-        <source>Timeout when reading data from socket.</source>
-        <translation>Zeitüberschreitung beim Lesen vom Socket.</translation>
-    </message>
-    <message>
-        <source>Rsv field is non-zero</source>
-        <translation>Das Rsv-Feld ist nicht null</translation>
-    </message>
-    <message>
-        <source>Control frames cannot be fragmented</source>
-        <translation>Control-Frames können nicht aufgeteilt werden</translation>
-    </message>
-    <message>
-        <source>Highest bit of payload length is not 0.</source>
-        <translation>Das höchste Bit der Payload-Länge ist nicht 0.</translation>
-    </message>
-</context>
-<context>
-    <name>QWebSocketDataProcessor</name>
-    <message>
-        <source>Received Continuation frame, while there is nothing to continue.</source>
-        <translation>Continuation-Frame erhalten, der nicht zugeordnet werden kann.</translation>
-    </message>
-    <message>
-        <source>All data frames after the initial data frame must have opcode 0 (continuation).</source>
-        <translation>Alle dem ersten Daten-Frame folgenden Frames müssen den Opcode 0 haben (Continuation).</translation>
-    </message>
-    <message>
-        <source>Payload of close frame is too small.</source>
-        <translation>Payload des abschließenden Frames ist zu klein.</translation>
-    </message>
-    <message>
-        <source>Invalid opcode detected: %1</source>
-        <translation>Ungültiger Opcode %1 festgestellt</translation>
-    </message>
-    <message>
-        <source>Invalid close code %1 detected.</source>
-        <translation>Ungültiger Schluss-Code %1 festgestellt.</translation>
-    </message>
-    <message>
-        <source>Received message is too big.</source>
-        <translation>Die erhaltene Nachricht ist zu groß.</translation>
-    </message>
-    <message>
-        <source>Invalid UTF-8 code encountered.</source>
-        <translation>Es wurde ein ungültiger UTF-8-Code empfangen.</translation>
-    </message>
-</context>
-<context>
-    <name>QWebSocketHandshakeResponse</name>
-    <message>
-        <source>Access forbidden.</source>
-        <translation>Zugriff verboten.</translation>
-    </message>
-    <message>
-        <source>One of the headers contains a newline. Possible attack detected.</source>
-        <translation>Einer der Header enthält Zeilenvorschübe. Potentieller Angriff festgestellt.</translation>
-    </message>
-    <message>
-        <source>Unsupported version requested.</source>
-        <translation>Nicht unterstützte Version angefordert.</translation>
-    </message>
-    <message>
-        <source>Bad handshake request received.</source>
-        <translation>Ungültige Handshake-Anforderung erhalten.</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlWebSocket</name>
-    <message>
-        <source>QQmlWebSocket is not ready.</source>
-        <translation>QQmlWebSocket nicht bereit.</translation>
-    </message>
-    <message>
-        <source>Messages can only be sent when the socket is open.</source>
-        <translation>Nachrichten können nur versandt werden, wenn der Socket geöffnet ist.</translation>
-    </message>
-</context>
-<context>
-    <name>QQmlWebSocketServer</name>
-    <message>
-        <source>QQmlWebSocketServer is not ready.</source>
-        <translation>QQmlWebSocketServer nicht bereit.</translation>
-    </message>
-</context>
-</TS>
diff --git a/translations/qtxmlpatterns_de.qm b/translations/qtxmlpatterns_de.qm
deleted file mode 100644
index 816e2f738011722157f9419f9524fd951c938dfe..0000000000000000000000000000000000000000
Binary files a/translations/qtxmlpatterns_de.qm and /dev/null differ
diff --git a/translations/qtxmlpatterns_de.ts b/translations/qtxmlpatterns_de.ts
deleted file mode 100755
index 196f7e1d99518d22770affc68070e530f1faae1f..0000000000000000000000000000000000000000
--- a/translations/qtxmlpatterns_de.ts
+++ /dev/null
@@ -1,1936 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de_DE">
-<context>
-    <name>QtXmlPatterns</name>
-    <message>
-        <source>%1 is not allowed to have a member type with the same name as itself.</source>
-        <translation>%1 darf keinen Typ eines Mitglieds desselben Namens haben.</translation>
-    </message>
-    <message>
-        <source>A comment cannot contain %1</source>
-        <translation>Ein Kommentar darf %1 nicht enthalten</translation>
-    </message>
-    <message>
-        <source>Version %1 is not supported. The supported XQuery version is 1.0.</source>
-        <translation>Die Version %1 wird nicht unterstützt. Die unterstützte Version von XQuery ist 1.0.</translation>
-    </message>
-    <message>
-        <source>&apos;%1&apos; attribute contains invalid QName content: %2.</source>
-        <translation>Das Attribut &apos;%1&apos; enthält einen ungültigen qualifizierten Namen: %2.</translation>
-    </message>
-    <message>
-        <source>A variable with name %1 has already been declared.</source>
-        <translation>Eine Variable des Namens %1 wurde bereits deklariert.</translation>
-    </message>
-    <message>
-        <source>Notation %1 already defined.</source>
-        <translation>Die Notation %1 ist bereits definiert.</translation>
-    </message>
-    <message>
-        <source>%1 is not allowed to have any facets.</source>
-        <translation>%1 darf keine Facetten haben.</translation>
-    </message>
-    <message>
-        <source>The root node of the second argument to function %1 must be a document node. %2 is not a document node.</source>
-        <translation>Der übergeordnete Knoten des zweiten Arguments der Funktion %1 muss ein Dokumentknoten sein, was bei %2 nicht der Fall ist.</translation>
-    </message>
-    <message>
-        <source>Declaration for element %1 does not exist.</source>
-        <translation>Für das Element %1 ist keine Deklaration verfügbar.</translation>
-    </message>
-    <message>
-        <source>The parameter %1 is required, but no corresponding %2 is supplied.</source>
-        <translation>Es wurde kein entsprechendes %2 für den erforderlichen Parameter %1 angegeben.</translation>
-    </message>
-    <message>
-        <source>Namespace declarations must occur before function, variable, and option declarations.</source>
-        <translation>Namensraums-Deklarationen müssen vor Funktions- Variablen- oder Optionsdeklarationen stehen.</translation>
-    </message>
-    <message>
-        <source>empty</source>
-        <translation>leer</translation>
-    </message>
-    <message>
-        <source>Specifying use=&apos;prohibited&apos; inside an attribute group has no effect.</source>
-        <translation>Die Angabe von use=&apos;prohibited&apos; in einer Attributgruppe hat keinerlei Auswirkungen.</translation>
-    </message>
-    <message>
-        <source>The namespace URI cannot be the empty string when binding to a prefix, %1.</source>
-        <translation>Der Namensraum-URI darf nicht leer sein, wenn er an den Präfix %1 gebunden ist.</translation>
-    </message>
-    <message>
-        <source>Attribute group %1 contains attribute %2 twice.</source>
-        <translation>Die Attributgruppe %1 enthält das Attribut %2 zweimal.</translation>
-    </message>
-    <message>
-        <source>A comment cannot end with a %1.</source>
-        <translation>Ein Kommentar darf nicht auf %1 enden.</translation>
-    </message>
-    <message>
-        <source>Type of derived attribute %1 cannot be validly derived from type of base attribute.</source>
-        <translation>Der Typ des abgeleiteten Attributs %1 kann nicht aus Typ des Basisattributs bestimmt werden.</translation>
-    </message>
-    <message>
-        <source>Derived element %1 has weaker value constraint than base particle.</source>
-        <translation>Das abgeleitete Element %1 hat eine schwächere Einschränkung des Wertes als der Basispartikel.</translation>
-    </message>
-    <message>
-        <source>Derived particle allows content that is not allowed in the base particle.</source>
-        <translation>Der abgeleitete Partikel gestattet Inhalt, der für den Basispartikel nicht zulässig ist.</translation>
-    </message>
-    <message>
-        <source>String content does not match the length facet.</source>
-        <translation>Der Zeichenketteninhalt entspricht nicht der Längenfacette.</translation>
-    </message>
-    <message>
-        <source>%1 element is not allowed in this scope</source>
-        <translation>Das Element %1 ist in diesem Bereich nicht zulässig</translation>
-    </message>
-    <message>
-        <source>Top level stylesheet elements must be in a non-null namespace, which %1 isn&apos;t.</source>
-        <translation>Die zuoberst stehenden Elemente eines Stylesheets dürfen sich nicht im Null-Namensraum befinden, was bei %1 der Fall ist.</translation>
-    </message>
-    <message>
-        <source>Complex type %1 must have the same simple type as its base class %2.</source>
-        <translation>Der komplexe Typ %1 muss den gleichen einfachen Typ wie seine Basisklasse %2 haben.</translation>
-    </message>
-    <message>
-        <source>Union content does not match pattern facet.</source>
-        <translation>Der Inhalt der Vereinigung entspricht nicht der Suchmusterfacette.</translation>
-    </message>
-    <message>
-        <source>Element %1 exists twice with different types.</source>
-        <translation>Es existieren zwei Vorkommen verschiedenen Typs des Elements %1.</translation>
-    </message>
-    <message>
-        <source>Integer division (%1) by zero (%2) is undefined.</source>
-        <translation>Die Ganzzahldivision (%1) durch Null (%2) ist nicht definiert.</translation>
-    </message>
-    <message>
-        <source>%1 element cannot have %2 attribute with value other than %3 or %4.</source>
-        <translation>Der Wert des Attributs %2 des Elements %1 kann nur %3 oder %4 sein.</translation>
-    </message>
-    <message>
-        <source>List content does not match length facet.</source>
-        <translation>Der Listeninhalt entspricht nicht der Längenfacette.</translation>
-    </message>
-    <message>
-        <source>A library module cannot be evaluated directly. It must be imported from a main module.</source>
-        <translation>Ein Bibliotheksmodul kann nicht direkt ausgewertet werden, er muss von einem Hauptmodul importiert werden.</translation>
-    </message>
-    <message>
-        <source>W3C XML Schema identity constraint selector</source>
-        <translation>W3C XML Schema identity constraint selector</translation>
-    </message>
-    <message>
-        <source>Time %1:%2:%3.%4 is invalid.</source>
-        <translation>Die Zeitangabe %1:%2:%3.%4 ist ungültig.</translation>
-    </message>
-    <message>
-        <source>Attribute %1 cannot appear on the element %2. Only the standard attributes can appear.</source>
-        <translation>Das Attribut %1 kann nicht beim Element %2 erscheinen. Es sind nur Standardattribute zulässig.</translation>
-    </message>
-    <message>
-        <source>%1 is not allowed to derive from %2 by restriction as the latter defines it as final.</source>
-        <translation>%1 darf nicht durch Einschränkung von %2 abgeleitet werden, da letzterer sie als final deklariert.</translation>
-    </message>
-    <message>
-        <source>A value of type %1 must contain an even number of digits. The value %2 does not.</source>
-        <translation>Die Stellenzahl eines Wertes des Typs %1 muss eine gerade sein. Das ist bei %2 nicht der Fall.</translation>
-    </message>
-    <message>
-        <source>Base type %1 of simple type %2 must have variety of union.</source>
-        <translation>Der Basistyp %1 des einfachen Typs %2 muss eine Varietät des Typs Vereinigung haben.</translation>
-    </message>
-    <message>
-        <source>A construct was encountered which is disallowed in the current language(%1).</source>
-        <translation>Es wurde ein Sprachkonstrukt angetroffen, was in der aktuellen Sprache (%1) nicht erlaubt ist.</translation>
-    </message>
-    <message>
-        <source>Simple type %1 cannot derive from %2 as the latter defines restriction as final.</source>
-        <translation>%1 darf nicht von %2 abgeleitet werden, da letzterer die Einschränkung als final deklariert.</translation>
-    </message>
-    <message>
-        <source>Child element is missing in that scope, possible child elements are: %1.</source>
-        <translation>Das Unterelement fehlt im Bereich; mögliche Unterelemente wären: %1.</translation>
-    </message>
-    <message>
-        <source>Attribute %1 in derived complex type must have the same %2 value constraint like in base type.</source>
-        <translation>Das Attribut %1 in einem abgeleiteten komplexen Typ muss die gleiche Einschränkung des Werts (%2) wie der Basistyp haben.</translation>
-    </message>
-    <message>
-        <source>Modulus division (%1) by zero (%2) is undefined.</source>
-        <translation>Die Modulo-Division (%1) durch Null (%2) ist nicht definiert.</translation>
-    </message>
-    <message>
-        <source>Data of type %1 are not allowed to be empty.</source>
-        <translation>Daten vom Typ %1 können nicht leer sein.</translation>
-    </message>
-    <message>
-        <source>%1 facet contains invalid regular expression</source>
-        <translation>Die Facette %1 enthält einen ungültigen regulären Ausdruck</translation>
-    </message>
-    <message>
-        <source>No function with signature %1 is available</source>
-        <translation>Es existiert keine Funktion mit der Signatur %1</translation>
-    </message>
-    <message>
-        <source>%1 cannot have complex base type that has a %2.</source>
-        <translation>%1 kann keinen komplexen Basistyp haben, der &apos;%2&apos; spezifiziert.</translation>
-    </message>
-    <message>
-        <source>None of the pragma expressions are supported. Therefore, a fallback expression must be present</source>
-        <translation>Es muss ein fallback-Ausdruck vorhanden sein, da keine pragma-Ausdrücke unterstützt werden</translation>
-    </message>
-    <message>
-        <source>In the replacement string, %1 can only be used to escape itself or %2, not %3</source>
-        <translation>In der Ersetzung kann %1 nur verwendet werden, um sich selbst oder %2 zu schützen, nicht jedoch für %3</translation>
-    </message>
-    <message>
-        <source>An attribute with name %1 has already appeared on this element.</source>
-        <translation>Das Element hat bereits ein Attribut des Namens %1.</translation>
-    </message>
-    <message>
-        <source>Element %1 is not allowed to have a value constraint if its base type is complex.</source>
-        <translation>Das Element %1 darf keine Einschränkung des Werts haben, wenn der Basistyp komplex ist.</translation>
-    </message>
-    <message>
-        <source>Element contains content although it is nillable.</source>
-        <translation>Das Element hat Inhalt, obwohl es &apos;nillable&apos; spezifiziert.</translation>
-    </message>
-    <message>
-        <source>The codepoint %1, occurring in %2 using encoding %3, is an invalid XML character.</source>
-        <translation>Der Code-Punkt %1 aus %2 mit der Kodierung %3 ist kein gültiges XML-Zeichen.</translation>
-    </message>
-    <message>
-        <source>Content model of complex type %1 is not a valid extension of content model of %2.</source>
-        <translation>Das Inhaltsmodell des komplexen Typs %1 ist keine gültige Erweiterung des Inhaltsmodells von %2.</translation>
-    </message>
-    <message>
-        <source>Attributes of complex type %1 are not a valid extension of the attributes of base type %2: %3.</source>
-        <translation>Die Attribute des komplexen Typs %1 sind keine gültige Erweiterung der Attribute des Basistyps %2: %3.</translation>
-    </message>
-    <message>
-        <source>Type of derived attribute %1 differs from type of base attribute.</source>
-        <translation>Der Typ des abgeleiteten Attributs %1 unterscheidet sich vom Basistyp.</translation>
-    </message>
-    <message>
-        <source>Unsigned integer content does not match pattern facet.</source>
-        <translation>Der vorzeichenlose Ganzzahlwert entspricht nicht der Suchmusterfacette.</translation>
-    </message>
-    <message>
-        <source>String content does not match pattern facet.</source>
-        <translation>Der Zeichenketteninhalt entspricht nicht der Suchmusterfacette.</translation>
-    </message>
-    <message>
-        <source>Network timeout.</source>
-        <translation>Das Zeitlimit der Netzwerkoperation wurde überschritten.</translation>
-    </message>
-    <message>
-        <source>No casting is possible with %1 as the target type.</source>
-        <translation>Es ist keine Typumwandlung mit %1 als Zieltyp möglich.</translation>
-    </message>
-    <message>
-        <source>%1 element must not have %2 and %3 attribute together.</source>
-        <translation>Die Attribute %2 und %3 können nicht zusammen im Element %1 erscheinen.</translation>
-    </message>
-    <message>
-        <source>%1 element requires either %2 or %3 attribute.</source>
-        <translation>Das Element %1 erfordert eines der Attribute %2 oder %3.</translation>
-    </message>
-    <message>
-        <source>Content of attribute %1 does not match its type definition: %2.</source>
-        <translation>Der Inhalt des Attributs %1 entspricht nicht seiner Typdefinition: %2.</translation>
-    </message>
-    <message>
-        <source>The Schema Import feature is not supported, and therefore %1 declarations cannot occur.</source>
-        <translation>Die Deklaration %1 ist unzulässig, da Schema-Import nicht unterstützt wird.</translation>
-    </message>
-    <message>
-        <source>Attribute %1 and %2 are mutually exclusive.</source>
-        <translation>Die Attribute %1 und %2 schließen sich gegenseitig aus.</translation>
-    </message>
-    <message>
-        <source>%1 or %2 attribute of reference %3 does not match with the attribute declaration %4.</source>
-        <translation>Das Attribut %1 oder %2 des Verweises %3 entspricht nicht der Attributsdeklaration %4.</translation>
-    </message>
-    <message>
-        <source>Content model of complex type %1 contains %2 element so it cannot be derived by extension from a non-empty type.</source>
-        <translation>Das Inhaltsmodell des komplexen Typs %1 enthält ein Element &apos;%2&apos;; es kann daher nicht durch Erweiterung von einem Typ abgeleitet werden, der nicht leer ist.</translation>
-    </message>
-    <message>
-        <source>Duration content does not match pattern facet.</source>
-        <translation>Die Angabe der Zeitdauer entspricht nicht der Suchmusterfacette.</translation>
-    </message>
-    <message>
-        <source>Loaded schema file is invalid.</source>
-        <translation>Das geladene Schema ist ungültig.</translation>
-    </message>
-    <message>
-        <source>%1 facet and %2 facet cannot appear together.</source>
-        <translation>Die Facetten %1 und %2 können nicht zusammen erscheinen.</translation>
-    </message>
-    <message>
-        <source>Parse error: %1</source>
-        <translation>Parse-Fehler: %1</translation>
-    </message>
-    <message>
-        <source>If the first argument is the empty sequence or a zero-length string (no namespace), a prefix cannot be specified. Prefix %1 was specified.</source>
-        <translation>Es kann kein Präfix angegeben werden, wenn das erste Argument leer oder eine leere Zeichenkette (kein Namensraum) ist. Es wurde der Präfix %1 angegeben.</translation>
-    </message>
-    <message>
-        <source>In an XSL-T pattern, the first argument to function %1 must be a literal or a variable reference, when used for matching.</source>
-        <translation>Bei einem XSL-T-Suchmuster muss das erste Argument zur Funktion %1 bei der Verwendung zur Suche ein Literal oder eine Variablenreferenz sein.</translation>
-    </message>
-    <message>
-        <source>At least one component must be present.</source>
-        <translation>Es muss mindestens eine Komponente vorhanden sein.</translation>
-    </message>
-    <message>
-        <source>Target namespace %1 of included schema is different from the target namespace %2 as defined by the including schema.</source>
-        <translation>Der Zielnamensraum %1 des eingebundenen Schemas unterscheidet sich vom sich vom Zielnamensraum %2 des einbindenden Schemas.</translation>
-    </message>
-    <message>
-        <source>An attribute by name %1 has already been created.</source>
-        <translation>Es wurde bereits ein Attribut mit dem Namen %1 erzeugt.</translation>
-    </message>
-    <message>
-        <source>Derived attribute %1 does not match the wildcard in the base definition.</source>
-        <translation>Das abgeleitete Attribut %1 entspricht nicht dem Suchmuster in der Basisdefinition.</translation>
-    </message>
-    <message>
-        <source>%1 element must have either %2 or %3 attribute.</source>
-        <translation>Das Element %1 muss eines der Attribute %2 oder %3 spezifizieren.</translation>
-    </message>
-    <message>
-        <source>Invalid QName content: %1.</source>
-        <translation>Der Inhalt des qualifizierten Namens ist ungültig: %1.</translation>
-    </message>
-    <message>
-        <source>%1 is an invalid flag for regular expressions. Valid flags are:</source>
-        <translation>%1 ist kein gültiger Modifikator für reguläre Ausdrücke. Gültige Modifikatoren sind:</translation>
-    </message>
-    <message>
-        <source>Decimal content does not match in the fractionDigits facet.</source>
-        <translation>Die Dezimalzahl entspricht nicht der Facette &apos;fractionDigit&apos;.</translation>
-    </message>
-    <message>
-        <source>Variety of member types of %1 must be atomic.</source>
-        <translation>Die Varietät der Typen von %1 muss atomar sein.</translation>
-    </message>
-    <message>
-        <source>Circular group reference for %1.</source>
-        <translation>Zirkulärer Verweis bei %1.</translation>
-    </message>
-    <message>
-        <source>%1 has a different number of fields from the identity constraint %2 that it references.</source>
-        <translation>Bei %1 unterscheidet sich die Anzahl der Felder von der der Identitätseinschränkung %2, auf die es verweist.</translation>
-    </message>
-    <message>
-        <source>At least one %1-element must occur inside %2.</source>
-        <translation>In %2 muss mindestens ein %1-Element stehen.</translation>
-    </message>
-    <message>
-        <source>Only the Unicode Codepoint Collation is supported(%1). %2 is unsupported.</source>
-        <translation>Es wird nur Unicode Codepoint Collation unterstützt (%1). %2 wird nicht unterstützt.</translation>
-    </message>
-    <message>
-        <source>Matches are case insensitive</source>
-        <translation>Groß/Kleinschreibung wird nicht beachtet</translation>
-    </message>
-    <message>
-        <source>The name of an extension expression must be in a namespace.</source>
-        <translation>Der Name eines Erweiterungsausdrucks muss sich in einem Namensraum befinden.</translation>
-    </message>
-    <message>
-        <source>%1 facet must be less than or equal to %2 facet of base type.</source>
-        <translation>Die Facette %1 muss kleiner oder gleich der Facette %2 des Basistyps sein.</translation>
-    </message>
-    <message>
-        <source>Member type of simple type %1 cannot be a complex type.</source>
-        <translation>Der Typ eines Mitglieds des einfachen Typs %1 kann kein komplexer Typ sein.</translation>
-    </message>
-    <message>
-        <source>Each name of a template parameter must be unique; %1 is duplicated.</source>
-        <translation>Die Namen von Vorlagenparametern müssen eindeutig sein, %1 existiert bereits.</translation>
-    </message>
-    <message>
-        <source>At least one mode must be specified in the %1-attribute on element %2.</source>
-        <translation>Im %1-Attribut des Elements %2 muss mindestens ein Modus angegeben werden.</translation>
-    </message>
-    <message>
-        <source>Element %1 does not match namespace constraint of wildcard in base particle.</source>
-        <translation>Das Element %1 entspricht nicht der Namensraumeinschränkung des Basispartikels.</translation>
-    </message>
-    <message>
-        <source>%1 matches newline characters</source>
-        <translation>Der Ausdruck &apos;%1&apos; schließt Zeilenvorschübe ein</translation>
-    </message>
-    <message>
-        <source>Fixed value constraint not allowed if element is nillable.</source>
-        <translation>Eine Beschränkung auf einen festen Wert ist nicht zulässig, wenn das Element &apos;nillable&apos; spezifiziert.</translation>
-    </message>
-    <message>
-        <source>Year %1 is invalid because it begins with %2.</source>
-        <translation>%1 ist keine gültige Jahresangabe, da es mit %2 beginnt.</translation>
-    </message>
-    <message>
-        <source>Duplicated facets in simple type %1.</source>
-        <translation>Im einfachen Typ %1 kommen Facetten mehrfach vor.</translation>
-    </message>
-    <message>
-        <source>Content of attribute %1 does not match defined value constraint.</source>
-        <translation>Der Inhalt des Attributs %1 entspricht nicht der definierten Einschränkung des Werts.</translation>
-    </message>
-    <message>
-        <source>Attribute %1 does not match the attribute wildcard.</source>
-        <translation>Das Attribut %1 entspricht nicht dem Attributssuchmuster.</translation>
-    </message>
-    <message>
-        <source>No referenced value found for key reference %1.</source>
-        <translation>Der referenzierte Wert der Schlüsselreferenz %1 konnte nicht gefunden werden.</translation>
-    </message>
-    <message>
-        <source>Value constraint of attribute %1 is not of attributes type: %2.</source>
-        <translation>Die Einschränkung des Werts des Attributs %1 ist nicht vom Typ des Attributs: %2.</translation>
-    </message>
-    <message>
-        <source>Complex type %1 contains attribute %2 twice.</source>
-        <translation>Der komplexe Typ %1 enthält das Attribut %2 doppelt.</translation>
-    </message>
-    <message>
-        <source>The second argument to %1 cannot be of type %2. It must be of type %3, %4, or %5.</source>
-        <translation>Das zweite Argument von %1 kann nicht vom Typ %2 sein, es muss einer der Typen %3, %4 oder %5 sein.</translation>
-    </message>
-    <message>
-        <source>Element %1 cannot have children.</source>
-        <translation>Das Element %1 kann keine Kindelemente haben.</translation>
-    </message>
-    <message>
-        <source>A template with name %1 has already been declared.</source>
-        <translation>Eine Vorlage des Namens %1 existiert bereits.</translation>
-    </message>
-    <message>
-        <source>Particle contains non-deterministic wildcards.</source>
-        <translation>Der Partikel enthält nicht-deterministische Suchmuster.</translation>
-    </message>
-    <message>
-        <source>Attribute %1 cannot appear on the element %2. Only %3 is allowed, and the standard attributes.</source>
-        <translation>Das Attribut %1 kann nicht beim Element %2 erscheinen. Es sind nur %3 und die Standardattribute zulässig.</translation>
-    </message>
-    <message>
-        <source>Only one %1-element can appear.</source>
-        <translation>Es darf nur ein einziges %1-Element stehen.</translation>
-    </message>
-    <message>
-        <source>Attribute group %1 contains attribute %2 that has value constraint but type that inherits from %3.</source>
-        <translation>Die Attributgruppe %1 enthält ein Attribut %2 mit einer Einschränkung des Werts, dessen Typ aber von %3 abgeleitet ist.</translation>
-    </message>
-    <message>
-        <source>%1 facet must be less than %2 facet of base type.</source>
-        <translation>Die Facette %1 muss kleiner der Facette %2 des Basistyps sein.</translation>
-    </message>
-    <message>
-        <source>The name for a computed attribute cannot have the namespace URI %1 with the local name %2.</source>
-        <translation>Der Name eines berechneten Attributes darf keinen Namensraum-URI %1 mit dem lokalen Namen %2 haben.</translation>
-    </message>
-    <message>
-        <source>Attribute %1 has value constraint but has type derived from %2.</source>
-        <translation>Das Attribut %1 hat eine Einschränkung des Werts, während sein Typ von %2 abgeleitet ist.</translation>
-    </message>
-    <message>
-        <source>Attribute wildcard of %1 is not a valid restriction of attribute wildcard of base type %2.</source>
-        <translation>Das Attributssuchmuster %1 ist keine gültige Einschränkung des Attributssuchmuster des Basistyps %2.</translation>
-    </message>
-    <message>
-        <source>Member type %1 cannot be derived from member type %2 of %3&apos;s base type %4.</source>
-        <translation>Der Typ %1 des Mitglieds darf nicht vom Typ %2 des Mitglieds vom Basistyp %4 von %3 sein.</translation>
-    </message>
-    <message>
-        <source>A positional predicate must evaluate to a single numeric value.</source>
-        <translation>Ein positionales Prädikat muss sich als einfacher, numerischer Wert auswerten lassen.</translation>
-    </message>
-    <message>
-        <source>Namespace prefix of qualified name %1 is not defined.</source>
-        <translation>Der Namensraum-Präfix des qualifizierten Namens %1 ist nicht definiert.</translation>
-    </message>
-    <message>
-        <source>Element %1 is not nillable.</source>
-        <translation>Das Element %1 hat das Attribut &apos;nillable&apos; nicht spezifiziert.</translation>
-    </message>
-    <message>
-        <source>Element %1 is missing child element.</source>
-        <translation>Beim Element %1 fehlt ein Unterelement.</translation>
-    </message>
-    <message>
-        <source>Element %1 can&apos;t be serialized because it appears outside the document element.</source>
-        <translation>Das Element %1 kann nicht serialisiert werden, da es außerhalb des Dokumentenelements erscheint.</translation>
-    </message>
-    <message>
-        <source>Element %1 cannot contain other elements, as it has a fixed content.</source>
-        <translation>Das Element %1 kann keine anderen Element enthalten, da sein Inhalt festgelegt ist.</translation>
-    </message>
-    <message>
-        <source>Attribute %1 contains invalid data: %2</source>
-        <translation>Das Attribut %1 enthält ungültige Daten: %2</translation>
-    </message>
-    <message>
-        <source>%1 and %2 match the start and end of a line.</source>
-        <translation>Die Ausdrücke %1 und %2 passen jeweils auf den Anfang oder das Ende einer beliebigen Zeile.</translation>
-    </message>
-    <message>
-        <source>Running an XSL-T 1.0 stylesheet with a 2.0 processor.</source>
-        <translation>Es wird ein XSL-T-1.0-Stylesheet mit einem Prozessor der Version 2.0 verarbeitet.</translation>
-    </message>
-    <message>
-        <source>A stylesheet function must have a prefixed name.</source>
-        <translation>Der Name einer Stylesheet-Funktion muss einen Präfix haben.</translation>
-    </message>
-    <message>
-        <source>W3C XML Schema identity constraint field</source>
-        <translation>W3C XML Schema identity constraint field</translation>
-    </message>
-    <message>
-        <source>%1 cannot be retrieved</source>
-        <translation>%1 kann nicht bestimmt werden</translation>
-    </message>
-    <message>
-        <source>Item type %1 of %2 element cannot be resolved.</source>
-        <translation>Der Elementtyp %1 des Elements %2 kann nicht aufgelöst werden.</translation>
-    </message>
-    <message>
-        <source>It&apos;s not possible to cast the value %1 of type %2 to %3</source>
-        <translation>Es ist nicht möglich, den Wert %1 des Typs %2 in %3 zu wandeln</translation>
-    </message>
-    <message>
-        <source>The value of the XSL-T version attribute must be a value of type %1, which %2 isn&apos;t.</source>
-        <translation>Der Wert eines XSL-T-Versionsattributes muss vom Typ %1 sein, was bei %2 nicht der Fall ist.</translation>
-    </message>
-    <message>
-        <source>Element %1 already defined.</source>
-        <translation>Das Element %1 ist bereits definiert.</translation>
-    </message>
-    <message>
-        <source>%1 contains %2 facet with invalid data: %3.</source>
-        <translation>%1 enthält eine Facette %2 mit ungültigen Daten: %3.</translation>
-    </message>
-    <message>
-        <source>Binary content is not listed in the enumeration facet.</source>
-        <translation>Der binäre Inhalt ist nicht in der Aufzählungsfacette enthalten.</translation>
-    </message>
-    <message>
-        <source>Complex type %1 cannot be derived from base type %2%3.</source>
-        <translation>Der komplexe Typ %1 kann nicht vom Basistyp %2 abgeleitet werden%3.</translation>
-    </message>
-    <message>
-        <source>The prefix %1 cannot be bound.</source>
-        <translation>Der Präfix %1 kann nicht gebunden werden</translation>
-    </message>
-    <message>
-        <source>The prefix must be a valid %1, which %2 is not.</source>
-        <translation>Der Präfix muss ein gültiger %1 sein. Das ist bei %2 nicht der Fall.</translation>
-    </message>
-    <message>
-        <source>The keyword %1 cannot occur with any other mode name.</source>
-        <translation>Das Schlüsselwort %1 kann nicht mit einem anderen Modusnamen zusammen verwendet werden.</translation>
-    </message>
-    <message>
-        <source>Attribute %1 from base type is missing in derived type.</source>
-        <translation>Das Attribut %1 des Basistyps fehlt im abgeleiteten Typ.</translation>
-    </message>
-    <message>
-        <source>Type error in cast, expected %1, received %2.</source>
-        <translation>Typfehler bei &quot;cast&quot;-Operation; es wurde %1 erwartet, aber %2 empfangen.</translation>
-    </message>
-    <message>
-        <source>%1 is not a valid numeric literal.</source>
-        <translation>%1 ist kein gültiger numerischer Literal.</translation>
-    </message>
-    <message numerus="yes">
-        <source>%1 takes at most %n argument(s). %2 is therefore invalid.</source>
-        <translation>
-            <numerusform>%1 hat nur %n Argument; die Angabe %2 ist daher ungültig.</numerusform>
-            <numerusform>%1 hat nur %n Argumente; die Angabe %2 ist daher ungültig.</numerusform>
-        </translation>
-    </message>
-    <message>
-        <source>Circularity detected</source>
-        <translation>Zirkularität festgestellt</translation>
-    </message>
-    <message>
-        <source>In a namespace constructor, the value for a namespace cannot be an empty string.</source>
-        <translation>Im Konstruktor eines Namensraums darf der Wert des Namensraumes keine leere Zeichenkette sein.</translation>
-    </message>
-    <message>
-        <source>%1 attribute of %2 element must contain %3, %4 or a list of URIs.</source>
-        <translation>Das Attribut %1 des Elements %2 muss %3, %4 oder eine Liste der URIs enthalten.</translation>
-    </message>
-    <message>
-        <source>The prefix %1 can not be bound. By default, it is already bound to the namespace %2.</source>
-        <translation>Der Präfix %1 kann nicht gebunden werden. Er ist bereits per Vorgabe an den Namensraum %2 gebunden.</translation>
-    </message>
-    <message>
-        <source>An %1-attribute must have a valid %2 as value, which %3 isn&apos;t.</source>
-        <translation>Ein %1-Attribut muss einen gültigen %2 als Wert haben, was bei %3 nicht der Fall ist.</translation>
-    </message>
-    <message>
-        <source>If element %1 has no attribute %2, it cannot have attribute %3 or %4.</source>
-        <translation>Das Element %1 darf keines der Attribute %3 oder %4 haben, solange es nicht das Attribut %2 hat.</translation>
-    </message>
-    <message>
-        <source>Unknown notation %1 used in %2 facet.</source>
-        <translation>Die Facette %2 enthält eine ungültige Notation %1.</translation>
-    </message>
-    <message>
-        <source>A function already exists with the signature %1.</source>
-        <translation>Es existiert bereits eine Funktion mit der Signatur %1.</translation>
-    </message>
-    <message>
-        <source>No value is available for the external variable with name %1.</source>
-        <translation>Es ist kein Wert für die externe Variable des Namens %1 verfügbar.</translation>
-    </message>
-    <message>
-        <source>Complex type %1 is not allowed to be abstract.</source>
-        <translation>Der komplexe Typ %1 kann nicht abstrakt sein.</translation>
-    </message>
-    <message>
-        <source>When casting to %1 from %2, the source value cannot be %3.</source>
-        <translation>Bei einer &quot;cast&quot;-Operation von %2 zu %1 darf der Wert nicht %3 sein.</translation>
-    </message>
-    <message>
-        <source>Attribute %1 can&apos;t be serialized because it appears at the top level.</source>
-        <translation>Das Attributelement %1 kann nicht serialisiert werden, da es auf der höchsten Ebene erscheint.</translation>
-    </message>
-    <message>
-        <source>Simple type %1 cannot have direct base type %2.</source>
-        <translation>Der einfache Typ %1 kann nicht den unmittelbaren Basistyp %2 haben.</translation>
-    </message>
-    <message>
-        <source>Base type %1 of simple type %2 is not allowed to have restriction in %3 attribute.</source>
-        <translation>Der Basistyp %1 des einfachen Typs %2 darf keine Einschränkung im %3 Attribut haben.</translation>
-    </message>
-    <message>
-        <source>No comparisons can be done involving the type %1.</source>
-        <translation>Es können keine Vergleichsoperationen mit dem Typ %1 durchgeführt werden.</translation>
-    </message>
-    <message>
-        <source>Specified type %1 is not validly substitutable with element type %2.</source>
-        <translation>Der angebenene Typ %1 kann nicht durch den Elementtyp %2 substituiert werden.</translation>
-    </message>
-    <message>
-        <source>Content of element %1 does not match defined value constraint.</source>
-        <translation>Der Inhalt des Elements %1 entspricht nicht der definierten Einschränkung des Werts.</translation>
-    </message>
-    <message>
-        <source>Base attribute %1 is required but derived attribute is not.</source>
-        <translation>Das Basisattribut %1 ist erforderlich, nicht jedoch das abgeleitete Attribut.</translation>
-    </message>
-    <message>
-        <source>Block constraints of derived element %1 must not be more weaker than in the base element.</source>
-        <translation>Die Blockeinschränkung des abgeleiteten Elements %1 darf nicht schwächer sein als im Basiselement.</translation>
-    </message>
-    <message>
-        <source>The item %1 did not match the required type %2.</source>
-        <translation>Das Element %1 entspricht nicht dem erforderlichen Typ %2.</translation>
-    </message>
-    <message>
-        <source>Non-unique value found for constraint %1.</source>
-        <translation>Für die Einschränkung %1 wurde ein nicht eindeutiger Wert gefunden.</translation>
-    </message>
-    <message>
-        <source>The value of attribute %1 must be of type %2, which %3 isn&apos;t.</source>
-        <translation>Der Wert des Attributs %1 muss vom Typ %2 sein, was bei %3 nicht der Fall ist.</translation>
-    </message>
-    <message>
-        <source>Date time content does not match pattern facet.</source>
-        <translation>Die Datumsangabe entspricht nicht der Suchmusterfacette.</translation>
-    </message>
-    <message>
-        <source>Element %1 cannot have a sequence constructor.</source>
-        <translation>Das Element %1 kann keinen Sequenzkonstruktor haben.</translation>
-    </message>
-    <message>
-        <source>When attribute %1 is present on %2, a sequence constructor cannot be used.</source>
-        <translation>Es kann kein Sequenzkonstruktor verwendet werden, wenn %2 ein Attribut %1 hat.</translation>
-    </message>
-    <message>
-        <source>one or more</source>
-        <translation>ein oder mehrere</translation>
-    </message>
-    <message>
-        <source>Simple type %1 can only have simple atomic type as base type.</source>
-        <translation>Der einfache Typ %1 kann nur einen einfachen atomaren Basistyp haben.</translation>
-    </message>
-    <message>
-        <source>Complex type %1 has duplicated element %2 in its content model.</source>
-        <translation>Der komplexe Typ %1 hat ein dupliziertes Element %2 in seinem Inhaltsmodell.</translation>
-    </message>
-    <message>
-        <source>String content is not listed in the enumeration facet.</source>
-        <translation>Der Zeichenketteninhalt ist nicht in der Aufzählungsfacette enthalten.</translation>
-    </message>
-    <message>
-        <source>%1 element has neither %2 attribute nor %3 child element.</source>
-        <translation>Das Element %1 hat weder das Attribut %2 noch ein Unterelement %3.</translation>
-    </message>
-    <message>
-        <source>Duplicated element names %1 in %2 element.</source>
-        <translation>Der Elementname %1 kommt im Element %2 mehrfach vor.</translation>
-    </message>
-    <message>
-        <source>%1 element cannot have %2 attribute with value other than %3.</source>
-        <translation>Der Wert des Attributs %2 des Elements %1 kann nur %3 sein.</translation>
-    </message>
-    <message>
-        <source>The encoding %1 is invalid. It must contain Latin characters only, must not contain whitespace, and must match the regular expression %2.</source>
-        <translation>Die Kodierung %1 ist ungültig; sie darf nur aus lateinischen Buchstaben bestehen, keine Leerzeichen enthalten und muss dem regulären Ausdruck %2 entsprechen.</translation>
-    </message>
-    <message>
-        <source>%1 attribute of %2 element contains invalid content: {%3}.</source>
-        <translation>Das Attribut %1 des Elements %2 enthält ungültigen Inhalt: {%3}.</translation>
-    </message>
-    <message>
-        <source>Date time content is not listed in the enumeration facet.</source>
-        <translation>Die Datumsangabe ist nicht in der Aufzählungsfacette enthalten.</translation>
-    </message>
-    <message numerus="yes">
-        <source>%1 requires at least %n argument(s). %2 is therefore invalid.</source>
-        <translation>
-            <numerusform>%1 erfordert mindestens ein Argument; die Angabe %2 ist daher ungültig.</numerusform>
-            <numerusform>%1 erfordert mindestens %n Argumente; die Angabe %2 ist daher ungültig.</numerusform>
-        </translation>
-    </message>
-    <message>
-        <source>Attribute %1 in derived complex type must have %2 value constraint.</source>
-        <translation>Das Attribut %1 in einem abgeleiteten komplexen Typ muss die Einschränkung des Werts &apos;%2&apos; haben.</translation>
-    </message>
-    <message>
-        <source>No variable with name %1 exists</source>
-        <translation>Es existiert keine Variable des Namens %1</translation>
-    </message>
-    <message>
-        <source>Unsigned integer content does not match the minInclusive facet.</source>
-        <translation>Der vorzeichenlose Ganzzahlwert entspricht nicht der Facette &apos;minInclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Unsigned integer content does not match the minExclusive facet.</source>
-        <translation>Der vorzeichenlose Ganzzahlwert entspricht nicht der Facette &apos;minExclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Signed integer content does not match the minInclusive facet.</source>
-        <translation>Der vorzeichenbehaftete Ganzzahlwert entspricht nicht der Facette &apos;minInclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Signed integer content does not match the minExclusive facet.</source>
-        <translation>Der vorzeichenbehaftete Ganzzahlwert entspricht nicht der Facette &apos;minExclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Component with ID %1 has been defined previously.</source>
-        <translation>Es wurde bereits eine Komponente mit der ID %1 definiert.</translation>
-    </message>
-    <message>
-        <source>Element %1 contains two attributes of type %2.</source>
-        <translation>Das Element %1 enthält zwei Attribute des Typs %2.</translation>
-    </message>
-    <message>
-        <source>Unsigned integer content does not match the maxInclusive facet.</source>
-        <translation>Der vorzeichenlose Ganzzahlwert entspricht nicht der Facette &apos;maxInclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Unsigned integer content does not match the maxExclusive facet.</source>
-        <translation>Der vorzeichenlose Ganzzahlwert entspricht nicht der Facette &apos;maxExclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Signed integer content does not match the maxInclusive facet.</source>
-        <translation>Der vorzeichenbehaftete Ganzzahlwert entspricht nicht der Facette &apos;maxInclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Signed integer content does not match the maxExclusive facet.</source>
-        <translation>Der vorzeichenbehaftete Ganzzahlwert entspricht nicht der Facette &apos;maxExclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>The focus is undefined.</source>
-        <translation>Es ist kein Fokus definiert.</translation>
-    </message>
-    <message>
-        <source>%1 attribute of %2 element must be %3 or %4.</source>
-        <translation>Das Attribut %1 des Elements %2 kann nur %3 oder %4 sein.</translation>
-    </message>
-    <message>
-        <source>%1, %2, %3, %4, %5 and %6 facets are not allowed when derived by list.</source>
-        <translation>Die Facetten %1, %2, %3, %4, %5 und %6 sind bei Vererbung durch Listen nicht zulässig.</translation>
-    </message>
-    <message>
-        <source>%1 is an unknown schema type.</source>
-        <translation>%1 ist ein unbekannter Schema-Typ.</translation>
-    </message>
-    <message>
-        <source>The value for attribute %1 on element %2 must either be %3 or %4, not %5.</source>
-        <translation>Der Wert des Attributs %1 des Elements %2 kann nur %3 oder %4 sein, nicht jedoch %5.</translation>
-    </message>
-    <message>
-        <source>Base type of simple type %1 cannot be complex type %2.</source>
-        <translation>Der komplexe Typ %2 kann nicht Basisklasse des einfachen Typs %1 sein.</translation>
-    </message>
-    <message>
-        <source>Simple type %1 is not allowed to have base type %2.</source>
-        <translation>Der einfache Typ %1 darf nicht den Basistyp %2 haben.</translation>
-    </message>
-    <message>
-        <source>In the replacement string, %1 must be followed by at least one digit when not escaped.</source>
-        <translation>In der Ersetzung muss auf %1 eine Ziffer folgen, wenn es nicht durch ein Escape-Zeichen geschützt ist.</translation>
-    </message>
-    <message>
-        <source>%1 is not allowed to derive from %2 by union as the latter defines it as final.</source>
-        <translation>%1 darf nicht durch Vereinigung von %2 abgeleitet werden, da sie letzterer als final deklariert.</translation>
-    </message>
-    <message>
-        <source>Element %1 contains not allowed text content.</source>
-        <translation>Das Element %1 enthält unzulässigen Textinhalt.</translation>
-    </message>
-    <message>
-        <source>In an XSL-T pattern, axis %1 cannot be used, only axis %2 or %3 can.</source>
-        <translation>Bei einem XSL-T-Suchmuster dürfen nur die Achsen %2 oder %3 verwendet werden, nicht jedoch %1.</translation>
-    </message>
-    <message>
-        <source>%1 attribute in derived complex type must be %2 like in base type.</source>
-        <translation>Das Attribut %1 in einem abgeleiteten komplexen Typ muss wie im Basistyp &apos;%2&apos; sein.</translation>
-    </message>
-    <message>
-        <source>The namespace for a user defined function cannot be empty (try the predefined prefix %1 which exists for cases like this)</source>
-        <translation>Der Namensraum einer benutzerdefinierten Funktion darf nicht leer sein (für diesen Zweck gibt es den vordefinierten Präfix %1)</translation>
-    </message>
-    <message>
-        <source>The first operand in an integer division, %1, cannot be infinity (%2).</source>
-        <translation>Der erste Operand einer ganzzahligen Division, %1, kann nicht Unendlich (%2) sein.</translation>
-    </message>
-    <message>
-        <source>%1 element without %2 attribute is not allowed inside schema without target namespace.</source>
-        <translation>In einem Schema ohne Namensraum muss das Element %1 ein Attribut %2 haben.</translation>
-    </message>
-    <message>
-        <source>%1 is not a valid value of type %2.</source>
-        <translation>%1 ist kein gültiger Wert des Typs %2.</translation>
-    </message>
-    <message>
-        <source>Multiplication of a value of type %1 by %2 or %3 (plus or minus infinity) is not allowed.</source>
-        <translation>Die Multiplikation eines Werts des Typs %1 mit %2 oder %3 (positiv oder negativ unendlich) ist nicht zulässig.</translation>
-    </message>
-    <message>
-        <source>Double content does not match pattern facet.</source>
-        <translation>Die Gleitkommazahl entspricht nicht der Suchmusterfacette.</translation>
-    </message>
-    <message>
-        <source>Substitution group %1 has circular definition.</source>
-        <translation>Die Substitutionsgruppe %1 hat eine zirkuläre Definition.</translation>
-    </message>
-    <message>
-        <source>The variable %1 is unused</source>
-        <translation>Die Variable %1 wird nicht verwendet</translation>
-    </message>
-    <message>
-        <source>The %1-axis is unsupported in XQuery</source>
-        <translation>Die %1-Achse wird in XQuery nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>A direct element constructor is not well-formed. %1 is ended with %2.</source>
-        <translation>Es wurde ein fehlerhafter direkter Element-Konstruktor gefunden. %1 endet mit %2.</translation>
-    </message>
-    <message>
-        <source>No definition for element %1 available.</source>
-        <translation>Für das Element %1 ist keine Definition verfügbar.</translation>
-    </message>
-    <message>
-        <source>%1 is not allowed to derive from %2 by list as the latter defines it as final.</source>
-        <translation>%1 darf nicht durch Listen von %2 abgeleitet werden, da letzterer sie als final deklariert.</translation>
-    </message>
-    <message>
-        <source>Dividing a value of type %1 by %2 or %3 (plus or minus zero) is not allowed.</source>
-        <translation>Die Division eines Werts des Typs %1 durch %2 oder %3 (positiv oder negativ Null) ist nicht zulässig.</translation>
-    </message>
-    <message>
-        <source>Attribute %1 already defined.</source>
-        <translation>Das Attribut %1 ist bereits definiert.</translation>
-    </message>
-    <message>
-        <source>Double content is not listed in the enumeration facet.</source>
-        <translation>Die Gleitkommazahl ist nicht in der Aufzählungsfacette enthalten.</translation>
-    </message>
-    <message>
-        <source>Boolean content does not match pattern facet.</source>
-        <translation>Der boolesche Wert entspricht nicht der Suchmusterfacette.</translation>
-    </message>
-    <message>
-        <source>Derived wildcard is not a subset of the base wildcard.</source>
-        <translation>Das abgeleitete Suchmuster ist keine Untermenge des Basissuchmusters.</translation>
-    </message>
-    <message>
-        <source>%1 attribute of %2 element must have the value %3 because the %4 attribute is set.</source>
-        <translation>Das Attribut %1 des Elements %2 muss den Wert %3 haben, da das Attribut %4 gesetzt ist.</translation>
-    </message>
-    <message>
-        <source>Fixed value constraint of element %1 differs from value constraint in base particle.</source>
-        <translation>Die feste Einschränkung des Wertes des Elements %1 unterscheidet sich von der Einschränkung des Wertes des Basispartikels.</translation>
-    </message>
-    <message>
-        <source>Attribute %1 cannot have the value %2.</source>
-        <translation>Das Attribut %1 darf nicht den Wert %2 haben.</translation>
-    </message>
-    <message>
-        <source>Element %1 is not allowed in this scope, possible elements are: %2.</source>
-        <translation>Das Element %1 ist in diesem Bereich nicht zulässig; möglich wären: %2.</translation>
-    </message>
-    <message>
-        <source>%1 attribute of %2 element has larger value than %3 attribute.</source>
-        <translation>Der Wert des Attributs %1 des Elements %2 ist größer als der des Attributs %3.</translation>
-    </message>
-    <message>
-        <source>%1 is not allowed to derive from %2 by extension as the latter defines it as final.</source>
-        <translation>%1 darf nicht durch Erweiterung von %2 abgeleitet werden, da letzterer sie als final deklariert.</translation>
-    </message>
-    <message>
-        <source>It will not be possible to retrieve %1.</source>
-        <translation>%1 kann nicht bestimmt werden.</translation>
-    </message>
-    <message>
-        <source>In an XSL-T pattern, function %1 cannot have a third argument.</source>
-        <translation>Bei einem XSL-T-Suchmuster darf die Funktion %1 kein drittes Argument haben.</translation>
-    </message>
-    <message>
-        <source>The namespace URI in the name for a computed attribute cannot be %1.</source>
-        <translation>Der Namensraum-URI im Namen eines berechneten Attributes darf nicht %1 sein.</translation>
-    </message>
-    <message>
-        <source>Complex type %1 has non-deterministic content.</source>
-        <translation>Der komplexe Typ %1 hat nicht-deterministischen Inhalt.</translation>
-    </message>
-    <message>
-        <source>Double content does not match the maxInclusive facet.</source>
-        <translation>Die Gleitkommazahl entspricht nicht der Facette &apos;maxInclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Double content does not match the maxExclusive facet.</source>
-        <translation>Die Gleitkommazahl entspricht nicht der Facette &apos;maxExclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Specified type %1 is not known to the schema.</source>
-        <translation>Der angegebene Typ %1 ist im Schema nicht spezifiziert.</translation>
-    </message>
-    <message>
-        <source>Base type %1 of complex type cannot be resolved.</source>
-        <translation>Der Basistyp %1 des komplexen Typs kann nicht aufgelöst werden.</translation>
-    </message>
-    <message>
-        <source>%1 is not a valid target name in a processing instruction. It must be a %2 value, e.g. %3.</source>
-        <translation>%1 ist kein gültiger Zielname einer Processing-Anweisung, es muss ein %2 Wert wie zum Beispiel %3 sein.</translation>
-    </message>
-    <message>
-        <source>String content does not match the minLength facet.</source>
-        <translation>Der Zeichenketteninhalt entspricht nicht der Längenfacette (Minimumangabe).</translation>
-    </message>
-    <message>
-        <source>String content does not match the maxLength facet.</source>
-        <translation>Der Zeichenketteninhalt entspricht nicht der Längenfacette (Maximumangabe).</translation>
-    </message>
-    <message>
-        <source>QName content does not match pattern facet.</source>
-        <translation>Der Inhalt des qualifizierten Namens entspricht nicht der Suchmusterfacette.</translation>
-    </message>
-    <message>
-        <source>Declaration for attribute %1 does not exist.</source>
-        <translation>Für das Attribut %1 ist keine Deklaration verfügbar.</translation>
-    </message>
-    <message>
-        <source>Double content does not match the minInclusive facet.</source>
-        <translation>Die Gleitkommazahl entspricht nicht der Facette &apos;minInclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Double content does not match the minExclusive facet.</source>
-        <translation>Die Gleitkommazahl entspricht nicht der Facette &apos;minExclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>%1 is an complex type. Casting to complex types is not possible. However, casting to atomic types such as %2 works.</source>
-        <translation>%1 ist ein komplexer Typ. Eine &quot;cast&quot;-Operation zu komplexen Typen ist nicht möglich. Es können allerdings &quot;cast&quot;-Operationen zu atomaren Typen wie %2 durchgeführt werden.</translation>
-    </message>
-    <message>
-        <source>zero or one</source>
-        <translation>kein oder ein</translation>
-    </message>
-    <message>
-        <source>Circular inheritance of union %1.</source>
-        <translation>Zirkuläre Vererbung bei der Vereinigung %1.</translation>
-    </message>
-    <message>
-        <source>The target name in a processing instruction cannot be %1 in any combination of upper and lower case. Therefore, %2 is invalid.</source>
-        <translation>Der Zielname einer Processing-Anweisung kann nicht %1 (unabhängig von Groß/Kleinschreibung) sein. %2 ist daher ungültig.</translation>
-    </message>
-    <message>
-        <source>No operand in an integer division, %1, can be %2.</source>
-        <translation>Fehlender Operand bei ganzzahliger Division, %1, es könnte sich um %2 handeln.</translation>
-    </message>
-    <message>
-        <source>The element with local name %1 does not exist in XSL-T.</source>
-        <translation>Das Element mit dem lokalen Namen %1 existiert in XSL-T nicht.</translation>
-    </message>
-    <message>
-        <source>Two namespace declaration attributes have the same name: %1.</source>
-        <translation>Es wurden zwei Namensraum-Deklarationsattribute gleichen Namens (%1) gefunden.</translation>
-    </message>
-    <message>
-        <source>No function with name %1 is available.</source>
-        <translation>Es ist keine Funktion des Namens %1 verfügbar.</translation>
-    </message>
-    <message>
-        <source>%1 facet must be greater than or equal to %2 facet of base type.</source>
-        <translation>Die Facette %1 muss größer oder gleich der Facette %2 des Basistyps sein.</translation>
-    </message>
-    <message>
-        <source>Effective Boolean Value cannot be calculated for a sequence containing two or more atomic values.</source>
-        <translation>Der effektive boolesche Wert einer Sequenz aus zwei oder mehreren atomaren Werten kann nicht berechnet werden.</translation>
-    </message>
-    <message>
-        <source>%1 is an invalid %2</source>
-        <translation>%1 ist kein gültiges %2</translation>
-    </message>
-    <message>
-        <source>Attributes of complex type %1 are not a valid restriction from the attributes of base type %2: %3.</source>
-        <translation>Die Attribute des komplexen Typs %1 sind keine gültige Einschränkung der Attribute des Basistyps %2: %3.</translation>
-    </message>
-    <message>
-        <source>The first argument to %1 cannot be of type %2. It must be a numeric type, xs:yearMonthDuration or xs:dayTimeDuration.</source>
-        <translation>Das erste Argument von %1 darf nicht vom Typ %2 sein; es muss numerisch, xs:yearMonthDuration oder xs:dayTimeDuration sein.</translation>
-    </message>
-    <message>
-        <source>Division (%1) by zero (%2) is undefined.</source>
-        <translation>Die Division (%1) durch Null (%2) ist nicht definiert.</translation>
-    </message>
-    <message>
-        <source>No template by name %1 exists.</source>
-        <translation>Es existiert keine Vorlage mit dem Namen %1.</translation>
-    </message>
-    <message>
-        <source>The attribute %1 must appear on element %2.</source>
-        <translation>Bei dem Element %2 muss das Attribut %1 erscheinen.</translation>
-    </message>
-    <message>
-        <source>Enumeration facet contains invalid content: {%1} is not a value of type %2.</source>
-        <translation>Ungültiger Inhalt einer Aufzählungsfacette: {%1} ist kein Wert des Typs %2.</translation>
-    </message>
-    <message>
-        <source>Duration content is not listed in the enumeration facet.</source>
-        <translation>Die Angabe der Zeitdauer ist nicht in der Aufzählungsfacette enthalten.</translation>
-    </message>
-    <message>
-        <source>%1 facet contains invalid value %2: %3.</source>
-        <translation>Die Facette %1 enthält einen ungültigen Wert %2: %3.</translation>
-    </message>
-    <message>
-        <source>Derived definition contains an %1 element that does not exists in the base definition</source>
-        <translation>Die abgeleitete Definition enthält ein Element %1, was in der Basisdefinition nicht existiert</translation>
-    </message>
-    <message>
-        <source>%1 contains invalid data.</source>
-        <translation>%1 enthält ungültige Daten.</translation>
-    </message>
-    <message>
-        <source>The default collection is undefined</source>
-        <translation>Für eine Kollektion ist keine Vorgabe definiert</translation>
-    </message>
-    <message>
-        <source>Only the prefix %1 can be bound to %2 and vice versa.</source>
-        <translation>An %2 kann nur der Präfix %1 gebunden werden (und umgekehrt).</translation>
-    </message>
-    <message>
-        <source>Value %1 of type %2 exceeds maximum (%3).</source>
-        <translation>Der Wert %1 des Typs %2 überschreitet das Maximum (%3).</translation>
-    </message>
-    <message>
-        <source>List content does not match pattern facet.</source>
-        <translation>Der Listeninhalt entspricht nicht der Suchmusterfacette.</translation>
-    </message>
-    <message>
-        <source>Attribute group %1 contains two different attributes that both have types derived from %2.</source>
-        <translation>Die Attributgruppe %1 enthält zwei verschiedene Attribute mit Typen, die von %2 abgeleitet sind.</translation>
-    </message>
-    <message>
-        <source>Whitespace characters are removed, except when they appear in character classes</source>
-        <translation>Leerzeichen werden entfernt, sofern sie nicht in Zeichenklassen erscheinen</translation>
-    </message>
-    <message>
-        <source>Casting to %1 is not possible because it is an abstract type, and can therefore never be instantiated.</source>
-        <translation>Eine Typumwandlung nach %1 ist nicht möglich, da es ein abstrakter Typ ist und somit niemals instanziiert werden kann.</translation>
-    </message>
-    <message>
-        <source>Attribute %1 in derived complex type must have %2 value constraint like in base type.</source>
-        <translation>Das Attribut %1 in einem abgeleiteten komplexen Typ muss wie der Basistyp eine Einschränkung des Werts (%2) haben.</translation>
-    </message>
-    <message>
-        <source>Operator %1 cannot be used on type %2.</source>
-        <translation>Der Operator %1 kann nicht auf den Typ %2 angewandt werden.</translation>
-    </message>
-    <message>
-        <source>The namespace %1 is reserved; therefore user defined functions may not use it. Try the predefined prefix %2, which exists for these cases.</source>
-        <translation>Der Namensraum %1 ist reserviert und kann daher von nutzerdefinierten Funktionen nicht verwendet werden (für diesen Zweck gibt es den vordefinierten Präfix %2).</translation>
-    </message>
-    <message>
-        <source>The target namespace of a %1 cannot be empty.</source>
-        <translation>Der Ziel-Namensraum von %1 darf nicht leer sein.</translation>
-    </message>
-    <message>
-        <source>%1 element %2 is not a valid restriction of the %3 element it redefines: %4.</source>
-        <translation>Das Element %2 (%1) ist keine gültige Einschränkung des überschriebenen Elements (%3): %4.</translation>
-    </message>
-    <message>
-        <source>Simple type %1 is only allowed to have %2 facet.</source>
-        <translation>Der einfache Typ %1 darf nur die Facette %2 haben.</translation>
-    </message>
-    <message>
-        <source>Binary content does not match the maxLength facet.</source>
-        <translation>Der binäre Inhalt entspricht nicht der Facette &apos;maxLength&apos;.</translation>
-    </message>
-    <message>
-        <source>Binary content does not match the minLength facet.</source>
-        <translation>Der binäre Inhalt entspricht nicht der Facette &apos;minLength&apos;.</translation>
-    </message>
-    <message>
-        <source>Can not process unknown element %1, expected elements are: %2.</source>
-        <translation>Das unbekannte Element %1 kann nicht verarbeitet werden; zulässig wären: %2.</translation>
-    </message>
-    <message>
-        <source>%1 must be followed by %2 or %3, not at the end of the replacement string.</source>
-        <translation>Auf %1 muss %2 oder %3 folgen; es kann nicht am Ende der Ersetzung erscheinen.</translation>
-    </message>
-    <message>
-        <source>%1 is an invalid namespace URI.</source>
-        <translation>%1 ist kein gültiger Namensraum-URI.</translation>
-    </message>
-    <message>
-        <source>The attribute %1 cannot appear on %2, when it is a child of %3.</source>
-        <translation>%2 darf nicht das Attribut %1 haben, wenn es ein Kindelement von %3 ist.</translation>
-    </message>
-    <message>
-        <source>Unsigned integer content does not match in the totalDigits facet.</source>
-        <translation>Der vorzeichenlose Ganzzahlwert entspricht nicht der Facette &apos;totalDigits&apos;.</translation>
-    </message>
-    <message>
-        <source>The attribute %1 can only appear on the first %2 element.</source>
-        <translation>Nur das erste %2-Element darf das Attribut %1 haben.</translation>
-    </message>
-    <message>
-        <source>Element %1 must have either a %2-attribute or a sequence constructor.</source>
-        <translation>Das Element %1 muss entweder ein %2-Attribut haben oder es muss ein Sequenzkonstruktor verwendet werden.</translation>
-    </message>
-    <message>
-        <source>%1 element is not allowed in this context.</source>
-        <translation>Das Element %1 ist in diesem Kontext nicht zulässig.</translation>
-    </message>
-    <message>
-        <source>Attribute group %1 has circular reference.</source>
-        <translation>Die Attributgruppe %1 hat einen zirkulären Verweis.</translation>
-    </message>
-    <message>
-        <source>Derived attribute %1 does not exist in the base definition.</source>
-        <translation>Das abgeleitete Attribut %1 existiert in der Basisdefinition nicht.</translation>
-    </message>
-    <message>
-        <source>%1 has attribute wildcard but its base type %2 has not.</source>
-        <translation>%1 hat ein Attributssuchmuster, nicht jedoch sein Basistyp %2.</translation>
-    </message>
-    <message>
-        <source>Wildcard in derived particle is not a valid subset of wildcard in base particle.</source>
-        <translation>Das Suchmuster im abgeleiteten Partikel ist keine gültige Untermenge des Suchmusters des Basispartikels.</translation>
-    </message>
-    <message>
-        <source>%1 attribute of %2 element contains invalid content: {%3} is not a value of type %4.</source>
-        <translation>Das Attribut %1 des Elements %2 enthält ungültigen Inhalt: {%3} ist kein Wert des Typs %4.</translation>
-    </message>
-    <message>
-        <source>Module imports must occur before function, variable, and option declarations.</source>
-        <translation>Modul-Importe müssen vor Funktions-, Variablen- oder Optionsdeklarationen stehen.</translation>
-    </message>
-    <message>
-        <source>Complex type of derived element %1 cannot be validly derived from base element.</source>
-        <translation>Der komplexe Typ des abgeleiteten Elements %1 kann nicht vom Basiselement abgeleitet werden.</translation>
-    </message>
-    <message>
-        <source>Day %1 is outside the range %2..%3.</source>
-        <translation>Die Tagesangabe %1 ist außerhalb des Bereiches %2..%3.</translation>
-    </message>
-    <message>
-        <source>%1 contains octets which are disallowed in the requested encoding %2.</source>
-        <translation>%1 enthält Oktette, die in der Kodierung %2 nicht zulässig sind.</translation>
-    </message>
-    <message>
-        <source>%1 element is not allowed to have the same %2 attribute value as the target namespace %3.</source>
-        <translation>Das Element %1 darf nicht das gleiche %2 Attribut haben wie der Zielnamensraum %3.</translation>
-    </message>
-    <message>
-        <source>When a parameter is required, a default value cannot be supplied through a %1-attribute or a sequence constructor.</source>
-        <translation>Der Defaultwert eines erforderlichen Parameters kann weder durch ein %1-Attribut noch durch einen Sequenzkonstruktor angegeben werden. </translation>
-    </message>
-    <message>
-        <source>In an XSL-T pattern, the first argument to function %1 must be a string literal, when used for matching.</source>
-        <translation>Bei einem XSL-T-Suchmuster muss das erste Argument zur Funktion %1 bei der Verwendung zur Suche ein Zeichenketten-Literal sein.</translation>
-    </message>
-    <message>
-        <source>Decimal content does not match in the totalDigits facet.</source>
-        <translation>Die Dezimalzahl entspricht nicht der Facette &apos;totalDigits&apos;.</translation>
-    </message>
-    <message>
-        <source>Type of element %1 cannot be derived from type of substitution group affiliation.</source>
-        <translation>Der Typ des Elements %1 kann nicht vom Typ der zugehörigen Substitutionsgruppe abgeleitet werden.</translation>
-    </message>
-    <message>
-        <source>Text nodes are not allowed at this location.</source>
-        <translation>An dieser Stelle dürfen keine Textknoten stehen.</translation>
-    </message>
-    <message>
-        <source>%1 element must have either %2 attribute or %3 or %4 as child element.</source>
-        <translation>Das Element %1 muss entweder das Attribut %2 spezifizieren oder über eines der Unterelemente %3 oder %4 verfügen.</translation>
-    </message>
-    <message>
-        <source>Attribute group %1 already defined.</source>
-        <translation>Die Attributgruppe %1 ist bereits definiert.</translation>
-    </message>
-    <message>
-        <source>A value of type %1 cannot be a predicate. A predicate must have either a numeric type or an Effective Boolean Value type.</source>
-        <translation>Werte des Typs %1 dürfen keine Prädikate sein. Für Prädikate sind nur numerische oder effektive boolesche Typen zulässig.</translation>
-    </message>
-    <message>
-        <source>Signed integer content does not match in the totalDigits facet.</source>
-        <translation>Der vorzeichenbehaftete Ganzzahlwert entspricht nicht der Facette &apos;totalDigits&apos;.</translation>
-    </message>
-    <message>
-        <source>%1 is not a valid name for a processing-instruction.</source>
-        <translation>%1 ist kein gültiger Name für eine Processing-Instruktion.</translation>
-    </message>
-    <message>
-        <source>%1 facet must be less than or equal to %2 facet.</source>
-        <translation>Die Facette %1 muss kleiner oder gleich der Facette %2 sein.</translation>
-    </message>
-    <message>
-        <source>Derivation method of %1 must be extension because the base type %2 is a simple type.</source>
-        <translation>Erweiterung muss als Vererbungsmethode für %1 verwendet werden, da der Basistyp %2 ein einfacher Typ ist.</translation>
-    </message>
-    <message>
-        <source>%1 was called.</source>
-        <translation>%1 wurde gerufen.</translation>
-    </message>
-    <message>
-        <source>Identity constraint %1 already defined.</source>
-        <translation>Die Identitätseinschränkung %1 ist bereits definiert.</translation>
-    </message>
-    <message>
-        <source>It&apos;s not possible to add attributes after any other kind of node.</source>
-        <translation>Attribute dürfen nicht auf andere Knoten folgen.</translation>
-    </message>
-    <message>
-        <source>Only %1 and %2 facets are allowed when derived by union.</source>
-        <translation>Bei Vererbung durch Vereinigung sind nur die Facetten %1 und %2 zulässig.</translation>
-    </message>
-    <message>
-        <source>%1 attribute of %2 element must either contain %3 or the other values.</source>
-        <translation>Der Wert des Attributs %1 des Elements %2 muss entweder %3 oder die anderen Werte enthalten.</translation>
-    </message>
-    <message>
-        <source>At least one %1-element must occur before %2.</source>
-        <translation>Vor %2 muss mindestens ein %1-Element stehen.</translation>
-    </message>
-    <message>
-        <source>%1 facet must have the same value as %2 facet of base type.</source>
-        <translation>Die Facette %1 muss denselben Wert wie die Facette %2 des Basistyps haben.</translation>
-    </message>
-    <message>
-        <source>Element group %1 already defined.</source>
-        <translation>Die Elementgruppe %1 ist bereits definiert.</translation>
-    </message>
-    <message>
-        <source>The normalization form %1 is unsupported. The supported forms are %2, %3, %4, and %5, and none, i.e. the empty string (no normalization).</source>
-        <translation>Die Normalisierungsform %1 wird nicht unterstützt. Die unterstützten Normalisierungsformen sind %2, %3, %4 and %5, und &quot;kein&quot; (eine leere Zeichenkette steht für &quot;keine Normalisierung&quot;).</translation>
-    </message>
-    <message>
-        <source>Target namespace %1 of imported schema is different from the target namespace %2 as defined by the importing schema.</source>
-        <translation>Der Zielnamensraum %1 des importierten Schemas unterscheidet sich vom Zielnamensraum %2 des importierenden Schemas.</translation>
-    </message>
-    <message>
-        <source>When casting to %1 or types derived from it, the source value must be of the same type, or it must be a string literal. Type %2 is not allowed.</source>
-        <translation>Bei einer &quot;cast&quot;-Operation zum Typ %1 oder abgeleiteten Typen muss der Quellwert ein Zeichenketten-Literal oder ein Wert gleichen Typs sein. Der Typ %2 ist ungültig.</translation>
-    </message>
-    <message>
-        <source>Attribute %1 contains invalid content.</source>
-        <translation>Das Attribut %1 enthält ungültigen Inhalt.</translation>
-    </message>
-    <message>
-        <source>Element %1 contains not allowed attributes.</source>
-        <translation>Das Element %1 enthält unzulässige Attribute.</translation>
-    </message>
-    <message>
-        <source>A parameter in a function cannot be declared to be a tunnel.</source>
-        <translation>Der Parameter einer Funktion kann nicht als Tunnel deklariert werden.</translation>
-    </message>
-    <message>
-        <source>processContent of wildcard in derived particle is weaker than wildcard in base particle.</source>
-        <translation>Das processContent-Attribut des Suchmusters des abgeleiteten Partikels ist schwächer als das Suchmuster des Basispartikels.</translation>
-    </message>
-    <message>
-        <source>%1 facet must be equal or greater than %2 facet of base type.</source>
-        <translation>Die Facette %1 muss größer oder gleich der Facette %2 des Basistyps sein.</translation>
-    </message>
-    <message>
-        <source>XSL-T attributes on XSL-T elements must be in the null namespace, not in the XSL-T namespace which %1 is.</source>
-        <translation>XSL-T-Attribute von XSL-T-Elementen müssen im Null-Namensraum sein und nicht im XSL-T Namensraum, was für %1 der Fall ist.</translation>
-    </message>
-    <message>
-        <source>The namespace of a user defined function in a library module must be equivalent to the module namespace. In other words, it should be %1 instead of %2</source>
-        <translation>Der Namensraum einer nutzerdefinierten Funktion aus einem Bibliotheksmodul muss dem Namensraum des Moduls entsprechen (%1 anstatt %2) </translation>
-    </message>
-    <message>
-        <source>%1 attribute in %2 must have %3 use like in base type %4.</source>
-        <translation>Das Attribut %1 aus %2 muss die Verwendung &apos;%3&apos; spezifizieren, wie im Basistyp %4.</translation>
-    </message>
-    <message>
-        <source>Day %1 is invalid for month %2.</source>
-        <translation>Die Tagesangabe %1 ist für den Monat %2 ungültig.</translation>
-    </message>
-    <message>
-        <source>Duration content does not match the maxExclusive facet.</source>
-        <translation>Die Angabe der Zeitdauer entspricht nicht der Facette &apos;maxExclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Duration content does not match the maxInclusive facet.</source>
-        <translation>Die Angabe der Zeitdauer entspricht nicht der Facette &apos;maxInclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Duration content does not match the minExclusive facet.</source>
-        <translation>Die Angabe der Zeitdauer entspricht nicht der Facette &apos;minExclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Duration content does not match the minInclusive facet.</source>
-        <translation>Die Angabe der Zeitdauer entspricht nicht der Facette &apos;minInclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Overflow: Can&apos;t represent date %1.</source>
-        <translation>Das Datum %1 kann nicht dargestellt werden (Ãœberlauf).</translation>
-    </message>
-    <message>
-        <source>processContent of base wildcard must be weaker than derived wildcard.</source>
-        <translation>Das &apos;processContent&apos;-Attribut des Basissuchmusters muss schwächer sein als das des abgeleiteten Suchmusters.</translation>
-    </message>
-    <message>
-        <source>Complex type %1 must have simple content.</source>
-        <translation>Der komplexe Typ %1 kann nur einfachen Inhalt haben.</translation>
-    </message>
-    <message>
-        <source>In a simplified stylesheet module, attribute %1 must be present.</source>
-        <translation>In einem vereinfachten Stylesheet-Modul muss das Attribut %1 vorhanden sein.</translation>
-    </message>
-    <message>
-        <source>Unknown XSL-T attribute %1.</source>
-        <translation>Unbekanntes XSL-T-Attribut: %1.</translation>
-    </message>
-    <message>
-        <source>Derived element %1 cannot be nillable as base element is not nillable.</source>
-        <translation>Das abgeleitete Element %1 kann kein &apos;nillable&apos;-Attribut haben, da das Basiselement keines spezifiziert.</translation>
-    </message>
-    <message>
-        <source>Complex type %1 contains attribute %2 that has value constraint but type that inherits from %3.</source>
-        <translation>Der komplexe Typ %1 enthält ein Attribut %2 mit einer Einschränkung des Werts, dessen Typ aber von %3 abgeleitet ist.</translation>
-    </message>
-    <message>
-        <source>It is not possible to redeclare prefix %1.</source>
-        <translation>Der Präfix %1 kann nicht redeklariert werden.</translation>
-    </message>
-    <message>
-        <source>exactly one</source>
-        <translation>genau ein</translation>
-    </message>
-    <message>
-        <source>%1 is not valid according to %2.</source>
-        <translation>%1 ist nach %2 ungültig.</translation>
-    </message>
-    <message>
-        <source>%1 facet must be less than %2 facet.</source>
-        <translation>Die Facette %1 muss kleiner als die Facette %2 sein.</translation>
-    </message>
-    <message>
-        <source>%1 is an invalid regular expression pattern: %2</source>
-        <translation>%1 ist kein gültiger regulärer Ausdruck: %2</translation>
-    </message>
-    <message>
-        <source>Value constraint of element %1 is not of elements type: %2.</source>
-        <translation>Die Einschränkung des Werts des Elements %1 ist nicht vom Typ des Elements: %2.</translation>
-    </message>
-    <message>
-        <source>%1 element with %2 child element must not have a %3 attribute.</source>
-        <translation>Das Element %1 darf kein Attribut %3 haben, wenn das Unterelement %2 vorhanden ist.</translation>
-    </message>
-    <message>
-        <source>Element %1 is not allowed at this location.</source>
-        <translation>Das Element %1 darf nicht an dieser Stelle stehen.</translation>
-    </message>
-    <message>
-        <source>The Schema Validation Feature is not supported. Hence, %1-expressions may not be used.</source>
-        <translation>%1-Ausdrücke können nicht verwendet werden, da Schemavalidierung nicht unterstützt wird. </translation>
-    </message>
-    <message>
-        <source>At least one %1 element must appear as child of %2.</source>
-        <translation>%2 muss mindestens ein %1-Kindelement haben.</translation>
-    </message>
-    <message>
-        <source>Element %1 contains not allowed child element.</source>
-        <translation>Das Element %1 enthält ein unzulässiges Unterelement.</translation>
-    </message>
-    <message>
-        <source>Document is not a XML schema.</source>
-        <translation>Das Dokument ist kein XML-Schema.</translation>
-    </message>
-    <message>
-        <source>This processor is not Schema-aware and therefore %1 cannot be used.</source>
-        <translation>%1 kann nicht verwendet werden, da dieser Prozessor keine Schemas unterstützt.</translation>
-    </message>
-    <message>
-        <source>%1 attribute of %2 element must have a value of %3 or %4.</source>
-        <translation>Das Attribut %1 des Elements %2 kann nur einen der Werte %3 oder %4 haben.</translation>
-    </message>
-    <message>
-        <source>Attribute %1 cannot appear on the element %2. Allowed is %3, and the standard attributes.</source>
-        <translation>Das Attribut %1 kann nicht beim Element %2 erscheinen. Es sind nur %3 und die Standardattribute zulässig.</translation>
-    </message>
-    <message>
-        <source>Dividing a value of type %1 by %2 (not-a-number) is not allowed.</source>
-        <translation>Die Division eines Werts des Typs %1 durch %2 (kein numerischer Wert) ist nicht zulässig.</translation>
-    </message>
-    <message>
-        <source>There is one IDREF value with no corresponding ID: %1.</source>
-        <translation>Es existiert ein IDREF-Wert, für den keine zugehörige ID vorhanden ist: %1.</translation>
-    </message>
-    <message>
-        <source>List content does not match maxLength facet.</source>
-        <translation>Der Listeninhalt entspricht nicht der Facette &apos;maxLength&apos;.</translation>
-    </message>
-    <message>
-        <source>List content does not match minLength facet.</source>
-        <translation>Der Listeninhalt entspricht nicht der Facette &apos;minLength&apos;.</translation>
-    </message>
-    <message>
-        <source>Type %1 of %2 element cannot be resolved.</source>
-        <translation>Der Typ %1 des Elements %2 kann nicht aufgelöst werden.</translation>
-    </message>
-    <message>
-        <source>Field %1 has no simple type.</source>
-        <translation>Das Feld %1 hat keinen einfachen Typ.</translation>
-    </message>
-    <message>
-        <source>Complex type %1 with simple content cannot be derived from complex base type %2.</source>
-        <translation>Der komplexe Typ %1 einfachen Inhalts darf nicht vom komplexen Basistyp %2 abgeleitet werden.</translation>
-    </message>
-    <message>
-        <source>Required cardinality is %1; got cardinality %2.</source>
-        <translation>Die erforderliche Kardinalität ist %1 (gegenwärtig %2).</translation>
-    </message>
-    <message>
-        <source>Empty particle cannot be derived from non-empty particle.</source>
-        <translation>Es kann kein leerer Partikel von einem Partikel abgeleitet werden, der nicht leer ist.</translation>
-    </message>
-    <message>
-        <source>Key constraint %1 contains absent fields.</source>
-        <translation>Die Einschränkung des Schlüssels %1 enthält nicht vorhandene Felder.</translation>
-    </message>
-    <message>
-        <source>Base type %1 of %2 element cannot be resolved.</source>
-        <translation>Der Basistyp %1 des Elements %2 kann nicht aufgelöst werden.</translation>
-    </message>
-    <message>
-        <source>%1 facet cannot be %2 or %3 if %4 facet of base type is %5.</source>
-        <translation>Die Facette %1 kann nicht %2 oder %3 sein, wenn die Facette %4 des Basistyps %5 ist.</translation>
-    </message>
-    <message>
-        <source>ID value &apos;%1&apos; is not unique.</source>
-        <translation>Der ID-Wert &apos;%1&apos; ist nicht eindeutig.</translation>
-    </message>
-    <message>
-        <source>Substitution group %1 of %2 element cannot be resolved.</source>
-        <translation>Die Substitutionsgruppe %1 des Elements %2 kann nicht aufgelöst werden.</translation>
-    </message>
-    <message>
-        <source>Notation content is not listed in the enumeration facet.</source>
-        <translation>Der Inhalt der Notation ist nicht in der Aufzählungsfacette enthalten.</translation>
-    </message>
-    <message>
-        <source>Element %1 is not allowed to have a value constraint if its type is derived from %2.</source>
-        <translation>Das Element %1 darf keine Einschränkung des Werts haben, wenn sein Typ von %2 abgeleitet ist.</translation>
-    </message>
-    <message>
-        <source>xsi:schemaLocation namespace %1 has already appeared earlier in the instance document.</source>
-        <translation>xsi:schemaLocation namespace %1 wurde im Instanzdokument bereits spezifiziert.</translation>
-    </message>
-    <message>
-        <source>Base definition contains an %1 element that is missing in the derived definition</source>
-        <translation>Das Element %1 des Basistyps fehlt in der abgeleiteten Definition</translation>
-    </message>
-    <message>
-        <source>Element %1 is not allowed to have substitution group affiliation as it is no global element.</source>
-        <translation>Das Element %1 kann nicht zu einer Substitutionsgruppe gehören, da es kein globales Element ist.</translation>
-    </message>
-    <message>
-        <source>The URI cannot have a fragment</source>
-        <translation>Der URI darf kein Fragment enthalten.</translation>
-    </message>
-    <message>
-        <source>%1 is not an atomic type. Casting is only possible to atomic types.</source>
-        <translation>%1 ist kein atomarer Typ. &quot;cast&quot;-Operationen können nur zu atomaren Typen durchgeführt werden.</translation>
-    </message>
-    <message>
-        <source>Type of %1 element must be a simple type, %2 is not.</source>
-        <translation>Der Typ des Elements %1 muss ein einfacher Typ sein, was %2 nicht ist.</translation>
-    </message>
-    <message>
-        <source>Base attribute %1 is required but missing in derived definition.</source>
-        <translation>Das erforderliche Basisattribut %1 fehlt in der abgeleiteten Definition.</translation>
-    </message>
-    <message>
-        <source>The first argument to %1 cannot be of type %2.</source>
-        <translation>Das erste Argument für %1 kann nicht vom Typ %2 sein.</translation>
-    </message>
-    <message>
-        <source>Item type of simple type %1 cannot be a complex type.</source>
-        <translation>Der Elementtyp des einfachen Typs %1 kann kein komplexer Typ sein.</translation>
-    </message>
-    <message>
-        <source>The namespace URI must be a constant and cannot use enclosed expressions.</source>
-        <translation>Ein Namensraum-URI muss eine Konstante sein und darf keine eingebetteten Ausdrücke verwenden.</translation>
-    </message>
-    <message>
-        <source>%1 attribute of %2 element must have a value of %3.</source>
-        <translation>Das Attribut %1 des Elements %2 muss den Wert %3 haben.</translation>
-    </message>
-    <message>
-        <source>Prefix %1 is already declared in the prolog.</source>
-        <translation>Der Präfix %1 wurde bereits im Prolog deklariert.</translation>
-    </message>
-    <message>
-        <source>Ambiguous rule match.</source>
-        <translation>Mehrdeutige Regel.</translation>
-    </message>
-    <message>
-        <source>Content of element %1 does not match its type definition: %2.</source>
-        <translation>Der Inhalt des Elements %1 entspricht nicht seiner Typdefinition: %2.</translation>
-    </message>
-    <message>
-        <source>QName content is not listed in the enumeration facet.</source>
-        <translation>Der Inhalt des qualifizierten Namens ist nicht in der Aufzählungsfacette enthalten.</translation>
-    </message>
-    <message>
-        <source>%1 facet collides with %2 facet.</source>
-        <translation>Die Facette %1 steht im Widerspruch zu der Facette %2.</translation>
-    </message>
-    <message>
-        <source>Promoting %1 to %2 may cause loss of precision.</source>
-        <translation>Die Wandlung von %1 zu %2 kann zu einem Verlust an Genauigkeit führen.</translation>
-    </message>
-    <message>
-        <source>In an XSL-T pattern, only function %1 and %2, not %3, can be used for matching.</source>
-        <translation>Bei einem XSL-T-Suchmuster dürfen nur die Funktionen %1 und %2, nicht jedoch %3 zur Suche verwendet werden.</translation>
-    </message>
-    <message>
-        <source>Element %1 contains unknown attribute %2.</source>
-        <translation>Das Element %1 enthält ein unbekanntes Attribut %2.</translation>
-    </message>
-    <message>
-        <source>Base type of simple type %1 must have variety of type list.</source>
-        <translation>Der Basistyp des einfachen Typs %1 muss eine Varietät des Typs Liste haben.</translation>
-    </message>
-    <message>
-        <source>A default namespace declaration must occur before function, variable, and option declarations.</source>
-        <translation>Die Deklaration des Default-Namensraums muss vor Funktions-, Variablen- oder Optionsdeklaration erfolgen.</translation>
-    </message>
-    <message>
-        <source>Operator %1 cannot be used on atomic values of type %2 and %3.</source>
-        <translation>Der Operator %1 kann nicht auf atomare Werte der Typen %2 und %3 angewandt werden.</translation>
-    </message>
-    <message>
-        <source>The module import feature is not supported</source>
-        <translation>Modul-Import wird nicht unterstützt</translation>
-    </message>
-    <message>
-        <source>The parameter %1 is passed, but no corresponding %2 exists.</source>
-        <translation>Es existiert kein entsprechendes %2 für den übergebenen Parameter %1.</translation>
-    </message>
-    <message>
-        <source>A value of type %1 cannot have an Effective Boolean Value.</source>
-        <translation>Ein Wert des Typs %1 kann keinen effektiven booleschen Wert haben.</translation>
-    </message>
-    <message>
-        <source>Element %1 is missing required attribute %2.</source>
-        <translation>Bei dem Element %1 fehlt ein erforderliches Attribut %2.</translation>
-    </message>
-    <message>
-        <source>The data of a processing instruction cannot contain the string %1</source>
-        <translation>Die Daten einer Processing-Anweisung dürfen nicht die Zeichenkette %1 enthalten</translation>
-    </message>
-    <message>
-        <source>Time 24:%1:%2.%3 is invalid. Hour is 24, but minutes, seconds, and milliseconds are not all 0; </source>
-        <translation>Die Zeitangabe 24:%1:%2.%3 ist ungültig. Bei der Stundenangabe 24 müssen Minuten, Sekunden und Millisekunden 0 sein.</translation>
-    </message>
-    <message>
-        <source>Text or entity references not allowed inside %1 element</source>
-        <translation>Text- oder Entitätsreferenzen sind innerhalb eines %1-Elements nicht zulässig.</translation>
-    </message>
-    <message>
-        <source>%1 references identity constraint %2 that is no %3 or %4 element.</source>
-        <translation>%1 verweist auf eine Identitätseinschränkung %2, die weder ein &apos;%3&apos; noch ein &apos;%4&apos; Element ist.</translation>
-    </message>
-    <message>
-        <source>It is not possible to bind to the prefix %1</source>
-        <translation>Der Präfix %1 kann nicht gebunden werden</translation>
-    </message>
-    <message>
-        <source>Value %1 of type %2 is below minimum (%3).</source>
-        <translation>Der Wert %1 des Typs %2 unterschreitet das Minimum (%3).</translation>
-    </message>
-    <message>
-        <source>Required type is %1, but %2 was found.</source>
-        <translation>Der erforderliche Typ ist %1, es wurde aber %2 angegeben.</translation>
-    </message>
-    <message>
-        <source>Element %1 contains invalid content.</source>
-        <translation>Das Element %1 enthält ungültigen Inhalt.</translation>
-    </message>
-    <message>
-        <source>%1 is an unsupported encoding.</source>
-        <translation>Die Kodierung %1 wird nicht unterstützt.</translation>
-    </message>
-    <message>
-        <source>The name of an option must have a prefix. There is no default namespace for options.</source>
-        <translation>Der Name einer Option muss einen Präfix haben. Es gibt keine Namensraum-Vorgabe für Optionen.</translation>
-    </message>
-    <message>
-        <source>Type %1 already defined.</source>
-        <translation>Der Typ %1 ist bereits definiert.</translation>
-    </message>
-    <message>
-        <source>Value constraint of derived attribute %1 does not match value constraint of base attribute.</source>
-        <translation>Die Einschränkung des Werts des abgeleiteten Attributs %1 entspricht nicht der Einschränkung des Werts des Basisattributs.</translation>
-    </message>
-    <message>
-        <source>Element %1 must come last.</source>
-        <translation>Das Element %1 muss zuletzt stehen.</translation>
-    </message>
-    <message>
-        <source>Attribute %1 cannot appear on the element %2. Allowed is %3, %4, and the standard attributes.</source>
-        <translation>Das Attribut %1 kann nicht beim Element %2 erscheinen. Es sind nur %3, %4 und die Standardattribute zulässig.</translation>
-    </message>
-    <message>
-        <source>Element %1 is missing in derived particle.</source>
-        <translation>Das Element %1 fehlt im abgeleiteten Partikel.</translation>
-    </message>
-    <message>
-        <source>No namespace binding exists for the prefix %1 in %2</source>
-        <translation>Es existiert keine Namensraum-Bindung für den Präfix %1 in %2</translation>
-    </message>
-    <message>
-        <source>Element %1 contains not allowed child content.</source>
-        <translation>Das Element %1 enthält unzulässigen Unterinhalt.</translation>
-    </message>
-    <message>
-        <source>The name %1 does not refer to any schema type.</source>
-        <translation>Der Name %1 hat keinen Bezug zu einem Schematyp.</translation>
-    </message>
-    <message>
-        <source>Union content is not listed in the enumeration facet.</source>
-        <translation>Der Inhalt der Vereinigung ist nicht in der Aufzählungsfacette enthalten.</translation>
-    </message>
-    <message>
-        <source>An argument with name %1 has already been declared. Every argument name must be unique.</source>
-        <translation>Es wurde bereits ein Argument des Namens %1 deklariert. Argumentnamen müssen eindeutig sein.</translation>
-    </message>
-    <message>
-        <source>Prefix %1 can only be bound to %2 (and it is, in either case, pre-declared).</source>
-        <translation>Der Präfix %1 kann nur an %2 gebunden werden. Dies ist bereits vordeklariert.</translation>
-    </message>
-    <message>
-        <source>Element %1 is not defined in this scope.</source>
-        <translation>Das Element %1 ist in diesem Bereich nicht definiert.</translation>
-    </message>
-    <message>
-        <source>Key constraint %1 contains references nillable element %2.</source>
-        <translation>Die Einschränkung des Schlüssels %1 verweist auf das Element %2, was &apos;nillable&apos; spezifiziert.</translation>
-    </message>
-    <message>
-        <source>%1 facet must be greater than %2 facet of base type.</source>
-        <translation>Die Facette %1 muss größer als die Facette %2 des Basistyps sein.</translation>
-    </message>
-    <message>
-        <source>%1 of derived wildcard is not a valid restriction of %2 of base wildcard</source>
-        <translation>Das Attribut %1 des abgeleiteten Suchmusters ist keine gültige Einschränkung des Attributs &apos;%2&apos; des Basissuchmusters</translation>
-    </message>
-    <message>
-        <source>The initialization of variable %1 depends on itself</source>
-        <translation>Die Initialisierung der Variable %1 hängt von ihrem eigenem Wert ab</translation>
-    </message>
-    <message>
-        <source>Content of %1 attribute of %2 element must not be from namespace %3.</source>
-        <translation>Der Inhalt des Attributs %1 des Elements %2 kann nicht vom Namensraum %3 stammen.</translation>
-    </message>
-    <message>
-        <source>An attribute node cannot be a child of a document node. Therefore, the attribute %1 is out of place.</source>
-        <translation>Ein Attributknoten darf nicht als Kind eines Dokumentknotens erscheinen. Es erschien ein Attributknoten mit dem Namen %1.</translation>
-    </message>
-    <message>
-        <source>Month %1 is outside the range %2..%3.</source>
-        <translation>Die Monatsangabe %1 ist außerhalb des Bereiches %2..%3.</translation>
-    </message>
-    <message>
-        <source>Base type of simple type %1 has defined derivation by restriction as final.</source>
-        <translation>Der Basistyp des einfachen Typs %1 definiert Vererbung durch Einschränkung als final.</translation>
-    </message>
-    <message>
-        <source>The name of a variable bound in a for-expression must be different from the positional variable. Hence, the two variables named %1 collide.</source>
-        <translation>Der Name der gebundenen Variablen eines for-Ausdrucks muss sich von dem der Positionsvariable unterscheiden. Die zwei Variablen mit dem Namen %1 stehen im Konflikt.</translation>
-    </message>
-    <message>
-        <source>%1 references unknown %2 or %3 element %4.</source>
-        <translation>%1 verweist auf ein unbekanntes Element %4 (&apos;%2&apos; oder &apos;%3&apos;).</translation>
-    </message>
-    <message>
-        <source>No namespace binding exists for the prefix %1</source>
-        <translation>Es existiert keine Namensraum-Bindung für den Präfix %1</translation>
-    </message>
-    <message>
-        <source>An %1-attribute with value %2 has already been declared.</source>
-        <translation>Ein %1-Attribut mit dem Wert %2 wurde bereits deklariert.</translation>
-    </message>
-    <message>
-        <source>Date time content does not match the maxInclusive facet.</source>
-        <translation>Die Datumsangabe entspricht nicht der Facette &apos;maxInclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Date time content does not match the maxExclusive facet.</source>
-        <translation>Die Datumsangabe entspricht nicht der Facette &apos;maxExclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Simple type contains not allowed facet %1.</source>
-        <translation>Der einfache Typ enthält eine unzulässige Facette %1.</translation>
-    </message>
-    <message>
-        <source>%1 is not valid as a value of type %2.</source>
-        <translation>%1 ist kein gültiger Wert des Typs %2.</translation>
-    </message>
-    <message>
-        <source>xsi:noNamespaceSchemaLocation cannot appear after the first no-namespace element or attribute.</source>
-        <translation>xsi:noNamespaceSchemaLocation kann nicht nach dem ersten Element oder Attribut ohne Namensraum erscheinen.</translation>
-    </message>
-    <message>
-        <source>Variety of item type of %1 must be either atomic or union.</source>
-        <translation>Die Varietät der Typen von %1 muss entweder atomar oder eine Vereinigung sein.</translation>
-    </message>
-    <message>
-        <source>Complex type %1 cannot be derived by extension from %2 as the latter contains %3 element in its content model.</source>
-        <translation>Der komplexe Typ %1 kann nicht durch Erweiterung von %2 abgeleitet werden, da letzterer ein &apos;%3&apos;-Element in seinem Inhaltsmodell hat.</translation>
-    </message>
-    <message>
-        <source>zero or more</source>
-        <translation>kein oder mehrere</translation>
-    </message>
-    <message>
-        <source>More than one value found for field %1.</source>
-        <translation>Für das Feld %1 wurden mehrere Werte gefunden.</translation>
-    </message>
-    <message>
-        <source>%1 is not in the in-scope attribute declarations. Note that the schema import feature is not supported.</source>
-        <translation>%1 befindet sich nicht unter den Attributdeklarationen im Bereich. Schema-Import wird nicht unterstützt.</translation>
-    </message>
-    <message>
-        <source>Item type of base type does not match item type of %1.</source>
-        <translation>Der Elementtyp des Basistyps entspricht nicht dem Elementtyp von %1.</translation>
-    </message>
-    <message>
-        <source>When function %1 is used for matching inside a pattern, the argument must be a variable reference or a string literal.</source>
-        <translation>Bei der Verwendung der Funktion %1 zur Auswertung innerhalb eines Suchmusters muss das Argument eine Variablenreferenz oder ein Zeichenketten-Literal sein.</translation>
-    </message>
-    <message>
-        <source>%1 is an invalid template mode name.</source>
-        <translation>%1 ist kein gültiger Name für einen Vorlagenmodus.</translation>
-    </message>
-    <message>
-        <source>%1 facet cannot be %2 if %3 facet of base type is %4.</source>
-        <translation>Die Facette %1 kann nicht %2 sein, wenn die Facette %3 des Basistyps %4 ist.</translation>
-    </message>
-    <message>
-        <source>Date time content does not match the minInclusive facet.</source>
-        <translation>Die Datumsangabe entspricht nicht der Facette &apos;minInclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>Date time content does not match the minExclusive facet.</source>
-        <translation>Die Datumsangabe entspricht nicht der Facette &apos;minExclusive&apos;.</translation>
-    </message>
-    <message>
-        <source>At least one time component must appear after the %1-delimiter.</source>
-        <translation>Bei Vorhandensein eines %1-Begrenzers muss mindestens eine Komponente vorhanden sein.</translation>
-    </message>
-    <message>
-        <source>Overflow: Date can&apos;t be represented.</source>
-        <translation>Das Datum kann nicht dargestellt werden (Ãœberlauf).</translation>
-    </message>
-    <message>
-        <source>Complex type %1 contains two different attributes that both have types derived from %2.</source>
-        <translation>Der komplexe Typ %1 enthält zwei verschiedene Attribute mit Typen, die beide von %2 abgeleitet sind.</translation>
-    </message>
-    <message>
-        <source>Unsigned integer content is not listed in the enumeration facet.</source>
-        <translation>Der vorzeichenlose Ganzzahlwert ist nicht in der Aufzählungsfacette enthalten.</translation>
-    </message>
-    <message>
-        <source>Signed integer content is not listed in the enumeration facet.</source>
-        <translation>Der vorzeichenbehaftete Ganzzahlwert ist nicht in der Aufzählungsfacette enthalten.</translation>
-    </message>
-    <message>
-        <source>%1 attribute of %2 element must not be %3.</source>
-        <translation>Das Attribut %1 des Elements %2 kann nicht %3 sein.</translation>
-    </message>
-    <message>
-        <source>Operator %1 is not available between atomic values of type %2 and %3.</source>
-        <translation>Der Operator %1 ist für die atomaren Typen %2 und %3 nicht verfügbar.</translation>
-    </message>
-    <message>
-        <source>A zone offset must be in the range %1..%2 inclusive. %3 is out of range.</source>
-        <translation>Eine Zeitzonen-Differenz muss im Bereich %1..%2 (einschließlich) liegen. %3 liegt außerhalb des Bereiches.</translation>
-    </message>
-    <message>
-        <source>Derived element %1 is missing value constraint as defined in base particle.</source>
-        <translation>Im abgeleiteten Element %1 fehlt Einschränkung des Wertes, wie sie im Basispartikel definiert ist.</translation>
-    </message>
-    <message>
-        <source>Prefix of qualified name %1 is not defined.</source>
-        <translation>Der Präfix des qualifizierten Namens %1 ist nicht definiert.</translation>
-    </message>
-    <message>
-        <source>No schema defined for validation.</source>
-        <translation>Es ist kein Schema für die Validierung definiert.</translation>
-    </message>
-    <message>
-        <source>%1 is not a valid XML 1.0 character.</source>
-        <translation>%1 ist kein gültiges XML-1.0-Zeichen.</translation>
-    </message>
-    <message>
-        <source>Derived particle is missing element %1.</source>
-        <translation>Das Element %1 fehlt im abgeleiteten Partikel.</translation>
-    </message>
-    <message>
-        <source>Member type %1 of %2 element cannot be resolved.</source>
-        <translation>Der Subtyp %1 des Elements %2 kann nicht aufgelöst werden.</translation>
-    </message>
-    <message>
-        <source>%1 has inheritance loop in its base type %2.</source>
-        <translation>%1 hat eine zirkuläre Vererbung im Basistyp %2.</translation>
-    </message>
-    <message>
-        <source>The first argument to %1 cannot be of type %2. It must be of type %3, %4, or %5.</source>
-        <translation>Das erste Argument von %1 kann nicht vom Typ %2 sein, es muss einer der Typen %3, %4 oder %5 sein.</translation>
-    </message>
-    <message>
-        <source>Element %1 is declared as abstract.</source>
-        <translation>Das Element %1 ist als abstrakt deklariert.</translation>
-    </message>
-    <message>
-        <source>%1 is not a whole number of minutes.</source>
-        <translation>%1 ist keine ganzzahlige Minutenangabe.</translation>
-    </message>
-    <message>
-        <source>Reference %1 of %2 element cannot be resolved.</source>
-        <translation>Der Verweis %1 des Elements %2 kann nicht aufgelöst werden.</translation>
-    </message>
-    <message>
-        <source>Binary content does not match the length facet.</source>
-        <translation>Der binäre Inhalt entspricht nicht der Längenfacette.</translation>
-    </message>
-    <message>
-        <source>%1 element is not allowed inside %2 element if %3 attribute is present.</source>
-        <translation>Wenn das Attribut %3 vorhanden ist, darf das Element %1 nicht im Element %2 vorkommen.</translation>
-    </message>
-    <message>
-        <source>Failure when casting from %1 to %2: %3</source>
-        <translation>Fehlschlag beim Umwandeln von %1 nach %2: %3</translation>
-    </message>
-    <message>
-        <source>It is not possible to cast from %1 to %2.</source>
-        <translation>Es ist keine Typumwandlung von %1 nach %2 möglich.</translation>
-    </message>
-    <message>
-        <source>Circular inheritance of base type %1.</source>
-        <translation>Zirkuläre Vererbung im Basistyp %1.</translation>
-    </message>
-    <message>
-        <source>Namespace %1 can only be bound to %2 (and it is, in either case, pre-declared).</source>
-        <translation>Der Namensraum %1 kann nur an %2 gebunden werden. Dies ist bereits vordeklariert.</translation>
-    </message>
-    <message>
-        <source>Simple type of derived element %1 cannot be validly derived from base element.</source>
-        <translation>Der einfache Typ des abgeleiteten Elements %1 kann nicht vom Basiselement abgeleitet werden.</translation>
-    </message>
-    <message>
-        <source>The second operand in a division, %1, cannot be zero (%2).</source>
-        <translation>Der zweite Operand einer Division, %1, kann nicht Null (%2) sein.</translation>
-    </message>
-    <message>
-        <source>Signed integer content does not match pattern facet.</source>
-        <translation>Der vorzeichenbehaftete Ganzzahlwert entspricht nicht der Suchmusterfacette.</translation>
-    </message>
-    <message>
-        <source>Only one %1 declaration can occur in the query prolog.</source>
-        <translation>Der Anfrage-Prolog darf nur eine %1-Deklaration enthalten.</translation>
-    </message>
-    <message>
-        <source>Element %1 must have at least one of the attributes %2 or %3.</source>
-        <translation>Das Element %1 muss mindestens eines der Attribute %2 oder %3 haben.</translation>
-    </message>
-    <message>
-        <source>Union of attribute wildcard of type %1 and attribute wildcard of its base type %2 is not expressible.</source>
-        <translation>Die Vereinigung der Attributssuchmuster des Typs %1 und seines Basistyps %2 ergibt keinen gültigen Ausdruck.</translation>
-    </message>
-    <message>
-        <source>If both values have zone offsets, they must have the same zone offset. %1 and %2 are not the same.</source>
-        <translation>Wenn beide Werte mit Zeitzonen angegeben werden, müssen diese übereinstimmen. %1 und %2 sind daher unzulässig.</translation>
-    </message>
-    <message>
-        <source>Simple type %1 contains not allowed facet type %2.</source>
-        <translation>Der einfache Typ %1 enthält einen nicht erlaubten Facettentyp %2.</translation>
-    </message>
-    <message>
-        <source>No external functions are supported. All supported functions can be used directly, without first declaring them as external</source>
-        <translation>Externe Funktionen werden nicht unterstützt. Alle unterstützten Funktionen können direkt verwendet werden, ohne sie als extern zu deklarieren</translation>
-    </message>
-    <message>
-        <source>The last step in a path must contain either nodes or atomic values. It cannot be a mixture between the two.</source>
-        <translation>Der letzte Schritt eines Pfades kann entweder nur Knoten oder nur atomare Werte enthalten. Sie dürfen nicht zusammen auftreten.</translation>
-    </message>
-    <message>
-        <source>List content is not listed in the enumeration facet.</source>
-        <translation>Der Listeninhalt ist nicht in der Aufzählungsfacette enthalten.</translation>
-    </message>
-</context>
-<context>
-    <name>QXmlPatternistCLI</name>
-    <message>
-        <source>Unknown location</source>
-        <translation>Unbekannter Ort</translation>
-    </message>
-    <message>
-        <source>Error %1 in %2, at line %3, column %4: %5</source>
-        <translation>Fehler %1 in %2, bei Zeile %3, Spalte %4: %5</translation>
-    </message>
-    <message>
-        <source>Warning in %1: %2</source>
-        <translation>Warnung in %1: %2</translation>
-    </message>
-    <message>
-        <source>Error %1 in %2: %3</source>
-        <translation>Fehler %1 in %2: %3</translation>
-    </message>
-    <message>
-        <source>Warning in %1, at line %2, column %3: %4</source>
-        <translation>Warnung in %1, bei Zeile %2, Spalte %3: %4</translation>
-    </message>
-</context>
-</TS>
diff --git a/utils.cpp b/utils.cpp
index 95859a81ba43933781e48e20b04d2751af5ff78c..6031f839a28cc64119211ad9ac5d2eec3d7753c4 100755
--- a/utils.cpp
+++ b/utils.cpp
@@ -3,6 +3,9 @@
 #include <QDebug>
 #include <functional>
 #include <QJsonObject>
+#include <QJsonDocument>
+#include <sstream>
+#include <string>
 
 #include "utils.h"
 
@@ -12,9 +15,9 @@
  * @param text
  * @return
  */
-QString Utils::removeUtf8Emojis( QString &pText )
+QString Utils::removeUtf8Emojis( QString pText )
 {
-    QRegularExpression nonAlphaNumeric( "[\\p{L}\\p{M}\\p{N}\\p{Z}\\p{Sm}\\p{Sc}\\p{Sk}\\p{P}\\p{Cc}\\p{Cf}*]", QRegularExpression::UseUnicodePropertiesOption );
+    static const QRegularExpression nonAlphaNumeric( "[\\p{L}\\p{M}\\p{N}\\p{Z}\\p{Sm}\\p{Sc}\\p{Sk}\\p{P}\\p{Cc}\\p{Cf}*]", QRegularExpression::UseUnicodePropertiesOption );
 
     QRegularExpressionMatchIterator iter = nonAlphaNumeric.globalMatch( pText );
     QString retString;
@@ -26,7 +29,6 @@ QString Utils::removeUtf8Emojis( QString &pText )
         retString += match.captured();
 
     }
-
     return retString;
 }
 
@@ -57,6 +59,7 @@ QString Utils::linkiFy( QString &pText )
     quotes["»"] = "«";
     quotes["›"] = "‹";
 
+
     std::function<QString( QString text )> parse = [&]( QString pText ) {
         QString html;
         html.reserve(300);
@@ -137,6 +140,7 @@ QString Utils::linkiFy( QString &pText )
 
     };
     QString html = parse( pText );
+
     return html;
 }
 
@@ -173,6 +177,111 @@ QString Utils::getPathPrefix()
 #endif
 }
 
+QString Utils::escapeUnicodeEmoji(QString pString)
+{
+    qDebug()<<pString;
+    static const QRegularExpression reg("(\\b[A-Fa-f0-9]{2,6}\\b)");
+    QRegularExpressionMatchIterator iter = reg.globalMatch(pString);
+
+    QString retString;
+
+    if(pString.contains("-")){
+        QStringList parts = pString.split("-");
+        for(int i=0; i<parts.length(); i++){
+            int part;
+            std::stringstream ss;
+            ss << std::hex << parts[i].toStdString();
+            ss >> part;
+            if(part >= 0x10000 && part <= 0x10FFFF){
+                int hi = ((part - 0x10000)/0x400) + 0xD800;
+                int lo = ((part - 0x10000) % 0x400) + 0xDC00;
+                retString += QChar(hi);
+                retString += QChar(lo);
+            }else{
+                retString = QChar(part);
+            }
+        }
+    }else{
+        int part;
+        std::stringstream ss;
+        ss << std::hex << pString.toStdString();
+        ss >> part;
+        if(part >= 0x10000 && part <= 0x10FFFF){
+            int hi = ((part - 0x10000)/0x400) + 0xD800;
+            int lo = ((part - 0x10000) % 0x400) + 0xDC00;
+            retString += QChar(hi);
+            retString += QChar(lo);
+        }else{
+            retString = QChar(part);
+        }
+    }
+
+    return retString;
+}
+
+QString Utils::replaceUnicodeEmojis(QString pText, EmojiRepo *pEmojiRepo)
+{
+    if(pEmojiRepo != nullptr){
+        auto items = pEmojiRepo->getElements();
+
+        for (auto emoji: items){
+            if(Q_LIKELY(!emoji.isNull())){
+                QString unicode = emoji->getUnicodeChar();
+                if(Q_LIKELY(unicode.size())){
+                    pText.replace(unicode, emoji->getIdentifier() );
+                }
+            }
+        }
+    }
+    return pText;
+}
+bool Utils::compareMessageTimestamps( QJsonObject pMessage1, QJsonObject pMessage2 )
+{
+    return ( getMessageTimestamp( pMessage1 ) - getMessageTimestamp( pMessage2 ) ) > 0;
+}
+
+QString &Utils::emojiFy( QString &pMessage, EmojiRepo *pEmojiRepo )
+{
+    static const QRegularExpression reg( ":[a-zA-Z-_0-9ßöüäÖÜÄ]+:" );
+    if(pEmojiRepo != nullptr){
+        QRegularExpressionMatchIterator iter = reg.globalMatch( pMessage );
+        QVector<QString> parts;
+        parts.reserve(150);
+        int idx = 0;
+        int idx_last = 0;
+        int idx_prev = 0;
+
+        while ( iter.hasNext() ) {
+            QRegularExpressionMatch match = iter.next();
+            QString matchString = match.captured();
+
+            if ( pEmojiRepo->contains( matchString ) ) {
+                idx_last = match.capturedEnd();
+                idx = idx_last - matchString.length();
+                //               QString before = pMessage.left( match.capturedStart() );
+                //               QString after = pMessage.right( pMessage.length() - match.capturedEnd() );
+
+                if ( idx_prev != idx ) {
+                    parts.append( pMessage.mid( idx_prev, idx - idx_prev ) );
+                }
+
+                idx_prev = idx_last;
+                parts.append( pEmojiRepo->get( matchString )->getHtml() );
+            }
+        }
+
+        if ( parts.length() ) {
+            parts.append( pMessage.right( pMessage.length() - idx_last ) );
+            pMessage = "";
+
+            for ( int i = 0; i < parts.length(); i++ ) {
+                pMessage += parts[i];
+            }
+        }
+    }
+    return pMessage;
+}
+
 qint16 Utils::hash(QStringList pStrings)
 {
     QByteArray stringSum;
@@ -185,12 +294,10 @@ qint16 Utils::hash(QStringList pStrings)
         }else{
             for(int i=0; i<limit; i++){
                 int num1 = 0;
-                int num2 = 0;
                 if(i<stringArray.length()){
                     num1 = stringArray[i];
                 }
                 if(i<stringSum.length()){
-                    num2 = stringSum[i];
                     stringSum[i] = stringSum[i]+num1;
                 }else{
                     stringSum.append(num1);
@@ -200,48 +307,3 @@ qint16 Utils::hash(QStringList pStrings)
     }
     return qChecksum(stringSum,stringSum.length());
 }
-bool Utils::compareMessageTimestamps( QJsonObject pMessage1, QJsonObject pMessage2 )
-{
-    return ( getMessageTimestamp( pMessage1 ) - getMessageTimestamp( pMessage2 ) ) > 0;
-}
-
-QString &Utils::emojiFy( QString &pMessage, QHash<QString, QString> &pEmojisMap )
-{
-    static const QRegularExpression reg( ":[a-zA-Z-_0-9ßöüäÖÜÄ]+:" );
-    QRegularExpressionMatchIterator iter = reg.globalMatch( pMessage );
-    QVector<QString> parts;
-    parts.reserve(150);
-    int idx = 0;
-    int idx_last = 0;
-    int idx_prev = 0;
-
-    while ( iter.hasNext() ) {
-        QRegularExpressionMatch match = iter.next();
-        QString matchString = match.captured();
-
-        if ( pEmojisMap.contains( matchString ) ) {
-            idx_last = match.capturedEnd();
-            idx = idx_last - matchString.length();
-            //               QString before = pMessage.left( match.capturedStart() );
-            //               QString after = pMessage.right( pMessage.length() - match.capturedEnd() );
-
-            if ( idx_prev != idx ) {
-                parts.append( pMessage.mid( idx_prev, idx - idx_prev ) );
-            }
-
-            idx_prev = idx_last;
-            parts.append( pEmojisMap[matchString] );
-        }
-    }
-
-    if ( parts.length() ) {
-        parts.append( pMessage.right( pMessage.length() - idx_last ) );
-        pMessage = "";
-
-        for ( int i = 0; i < parts.length(); i++ ) {
-            pMessage += parts[i];
-        }
-    }
-
-    return pMessage;
-}
diff --git a/utils.h b/utils.h
index df96c125e086394ee592c86fe56c5e3f389abff0..ce8c8e19d81746256291b849c6afa6cc515c305f 100755
--- a/utils.h
+++ b/utils.h
@@ -3,7 +3,10 @@
 
 #include <QString>
 #include <QRegularExpression>
+#include "repos/emojirepo.h"
+#include "repos/entities/emoji.h"
 
+class EmojiRepo;
 class Utils
 {
     public:
@@ -21,14 +24,17 @@ class Utils
             return returnString.length() ? returnString : "";
         }
 #endif
-        static QString removeUtf8Emojis( QString &pText );
+        static QString removeUtf8Emojis( QString pText );
         static QString linkiFy( QString &pText );
-        static QString &emojiFy( QString &pText, QHash<QString, QString> &pEmojiMap );
+        static QString &emojiFy( QString &pText, EmojiRepo *pEmojiRepo );
         static double getMessageTimestamp( QJsonObject pMessage );
         static bool compareMessageTimestamps( QJsonObject pMessage1, QJsonObject  pMessage2 );
         static bool messageHasTimestamp( QJsonObject pMessage );
         static QString getPathPrefix();
+        static QString escapeUnicodeEmoji(QString pString);
+        static QString replaceUnicodeEmojis(QString pText, EmojiRepo *pEmojiRepo);
         static qint16 hash(QStringList pStrings);
+
         ~Utils();
 
 
diff --git a/websocket/linuxwebsocket/websocketlinux.cpp b/websocket/linuxwebsocket/websocketlinux.cpp
index a5052e5b0a9f586534f9e5f799e5032bd6b5c02d..bd9b7cfd689962a9e214ab1cc5a891b86165b586 100755
--- a/websocket/linuxwebsocket/websocketlinux.cpp
+++ b/websocket/linuxwebsocket/websocketlinux.cpp
@@ -9,13 +9,16 @@ websocketLinux::websocketLinux()
     connect(&mWebsocket,&QWebSocket::textMessageReceived,this,&websocketLinux::received, Qt::UniqueConnection);
     connect(&mWebsocket,&QWebSocket::disconnected,this,&websocketLinux::closed, Qt::UniqueConnection);
     //connect(&websocket,&QWebSocket::error,this,&websocketLinux::error);
+    connect(&mWebsocket, &QWebSocket::stateChanged, this,&websocketLinux::onStatusChanged, Qt::UniqueConnection );
 }
 
 websocketLinux::~websocketLinux()
 {
+    qDebug()<<"destroy websocket linux";
     disconnect(&mWebsocket,&QWebSocket::connected,this,&websocketLinux::connected);
     disconnect(&mWebsocket,&QWebSocket::textMessageReceived,this,&websocketLinux::textMessageReceived);
     disconnect(&mWebsocket,&QWebSocket::disconnected,this,&websocketLinux::closed);
+    mWebsocket.deleteLater();
 }
 
 void websocketLinux::open(QUrl url)
@@ -38,10 +41,43 @@ void websocketLinux::sendTextMessage(QString pMessage)
 
 bool websocketLinux::isValid()
 {
+    qDebug()<<"state: "<<mWebsocket.state();
     return mWebsocket.isValid();
 }
 
+bool websocketLinux::isDisconnected()
+{
+    bool returnValue;
+    if(mWebsocket.state() == QAbstractSocket::UnconnectedState){
+        returnValue = true;
+    }else{
+        returnValue = false;
+    }
+    return returnValue;
+}
+
+bool websocketLinux::isConnecting()
+{
+    bool returnValue;
+    if(mWebsocket.state() == QAbstractSocket::ConnectingState){
+        returnValue = true;
+    }else{
+        returnValue = false;
+    }
+    return returnValue;
+}
+
 void websocketLinux::received(QString pMsg)
 {
     emit(textMessageReceived(pMsg));
 }
+
+void websocketLinux::onStatusChanged()
+{
+//    if(mWebsocket.state() == QAbstractSocket::UnconnectedState){
+//        emit closed();
+//    }else if(mWebsocket.state() == QAbstractSocket::ConnectedState){
+//        emit connected();
+//    }
+    qDebug()<<"state linux websocket: "<< mWebsocket.state();
+}
diff --git a/websocket/linuxwebsocket/websocketlinux.h b/websocket/linuxwebsocket/websocketlinux.h
index 0681b28f5dccf1e84d496ff2fa31922d942d30e4..28d153976bb628cb73bb8254924cd9a0ebe0f07b 100755
--- a/websocket/linuxwebsocket/websocketlinux.h
+++ b/websocket/linuxwebsocket/websocketlinux.h
@@ -2,6 +2,7 @@
 #define WEBSOCKETLINUX_H
 
 #include <QtWebSockets/QtWebSockets>
+#include <QAbstractSocket>
 
 #include "websocketabstract.h"
 
@@ -16,7 +17,10 @@ public:
     virtual void close() override;
     virtual void sendTextMessage(QString) override;
     virtual bool isValid(void) override;
+    virtual bool isDisconnected(void) override;
+    virtual bool isConnecting(void) override;
     void received(QString);
+    void onStatusChanged();
 private:
     QWebSocket mWebsocket;
     void emitConnected();
diff --git a/websocket/websocket.cpp b/websocket/websocket.cpp
index eb9fc1e3c9d1a91c1906f7542e194e1cb9655d56..92a08cc39580ddc64dd127404ce52c2e71fecaf1 100755
--- a/websocket/websocket.cpp
+++ b/websocket/websocket.cpp
@@ -44,6 +44,16 @@ bool Websocket::isValid()
     return mWebsocketInstance->isValid();
 }
 
+bool Websocket::isDisconnected()
+{
+    return mWebsocketInstance->isDisconnected();
+}
+
+bool Websocket::isConnecting()
+{
+    return mWebsocketInstance->isConnecting();
+}
+
 
 void Websocket::updateConnectionStatus(){
     qDebug() << "updated connection status";
@@ -52,9 +62,11 @@ void Websocket::updateConnectionStatus(){
 }
 
 Websocket::~Websocket(){
+    qDebug()<<"destroying websocket instance";
     disconnect(mWebsocketInstance,&WebsocketAbstract::connected,this,&Websocket::connected);
     disconnect(mWebsocketInstance,&WebsocketAbstract::textMessageReceived,this,&Websocket::textMessageReceived);
     disconnect(mWebsocketInstance,&WebsocketAbstract::error,this,&Websocket::error);
     disconnect(mWebsocketInstance,&WebsocketAbstract::closed,this,&Websocket::closed);
-    delete mWebsocketInstance;
+    mWebsocketInstance->close();
+    mWebsocketInstance->deleteLater();
 }
diff --git a/websocket/websocket.h b/websocket/websocket.h
index 7203e6eb72db86181049be3a74ecaeb6a4f1f424..6b7da6b433124fc58a352b75bbe41cc1cb3da3bc 100755
--- a/websocket/websocket.h
+++ b/websocket/websocket.h
@@ -12,9 +12,11 @@ public:
     Websocket();
 
     virtual void open(QUrl) override;
-    virtual void close() override;
+    virtual void close(void) override;
     virtual void sendTextMessage(QString) override;
     virtual bool isValid(void) override;
+    virtual bool isDisconnected(void) override;
+    virtual bool isConnecting(void) override;
     ~Websocket();
 private:
     void updateConnectionStatus();
diff --git a/websocket/websocketabstract.h b/websocket/websocketabstract.h
index 13844380e3b955258739081b119169d7d8371739..9ed5e4ed0b33517dee3c9c28a87d41c47b724fb2 100755
--- a/websocket/websocketabstract.h
+++ b/websocket/websocketabstract.h
@@ -4,6 +4,7 @@
 #include <QObject>
 #include <QUrl>
 #include <QString>
+#include <QAbstractSocket>
 
 
 class WebsocketAbstract:public QObject
@@ -13,9 +14,11 @@ public:
     WebsocketAbstract();
 
     virtual void open(QUrl) = 0;
-    virtual void close() = 0;
+    virtual void close(void) = 0;
     virtual void sendTextMessage(QString) = 0;
     virtual bool isValid(void) = 0;
+    virtual bool isDisconnected(void) = 0;
+    virtual bool isConnecting(void) = 0;
 
 signals:
     void connected();
diff --git a/websocket/winrtwebsocket/websocketwinrt.cpp b/websocket/winrtwebsocket/websocketwinrt.cpp
index f18c193b73ec973d86daa0abe5481ff16533ccb4..d6b44019aad5d75a98fc93b76d5780982f16a647 100755
--- a/websocket/winrtwebsocket/websocketwinrt.cpp
+++ b/websocket/winrtwebsocket/websocketwinrt.cpp
@@ -122,7 +122,7 @@ WinRTWebsocket::~WinRTWebsocket(){
 	disconnect(helper, &WinRTQTSignalHelperClass::onClosed, this, &WinRTWebsocket::closed);
 	disconnect(helper, &WinRTQTSignalHelperClass::onConnected, this, &WinRTWebsocket::connected);
    // delete helper;
-    delete timer;
+    timer->deleteLater();
 }